GithubHelp home page GithubHelp logo

Comments (3)

excid3 avatar excid3 commented on July 17, 2024

Skypack is super easy to use:

<script type="module">
  import confetti from 'https://cdn.skypack.dev/canvas-confetti';
  confetti();
</script>

It'd be great if we could use something like this without needing any tweaks to the asset pipeline or webpacker out of the box.

from madmin.

excid3 avatar excid3 commented on July 17, 2024

Played with this today. We can easily add SlimSelect and Flatpickr this way.

<%= stylesheet_link_tag "https://cdn.skypack.dev/flatpickr/dist/flatpickr.min.css", "data-turbo-track": "reload" %>
<%= stylesheet_link_tag "https://cdn.skypack.dev/slim-select/dist/slimselect.min.css", "data-turbo-track": "reload" %>
<%= stylesheet_link_tag "https://cdn.skypack.dev/trix/dist/trix.css", "data-turbo-track": "reload" %>

<%= javascript_include_tag "https://cdn.skypack.dev/trix/dist/trix.js", "data-turbo-track": "reload" %>

<script type="module">
  import { Application } from 'https://cdn.skypack.dev/stimulus'
  const application = Application.start()

  import stimulusFlatpickr from 'https://cdn.skypack.dev/stimulus-flatpickr'
  application.register("flatpickr", stimulusFlatpickr)

  import stimulusSlimselect from 'https://cdn.skypack.dev/stimulus-slimselect'
  application.register("slimselect", stimulusSlimselect)
</script>

This doesn't solve the problem of needing ActiveStorage, ActionText, and other JS from Rails. It does reduce dependencies on gems like slimselect-rails for the asset pipeline & directly installing the packages with webpacker. I think that's a win.

We may just need to add madmin.js that will include Turbo(links) and other Rails dependencies. That would be fairly simple.

from madmin.

excid3 avatar excid3 commented on July 17, 2024

Added Rails, ActiveStorage, and ActionText using Skypack matching the Ruby gem version number. This should make this work nicely.

from madmin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.