Skip to content

Circuit8/stimulus-existence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stimulus Existence

Stimulus controller to remove elements from the dom, and be notified with an event when they are added.

Installation

$ yarn add stimulus-existence

Usage

Register the controller with Stimulus:

// application.js
import { Application } from "stimulus";
import { ExistenceController } from "stimulus-existence";

const application = Application.start();
application.register("existence", ExistenceController);

Initialize the controller on a container element, use the remove() action to delete the entire container. Listen to existence:added events to discover when your container has been added to the dom. Useful for Rails Ujs Dom HTML additions, and hooking up with other controllers.

<div
  data-controller="existence"
  data-action="existence:added->other-controller#doSomething"
>
  <button data-action="click->existence#remove">Close me</button>
</div>

Contributing

Fork the project.

Install dependencies

$ yarn install

Write some tests, and add your feature. Send a PR.

About

get dom added events and remove elements with Stimulus

Resources

Stars

Watchers

Forks

Packages

No packages published