Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stimulus-carousel

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stimulus-carousel

A Stimulus controller to deal with carousel.

  • 1.0.1
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
increased by89.7%
Maintainers
1
Weekly downloads
 
Created
Source

Netlify Status

Getting started

A Stimulus controller to deal with carousel.

This controller is using Swiper behind the scene.

Installation

$ 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)

Usage

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>

Configuration

AttributeDefaultDescriptionOptional
data-carousel-options{}Options for lightgallery.js as JSON string.

Extending Controller

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.

Development

Project setup

$ yarn install
$ yarn dev

Linter

Prettier and ESLint are responsible to lint and format this component:

$ yarn lint
$ yarn format

Contributing

Do not hesitate to contribute to the project by adapting or adding features ! Bug reports or pull requests are welcome.

License

This project is released under the MIT license.

Keywords

FAQs

Package last updated on 12 Nov 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc