npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

solid-keen-slider

v1.3.18

Published

A slider utility for SolidJS.

Downloads

61

Readme

Solid Keen Slider

size size npm

A carousel/slider implementation in TypeScript for SolidJS. It's built on Keen-Slider 6, an open-source library agnostic touch slider with native touch/swipe behavior and great performance. It comes with no dependencies, TypeScript support, multitouch support and is compatible with all common browsers.

This package providers both primitive & directive as well as components. You may use either according to your preference. Note that for better SSR support, the component is recommended over the directive.

Installation

npm install solid-slider --save
yarn add solid-slider ## or in yarn

Import either the directive or component as you'd like:

import "solid-slider/slider.css";
import { Slider, createSlider } from "solid-slider";

Demo

You can find a functional demo of the slider with most features implemented here: https://codesandbox.io/s/solid-slider-j0x2g

Plugins

Plugins may be added directly via the createSlider primitive. You may add a Keen-Slider plugin directly or built-in plugins shipped with this package. Currently an autoplay plugin is available that will assist with autoplaying actions in the slider. Simply add the plugins after the options parameter. Please feel free to post requests for additional plugins or submit PRs if you decide to improve the base functionality. Some ideas for additional plugins include:

  • Slider nav (dot, arrow controls even thumbnails)
  • Lazy loaded images
  • Slide transitions

Details on applying plugins are available for each use below.

Use as Component

The following is an example of how to use the component.

const MyComponent = () => {
  return (
    <Slider options={{ loop: true }}>
      <div>Slide 1</div>
      <div>Slide 2</div>
      <div>Slide 3</div>
    </Slider>
  );
};

You may also use the next and previous button. Note that you must wrap your Slider with SliderProvider.

const MyComponent = () => {
  return (
    <SliderProvider>
      <Slider options={{ loop: true }}>
        <div>Slide 1</div>
        <div>Slide 2</div>
        <div>Slide 3</div>
      </Slider>
      <SliderButton prev>Previous</SliderButton>
      <SliderButton next>Next</SliderButton>
    <SliderProvider>
  );
};

Autoplay Plugin

You may include the autoplay plugin by providing it as a prop:

import createSlider from "solid-slider";
import autoplay from "solid-slider/plugins/autoplay";

const MyComponent = () => {
  return (
    <Slider options={{ loop: true }} plugins={[autoplay(1500, {})]}>
      <div class="slide1">1</div>
      <div class="slide2">2</div>
      <div class="slide3">3</div>
      <div class="slide4">4</div>
      <div class="slide5">5</div>
      <div class="slide6">6</div>
    </Slider>
  );
};

Adaptive Height Plugin

You may include the adaptive height plugin by providing it as a prop:

import createSlider from “solid-slider”;
import autoplay from “solid-slider/plugins/adaptiveHeight”;

const MyComponent = () => {
  return (
    <Slider options={{ loop: true }} plugins={[adaptiveHeight]}>
      <div class=“slide1”>1</div>
      <div class=“slide2”>2</div>
      <div class=“slide3”>3</div>
    </Slider>
  );
};

Adaptive Width Plugin

You may include the adaptive width plugin by providing it as a prop:

import createSlider from “solid-slider”;
import autoplay from “solid-slider/plugins/adaptiveWidth”;

const MyComponent = () => {
  return (
    <Slider options={{ loop: true }} plugins={[adaptiveWidth]}>
      <div class=“slide1”>1</div>
      <div class=“slide2”>2</div>
      <div class=“slide3”>3</div>
    </Slider>
  );
};

Use as Primitive

The following is an example of how to create and then bind options using a directive.

const MyComponent = () => {
  const options = { duration: 1000 };
  const [slider, { current, next, prev, moveTo }] = createSlider(options);
  return (
    <div use:slider>
      <div>Slide 1</div>
      <div>Slide 2</div>
      <div>Slide 3</div>
    </div>
  );
};

or without a directive:

const MyComponent = () => {
  let ref: HTMLElement;
  const options = { duration: 1000 };
  const [slider, { current, next, prev, moveTo }] = createSlider(options);
  onMount(() => {
    slider(ref);
  });
  return (
    <div ref={ref}>
      <div>Slide 1</div>
      <div>Slide 2</div>
      <div>Slide 3</div>
    </div>
  );
};

Autoplay

The autoplay function extends the slider with pausable playing. You can even supply a signal to control toggling autoplay. Click here for a demo of autoplay.

import createSlider from "solid-slider";
import autoplay from "solid-slider/plugins/autoplay";

const [pause, togglePause] = createSignal(false);
const [slider] = createSlider(
  { loop: true },
  autoplay(2000, {
    pause,
    pauseOnDrag: true,
  })
);

Implementation

Solid Slider is meant to be a lightweight and compact wrapper of Keen-Slider. It exposes helpers to make working with the slider convenient. Note that the when the slider mounts it assumes all children in the el are slides. You can override this functionality by passing in a "selector" value to target the specific slides you'd like to include.

Thie library exports it's own CSS which is the basic Keen-Slider implementation for convenience. If you supply options as an accessor function, the slider will reactively update the configuration so that you don't have to destroy and recreate the slider. As of Keen-Slider 6 plugins are now fully supported. You may supply them as a param in createSlider. Note that plugins are not reactively updated and must be supplied on creation.

Roadmap

  • [x] Create adaptiveHeight plugin
  • [x] Create adaptiveWidth plugin
  • [ ] Add Dots components (to display a row of dots below the slider)
  • [ ] Add slider thumbnail navigation
  • [ ] Add slider loader
  • [ ] Build timepicker component
  • [ ] Create Scroll Wheel component

Changelog

  • 1.0.0 - Initial release
  • 1.0.3 - Changed the exported API to be slightly more flexible.
  • 1.1.1 - Upgraded to Keen-Slider 6 and improved general reactivity.
  • 1.2.5 - Added autoplay plugin and general plugin structure.
  • 1.2.7 - Maybe I should actually export the .css? That'd be a good idea, right? /s
  • 1.2.9 - Updated timer primitive and patched issue with current slide setting from initial options.
  • 1.3.1 - Introduced Slider, SliderProvider and SliderButton for ease.
  • 1.3.2 - Patched issue with initial slide not setting current signal.
  • 1.3.5 - Updated to latest SolidJS version.
  • 1.3.7 - Fixed TS issues updated to latest KeenSlider.
  • 1.3.8 - Updated to Solid 1.5
  • 1.3.9 - Fixed Keen URLs, type issues and truthy error with autoplay (thanks ishanAhuja and ahhshm)
  • 1.3.11 - Upgraded importance dependencies including Solid 1.6
  • 1.3.12 - Patched slider to reactively update on updating children
  • 1.3.13 - Incorporated adaptiveHeight plugin (thanks joeygrable94)
  • 1.3.14 - Patched npm packaging issue (thanks joeygrable94 )
  • 1.3.15 - Updated to Solid 1.7.11
  • 1.3.16 - Updated dependencies and move Solid from dependency to peer
  • 1.3.17 - Added typs definition to exports (thanks ChristophP)

Keen Options API

You can set options to the slider via parameters. Note that there are other hooks available as well. Only a subset of useful methods are exposed via the primitive although you can access the slider instance as well from the exports to use the methods directly.