Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kidjp85/react-id-swiper

A library to use idangerous Swiper as a ReactJs component which allows Swiper's modules custom build
https://github.com/kidjp85/react-id-swiper

idangerous react-carousel react-id-swiper react-native-swiper react-slider react-slider-component react-swiper swiper swiper-component

Last synced: about 1 hour ago
JSON representation

A library to use idangerous Swiper as a ReactJs component which allows Swiper's modules custom build

Awesome Lists containing this project

README

        

[![npm Version](https://img.shields.io/npm/v/react-id-swiper.svg?style=flat-square)](https://npmjs.org/package/react-id-swiper)
[![Coverage Status](https://img.shields.io/codecov/c/github/moroshko/react-autosuggest/master.svg?style=flat-square)](https://codecov.io/gh/kidjp85/react-id-swiper)
[![Weekly download](https://img.shields.io/npm/dw/react-id-swiper.svg?style=flat-square)](https://npmjs.org/package/react-id-swiper)
[![Total Downloads](https://img.shields.io/npm/dt/react-id-swiper.svg?style=flat-square)](https://npmjs.org/package/react-id-swiper)
[![Build Status](https://travis-ci.org/kidjp85/react-id-swiper.svg?branch=master)](https://travis-ci.org/kidjp85/react-id-swiper)

[![Package Quality](http://npm.packagequality.com/badge/react-id-swiper.png)](http://packagequality.com/#?package=react-id-swiper)

react-id-swiper ( Newest version 4.0.0 )
========================================
> A library to use [Swiper](http://www.idangero.us/swiper/get-started/) as a ReactJs component

![Demo](https://media.giphy.com/media/mByDrCTcJch4HVhmfi/giphy.gif)

What is Swiper?
===============

Swiper - is the free and most modern mobile touch slider with hardware accelerated transitions and amazing native behavior.

It is intended to be used in mobile websites, mobile web apps, and mobile native/hybrid apps. Designed mostly for iOS, but also works great on latest Android, Windows Phone 8 and modern Desktop browsers.

Swiper is not compatible with all platforms, it is a modern touch slider which is focused only on modern apps/platforms to bring the best experience and simplicity. Swiper does work well with [Gatsby](https://www.gatsbyjs.org/).

# Props

| Name | Type | Default value | Description |
| ------------------ | -------- | ---------------- | -------------------------------------------------|
| ContainerEl | String | 'div' | Element type for container |
| containerClass | String | swiper-container | Swiper container class name |
| WrapperEl | String | 'div' | Element type for wrapper |
| wrapperClass | String | swiper-wrapper | Swiper wrapper class name |
| slideClass | String | swiper-slide | Swiper slide class name |
| shouldSwiperUpdate | Boolean | false | Update swiper when component is updated |
| rebuildOnUpdate | Boolean | false | Rebuild swiper when component is updated |
| noSwiping | Boolean | false | Disable swiping by condition |
| activeSlideKey | String | null | Initial slide index |
| renderPrevButton | function | | Render props function for prev button |
| renderNextButton | function | | Render props function for next button |
| renderScrollbar | function | | Render props function for scrollbar |
| renderPagination | function | | Render props function for pagination |
| renderParallax | function | | Render props function for parallax |

**If you want to use Swiper custom build to reduce bundle size, you need to use extra props below.**

# Custom build extra props

| Name | Type | Default value | Description |
| ------------------ | -------- | ---------------- | -------------------------------------------------|
| Swiper | Class | | Swiper class |
| modules | array | | Array of Swiper necessary modules |

**NOTE:**

* You can also use Swiper's original params too. Swiper API documentation [HERE](http://idangero.us/swiper/api/)
* Find more info about Swiper custom build [HERE](https://idangero.us/swiper/api/#custom-build)
* [<= 3.x documentation](docs/3.x-document.md)

# Documentation

- [Get Started](https://react-id-swiper.ashernguyen.site/doc/get-started)
- [API](https://react-id-swiper.ashernguyen.site/doc/api)
- [Custom Build](https://react-id-swiper.ashernguyen.site/doc/custom-build)
- [Examples](https://react-id-swiper.ashernguyen.site/example/default)

# Installation and setup

- From version 2.0.0, it requires **React & ReactDOM ver >=16.8.0** to use [Hooks](https://reactjs.org/docs/hooks-intro.html)
- From version 2.4.0, it requires **Swiper ver >= 5.0.0**

## Npm package

> By npm

```bash
npm install --save react-id-swiper@latest swiper@latest
```

> By Yarn

```bash
yarn add react-id-swiper@latest swiper@latest
```

## CDN

```html

```

```html

```

# Styling

**Swiper stylesheet file is required**

Use Swiper stylesheet file from CDN

```html

```

```html

```

**Or from Swiper package**

You should import directly from `Swiper` package which supports css, scss and less

> css

```javascript
import 'swiper/css/swiper.css'
```

> scss

```javascript
import 'swiper/swiper.scss'
```

> less

```javascript
import 'swiper/swiper.less'
```

# Examples

## Live Examples

[Codesandbox Live Examples](docs/live-examples.md)

## Default

```javascript
import React from 'react';
import Swiper from 'react-id-swiper';
import 'swiper/css/swiper.css';

const SimpleSwiper = () => (

Slide 1

Slide 2

Slide 3

Slide 4

Slide 5


)

export default SimpleSwiper;
```

## Using params

```javascript
import React from 'react';
import Swiper from 'react-id-swiper';

const SimpleSwiperWithParams = () => {
const params = {
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: true
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
},
spaceBetween: 30
}

return(

Slide 1

Slide 2

Slide 3

Slide 4

Slide 5


)
}

export default SimpleSwiperWithParams;
```

## Manipulating swiper from outside swiper component

```javascript
import React, { useRef } from 'react';
import Swiper from 'react-id-swiper';

const ManipulatingSwiper = () => {
const ref = useRef(null);

const ref = useRef(null);

const goNext = () => {
if (ref.current !== null && ref.current.swiper !== null) {
ref.current.swiper.slideNext();
}
};

const goPrev = () => {
if (ref.current !== null && ref.current.swiper !== null) {
ref.current.swiper.slidePrev();
}
};

return (



Slide 1

Slide 2

Slide 3

Slide 4

Slide 5


Prev
Next

);
};

export default ManipulatingSwiper;
```

## Custom build Swiper

You can find the [WORKING DEMO REPO HERE](https://github.com/kidjp85/react-id-swiper-custom-build)

```javascript
import React from 'react';
import ReactIdSwiperCustom from 'react-id-swiper/lib/ReactIdSwiper.custom';
import { Swiper, Navigation, Pagination } from 'swiper/js/swiper.esm';

const CustomBuildSwiper = () => {
const params = {
// Provide Swiper class as props
Swiper,
// Add modules you need
modules: [Navigation, Pagination],
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: true
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
},
spaceBetween: 30
}

return(

Slide 1

Slide 2

Slide 3

Slide 4

Slide 5


)
}

export default CustomBuildSwiper;
```

**NOTE**:

* If you use Webpack & Babel you need to setup Babel loader config in `webpack.config.js` like below:

```javascript
module: {
rules: [
{
exclude: [/node_modules\/(?!(swiper|dom7)\/).*/, /\.test\.js(x)?$/],
test: /\.js(x)?$/,
use: [{ loader: 'babel-loader' }],
}
],
}
```

## Adding customized css classes

```javascript
const params = {
pagination: {
el: '.swiper-pagination.customized-swiper-pagination',
}, // Add your class name for pagination container
navigation: {
nextEl: '.swiper-button-next.customized-swiper-button-next', // Add your class name for next button
prevEl: '.swiper-button-prev.customized-swiper-button-prev' // Add your class name for prev button
},
containerClass: 'customized-swiper-container' // Replace swiper-container with customized-swiper-container
}
```

## Adding customized components

For customized rendering to work, you have to use same classname with params el.

```javascript
const params = {
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
},
renderPrevButton: () => Prev,
renderNextButton: () => Next,
}
```

## Workable slides

Each slide should be wrapped by HTML element

> BAD CODE :thumbsdown:

```javascript

Slide content

```

> GOOD CODE :thumbsup:

```javascript

Slide content

```

# Bug report

**Please use the prepared Codesanbox below to reproduce your issue. Thank you!!**

[![Edit ReactIdSwiper - DEMO](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/p8j61y7j7?fontsize=14)

# Authors

* **Asher Nguyen** - *Initial work* - [Asher Nguyen](https://github.com/kidjp85)

See also the list of [contributors](https://github.com/kidjp85/react-id-swiper/contributors) who participated in this project.

# Buy me a coffee

Buy Me A Coffee

# License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details