mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
prevent slider flickers
This commit is contained in:
parent
a812cdcf15
commit
2205ce0c3b
@ -1,4 +1,4 @@
|
|||||||
import { memo, useCallback, useEffect, useState } from 'react';
|
import { memo, useCallback, useEffect, useLayoutEffect, useState } from 'react';
|
||||||
import { Slider } from '@mantine/core';
|
import { Slider } from '@mantine/core';
|
||||||
|
|
||||||
export type ImageWidthProps = {
|
export type ImageWidthProps = {
|
||||||
@ -10,11 +10,11 @@ export type ImageWidthProps = {
|
|||||||
export const NodeWidthResize = memo(({ onChange, value, width }: ImageWidthProps) => {
|
export const NodeWidthResize = memo(({ onChange, value, width }: ImageWidthProps) => {
|
||||||
const [currentValue, setCurrentValue] = useState(value);
|
const [currentValue, setCurrentValue] = useState(value);
|
||||||
|
|
||||||
useEffect(() => {
|
useLayoutEffect(() => {
|
||||||
setCurrentValue(value);
|
setCurrentValue(value);
|
||||||
}, [value]);
|
}, [value]);
|
||||||
|
|
||||||
const handleChange = useCallback(
|
const handleChangeEnd = useCallback(
|
||||||
(newValue: number) => {
|
(newValue: number) => {
|
||||||
onChange(newValue);
|
onChange(newValue);
|
||||||
},
|
},
|
||||||
@ -27,7 +27,7 @@ export const NodeWidthResize = memo(({ onChange, value, width }: ImageWidthProps
|
|||||||
min={10}
|
min={10}
|
||||||
value={currentValue}
|
value={currentValue}
|
||||||
onChange={setCurrentValue}
|
onChange={setCurrentValue}
|
||||||
onChangeEnd={handleChange}
|
onChangeEnd={handleChangeEnd}
|
||||||
w={width || 100}
|
w={width || 100}
|
||||||
label={(value) => `${value}%`}
|
label={(value) => `${value}%`}
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user