Sith/core/scss/processor.py

56 lines
1.8 KiB
Python
Raw Normal View History

2017-05-05 12:26:46 +00:00
#!/usr/bin/env python3
#
2017-05-05 12:59:39 +00:00
# Copyright 2017
2017-05-05 12:26:46 +00:00
# - Sli <antoine@bartuccio.fr>
#
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
# http://ae.utbm.fr.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License a published by the Free Software
# Foundation; either version 3 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
# Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
2024-07-26 13:14:37 +00:00
import functools
from pathlib import Path
2024-06-24 11:07:36 +00:00
import sass
from django.conf import settings
2017-05-05 12:26:46 +00:00
from django.core.files.base import ContentFile
from django.templatetags.static import static
2024-07-26 13:14:37 +00:00
from django_jinja.builtins.filters import static
2024-06-24 11:07:36 +00:00
2017-05-08 00:30:13 +00:00
from core.scss.storage import ScssFileStorage, find_file
2017-05-05 12:26:46 +00:00
2024-07-26 13:14:37 +00:00
@functools.cache
def _scss_storage():
return ScssFileStorage()
2017-05-05 12:26:46 +00:00
2024-07-26 13:14:37 +00:00
def process_scss_path(path: Path):
css_path = path.with_suffix(".css")
if settings.DEBUG:
2017-05-05 12:26:46 +00:00
compile_args = {
2024-07-26 13:14:37 +00:00
"filename": find_file(path),
2017-05-05 12:26:46 +00:00
"include_paths": settings.SASS_INCLUDE_FOLDERS,
}
if settings.SASS_PRECISION:
2018-10-04 19:29:19 +00:00
compile_args["precision"] = settings.SASS_PRECISION
2017-05-05 12:26:46 +00:00
content = sass.compile(**compile_args)
2024-07-26 13:14:37 +00:00
storage = _scss_storage()
if storage.exists(css_path):
storage.delete(css_path)
storage.save(css_path, ContentFile(content))
return static(css_path)