mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-11 02:38:49 +00:00
246 lines
7.3 KiB
Svelte
246 lines
7.3 KiB
Svelte
<!--
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
-->
|
|
<script lang="ts">
|
|
import { afterUpdate, onDestroy, onMount } from 'svelte'
|
|
|
|
export let padding: boolean = false
|
|
export let autoscroll: boolean = false
|
|
// export let correctPadding: number = 0
|
|
export let bottomStart: boolean = false
|
|
export let tableFade: boolean = false
|
|
|
|
let mask: 'top' | 'bottom' | 'both' | 'none' = 'bottom'
|
|
|
|
let divScroll: HTMLElement
|
|
let divBox: HTMLElement
|
|
let divBar: HTMLElement
|
|
let divTrack: HTMLElement
|
|
let isScrolling: boolean = false
|
|
let dY: number
|
|
let belowContent: number | undefined = undefined
|
|
let beforeContent: number | undefined = undefined
|
|
let scrolling: boolean = autoscroll
|
|
let firstScroll: boolean = autoscroll
|
|
|
|
const checkBar = (): void => {
|
|
if (divBar && divScroll) {
|
|
const proc = (divScroll.clientHeight / divScroll.scrollHeight) * 100
|
|
const procScroll = (divScroll.clientHeight - 4) / 100
|
|
const procTop = divScroll.scrollTop / divScroll.scrollHeight
|
|
divBar.style.height = procScroll * proc + 'px'
|
|
divBar.style.top = procTop * (divScroll.clientHeight - 4) + 2 + 'px'
|
|
if (mask === 'none') divBar.style.visibility = 'hidden'
|
|
else divBar.style.visibility = 'visible'
|
|
if (divScroll.clientHeight >= divScroll.scrollHeight) divBar.style.visibility = 'hidden'
|
|
}
|
|
}
|
|
|
|
const onScroll = (event: MouseEvent): void => {
|
|
scrolling = false
|
|
if (isScrolling && divBar && divScroll) {
|
|
const rectScroll = divScroll.getBoundingClientRect()
|
|
let Y = event.clientY - dY
|
|
if (Y < rectScroll.top + 2) Y = rectScroll.top + 2
|
|
if (Y > rectScroll.bottom - divBar.clientHeight - 2) Y = rectScroll.bottom - divBar.clientHeight - 2
|
|
divBar.style.top = Y - rectScroll.y + 'px'
|
|
const topBar = Y - rectScroll.y - 2
|
|
const heightScroll = rectScroll.height - 4 - divBar.clientHeight
|
|
const procBar = topBar / heightScroll
|
|
divScroll.scrollTop = (divScroll.scrollHeight - divScroll.clientHeight) * procBar
|
|
}
|
|
}
|
|
const onScrollEnd = (event: MouseEvent): void => {
|
|
const el: HTMLElement = event.currentTarget as HTMLElement
|
|
if (el && isScrolling) {
|
|
document.removeEventListener('mousemove', onScroll)
|
|
document.body.style.userSelect = 'auto'
|
|
document.body.style.webkitUserSelect = 'auto'
|
|
}
|
|
document.removeEventListener('mouseup', onScrollEnd)
|
|
isScrolling = false
|
|
}
|
|
const onScrollStart = (event: MouseEvent): void => {
|
|
scrolling = false
|
|
const el: HTMLElement = event.currentTarget as HTMLElement
|
|
if (el && divScroll) {
|
|
dY = event.clientY - el.getBoundingClientRect().y
|
|
document.addEventListener('mouseup', onScrollEnd)
|
|
document.addEventListener('mousemove', onScroll)
|
|
document.body.style.userSelect = 'none'
|
|
document.body.style.webkitUserSelect = 'none'
|
|
isScrolling = true
|
|
}
|
|
}
|
|
|
|
const checkFade = (): void => {
|
|
if (divScroll) {
|
|
beforeContent = divScroll.scrollTop
|
|
belowContent = divScroll.scrollHeight - divScroll.clientHeight - beforeContent
|
|
if (beforeContent > 1 && belowContent > 1) mask = 'both'
|
|
else if (beforeContent > 1) mask = 'bottom'
|
|
else if (belowContent > 1) mask = 'top'
|
|
else mask = 'none'
|
|
|
|
if (autoscroll) {
|
|
if (scrolling && divScroll.scrollHeight - divScroll.clientHeight - divScroll.scrollTop > 10 && !firstScroll) {
|
|
scrolling = false
|
|
}
|
|
if (!scrolling && belowContent && belowContent <= 10) scrolling = true
|
|
}
|
|
}
|
|
if (!isScrolling) checkBar()
|
|
}
|
|
|
|
const observer = new IntersectionObserver(() => checkFade(), { root: null, threshold: 0.1 })
|
|
|
|
const scrollDown = (): void => {
|
|
divScroll.scrollTop = divScroll.scrollHeight - divHeight
|
|
}
|
|
$: if (scrolling && belowContent && belowContent > 10) scrollDown()
|
|
onMount(() => {
|
|
if (divScroll && divBox) {
|
|
divScroll.addEventListener('scroll', checkFade)
|
|
const tempEl = divBox.querySelector('*') as HTMLElement
|
|
if (tempEl) observer.observe(tempEl)
|
|
if (autoscroll && scrolling) {
|
|
scrollDown()
|
|
firstScroll = false
|
|
}
|
|
checkFade()
|
|
}
|
|
})
|
|
onDestroy(() => {
|
|
if (divScroll) divScroll.removeEventListener('scroll', checkFade)
|
|
})
|
|
afterUpdate(() => {
|
|
if (divScroll && divBox) {
|
|
const tempEl = divBox.querySelector('*') as HTMLElement
|
|
if (tempEl) observer.observe(tempEl)
|
|
if (autoscroll && scrolling) scrollDown()
|
|
checkFade()
|
|
}
|
|
})
|
|
|
|
let divHeight: number
|
|
const _resize = (): void => checkFade()
|
|
</script>
|
|
|
|
<svelte:window on:resize={_resize} />
|
|
<div class="scroller-container" class:bottomStart>
|
|
<div
|
|
bind:this={divScroll}
|
|
bind:clientHeight={divHeight}
|
|
class="scroll relative"
|
|
class:tableFade
|
|
class:antiNav-topFade={mask === 'top'}
|
|
class:antiNav-bottomFade={mask === 'bottom'}
|
|
class:antiNav-bothFade={mask === 'both'}
|
|
class:antiNav-noneFade={mask === 'none'}
|
|
>
|
|
<div bind:this={divBox} class="box" class:p-10={padding}>
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
<div class="bar" class:hovered={isScrolling} bind:this={divBar} on:mousedown={onScrollStart} />
|
|
<div class="track" class:hovered={isScrolling} bind:this={divTrack} />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.scroller-container {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
}
|
|
.scroll {
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
height: max-content;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
|
|
&::-webkit-scrollbar:vertical {
|
|
width: 0;
|
|
}
|
|
}
|
|
.box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
height: 100%;
|
|
}
|
|
.scroller-container.bottomStart {
|
|
justify-content: flex-end;
|
|
.scroll {
|
|
flex-grow: 0;
|
|
height: min-content;
|
|
.box {
|
|
height: min-content;
|
|
}
|
|
}
|
|
}
|
|
|
|
.track {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 2px;
|
|
bottom: 2px;
|
|
right: 2px;
|
|
width: 8px;
|
|
transform-origin: center;
|
|
transform: scaleX(0);
|
|
transition: all 0.1s ease-in-out;
|
|
background-color: var(--scrollbar-track-color);
|
|
border-radius: 0.5rem;
|
|
}
|
|
.bar {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 2px;
|
|
right: 2px;
|
|
width: 8px;
|
|
min-height: 2rem;
|
|
max-height: calc(100% - 12px);
|
|
transform-origin: center;
|
|
transform: scaleX(0.5);
|
|
background-color: var(--scrollbar-bar-color);
|
|
border-radius: 0.125rem;
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
transition: all 0.1s;
|
|
|
|
&:hover,
|
|
&.hovered {
|
|
background-color: var(--scrollbar-bar-hover);
|
|
transform: scaleX(1);
|
|
border-radius: 0.25rem;
|
|
opacity: 1;
|
|
box-shadow: 0 0 1px black;
|
|
|
|
& + .track {
|
|
visibility: visible;
|
|
right: 2px;
|
|
transform: scaleX(1);
|
|
}
|
|
}
|
|
&.hovered {
|
|
transition: none;
|
|
}
|
|
}
|
|
</style>
|