Post your examples or open source projects

Following two those two threads:

I am starting this thread where we can post relevant examples of projects using Stimulus. Hopefully, this can help people get started with more curated list of examples. Also maybe we can extract out of it some common patterns and good practice to help us all.

For each project/example we post, I would like to suggest that we follow this template (all items being optional):

  1. Name :
  2. Github repo :
  3. Link to Live app :
  4. Is it a project in production? : Yes/No Demo only
  5. Comments: features, pattern, good practice, Language, trick, performance etc… being demonstrated by this project
  6. Owner / Hunter (you can hunt and post someone else project/repo that you find relevant to this thread)

Q/A and discussion around a project are welcome of course.

7 Likes

As I created this thread let’s open the ball rolling :slight_smile:

  1. Name : TodoMVC Rails on Stimulus
  2. Github repo : https://github.com/adrienpoly/todomvc_rails_on_stimulus
  3. Link to Live app : https://todomvc-rails-on-stimulus.herokuapp.com/
  4. Is it a project in production? : No Demo only
  5. Comments:
    A modest attempt to implement the famous TodoMVC with Rails/TurboLinks and Stimulus. This project has been very helpful for me to get up to speed with Stimulus but more generally with Turbolinks and Rails-ujs.
    Todos are stored in the DB, so one of the feature demonstrated with the demo is the ability to Post message with Rails-ujs in a Stimulus controller and use Rails strong params in your controller.
    Most actions are done client side with stimulus controller to get the real time feeling of client side UI. Adding a new todo is still done server side with a Turbolinks refresh (work in progress : potential solutions).
    It uses two Controllers : todoList and todoItems. todoItem will send notifications to update to the main todoList controller. This part can probably be optimized when controller communication is fully part of Stimulus API (data-outlet?)
  6. Owner / Hunter? : Owner (comments welcome, I am a modest developper)
6 Likes

name: people_controller.js on Rails with Stimulus
Githugb repo: https://github.com/romenigld/testing-stimulus
Link to live: no
Production: no
Comments: It was a tutorial sample of the onebitcode. link of the tutorial

Enjoy!

2 Likes

Hey there.

I’m going to use Stimulus in my open-source app:

  1. Name: Skyderby
  2. Github repo: https://github.com/skyderby/skyderby
  3. Link to Live app: https://skyderby.ru
  4. Is it a project in production? : Yes
  5. Comments: as of March, 3, 2018 it only first step made in PR #/96 for 2 small features, but I really like this experience and going to migrate project to Stimulus and finally drop Backbone + Underscore dependency
  6. I’m Owner
5 Likes

Name : Stimulus with Turbolinks, select2 and formValidation
Github repo : https://github.com/dstull/stimulus-formvalidation/tree/master
Link to Live app : https://stimulus-formvalidation.herokuapp.com/cars
Is it a project in production? : No Demo only
Comments: https://dev.to/dstull/stimulus-with-turbolinks-select2-and-formvalidation-1i7l
Owner

1 Like

Name : A simple Stimulus table filter demo
Github repo : https://github.com/dstull/stimulus-demo/
Link to Live app : https://stimulus-demo.herokuapp.com/
Is it a project in production? : No Demo only
Comments: https://dev.to/dstull/a-simple-stimulus-table-filter-demo-3gmb
Owner

1 Like

Name : hickory-cricket
Github repo : n/a, https://glitch.com/edit/#!/hickory-cricket
Link to Live app : https://hickory-cricket.glitch.me/
Is it a project in production? : Demo only
Comments: Javascript selection via CSS
Owner: true

2 Likes

I :heart::heart::heart: Stimulus!

Here is the demo of uploading progress using rails-ujs + Stimulus.

Source code can be found here: https://github.com/skyderby/skyderby/blob/2d78ddabe28835f887bd5990d8419c7365867b7e/app/javascript/controllers/upload_progress_controller.js

It is as simple as it should be.

6 Likes

Name : Stimulus Controllers for Mapbox-GL
Github repo : https://github.com/ayudo/stimulus-mapbox-gl
Link to Live app : no, sorry : )
Is it a project in production? : not yet, buit it will
Owner : me / $dayjob

:slight_smile:

2 Likes
  • Name : Sticky Table Headers
  • Github repo : https://github.com/johnbeatty/stimulus-sticky-table-header#readme
  • Link to Live app : It’s only in the admin section of a private app I run. I have a blog post about it here and it’s on NPM here.
  • Is it a project in production? : Yes
  • Comments: This is a small port of a JQuery plugin I was using. I have a couple pages with a lot of records, so it’s nice to keep those headers as context for what all the data means. Please submit bugs if you find any, I’m sure there are a lot of missing edge cases.
  • Owner: me
1 Like

Name : StimulusJS with Rails Action Cable and a bit of Sidekiq
Github repo : https://github.com/dstull/sidekiq-actioncable-stimulus-demo
Link to Live app : n/a
Is it a project in production? : No Demo only - version of it is in prod internally used
Comments: https://dev.to/dstull/stimulusjs-with-rails-action-cable-and-a-bit-of-sidekiq-i0a
Owner

