I am creating a Julia package PlutoXXX.jl with some CSS and JS code.
I want when checking a checkbox inside the Pluto notebook to activate the CSS and calling the JS function defined inside my module to activate a mode similar to the Pluto presentation mode.
Before using the module form, I was calling all that directly with something like
using HypertextLiteral
# ╔═╡ 67847c64-df3e-40b2-b9d0-10d1d14ebe71
css_code = read("pathtomyfile/always.css", String)
# ╔═╡ 38535edf-6cb2-478d-823d-6754fa8c89f3
# somehow LocalRessource do no work but this does
@htl("""
<style>
$(css_code)
</style>
""")
and for the JS
# ╔═╡ 1363008d-1a2a-479b-a3cf-1b2fdfab86e6
# # this does work but not @htl ...
PlutoUI.LocalResource("pathtomyfile/functions.js")
@bind mode html"""
<input id="activate_mode" type="checkbox" style="display:none;">
<button onclick="activate_mode.click()">Activate mode Mode</button>
"""
Now I want to put that inside a module PlutoXXX.jl to just have to call
# something like that
using PlutoXXX
@bind activate_mode CheckBox()
PlutoXXX.mode(activate_mode)
- Right now the copying what I was doing with the CSS seems to work.
- But for the JS just copying
PlutoUI.LocalResource("pathtomyfile/functions.js")
does not work and does not seem to be link to that activate_mode checkbox. - Any idea how to do that properly?
I must admit I don’t know much about JS and HTML and used some LLM to help me with that.