anln_50 #17

Merged
yezian merged 19 commits from anln_50 into main 2024-09-09 13:13:24 +08:00
2 changed files with 80 additions and 85 deletions
Showing only changes of commit 3b549e21d6 - Show all commits

View File

@ -19,6 +19,7 @@ export default function MySlider({
width = Dimensions.get("window").width - 44,
onChange,
onAfterChange = () => {},
handleFunc = () => {},
defaultValue = 0,
disabled = false,
thumbSize = 25,
@ -48,16 +49,16 @@ export default function MySlider({
leftWatcher.current = PanResponder.create({
//
onStartShouldSetPanResponder: () => true,
// onPanResponderGrant: _onPanResponderGrantLeft, //
onPanResponderGrant: _onPanResponderGrantLeft, //
onPanResponderMove: _onPanResponderMoveLeft, //
// onPanResponderEnd: _onPanResponderEndLeft, //
onPanResponderEnd: _onPanResponderEndLeft, //
});
rightWatcher.current = PanResponder.create({
//
onStartShouldSetPanResponder: () => true,
// onPanResponderGrant: _onPanResponderGrantRight, //
onPanResponderGrant: _onPanResponderGrantRight, //
onPanResponderMove: _onPanResponderMoveRight, //
// onPanResponderEnd: _onPanResponderEndRight, //
onPanResponderEnd: _onPanResponderEndRight, //
});
setProcessWidth(width - thumbSize * 2);
}, []);
@ -78,27 +79,32 @@ export default function MySlider({
// }, [leftProcess, rightProcess]);
//
// const _onPanResponderGrantLeft = (e, gestureState) => {
// const process = (gestureState.x0 - 40 - thumbSize / 2) / processWidth;
// _changeProcess(process, "left");
// };
const _onPanResponderGrantLeft = (e, gestureState) => {
// const process = (gestureState.x0 - 40 - thumbSize / 2) / processWidth;
// _changeProcess(process, "left");
handleFunc && handleFunc();
};
// const _onPanResponderEndLeft = (e, gestureState) => {
// // if (onAfterChange) {
// // onAfterChange(gestureState.x0);
// // }
// };
const _onPanResponderEndLeft = (e, gestureState) => {
handleFunc && handleFunc();
};
const _onPanResponderMoveLeft = (e, gestureState) => {
const process =
(gestureState.x0 - thumbSize / 2 + gestureState.dx) / processWidth;
(gestureState.x0 - thumbSize * 2 + gestureState.dx) / processWidth;
_changeProcess(process, "left");
};
//
// const _onPanResponderGrantRight = (e, gestureState) => {
// const process = (gestureState.x0 - 40 - thumbSize / 2) / processWidth;
// _changeProcess(process, "right");
// };
const _onPanResponderGrantRight = (e, gestureState) => {
// const process = (gestureState.x0 - 40 - thumbSize / 2) / processWidth;
// _changeProcess(process, "right");
handleFunc && handleFunc();
};
const _onPanResponderEndRight = (e, gestureState) => {
// const process = (gestureState.x0 - 40 - thumbSize / 2) / processWidth;
// _changeProcess(process, "right");
handleFunc && handleFunc();
};
const _onPanResponderMoveRight = (e, gestureState) => {
const process =
@ -121,18 +127,21 @@ export default function MySlider({
(stepValues.indexOf(currentRightValue.current) * step - lower_bound) /
(upper_bound - lower_bound);
if (newProcess < currentRightProcess) {
setLeftProcess(newProcess);
setStepNum((old) => old + 1);
onChange({
lower_bound:
stepValues[
Math.round(
(newProcess * (upper_bound - lower_bound) + lower_bound) /
step
)
],
upper_bound: currentRightValue.current,
});
// console.log("currentRightProcess", newProcess, currentRightProcess);
const newLower =
stepValues[
Math.round(
(newProcess * (upper_bound - lower_bound) + lower_bound) / step
)
];
if (newLower <= currentRightValue.current - 3) {
setLeftProcess(newProcess);
setStepNum((old) => old + 1);
onChange({
lower_bound: newLower,
upper_bound: currentRightValue.current,
});
}
}
} else {
const currentLeftProcess =
@ -140,18 +149,21 @@ export default function MySlider({
(upper_bound - lower_bound);
if (newProcess > currentLeftProcess) {
setRightProcess(newProcess);
setStepNum((old) => old - 1);
onChange({
lower_bound: currentLeftValue.current,
upper_bound:
stepValues[
Math.round(
(newProcess * (upper_bound - lower_bound) + lower_bound) /
step
)
],
});
const newUpper =
stepValues[
Math.round(
(newProcess * (upper_bound - lower_bound) + lower_bound) / step
)
];
if (newUpper >= currentLeftValue.current + 3) {
setRightProcess(newProcess);
setStepNum((old) => old - 1);
onChange({
lower_bound: currentLeftValue.current,
upper_bound: newUpper,
});
}
// setStepNum(stepNum - 1);
}
}
@ -244,62 +256,37 @@ export default function MySlider({
cachePolicy="disk"
// style={tailwind("w-full h-full rounded-lg overflow-hidden")}
style={{
width: thumbSize * 3,
height: thumbSize * 3,
position: "absolute",
left: leftProcess * processWidth - thumbSize,
left: leftProcess * processWidth,
zIndex: 10,
display: "flex",
justifyContent: "center",
alignItems: "center",
// borderWidth: 2,
width: thumbSize,
height: thumbSize,
borderRadius: 50,
backgroundColor: "#ff75c8",
borderColor: "#ffffff",
borderWidth: 2,
}}
{...leftWatcher.current?.panHandlers}
>
<View
transition={1000}
cachePolicy="disk"
// style={tailwind("w-full h-full rounded-lg overflow-hidden")}
style={{
width: thumbSize,
height: thumbSize,
borderRadius: 50,
backgroundColor: "#ff75c8",
borderColor: "#ffffff",
borderWidth: 2,
}}
/>
</View>
></View>
{/* 右侧控件 */}
<View
transition={1000}
cachePolicy="disk"
// style={tailwind("w-full h-full rounded-lg overflow-hidden")}
style={{
width: thumbSize * 3,
height: thumbSize * 3,
position: "absolute",
left: rightProcess * processWidth - thumbSize,
left: rightProcess * processWidth,
zIndex: 10,
display: "flex",
justifyContent: "center",
alignItems: "center",
// borderWidth: 2,
width: thumbSize,
height: thumbSize,
backgroundColor: "#fff",
borderRadius: 50,
backgroundColor: "#ff75c8",
borderColor: "#ffffff",
borderWidth: 2,
}}
{...rightWatcher.current?.panHandlers}
>
<View
style={{
width: thumbSize,
height: thumbSize,
backgroundColor: "#fff",
borderRadius: 50,
backgroundColor: "#ff75c8",
borderColor: "#ffffff",
borderWidth: 2,
}}
></View>
</View>
></View>
<View
style={{

View File

@ -41,6 +41,7 @@ export default function Search({ navigation, route }) {
const [recommList, setRecommList] = useState([]);
const [zones, setZones] = useState([]);
const [isloading, setIsloading] = useState(false);
const [dontScroll, setDontScroll] = useState(true);
const [isFilterVisible, setIsFilterVisible] = useState({
comprehensive: false,
zone_admission_price: false,
@ -750,7 +751,7 @@ export default function Search({ navigation, route }) {
}
backdropStyle={{ backgroundColor: "#0000004d" }}
scrollViewProps={{
scrollEnabled: false,
scrollEnabled: dontScroll,
contentContainerStyle: {
// paddingTop: 20,
backgroundColor: "black",
@ -801,6 +802,9 @@ export default function Search({ navigation, route }) {
lower_bound={item.lower_bound}
upper_bound={item.upper_bound}
itemKey={item.key}
handleFunc={() => {
setDontScroll((old) => !old);
}}
leftValue={
item.key == "age"
? filtersValue.age.lower_bound
@ -990,6 +994,7 @@ export default function Search({ navigation, route }) {
})
}
scrollViewProps={{
scrollEnabled: dontScroll,
contentContainerStyle: {
// paddingTop: 20,
backgroundColor: "black",
@ -1057,6 +1062,9 @@ export default function Search({ navigation, route }) {
}
stepValues={item.stepValues}
step={item.step}
handleFunc={() => {
setDontScroll((old) => !old);
}}
hasInfinity={true}
itemKey={item.key}
onChange={(value) => {