1 Like
  1. Name: Conway’s Game Of Life on Rails with Stimulus.js
  2. Github repo: https://github.com/DonSchado/game-of-life
  3. Link to Live app: https://game-of-life-turbo.herokuapp.com/
  4. Is it a project in production? : It’s a Demo :wink:
  5. Comments: Even if the architecture is kind of ridiculous, I’m really impressed with the result.
  6. Owner: Me :slight_smile:
3 Likes
  1. alonetone
  2. https://github.com/sudara/alonetone
  3. https://alonetone.com
  4. Open source production rails app since 2007 (!!), stimulus app since 2018
  5. Comments: I finally migrated a bunch of old js behavior hanging around from 2008 to a handful of stimulus controllers. All playback wrangling and js sugar is done with stimulus. The core part of the mp3 player is playback_controller.js and inherited by the other flavors of playback behavior on the site: https://github.com/sudara/alonetone/tree/master/app/javascript/controllers
4 Likes

You haven’t updated in six months! I’m also building something like this also :slight_smile:

not great but this is my first stimulus controller:

  1. name: parameters
  2. repo: none
  3. url: none
  4. prod?: kind of but not really
  5. comments: from an hash (spec) and initial parameters, it will create form inputs dynamically depending on some other input (handles default, autocomplete, types, deepness of the spec, etc.)
  6. owner: me
class window.Parameters extends Stimulus.Controller
  @targets = ['spec', 'parameters', 'select', 'initial']

  connect: ->
    @spec = JSON.parse(@specTarget.textContent)
    @deepness = u.toI(@data.get('deepness'))
    @change(initial: true)

  change: (options = {}) ->
    @parametersTarget.innerHTML = @parametersHTML(options)
    @escapeValues()

  currentSpec: ->
    return unless @deepness and @value()

    if @deepness == 2
      service = @value().split(" ")[0]
      kind = @value().split(" ")[1]
      @spec[service][kind]
    else
      @spec[@value()]

  value: ->
    @selectTarget.value

  baseName: ->
    baseName = @selectTarget.attributes['name'].value
    baseName.split("[").slice(0, -1).join("[")

  nameFor: (key) ->
    "#{@baseName()}[parameters][#{key}]"

  initial: (key) ->
    JSON.parse(@initialTarget.textContent)[key]

  parametersHTML: (options = {}) ->
    u.map(@currentSpec(), (key, spec) =>
      if options.initial
        value = @initial(key) || spec.default || ""
      else
        value = spec.default || ""

      html = "<label><p>#{key}"
      html += "  <span class=\"form--hint\">#{spec.hint}</span>" if spec.hint
      html += "  <span class=\"form--hint\">"
      html += "     (#{u.toArray(spec.type).join(', ')})"
      html += "  </span>"
      html += "  </p><p>"
      html += "  <input list=\"parameters-#{key}\""
      html += "         name=\"#{@nameFor(key)}\""
      html += "         value=\"#{escape(value)}\""
      html += "         class=\"parameters--input\" />"
      html +  "</p></label>"
    ).join('')

  escapeValues: ->
    @parametersTarget.querySelectorAll('.parameters--input').forEach (input) ->
      input.value = unescape(input.value)

window.application.register 'parameters', window.Parameters

(not using webpack/npm, I prefer the assets pipeline)

1 Like
Name : CRUDLFA+
Github repo : github.com/yourlabs/crudlfap (mirror of yourlabs.io/oss/crudlfap)
Link to demo app : https://repl.it/@jpic/crudlfap
Is it a project in production? : Yes
Comments: A material design & modern admin for Django
Owner: jpic
1 Like

Name: Hacker News Progressive Web App
Link to demo app: https://hnpwa.johnbeatty.co
Is it a project in production?: Yes!
Comments: Written up here - https://johnbeatty.co/2019/05/06/hnpwa-with-rails-and-stimulus-introduction/
Owner: Me, but MIT Licensed. Enjoy!

3 Likes
  1. Partial page rendering with CakePHP
  2. GitHub repo: https://github.com/nico-amsterdam/cakephp-stimulus-example1
  3. Link to Live app: https://cakephp-stimulusjs.herokuapp.com
  4. Is it a project in production? : It’s an example :smirk:
  5. Comments: See repo README.
  6. Owner: Me. MIT Licensed.
1 Like

Not really a “project”, just a gist that shows how I was able to get the HelloController example working in my Sinatra app without a build system but with a Babel transpilation step.

Stimulus/Sinatra

3 Likes

name: Stimulus.js Demo
Githugb repo: https://github.com/tbreuss/stimulus-demo
Link to live: https://stimulusjs.demo.tebe.ch/
Production: no
Comments: This is a simple multi page demo application (MPA) with pre-rendered HTML using Stimulus.js.

Hope it helps!

1 Like