Files
sgw-owner-app/components/diary/FilterModal.tsx
2025-12-03 00:10:11 +07:00

265 lines
6.4 KiB
TypeScript

import React, { useState } from "react";
import {
View,
Text,
Modal,
TouchableOpacity,
StyleSheet,
Platform,
ScrollView,
} from "react-native";
import { Ionicons } from "@expo/vector-icons";
import StatusDropdown from "./StatusDropdown";
import DateRangePicker from "./DateRangePicker";
import { TripStatus } from "./types";
interface FilterModalProps {
visible: boolean;
onClose: () => void;
onApply: (filters: FilterValues) => void;
}
export interface FilterValues {
status: TripStatus | null;
startDate: Date | null;
endDate: Date | null;
}
export default function FilterModal({
visible,
onClose,
onApply,
}: FilterModalProps) {
const [status, setStatus] = useState<TripStatus | null>(null);
const [startDate, setStartDate] = useState<Date | null>(null);
const [endDate, setEndDate] = useState<Date | null>(null);
const handleReset = () => {
setStatus(null);
setStartDate(null);
setEndDate(null);
};
const handleApply = () => {
onApply({ status, startDate, endDate });
onClose();
};
const hasFilters = status !== null || startDate !== null || endDate !== null;
return (
<Modal
visible={visible}
animationType="fade"
transparent
onRequestClose={onClose}
>
<TouchableOpacity
style={styles.overlay}
activeOpacity={1}
onPress={onClose}
>
<TouchableOpacity
style={styles.modalContainer}
activeOpacity={1}
onPress={(e) => e.stopPropagation()}
>
{/* Header */}
<View style={styles.header}>
<TouchableOpacity onPress={onClose} style={styles.closeButton}>
<Ionicons name="close" size={24} color="#111827" />
</TouchableOpacity>
<Text style={styles.title}>Bộ lọc</Text>
<View style={styles.placeholder} />
</View>
{/* Content */}
<ScrollView
style={styles.content}
showsVerticalScrollIndicator={false}
>
<StatusDropdown value={status} onChange={setStatus} />
<DateRangePicker
startDate={startDate}
endDate={endDate}
onStartDateChange={setStartDate}
onEndDateChange={setEndDate}
/>
{/* Filter Results Preview */}
{hasFilters && (
<View style={styles.previewContainer}>
<Text style={styles.previewTitle}>Bộ lọc đã chọn:</Text>
{status && (
<View style={styles.filterTag}>
<Text style={styles.filterTagText}>
Trạng thái: {status}
</Text>
</View>
)}
{startDate && (
<View style={styles.filterTag}>
<Text style={styles.filterTagText}>
Từ: {startDate.toLocaleDateString("vi-VN")}
</Text>
</View>
)}
{endDate && (
<View style={styles.filterTag}>
<Text style={styles.filterTagText}>
Đến: {endDate.toLocaleDateString("vi-VN")}
</Text>
</View>
)}
</View>
)}
</ScrollView>
{/* Footer */}
<View style={styles.footer}>
<TouchableOpacity
style={styles.resetButton}
onPress={handleReset}
activeOpacity={0.7}
>
<Text style={styles.resetButtonText}>Đt lại</Text>
</TouchableOpacity>
<TouchableOpacity
style={styles.applyButton}
onPress={handleApply}
activeOpacity={0.7}
>
<Text style={styles.applyButtonText}>Áp dụng</Text>
</TouchableOpacity>
</View>
</TouchableOpacity>
</TouchableOpacity>
</Modal>
);
}
const styles = StyleSheet.create({
overlay: {
flex: 1,
backgroundColor: "rgba(0, 0, 0, 0.5)",
justifyContent: "flex-end",
},
modalContainer: {
backgroundColor: "#FFFFFF",
borderTopLeftRadius: 24,
borderTopRightRadius: 24,
maxHeight: "80%",
shadowColor: "#000",
shadowOffset: {
width: 0,
height: -4,
},
shadowOpacity: 0.1,
shadowRadius: 12,
elevation: 8,
},
header: {
flexDirection: "row",
alignItems: "center",
justifyContent: "space-between",
paddingHorizontal: 20,
paddingVertical: 16,
borderBottomWidth: 1,
borderBottomColor: "#F3F4F6",
},
closeButton: {
padding: 4,
},
title: {
fontSize: 18,
fontWeight: "700",
color: "#111827",
fontFamily: Platform.select({
ios: "System",
android: "Roboto",
default: "System",
}),
},
placeholder: {
width: 32,
},
content: {
padding: 20,
},
previewContainer: {
marginTop: 20,
padding: 16,
backgroundColor: "#F9FAFB",
borderRadius: 12,
},
previewTitle: {
fontSize: 14,
fontWeight: "600",
color: "#6B7280",
marginBottom: 12,
fontFamily: Platform.select({
ios: "System",
android: "Roboto",
default: "System",
}),
},
filterTag: {
backgroundColor: "#EFF6FF",
paddingHorizontal: 12,
paddingVertical: 6,
borderRadius: 16,
marginBottom: 8,
alignSelf: "flex-start",
},
filterTagText: {
fontSize: 14,
color: "#3B82F6",
fontFamily: Platform.select({
ios: "System",
android: "Roboto",
default: "System",
}),
},
footer: {
flexDirection: "row",
gap: 12,
padding: 20,
borderTopWidth: 1,
borderTopColor: "#F3F4F6",
},
resetButton: {
flex: 1,
backgroundColor: "#F3F4F6",
paddingVertical: 14,
borderRadius: 12,
alignItems: "center",
},
resetButtonText: {
fontSize: 16,
fontWeight: "600",
color: "#6B7280",
fontFamily: Platform.select({
ios: "System",
android: "Roboto",
default: "System",
}),
},
applyButton: {
flex: 1,
backgroundColor: "#3B82F6",
paddingVertical: 14,
borderRadius: 12,
alignItems: "center",
},
applyButtonText: {
fontSize: 16,
fontWeight: "600",
color: "#FFFFFF",
fontFamily: Platform.select({
ios: "System",
android: "Roboto",
default: "System",
}),
},
});