SpecialTrainInfoBoxを作成
This commit is contained in:
parent
6fbaf2b8ff
commit
9ba1f5d50b
@ -6,10 +6,11 @@ import {
|
|||||||
MaterialCommunityIcons,
|
MaterialCommunityIcons,
|
||||||
} from "@expo/vector-icons";
|
} from "@expo/vector-icons";
|
||||||
import { ListItem } from "@rneui/themed";
|
import { ListItem } from "@rneui/themed";
|
||||||
import TouchableScale from 'react-native-touchable-scale';
|
import TouchableScale from "react-native-touchable-scale";
|
||||||
import Icon from "react-native-vector-icons/Entypo";
|
import Icon from "react-native-vector-icons/Entypo";
|
||||||
import { TextBox } from "../atom/TextBox";
|
import { TextBox } from "../atom/TextBox";
|
||||||
import { TicketBox } from "../atom/TicketBox";
|
import { TicketBox } from "../atom/TicketBox";
|
||||||
|
import { SpecialTrainInfoBox } from "./SpecialTrainInfoBox";
|
||||||
|
|
||||||
export const FixedContentBottom = (props) => {
|
export const FixedContentBottom = (props) => {
|
||||||
return (
|
return (
|
||||||
@ -50,11 +51,14 @@ export const FixedContentBottom = (props) => {
|
|||||||
旅行ツアー
|
旅行ツアー
|
||||||
</TicketBox>
|
</TicketBox>
|
||||||
</View>
|
</View>
|
||||||
|
<SpecialTrainInfoBox navigate={props.navigate} />
|
||||||
<TextBox
|
<TextBox
|
||||||
backgroundColor="red"
|
backgroundColor="red"
|
||||||
flex={1}
|
flex={1}
|
||||||
onPressButton={() =>
|
onPressButton={() =>
|
||||||
Linking.openURL("https://xprocess.haruk.in/JR-shikoku-Apps-Common/2025-update-status")
|
Linking.openURL(
|
||||||
|
"https://xprocess.haruk.in/JR-shikoku-Apps-Common/2025-update-status"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Text style={{ color: "white", fontWeight: "bold", fontSize: 20 }}>
|
<Text style={{ color: "white", fontWeight: "bold", fontSize: 20 }}>
|
||||||
@ -264,12 +268,15 @@ export const FixedContentBottom = (props) => {
|
|||||||
name: "しこくたぬきのぽんちゃん 【四国家サポーターズクラブ】",
|
name: "しこくたぬきのぽんちゃん 【四国家サポーターズクラブ】",
|
||||||
},
|
},
|
||||||
].map((d) => (
|
].map((d) => (
|
||||||
<ListItem bottomDivider onPress={() => Linking.openURL(d.url)}
|
<ListItem
|
||||||
key={d.url}friction={90} //
|
bottomDivider
|
||||||
tension={100} // These props are passed to the parent component (here TouchableScale)
|
onPress={() => Linking.openURL(d.url)}
|
||||||
activeScale={0.95} //
|
key={d.url}
|
||||||
Component={TouchableScale}
|
friction={90} //
|
||||||
>
|
tension={100} // These props are passed to the parent component (here TouchableScale)
|
||||||
|
activeScale={0.95} //
|
||||||
|
Component={TouchableScale}
|
||||||
|
>
|
||||||
<ListItem.Content>
|
<ListItem.Content>
|
||||||
<ListItem.Title>{d.name}</ListItem.Title>
|
<ListItem.Title>{d.name}</ListItem.Title>
|
||||||
</ListItem.Content>
|
</ListItem.Content>
|
||||||
|
69
components/Menu/SpecialTrainInfoBox.tsx
Normal file
69
components/Menu/SpecialTrainInfoBox.tsx
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
import { FC, useEffect, useState } from "react";
|
||||||
|
import { View, Text, TouchableOpacity } from "react-native";
|
||||||
|
import { getPDFViewURL } from "@/lib/getPdfViewURL";
|
||||||
|
|
||||||
|
type props = {
|
||||||
|
navigate: (screen: string, params?: object) => void;
|
||||||
|
};
|
||||||
|
export const SpecialTrainInfoBox: FC<props> = ({ navigate }) => {
|
||||||
|
const [specialData, setSpecialData] = useState([]);
|
||||||
|
useEffect(() => {
|
||||||
|
fetch("https://n8n.haruk.in/webhook/sptrainfo")
|
||||||
|
.then((res) => res.json())
|
||||||
|
.then((data) => setSpecialData(data.data))
|
||||||
|
.catch((err) => console.log(err));
|
||||||
|
}, []);
|
||||||
|
return (
|
||||||
|
<View
|
||||||
|
style={{
|
||||||
|
backgroundColor: "#0099CC",
|
||||||
|
borderRadius: 10,
|
||||||
|
margin: 5,
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: "black",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<View style={{ flexDirection: "row", alignItems: "center" }}>
|
||||||
|
<Text
|
||||||
|
style={{
|
||||||
|
fontSize: 30,
|
||||||
|
fontWeight: "bold",
|
||||||
|
color: "white",
|
||||||
|
padding: 10,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
臨時列車情報
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
|
<View
|
||||||
|
style={{
|
||||||
|
backgroundColor: "white",
|
||||||
|
borderBottomLeftRadius: 10,
|
||||||
|
borderBottomRightRadius: 10,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{specialData.map((d) => (
|
||||||
|
<TouchableOpacity
|
||||||
|
onPress={() => {
|
||||||
|
navigate("howto", {
|
||||||
|
info: getPDFViewURL("https://www.jr-shikoku.co.jp" + d.address),
|
||||||
|
goTo: "menu",
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
onLongPress={() => alert(d.description)}
|
||||||
|
key={d.address}
|
||||||
|
style={{
|
||||||
|
padding: 10,
|
||||||
|
borderBottomWidth: 1,
|
||||||
|
borderBottomColor: "#ccc",
|
||||||
|
flexDirection: "row",
|
||||||
|
alignItems: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text style={{ color: "black", fontSize: 20 }}>{d.text}</Text>
|
||||||
|
</TouchableOpacity>
|
||||||
|
))}
|
||||||
|
</View>
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user