42377077346bc19e825a56183a47f8684ec47d99
[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 from flask import current_app as app
16 from flask_assets import Bundle
17
18
19 def compile_static_assets(assets):
20     """Compile stylesheets if in development mode.
21
22     :param assets: Flask-Assets Environment.
23     :type assets: Environment
24     :returns: Compiled stylesheets.
25     :rtype: Environment
26     """
27     assets.auto_build = True
28     assets.debug = False
29     less_bundle = Bundle(
30         "less/*.less",
31         filters="less,cssmin",
32         output="dist/css/styles.css",
33         extra={"rel": "stylesheet/less"},
34     )
35     assets.register("less_all", less_bundle)
36     if app.config["FLASK_ENV"] == "development":
37         less_bundle.build()
38     return assets