539 lines
13 KiB
Svelte
539 lines
13 KiB
Svelte
<script>
|
|
import { onDestroy, onMount, tick, createEventDispatcher } from 'svelte'
|
|
import { createStore } from '../../store'
|
|
import Dots from '../Dots/Dots.svelte'
|
|
import Arrow from '../Arrow/Arrow.svelte'
|
|
import Progress from '../Progress/Progress.svelte'
|
|
import { NEXT, PREV } from '../../direction'
|
|
import { swipeable } from '../../actions/swipeable'
|
|
import { hoverable } from '../../actions/hoverable'
|
|
import { tappable } from '../../actions/tappable'
|
|
import {
|
|
addResizeEventListener,
|
|
removeResizeEventListener
|
|
} from '../../utils/event'
|
|
import {
|
|
getAdjacentIndexes,
|
|
getClones,
|
|
applyClones,
|
|
getPageSizes,
|
|
applyPageSizes,
|
|
getCurrentPageIndexWithoutClones,
|
|
getPagesCountWithoutClones,
|
|
getClonesCount,
|
|
getPartialPageSize,
|
|
getScrollsCount,
|
|
getPageIndexByScrollIndex,
|
|
} from '../../utils/page'
|
|
import { get } from '../../utils/object'
|
|
import { ProgressManager } from '../../utils/ProgressManager'
|
|
import { wait } from '../../utils/interval'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
const autoplayDirectionFnDescription = {
|
|
[NEXT]: async () => await progressManager.start(showNextPage),
|
|
[PREV]: async () => await progressManager.start(showPrevPage)
|
|
}
|
|
|
|
const directionFnDescription = {
|
|
[NEXT]: showNextPage,
|
|
[PREV]: showPrevPage
|
|
}
|
|
|
|
/**
|
|
* CSS animation timing function
|
|
* examples: 'linear', 'steps(5, end)', 'cubic-bezier(0.1, -0.6, 0.2, 0)'
|
|
*/
|
|
export let timingFunction = 'ease-in-out';
|
|
|
|
/**
|
|
* Enable Next/Prev arrows
|
|
*/
|
|
export let arrows = true
|
|
|
|
/**
|
|
* Infinite looping
|
|
*/
|
|
export let infinite = true
|
|
|
|
/**
|
|
* Page to start on
|
|
*/
|
|
export let initialPageIndex = 0
|
|
$: initialScrollIndex = initialPageIndex
|
|
|
|
/**
|
|
* Transition duration (ms)
|
|
*/
|
|
export let duration = 500
|
|
let _duration = duration
|
|
|
|
/**
|
|
* Enables autoplay of pages
|
|
*/
|
|
export let autoplay = false
|
|
$: {
|
|
applyAutoplayIfNeeded(autoplay)
|
|
}
|
|
|
|
/**
|
|
* Autoplay change interval (ms)
|
|
*/
|
|
export let autoplayDuration = 3000
|
|
|
|
/**
|
|
* Autoplay change direction ('next', 'prev')
|
|
*/
|
|
export let autoplayDirection = NEXT
|
|
|
|
/**
|
|
* Pause autoplay on focus
|
|
*/
|
|
export let pauseOnFocus = false
|
|
|
|
/**
|
|
* Show autoplay duration progress indicator
|
|
*/
|
|
export let autoplayProgressVisible = false
|
|
|
|
/**
|
|
* Current page indicator dots
|
|
*/
|
|
export let dots = true
|
|
|
|
/**
|
|
* Enable swiping
|
|
*/
|
|
export let swiping = true
|
|
|
|
/**
|
|
* Number of pages to show
|
|
*/
|
|
export let pagesToShow = 1
|
|
|
|
/**
|
|
* Number of pages to scroll
|
|
*/
|
|
export let pagesToScroll = 1
|
|
|
|
export async function goTo(pageIndex, options) {
|
|
const scrollIndex = pageIndex
|
|
const animated = get(options, 'animated', true)
|
|
if (typeof scrollIndex !== 'number') {
|
|
throw new Error('pageIndex should be a number')
|
|
}
|
|
await showPage(getPageIndexByScrollIndex({
|
|
infinite,
|
|
scrollIndex,
|
|
clonesCountHead: clonesCount.head,
|
|
pagesToScroll,
|
|
pagesCount,
|
|
pagesToShow,
|
|
}), { animated })
|
|
}
|
|
|
|
export async function goToPrev(options) {
|
|
const animated = get(options, 'animated', true)
|
|
await showPrevPage({ animated })
|
|
}
|
|
|
|
export async function goToNext(options) {
|
|
const animated = get(options, 'animated', true)
|
|
await showNextPage({ animated })
|
|
}
|
|
|
|
let store = createStore()
|
|
|
|
$: clonesCount = getClonesCount({
|
|
infinite,
|
|
pagesToShow,
|
|
partialPageSize,
|
|
})
|
|
|
|
let currentPageIndex = 0
|
|
$: currentPageIndexWithoutClones = getCurrentPageIndexWithoutClones({
|
|
currentPageIndex,
|
|
pagesCount,
|
|
headClonesCount: clonesCount.head,
|
|
infinite,
|
|
pagesToScroll,
|
|
})
|
|
$: dispatch('pageChange', currentPageIndexWithoutClones)
|
|
|
|
let pagesCount = 0
|
|
let pagesCountWithoutClones = 1
|
|
$: scrollsCount = getScrollsCount({
|
|
infinite,
|
|
pagesCountWithoutClones,
|
|
pagesToScroll,
|
|
})
|
|
|
|
let partialPageSize = 0
|
|
|
|
let pagesWindowWidth = 0
|
|
let pageWidth = 0
|
|
let offset = 0
|
|
let pageWindowElement
|
|
let pagesContainer
|
|
let focused = false
|
|
|
|
let progressValue
|
|
const progressManager = new ProgressManager({
|
|
autoplayDuration,
|
|
onProgressValueChange: (value) => {
|
|
progressValue = 1 - value
|
|
}
|
|
})
|
|
|
|
$: {
|
|
if (pauseOnFocus) {
|
|
if (focused) {
|
|
progressManager.pause()
|
|
} else {
|
|
progressManager.resume()
|
|
}
|
|
}
|
|
}
|
|
|
|
// used for lazy loading images, preloaded only current, adjacent and cloanable images
|
|
$: loaded = getAdjacentIndexes({
|
|
pageIndex: currentPageIndexWithoutClones,
|
|
pagesCount: pagesCountWithoutClones,
|
|
infinite,
|
|
})
|
|
|
|
function initPageSizes() {
|
|
const sizes = getPageSizes({
|
|
pageWindowElement,
|
|
pagesContainerChildren: pagesContainer.children,
|
|
pagesToShow,
|
|
})
|
|
applyPageSizes({
|
|
pagesContainerChildren: pagesContainer.children,
|
|
pageWidth: sizes.pageWidth,
|
|
})
|
|
|
|
pagesWindowWidth = sizes.pagesWindowWidth
|
|
pageWidth = sizes.pageWidth
|
|
pagesCount = sizes.pagesCount
|
|
|
|
offsetPage({
|
|
animated: false,
|
|
})
|
|
}
|
|
|
|
function addClones() {
|
|
const {
|
|
clonesToAppend,
|
|
clonesToPrepend,
|
|
} = getClones({
|
|
headClonesCount: clonesCount.head,
|
|
tailClonesCount: clonesCount.tail,
|
|
pagesContainerChildren: pagesContainer.children,
|
|
})
|
|
applyClones({
|
|
pagesContainer,
|
|
clonesToAppend,
|
|
clonesToPrepend,
|
|
})
|
|
}
|
|
|
|
async function applyAutoplayIfNeeded(autoplay) {
|
|
// prevent progress change if not infinite for first and last page
|
|
if (
|
|
!infinite && (
|
|
(autoplayDirection === NEXT && currentPageIndex === pagesCount - 1) ||
|
|
(autoplayDirection === PREV && currentPageIndex === 0)
|
|
)
|
|
) {
|
|
progressManager.reset()
|
|
return
|
|
}
|
|
|
|
if (autoplay) {
|
|
await autoplayDirectionFnDescription[autoplayDirection]()
|
|
}
|
|
}
|
|
|
|
let cleanupFns = []
|
|
|
|
onMount(() => {
|
|
(async () => {
|
|
await tick()
|
|
cleanupFns.push(store.subscribe(value => {
|
|
currentPageIndex = value.currentPageIndex
|
|
}))
|
|
cleanupFns.push(() => progressManager.reset())
|
|
if (pagesContainer && pageWindowElement) {
|
|
pagesCountWithoutClones = pagesContainer.children.length
|
|
|
|
partialPageSize = getPartialPageSize({
|
|
pagesToScroll,
|
|
pagesToShow,
|
|
pagesCountWithoutClones,
|
|
})
|
|
// load first and last child to clone them
|
|
// TODO: update
|
|
loaded = [0, pagesContainer.children.length - 1]
|
|
await tick()
|
|
infinite && addClones()
|
|
|
|
initPageSizes()
|
|
|
|
// TODO: validate initialScrollIndex
|
|
store.init(getPageIndexByScrollIndex({
|
|
infinite,
|
|
scrollIndex: initialScrollIndex,
|
|
clonesCountHead: clonesCount.head,
|
|
pagesToScroll,
|
|
pagesCount,
|
|
pagesToShow,
|
|
}))
|
|
}
|
|
|
|
addResizeEventListener(initPageSizes)
|
|
})()
|
|
})
|
|
|
|
onDestroy(() => {
|
|
removeResizeEventListener(initPageSizes)
|
|
cleanupFns.filter(fn => fn && typeof fn === 'function').forEach(fn => fn())
|
|
})
|
|
|
|
async function handlePageChange(pageIndex) {
|
|
await showPage(getPageIndexByScrollIndex({
|
|
infinite,
|
|
scrollIndex: pageIndex,
|
|
clonesCountHead: clonesCount.head,
|
|
pagesToScroll,
|
|
pagesCount,
|
|
pagesToShow,
|
|
}))
|
|
}
|
|
|
|
function offsetPage(options) {
|
|
const animated = get(options, 'animated', true)
|
|
return new Promise((resolve) => {
|
|
// _duration is an offset animation time
|
|
_duration = animated ? duration : 0
|
|
offset = -currentPageIndex * pageWidth
|
|
setTimeout(() => {
|
|
resolve()
|
|
}, _duration)
|
|
})
|
|
}
|
|
|
|
// makes delayed jump to 1st or last element
|
|
async function jumpIfNeeded() {
|
|
let jumped = false
|
|
if (infinite) {
|
|
if (currentPageIndex === 0) {
|
|
await showPage(pagesCount - clonesCount.total, { animated: false })
|
|
jumped = true
|
|
} else if (currentPageIndex === pagesCount - clonesCount.tail) {
|
|
await showPage(clonesCount.head, { animated: false })
|
|
jumped = true
|
|
}
|
|
}
|
|
return jumped
|
|
}
|
|
|
|
// Disable page change while animation is in progress
|
|
let disabled = false
|
|
async function changePage(updateStoreFn, options) {
|
|
progressManager.reset()
|
|
if (disabled) return
|
|
disabled = true
|
|
|
|
updateStoreFn()
|
|
await offsetPage({ animated: get(options, 'animated', true) })
|
|
disabled = false
|
|
|
|
const jumped = await jumpIfNeeded()
|
|
!jumped && applyAutoplayIfNeeded(autoplay) // no need to wait it finishes
|
|
}
|
|
|
|
async function showPage(pageIndex, options) {
|
|
await changePage(
|
|
() => store.moveToPage({
|
|
pageIndex,
|
|
pagesCount,
|
|
}),
|
|
options
|
|
)
|
|
}
|
|
async function showPrevPage(options) {
|
|
// TODO: return if disabled
|
|
await changePage(
|
|
() => store.prev({
|
|
infinite,
|
|
pagesCount,
|
|
pagesToScroll,
|
|
}),
|
|
options,
|
|
)
|
|
}
|
|
async function showNextPage(options) {
|
|
// TODO: return if disabled
|
|
await changePage(
|
|
() => store.next({
|
|
infinite,
|
|
pagesCount,
|
|
pagesToScroll,
|
|
clonesCountTail: clonesCount.tail,
|
|
}),
|
|
options,
|
|
)
|
|
}
|
|
|
|
// gestures
|
|
function handleSwipeStart() {
|
|
if (!swiping) return
|
|
_duration = 0
|
|
}
|
|
async function handleSwipeThresholdReached(event) {
|
|
if (!swiping) return
|
|
await directionFnDescription[event.detail.direction]()
|
|
}
|
|
function handleSwipeMove(event) {
|
|
if (!swiping) return
|
|
offset += event.detail.dx
|
|
}
|
|
function handleSwipeEnd() {
|
|
if (!swiping) return
|
|
showPage(currentPageIndex)
|
|
}
|
|
async function handleSwipeFailed() {
|
|
if (!swiping) return
|
|
await offsetPage({ animated: true })
|
|
}
|
|
|
|
function handleHovered(event) {
|
|
focused = event.detail.value
|
|
}
|
|
function handleTapped(event) {
|
|
focused = !focused
|
|
}
|
|
</script>
|
|
|
|
<div class="sc-carousel__carousel-container">
|
|
<div class="sc-carousel__content-container">
|
|
{#if arrows}
|
|
<slot name="prev" {showPrevPage}>
|
|
<div class="sc-carousel__arrow-container">
|
|
<Arrow
|
|
direction="prev"
|
|
disabled={!infinite && currentPageIndexWithoutClones === 0}
|
|
on:click={showPrevPage}
|
|
/>
|
|
</div>
|
|
</slot>
|
|
{/if}
|
|
<div
|
|
class="sc-carousel__pages-window"
|
|
bind:this={pageWindowElement}
|
|
|
|
use:hoverable
|
|
on:hovered={handleHovered}
|
|
|
|
use:tappable
|
|
on:tapped={handleTapped}
|
|
>
|
|
<div
|
|
class="sc-carousel__pages-container"
|
|
use:swipeable="{{ thresholdProvider: () => pagesWindowWidth/3 }}"
|
|
on:swipeStart={handleSwipeStart}
|
|
on:swipeMove={handleSwipeMove}
|
|
on:swipeEnd={handleSwipeEnd}
|
|
on:swipeFailed={handleSwipeFailed}
|
|
on:swipeThresholdReached={handleSwipeThresholdReached}
|
|
style="
|
|
transform: translateX({offset}px);
|
|
transition-duration: {_duration}ms;
|
|
transition-timing-function: {timingFunction};
|
|
"
|
|
bind:this={pagesContainer}
|
|
>
|
|
<slot {loaded}></slot>
|
|
</div>
|
|
{#if autoplayProgressVisible}
|
|
<div class="sc-carousel-progress__container">
|
|
<Progress value={progressValue} />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{#if arrows}
|
|
<slot name="next" {showNextPage}>
|
|
<div class="sc-carousel__arrow-container">
|
|
<Arrow
|
|
direction="next"
|
|
disabled={!infinite && currentPageIndexWithoutClones === scrollsCount - 1}
|
|
on:click={showNextPage}
|
|
/>
|
|
</div>
|
|
</slot>
|
|
{/if}
|
|
</div>
|
|
{#if dots}
|
|
<slot
|
|
name="dots"
|
|
currentPageIndex={currentPageIndexWithoutClones}
|
|
pagesCount={pagesCountWithoutClones}
|
|
showPage={handlePageChange}
|
|
>
|
|
<Dots
|
|
pagesCount={scrollsCount}
|
|
currentPageIndex={currentPageIndexWithoutClones}
|
|
on:pageChange={event => handlePageChange(event.detail)}
|
|
></Dots>
|
|
</slot>
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
:root {
|
|
--sc-color-rgb-light-50p: rgba(93, 93, 93, 0.5);
|
|
--sc-color-rgb-light: #5d5d5d;
|
|
--sc-color-hex-dark-50p: rgba(30, 30, 30, 0.5);
|
|
--sc-color-hex-dark: #1e1e1e;
|
|
}
|
|
.sc-carousel__carousel-container {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
.sc-carousel__content-container {
|
|
position: relative;
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
.sc-carousel__pages-window {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
.sc-carousel__pages-container {
|
|
width: 100%;
|
|
display: flex; /* to put child elements in one row */
|
|
transition-property: transform;
|
|
}
|
|
.sc-carousel__arrow-container {
|
|
padding: 5px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.sc-carousel-progress__container {
|
|
width: 100%;
|
|
height: 5px;
|
|
background-color: var(--sc-color-rgb-light-50p);
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
</style>
|