改善筛选代码

This commit is contained in:
al 2024-09-04 18:11:20 +08:00
parent ccff503888
commit 30b43de2ba
2 changed files with 106 additions and 141 deletions

View File

@ -30,6 +30,21 @@ import MyDivider from "../../components/MyDivider/index";
import MySlider from "../../components/MySlider"; import MySlider from "../../components/MySlider";
import Picker from "../../components/Picker"; import Picker from "../../components/Picker";
import { get } from "../../utils/storeInfo"; import { get } from "../../utils/storeInfo";
const filterComprehensiveItems = {
age: { lower_bound: 18, upper_bound: 60 },
fans: { lower_bound: 1, upper_bound: 1000 },
weight: { lower_bound: 35, upper_bound: 100 },
height: { lower_bound: 140, upper_bound: 200 },
city: "",
constellation: "",
is_active_within_a_week: 0,
comprehensiveUsed: { show: false, used: false },
};
const filterPriceItems = {
zone_admission_price: { lower_bound: 0, upper_bound: 4000 },
wechat_coin_price: { lower_bound: 0, upper_bound: 100000 },
priceUsed: { show: false, used: false },
};
export default function Search({ navigation, route }) { export default function Search({ navigation, route }) {
const tailwind = useTailwind(); const tailwind = useTailwind();
const insets = useSafeAreaInsets(); const insets = useSafeAreaInsets();
@ -201,21 +216,13 @@ export default function Search({ navigation, route }) {
}, },
]; ];
const [filtersValue, setFiltersValue] = useState({ const [filtersValue, setFiltersValue] = useState({
age: { lower_bound: 18, upper_bound: 60 }, ...filterComprehensiveItems,
fans: { lower_bound: 1, upper_bound: 1000 }, ...filterPriceItems,
height: { lower_bound: 140, upper_bound: 200 }, });
weight: { lower_bound: 35, upper_bound: 100 }, const [currentFiltersChangeValue, setCurrentFiltersChangeValue] = useState({
city: "", ...filterComprehensiveItems,
constellation: "", ...filterPriceItems,
is_active_within_a_week: 0,
zone_admission_price: { lower_bound: 0, upper_bound: 4000 },
wechat_coin_price: { lower_bound: 0, upper_bound: 100000 },
priceUsed: { show: false, used: false },
comprehensiveUsed: { show: false, used: false },
}); });
const [currentFiltersChangeValue, setCurrentFiltersChangeValue] = useState(
{}
);
const updateSearch = (search) => { const updateSearch = (search) => {
setSearch(search); setSearch(search);
if (!search) return; if (!search) return;
@ -274,13 +281,9 @@ export default function Search({ navigation, route }) {
}; };
const getResult = async () => { const getResult = async () => {
if (filtersValue.comprehensiveUsed.used || filtersValue.priceUsed.used) { if (filtersValue.comprehensiveUsed.used || filtersValue.priceUsed.used) {
setFiltersValue((old) => ({ handleResetFiltersValue();
...old, handleResetFiltersSearchValue();
comprehensiveUsed: { show: false, used: false },
priceUsed: { show: false, used: false },
}));
} }
const apiUrl = process.env.EXPO_PUBLIC_API_URL; const apiUrl = process.env.EXPO_PUBLIC_API_URL;
const isSearchInt = isNumeric(search); const isSearchInt = isNumeric(search);
let api; let api;
@ -344,10 +347,11 @@ export default function Search({ navigation, route }) {
if (search != "") { if (search != "") {
setSearch(""); setSearch("");
} }
setFiltersValue({ setFiltersValue((old) => {
...filtersValue, return {
...currentFiltersChangeValue, ...old,
// comprehensiveUsed: { show: false, used: true }, ...obj,
};
}); });
const apiUrl = process.env.EXPO_PUBLIC_API_URL; const apiUrl = process.env.EXPO_PUBLIC_API_URL;
const newObj = obj || { ...filtersValue, ...currentFiltersChangeValue }; const newObj = obj || { ...filtersValue, ...currentFiltersChangeValue };
@ -405,27 +409,61 @@ export default function Search({ navigation, route }) {
console.error(error); console.error(error);
} }
}; };
// MySlider
const handleChangePriceSliderValue = useCallback((value, item) => {
if (item.key == "zone") {
setCurrentFiltersChangeValue((old) => ({
...old,
zone_admission_price: value,
}));
} else if (item.key == "wechat") {
setCurrentFiltersChangeValue((old) => ({
...old,
wechat_coin_price: value,
}));
}
}, []);
const handleChangeComprehensiveSliderValue = useCallback((value, item) => {
if (item.key == "age") {
setCurrentFiltersChangeValue((old) => ({
...old,
age: value,
}));
} else if (item.key == "fans") {
setCurrentFiltersChangeValue((old) => ({
...old,
fans: value,
}));
} else if (item.key == "height") {
setCurrentFiltersChangeValue((old) => ({
...old,
height: value,
}));
} else if (item.key == "weight") {
setCurrentFiltersChangeValue((old) => ({
...old,
weight: value,
}));
}
}, []);
// //
const handleResetFiltersValue = (type) => { const handleResetFiltersValue = (type) => {
let obj = filtersValue; let obj = filtersValue;
if (type == "comprehensive") { if (type == "comprehensive") {
obj = { obj = {
...filtersValue, ...filtersValue,
age: { lower_bound: 18, upper_bound: 60 }, ...filterComprehensiveItems,
fans: { lower_bound: 1, upper_bound: 1000 },
weight: { lower_bound: 35, upper_bound: 100 },
height: { lower_bound: 140, upper_bound: 200 },
city: "",
constellation: "",
is_active_within_a_week: 0,
comprehensiveUsed: { show: false, used: false },
}; };
} else if (type == "zone_admission_price") { } else if (type == "zone_admission_price") {
obj = { obj = {
...filtersValue, ...filtersValue,
zone_admission_price: { lower_bound: 0, upper_bound: 4000 }, ...filterPriceItems,
wechat_coin_price: { lower_bound: 0, upper_bound: 100000 }, };
priceUsed: { show: false, used: false }, } else {
obj = {
...filterComprehensiveItems,
...filterPriceItems,
}; };
} }
setCurrentFiltersChangeValue((old) => { setCurrentFiltersChangeValue((old) => {
@ -442,35 +480,17 @@ export default function Search({ navigation, route }) {
if (type == "comprehensive") { if (type == "comprehensive") {
obj = { obj = {
...filtersValue, ...filtersValue,
age: { lower_bound: 18, upper_bound: 60 }, ...filterComprehensiveItems,
fans: { lower_bound: 1, upper_bound: 1000 },
weight: { lower_bound: 35, upper_bound: 100 },
height: { lower_bound: 140, upper_bound: 200 },
city: "",
constellation: "",
is_active_within_a_week: 0,
comprehensiveUsed: { show: false, used: false },
}; };
} else if (type == "zone_admission_price") { } else if (type == "zone_admission_price") {
obj = { obj = {
...filtersValue, ...filtersValue,
zone_admission_price: { lower_bound: 0, upper_bound: 4000 }, ...filterPriceItems,
wechat_coin_price: { lower_bound: 0, upper_bound: 100000 },
priceUsed: { show: false, used: false },
}; };
} else { } else {
obj = { obj = {
age: { lower_bound: 18, upper_bound: 60 }, ...filterComprehensiveItems,
fans: { lower_bound: 1, upper_bound: 1000 }, ...filterPriceItems,
weight: { lower_bound: 35, upper_bound: 100 },
height: { lower_bound: 140, upper_bound: 200 },
city: "",
constellation: "",
is_active_within_a_week: 0,
comprehensiveUsed: { show: false, used: false },
zone_admission_price: { lower_bound: 0, upper_bound: 4000 },
wechat_coin_price: { lower_bound: 0, upper_bound: 100000 },
priceUsed: { show: false, used: false },
}; };
} }
setFiltersValue((old) => { setFiltersValue((old) => {
@ -767,16 +787,18 @@ export default function Search({ navigation, route }) {
</Text> </Text>
{filtersValue.comprehensiveUsed.used && ( {filtersValue.comprehensiveUsed.used && (
<TouchableOpacity <TouchableOpacity
onPress={() => handleResetFiltersSearchValue("comprehensive")} onPress={() => {
handleResetFiltersValue("comprehensive");
handleResetFiltersSearchValue("comprehensive");
}}
style={{ style={{
width: 48, width: "34%",
height: 32, height: 32,
display: "flex", display: "flex",
alignItems: "flex-center", alignItems: "flex-center",
justifyContent: "center", justifyContent: "center",
backgroundColor: "#301024", backgroundColor: "#301024",
borderRadius: 12, borderRadius: 12,
marginRight: -8,
}} }}
> >
<Icon <Icon
@ -818,18 +840,18 @@ export default function Search({ navigation, route }) {
</Text> </Text>
{filtersValue.priceUsed.used && ( {filtersValue.priceUsed.used && (
<TouchableOpacity <TouchableOpacity
onPress={() => onPress={() => {
handleResetFiltersSearchValue("zone_admission_price") handleResetFiltersValue("zone_admission_price");
} handleResetFiltersSearchValue("zone_admission_price");
}}
style={{ style={{
width: 48, width: "34%",
height: 32, height: 32,
display: "flex", display: "flex",
alignItems: "flex-center", alignItems: "flex-center",
justifyContent: "center", justifyContent: "center",
backgroundColor: "#301024", backgroundColor: "#301024",
borderRadius: 12, borderRadius: 12,
marginRight: -8,
}} }}
> >
<Icon <Icon
@ -914,59 +936,17 @@ export default function Search({ navigation, route }) {
setDontScroll((old) => !old); setDontScroll((old) => !old);
}} }}
leftValue={ leftValue={
item.key == "age" currentFiltersChangeValue[item.key]?.lower_bound
? currentFiltersChangeValue?.age?.lower_bound
: item.key == "height"
? currentFiltersChangeValue?.height?.lower_bound
: item.key == "weight"
? currentFiltersChangeValue?.weight?.lower_bound
: currentFiltersChangeValue?.fans?.lower_bound
} }
rightValue={ rightValue={
item.key == "age" currentFiltersChangeValue[item.key]?.upper_bound
? currentFiltersChangeValue?.age?.upper_bound
: item.key == "height"
? currentFiltersChangeValue?.height?.upper_bound
: item.key == "weight"
? currentFiltersChangeValue?.weight?.upper_bound
: currentFiltersChangeValue?.fans?.upper_bound
} }
step={item.step} step={item.step}
hasInfinity={item.key == "fans"} hasInfinity={item.key == "fans"}
stepValues={item.stepValues} stepValues={item.stepValues}
onChange={(value) => { onChange={(value) =>
if (item.key == "age") { handleChangeComprehensiveSliderValue(value, item)
setCurrentFiltersChangeValue((old) => ({
...old,
age: value,
}));
// setFiltersValue((old) => ({ ...old, age: value }));
} else if (item.key == "fans") {
setCurrentFiltersChangeValue((old) => ({
...old,
fans: value,
}));
// setFiltersValue((old) => ({ ...old, fans: value }));
} else if (item.key == "height") {
setCurrentFiltersChangeValue((old) => ({
...old,
height: value,
}));
// setFiltersValue((old) => ({
// ...old,
// height: value,
// }));
} else if (item.key == "weight") {
setCurrentFiltersChangeValue((old) => ({
...old,
weight: value,
}));
// setFiltersValue((old) => ({
// ...old,
// weight: value,
// }));
} }
}}
maximumTrackTintColor="#382435" maximumTrackTintColor="#382435"
minimumTrackTintColor="#ff75c8" minimumTrackTintColor="#ff75c8"
processHeight={5} processHeight={5}
@ -1094,7 +1074,10 @@ export default function Search({ navigation, route }) {
return; return;
} }
getFiltersResult(); getFiltersResult({
...currentFiltersChangeValue,
priceUsed: filtersValue.priceUsed,
});
setFiltersValue((old) => ({ setFiltersValue((old) => ({
...old, ...old,
comprehensiveUsed: { show: false, used: true }, comprehensiveUsed: { show: false, used: true },
@ -1208,27 +1191,9 @@ export default function Search({ navigation, route }) {
}} }}
hasInfinity={true} hasInfinity={true}
itemKey={item.key} itemKey={item.key}
onChange={(value) => { onChange={(value) =>
if (item.key == "zone") { handleChangePriceSliderValue(value, item)
setCurrentFiltersChangeValue((old) => ({
...old,
zone_admission_price: value,
}));
// setFiltersValue((old) => ({
// ...old,
// zone_admission_price: value,
// }));
} else if (item.key == "wechat") {
setCurrentFiltersChangeValue((old) => ({
...old,
wechat_coin_price: value,
}));
// setFiltersValue((old) => ({
// ...old,
// wechat_coin_price: value,
// }));
} }
}}
maximumTrackTintColor="#382435" maximumTrackTintColor="#382435"
minimumTrackTintColor="#ff75c8" minimumTrackTintColor="#ff75c8"
processHeight={5} processHeight={5}
@ -1307,7 +1272,10 @@ export default function Search({ navigation, route }) {
}); });
return; return;
} }
getFiltersResult(); getFiltersResult({
...currentFiltersChangeValue,
comprehensiveUsed: filtersValue.comprehensiveUsed,
});
setFiltersValue((old) => ({ setFiltersValue((old) => ({
...old, ...old,
priceUsed: { show: false, used: true }, priceUsed: { show: false, used: true },

View File

@ -33,7 +33,7 @@ export default function SpaceSearch({ navigation }) {
setIsloading(false); setIsloading(false);
Toast.show({ Toast.show({
type: "error", type: "error",
text1: "请输入六位用户ID", text1: "请输入完整用户ID",
topOffset: 60, topOffset: 60,
}); });
return; return;
@ -45,7 +45,6 @@ export default function SpaceSearch({ navigation }) {
member_user_id: Number(searchValue), member_user_id: Number(searchValue),
...base, ...base,
}; };
console.log(body);
const signature = await generateSignature(body); const signature = await generateSignature(body);
const _response = await fetch( const _response = await fetch(
`${apiUrl}/api/zone/search_zone_member?signature=${signature}`, `${apiUrl}/api/zone/search_zone_member?signature=${signature}`,
@ -57,11 +56,9 @@ export default function SpaceSearch({ navigation }) {
body: JSON.stringify(body), body: JSON.stringify(body),
} }
); );
console.log("******", JSON.stringify(body));
const _data = await _response.json(); const _data = await _response.json();
if (_data.ret === -1) { if (_data.ret === -1) {
console.log("_data", _data); // console.log("_data", _data);
setIsloading(false); setIsloading(false);
Toast.show({ Toast.show({
type: "error", type: "error",
@ -234,7 +231,7 @@ export default function SpaceSearch({ navigation }) {
inputContainerStyle={tailwind("h-10 bg-[#FFFFFF1A]")} inputContainerStyle={tailwind("h-10 bg-[#FFFFFF1A]")}
inputStyle={tailwind("text-white")} inputStyle={tailwind("text-white")}
inputMode="numeric" inputMode="numeric"
placeholder="请输入六位用户ID" placeholder="请输入完整用户ID"
platform="ios" platform="ios"
cancelButtonProps={tailwind("text-[#FF669E]")} cancelButtonProps={tailwind("text-[#FF669E]")}
cancelButtonTitle="清空" cancelButtonTitle="清空"