Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💡 Feature Request - Allow using CDN hosted version of mermaid.js #20

Closed
maiksprenger opened this issue Mar 17, 2025 · 4 comments
Closed
Assignees
Labels
question Further information is requested

Comments

@maiksprenger
Copy link
Contributor

Implementation PR

No response

Reference Issues

No response

Summary

We've added the latest mermaid.js with django-mermaid to my work's product docs project - thank you again for making this so easy!

In its AppConfig.ready, django-mermaid tries to download the specified version of mermaid.js if a custom version was specified. This is downloaded into django-mermaids static folder.

This will not work for all deployment scenarios. By the time AppConfig.ready has run, collectstatic could already have been executed. In scenarios where static files are pushed to S3, we might never find the downloaded mermaid.js. In our corporate environment, the site packages directory is write-protected, so this approach doesn't work at all.

There are a few ways this could be improved (e.g. making the download directory customizable, downloading and using media files instead). But I am not a fan of side effects in AppConfig.ready, and I think there is an even simpler approach: be able to opt-in to using the CDN-hosted version of mermaid.js instead of via staticfiles.

Adding this feature presumably also would've addressed #8.

I am afraid I got moved to a different project, so likely won't be able to make a pull request this time.

Basic Example

A get_mermaid_uri could replace this, and we already have the logic to build the CDN URL.

Drawbacks

None, apart from the added complexity of one more settings variable.

Unresolved questions

No response

@maiksprenger maiksprenger added the question Further information is requested label Mar 17, 2025
@ArtyomVancyan
Copy link
Member

@maiksprenger, I see the issue. I can implement a new boolean constant for using CDN directly (without downloading on application start), but it actually has a drawback. When using CSP, you might have issues loading the script. Anyway, I like the idea of using the direct CDN in the Jinja template. Will work on it on the weekend and will keep you notified.

@ArtyomVancyan ArtyomVancyan self-assigned this Mar 17, 2025
@maiksprenger
Copy link
Contributor Author

maiksprenger commented Mar 17, 2025

@ArtyomVancyan Really happy to hear you think this is a good idea!

I agree about the CSP issues, but think that's to be expected. Either you go the easy way and use an externally hosted version, or you have to figure out to ship the javascript from your servers.

Adding a boolean to control both the downloading and which URL to use is probably the sensible approach. If you want to go fancy and address the CSP issue at the same time, you could let users define their own URL function (like KEY_FUNCTION). If it's not set, you keep the current behavior of downloading and serving via staticfiles. And if it's set, users can either define a function that returns the CDN URL, or they can define a function that returns a URL from servers under their control, addressing the CSP issue. But I'm not sure if that's too complex 🤷

I'm happy to review a PR if that helps you.

ArtyomVancyan added a commit to ArtyomVancyan/django-mermaid that referenced this issue Mar 24, 2025
ArtyomVancyan added a commit to ArtyomVancyan/django-mermaid that referenced this issue Mar 24, 2025
@ArtyomVancyan ArtyomVancyan mentioned this issue Mar 24, 2025
6 tasks
@ArtyomVancyan
Copy link
Member

@maiksprenger, thanks again for the idea! I have implemented and published a new version that supports this direct CDN URL feature. So, you can upgrade and set the MERMAID_USE_CDN = True in your settings.py and test it out.

@maiksprenger
Copy link
Contributor Author

@ArtyomVancyan That's amazing, thank you for adding that! I'll prep a PR to get us using that, and will let you know how it went.

maiksprenger added a commit to maiksprenger/django-mermaid that referenced this issue Mar 25, 2025
This is a follow-up to
pysnippet#20

pysnippet#21 added a CDN feature,
which means the added script tag will point to the CDN version of
mermaid.js. But it still tries to download a copy to the package's
static directory in AppConfig.ready.

Because this isn't necessary in CDN mode and causes us a PermissionError
during deployment, I'm proposing we only download in non-CDN mode.
maiksprenger added a commit to maiksprenger/django-mermaid that referenced this issue Mar 25, 2025
This is a follow-up to
pysnippet#20

pysnippet#21 added a CDN feature,
which means the added script tag will point to the CDN version of
mermaid.js. But it still tries to download a copy to the package's
static directory in AppConfig.ready.

Because this isn't necessary in CDN mode and causes us a PermissionError
during deployment, I'm proposing we only download in non-CDN mode.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants