Trending: Add 3n-alt - fixes
[csit.git] / resources / tools / dash / app / pal / assets.py
1 # Copyright (c) 2022 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Compile static assets.
15 """
16
17 from flask import current_app as app
18 from flask_assets import Bundle
19
20
21 def compile_static_assets(assets):
22     """Compile stylesheets if in development mode.
23
24     :param assets: Flask-Assets Environment.
25     :type assets: Environment
26     :returns: Compiled stylesheets.
27     :rtype: Environment
28     """
29
30     assets.auto_build = True
31     assets.debug = False
32     less_bundle = Bundle(
33         u"less/*.less",
34         filters=u"less,cssmin",
35         output=u"dist/css/styles.css",
36         extra={u"rel": u"stylesheet/less"},
37     )
38     assets.register(u"less_all", less_bundle)
39     if app.config[u"FLASK_ENV"] == u"development":
40         less_bundle.build()
41
42     return assets