From f0ea1ec904e5b334cb7a385f45371cdf94d7cb9c Mon Sep 17 00:00:00 2001 From: al Date: Fri, 23 Aug 2024 19:03:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=96=84=E7=AD=9B=E9=80=89=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/MySlider/index.jsx | 140 +++++++++++++++++++++++++++------- screeens/My/index.jsx | 4 +- screeens/Search/index.jsx | 90 +++++++++++++++++++--- 3 files changed, 195 insertions(+), 39 deletions(-) diff --git a/components/MySlider/index.jsx b/components/MySlider/index.jsx index bfb5554..03699cd 100644 --- a/components/MySlider/index.jsx +++ b/components/MySlider/index.jsx @@ -16,7 +16,7 @@ export default function MySlider({ unit, lable, height = 60, - width = Dimensions.get("window").width - 48, + width = Dimensions.get("window").width - 44, onChange, onAfterChange = () => {}, defaultValue = 0, @@ -42,6 +42,8 @@ export default function MySlider({ const tailwind = useTailwind(); const leftWatcher = useRef(null); const rightWatcher = useRef(null); + const currentLeftValue = useRef(leftValue); + const currentRightValue = useRef(rightValue); useEffect(() => { leftWatcher.current = PanResponder.create({ // 建立监视器 @@ -61,12 +63,16 @@ export default function MySlider({ }, []); useEffect(() => { // if(itemKey) - const currentLeftProcess = 0; + const currentLeftProcess = + (stepValues.indexOf(leftValue) * step - lower_bound) / + (upper_bound - lower_bound); const currentRightProcess = (stepValues.indexOf(rightValue) * step - lower_bound) / (upper_bound - lower_bound); setLeftProcess(currentLeftProcess); setRightProcess(currentRightProcess); + currentLeftValue.current = leftValue; + currentRightValue.current = rightValue; }, [leftValue, rightValue]); // useEffect(() => { @@ -114,24 +120,35 @@ export default function MySlider({ const newProcess = Math.round(newValue) / (upper_bound - lower_bound); setStepNum(stepNum + 1); if (process !== newProcess) { + const currentRightProcess = + (stepValues.indexOf(currentRightValue.current) * step - lower_bound) / + (upper_bound - lower_bound); if (direction == "left") { - if (newProcess < rightProcess) { + if (newProcess < currentRightProcess) { setLeftProcess(newProcess); setStepNum((old) => old + 1); onChange({ - lower_bound: Math.round( - leftProcess * (upper_bound - lower_bound) + lower_bound - ), - upper_bound: rightValue, + lower_bound: + stepValues[ + Math.round( + (newProcess * (upper_bound - lower_bound) + lower_bound) / + step + ) + ], + upper_bound: currentRightValue.current, }); } } else { - if (newProcess > leftProcess) { + const currentLeftProcess = + (stepValues.indexOf(currentLeftValue.current) * step - + lower_bound) / + (upper_bound - lower_bound); + if (newProcess > currentLeftProcess) { // rightProcess.current = newProcess; setRightProcess(newProcess); setStepNum((old) => old - 1); onChange({ - lower_bound: leftValue, + lower_bound: currentLeftValue.current, upper_bound: stepValues[ Math.round( @@ -167,6 +184,38 @@ export default function MySlider({ }} > + {/* 格子步数 */} + {hasInfinity && ( + + {stepValues.map((item, index) => ( + = leftValue && item <= rightValue + ? minimumTrackTintColor + : maximumTrackTintColor, + width: thumbSize / 2, + height: thumbSize / 2, + borderRadius: 50, + }} + > + ))} + + )} + {/* 左侧控件 */} + > + + + {/* 右侧控件 */} + > + + + - {Math.round(leftProcess * (upper_bound - lower_bound) + lower_bound)} + {hasInfinity && leftProcess == 1 + ? ">" + upper_bound + : stepValues[ + Math.round( + (leftProcess * (upper_bound - lower_bound) + lower_bound) / + step + ) + ]} - + { setIsFilterVisible({ @@ -736,6 +742,12 @@ export default function Search({ navigation, route }) { > + setIsFilterVisible({ + zone_admission_price: false, + comprehensive: false, + }) + } backdropStyle={{ backgroundColor: "#0000004d" }} scrollViewProps={{ contentContainerStyle: { @@ -755,12 +767,13 @@ export default function Search({ navigation, route }) { }} isVisible={isFilterVisible.comprehensive} style={{ - paddingTop: 110, + paddingTop: Platform.OS != "ios" ? 55 : 110, }} > {filters.map((item, index) => ( ({ ...old, weight: value })); } }} - maximumTrackTintColor="#ff75c81a" + maximumTrackTintColor="#382435" minimumTrackTintColor="#ff75c8" processHeight={5} unit={item.unit} @@ -870,9 +883,34 @@ export default function Search({ navigation, route }) { ))} + {Platform.OS != "ios" && ( + + + setIsFilterVisible({ + zone_admission_price: false, + comprehensive: false, + }) + } + /> + + )} {isMember == 1 && ( + setIsFilterVisible({ + zone_admission_price: false, + comprehensive: false, + }) + } scrollViewProps={{ contentContainerStyle: { // paddingTop: 20, @@ -953,7 +998,7 @@ export default function Search({ navigation, route }) { }} isVisible={isFilterVisible.zone_admission_price} style={{ - paddingTop: 110, + paddingTop: Platform.OS != "ios" ? 55 : 110, }} > - {priceFilters.map((item) => ( + {priceFilters.map((item, index) => ( + {Platform.OS != "ios" && ( + + + setIsFilterVisible({ + zone_admission_price: false, + comprehensive: false, + }) + } + /> + + )} {isMember == 1 && (