zulip/zproject/jinja2/compressors.py

17 lines
480 B
Python

"""
`minified_js` is taken from `zerver.templatetags.minified_js.py`
"""
from django.conf import settings
from django.template import TemplateSyntaxError
from zerver.templatetags.minified_js import MinifiedJSNode
def minified_js(sourcefile: str, csp_nonce: str) -> str:
if sourcefile not in settings.JS_SPECS:
raise TemplateSyntaxError(
"Invalid argument: no JS file %s".format(sourcefile))
return MinifiedJSNode(sourcefile, csp_nonce).render({})