Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
stimulus-carousel
Advanced tools
A Stimulus controller to deal with carousel.
This controller is using Swiper behind the scene.
$ yarn add stimulus-carousel
And use it in your JS file:
import { Application } from "stimulus"
import Carousel from "stimulus-carousel"
const application = Application.start()
application.register("carousel", Carousel)
Before starting, your must import the Swiper
CSS in your js
or in your sass
:
// In your application.js (for example)
import 'swiper/swiper-bundle.min.css'
// Or in your sass
@import "~swiper/swiper-bundle"
Basic usage:
<div data-controller="carousel" class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
</div>
</div>
With options:
<div
data-controller="carousel"
class="swiper-container"
data-carousel-options="{'direction': 'vertical'}"
>
<div class="swiper-wrapper">
<div class="swiper-slide">Slide 1</div>
<div class="swiper-slide">Slide 2</div>
<div class="swiper-slide">Slide 3</div>
</div>
</div>
Attribute | Default | Description | Optional |
---|---|---|---|
data-carousel-options | {} | Options for lightgallery.js as JSON string. | ✅ |
You can use inheritance to extend the functionality of any Stimulus component.
import Carousel from "stimulus-carousel"
export default class extends Carousel {
connect() {
super.connect()
console.log("Do what you want here.")
// The swiper instance.
this.swiper
// Default options for every carousels.
this.defaultOptions
// Options from data attribute.
this.options
}
// You can set default options in this getter.
get defaultOptions () {
return {
// Your default options here
}
}
}
This controller will automatically have access to targets defined in the parent class.
If you override the connect
, disconnect
or any other methods from the parent, you'll want to call super.method()
to make sure the parent functionality is executed.
$ yarn install
$ yarn dev
Prettier and ESLint are responsible to lint and format this component:
$ yarn lint
$ yarn format
Do not hesitate to contribute to the project by adapting or adding features ! Bug reports or pull requests are welcome.
This project is released under the MIT license.
FAQs
A Stimulus controller to deal with carousel.
The npm package stimulus-carousel receives a total of 2,156 weekly downloads. As such, stimulus-carousel popularity was classified as popular.
We found that stimulus-carousel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.