Compare commits
137
Commits
+2
-1
@@ -59,4 +59,5 @@ ios/
|
||||
!modules/**/ios/
|
||||
*.ipa
|
||||
*.apk
|
||||
*.aab
|
||||
*.aab
|
||||
.env.local
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"Sentry": {
|
||||
"url": "https://mcp.sentry.dev/mcp/xprocess-m5/jr-shikoku-unofficial-apps"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,7 @@ import {
|
||||
useRealWindowDimensions,
|
||||
} from "./utils/dexDimensionOverride";
|
||||
import { Linking, Platform, UIManager, View } from "react-native";
|
||||
import { enableFreeze, enableScreens } from "react-native-screens";
|
||||
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
||||
import "./utils/disableFontScaling"; // グローバルなフォントスケーリング無効化
|
||||
import { AppContainer } from "./Apps";
|
||||
@@ -25,26 +26,107 @@ import { buildProvidersTree } from "./lib/providerTreeProvider";
|
||||
import { StationListProvider } from "./stateBox/useStationList";
|
||||
import { NotificationProvider } from "./stateBox/useNotifications";
|
||||
import { UserPositionProvider } from "./stateBox/useUserPosition";
|
||||
import { rootNavigationRef, stackAwareNavigate } from "./lib/rootNavigation";
|
||||
import {
|
||||
markStartupExplicitTarget,
|
||||
resolveStartupNavigationSource,
|
||||
rootNavigationRef,
|
||||
stackAwareNavigate,
|
||||
} from "./lib/rootNavigation";
|
||||
import { AppThemeProvider } from "./lib/theme";
|
||||
import StatusbarDetect from "./StatusbarDetect";
|
||||
import * as Sentry from '@sentry/react-native';
|
||||
import {
|
||||
startAppLifecycleCrashSentinel,
|
||||
stopAppLifecycleCrashSentinel,
|
||||
} from "./lib/observability/appLifecycleCrashSentinel";
|
||||
import { migrateLegacyVoicepeakSettings } from "./lib/migrateLegacyVoicepeakSettings";
|
||||
|
||||
Sentry.init({
|
||||
dsn: 'https://1090312e4cf501f5a455d523eff2d538@o4511646874664960.ingest.us.sentry.io/4511646880432128',
|
||||
|
||||
// Adds more context data to events (IP address, cookies, user, etc.)
|
||||
// For more information, visit: https://docs.sentry.io/platforms/react-native/data-management/data-collected/
|
||||
sendDefaultPii: true,
|
||||
|
||||
// Enable Logs
|
||||
enableLogs: true,
|
||||
|
||||
// Configure Session Replay
|
||||
replaysSessionSampleRate: 0.1,
|
||||
replaysOnErrorSampleRate: 1,
|
||||
integrations: [Sentry.mobileReplayIntegration(), Sentry.feedbackIntegration()],
|
||||
|
||||
tracesSampleRate: __DEV__ ? 1.0 : 0.05,
|
||||
|
||||
beforeSend(event) {
|
||||
const dataFetch = event.contexts?.data_fetch as any;
|
||||
if (dataFetch?.responseHead && typeof dataFetch.responseHead === "string") {
|
||||
dataFetch.responseHead = dataFetch.responseHead.slice(0, 300);
|
||||
}
|
||||
return event;
|
||||
},
|
||||
|
||||
// uncomment the line below to enable Spotlight (https://spotlightjs.com)
|
||||
// spotlight: __DEV__,
|
||||
});
|
||||
|
||||
LogBox.ignoreLogs([
|
||||
"ViewPropTypes will be removed",
|
||||
"ColorPropType will be removed",
|
||||
]);
|
||||
|
||||
const nativeScreensDisabled =
|
||||
Platform.OS === "ios" || Platform.OS === "android";
|
||||
|
||||
if (nativeScreensDisabled) {
|
||||
enableFreeze(false);
|
||||
enableScreens(false);
|
||||
}
|
||||
|
||||
if (Platform.OS === "android") {
|
||||
if (UIManager.setLayoutAnimationEnabledExperimental) {
|
||||
UIManager.setLayoutAnimationEnabledExperimental(true);
|
||||
}
|
||||
}
|
||||
|
||||
export default function App() {
|
||||
export default Sentry.wrap(function App() {
|
||||
useEffect(() => {
|
||||
const nativeScreensMode = nativeScreensDisabled
|
||||
? "screens-disabled"
|
||||
: "default";
|
||||
const rootTabSceneMode =
|
||||
Platform.OS === "android" ? "opacity-fixed-z-v1" : "default";
|
||||
Sentry.setTag("native_screens_mode", nativeScreensMode);
|
||||
Sentry.setTag("root_tab_scene_mode", rootTabSceneMode);
|
||||
Sentry.setContext("runtime_navigation_flags", {
|
||||
platform: Platform.OS,
|
||||
nativeScreensMode,
|
||||
rootTabSceneMode,
|
||||
});
|
||||
Sentry.addBreadcrumb({
|
||||
category: "runtime.flags",
|
||||
level: "info",
|
||||
message: "runtime navigation flags applied",
|
||||
data: {
|
||||
platform: Platform.OS,
|
||||
nativeScreensMode,
|
||||
rootTabSceneMode,
|
||||
},
|
||||
});
|
||||
void startAppLifecycleCrashSentinel({ nativeScreensMode });
|
||||
return () => {
|
||||
stopAppLifecycleCrashSentinel();
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
UpdateAsync();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
void migrateLegacyVoicepeakSettings();
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
const openFelicaPage = (retryCount = 0) => {
|
||||
if (!rootNavigationRef.isReady()) {
|
||||
@@ -78,46 +160,69 @@ export default function App() {
|
||||
|
||||
const routeFromUrl = (url: string, retryCount = 0) => {
|
||||
const normalized = (url || "").toLowerCase();
|
||||
if (!normalized) return;
|
||||
if (!normalized) return false;
|
||||
|
||||
if (
|
||||
normalized.includes("felicahistorypage") ||
|
||||
normalized.includes("open/felica")
|
||||
) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => openFelicaPage(), url, retryCount);
|
||||
} else if (normalized.includes("open/traininfo")) {
|
||||
return true;
|
||||
}
|
||||
if (normalized.includes("open/traininfo")) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => {
|
||||
stackAwareNavigate("topMenu", { screen: "menu" });
|
||||
setTimeout(() => {
|
||||
SheetManager.show("JRSTraInfo");
|
||||
}, 450);
|
||||
}, url, retryCount);
|
||||
} else if (normalized.includes("open/operation")) {
|
||||
return true;
|
||||
}
|
||||
if (normalized.includes("open/operation")) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => {
|
||||
stackAwareNavigate("information");
|
||||
}, url, retryCount);
|
||||
} else if (normalized.includes("open/settings")) {
|
||||
return true;
|
||||
}
|
||||
if (normalized.includes("open/settings")) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => {
|
||||
stackAwareNavigate("topMenu", {
|
||||
screen: "setting",
|
||||
});
|
||||
}, url, retryCount);
|
||||
} else if (normalized.includes("open/topmenu")) {
|
||||
return true;
|
||||
}
|
||||
if (normalized.includes("open/topmenu")) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => {
|
||||
stackAwareNavigate("topMenu", {
|
||||
screen: "menu",
|
||||
});
|
||||
}, url, retryCount);
|
||||
} else if (normalized.includes("positions/apps")) {
|
||||
return true;
|
||||
}
|
||||
if (normalized.includes("positions/apps")) {
|
||||
markStartupExplicitTarget();
|
||||
navigateWhenReady(() => {
|
||||
stackAwareNavigate("positions");
|
||||
}, url, retryCount);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
Linking.getInitialURL().then((url) => {
|
||||
if (url) routeFromUrl(url);
|
||||
});
|
||||
Linking.getInitialURL()
|
||||
.then((url) => {
|
||||
if (url) routeFromUrl(url);
|
||||
})
|
||||
.finally(() => {
|
||||
resolveStartupNavigationSource();
|
||||
});
|
||||
|
||||
const sub = Linking.addEventListener("url", ({ url }) => {
|
||||
routeFromUrl(url);
|
||||
@@ -135,10 +240,10 @@ export default function App() {
|
||||
StationListProvider,
|
||||
FavoriteStationProvider,
|
||||
TrainDelayDataProvider,
|
||||
TrainMenuProvider, // CurrentTrainProvider より先に置くことで useTrainMenu が使える
|
||||
CurrentTrainProvider,
|
||||
AreaInfoProvider,
|
||||
BusAndTrainDataProvider,
|
||||
TrainMenuProvider,
|
||||
SheetProvider,
|
||||
]);
|
||||
return (
|
||||
@@ -157,7 +262,7 @@ export default function App() {
|
||||
</DeviceOrientationChangeProvider>
|
||||
</AppThemeProvider>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* 低密度ディスプレイ(DeX等)で全体を transform scale で拡大。
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import React from "react";
|
||||
import { NavigationContainer, DarkTheme, DefaultTheme } from "@react-navigation/native";
|
||||
import { NavigationContainer, DarkTheme, DefaultTheme, type EventArg } from "@react-navigation/native";
|
||||
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
|
||||
import { Animated, Platform, ActivityIndicator, View, StyleSheet, StatusBar } from "react-native";
|
||||
import { Animated, Platform, ActivityIndicator, View, StyleSheet, StatusBar, useWindowDimensions, InteractionManager } from "react-native";
|
||||
import { useNavigationState } from "@react-navigation/native";
|
||||
import { useFonts } from "expo-font";
|
||||
import { LinearGradient } from "expo-linear-gradient";
|
||||
@@ -14,9 +14,21 @@ import { useTrainMenu } from "./stateBox/useTrainMenu";
|
||||
import lineColorList from "./assets/originData/lineColorList";
|
||||
import { stationIDPair } from "./lib/getStationList";
|
||||
import "./components/ActionSheetComponents/sheets";
|
||||
import { rootNavigationRef } from "./lib/rootNavigation";
|
||||
import { lastObservedRootRouteRef, positionsLifecycleRef, rootNavigationRef } from "./lib/rootNavigation";
|
||||
import {
|
||||
startupExplicitTargetRef,
|
||||
waitForStartupNavigationResolution,
|
||||
} from "./lib/rootNavigation";
|
||||
import { fixedColors } from "./lib/theme/colors";
|
||||
import { useThemeColors } from "./lib/theme";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
import WebView from "react-native-webview";
|
||||
import { AS } from "./storageControl";
|
||||
import { STORAGE_KEYS } from "./constants/storage";
|
||||
import {
|
||||
recordAppLifecycleRootNavigation,
|
||||
setAppLifecycleWebViewActive,
|
||||
} from "./lib/observability/appLifecycleCrashSentinel";
|
||||
|
||||
type RootTabParamList = {
|
||||
positions: undefined;
|
||||
@@ -35,10 +47,219 @@ type TabProps = {
|
||||
|
||||
const Tab = createBottomTabNavigator<RootTabParamList>();
|
||||
|
||||
const HiddenStartupPreloadWebViews = ({
|
||||
shouldPreloadPositions,
|
||||
shouldPreloadInformation,
|
||||
}: {
|
||||
shouldPreloadPositions: boolean;
|
||||
shouldPreloadInformation: boolean;
|
||||
}) => {
|
||||
const [positionsLoaded, setPositionsLoaded] = React.useState(false);
|
||||
const [informationLoaded, setInformationLoaded] = React.useState(false);
|
||||
|
||||
React.useEffect(() => {
|
||||
Sentry.setContext("startup_hidden_preload", {
|
||||
shouldPreloadPositions,
|
||||
shouldPreloadInformation,
|
||||
positionsLoaded,
|
||||
informationLoaded,
|
||||
});
|
||||
}, [informationLoaded, positionsLoaded, shouldPreloadInformation, shouldPreloadPositions]);
|
||||
|
||||
const hiddenStyle = React.useMemo(() => ({
|
||||
position: "absolute" as const,
|
||||
width: 1,
|
||||
height: 1,
|
||||
opacity: 0,
|
||||
left: -1000,
|
||||
top: -1000,
|
||||
pointerEvents: "none" as const,
|
||||
}), []);
|
||||
|
||||
const showPositions = shouldPreloadPositions && !positionsLoaded;
|
||||
const showInformation = shouldPreloadInformation && !informationLoaded;
|
||||
|
||||
if (!showPositions && !showInformation) return null;
|
||||
|
||||
return (
|
||||
<View pointerEvents="none" style={hiddenStyle}>
|
||||
{showPositions ? (
|
||||
<WebView
|
||||
source={{ uri: "https://train.jr-shikoku.co.jp/" }}
|
||||
originWhitelist={["https://train.jr-shikoku.co.jp"]}
|
||||
javaScriptEnabled
|
||||
setSupportMultipleWindows={false}
|
||||
onLoadStart={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_positions", true);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "info",
|
||||
message: "positions hidden preload loadStart",
|
||||
});
|
||||
}}
|
||||
onLoadEnd={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_positions", false);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "info",
|
||||
message: "positions hidden preload loadEnd",
|
||||
});
|
||||
setPositionsLoaded(true);
|
||||
}}
|
||||
onError={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_positions", false);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "error",
|
||||
message: "positions hidden preload error",
|
||||
});
|
||||
}}
|
||||
/>
|
||||
) : null}
|
||||
{showInformation ? (
|
||||
<WebView
|
||||
source={{ uri: "https://www.jr-shikoku.co.jp/info/" }}
|
||||
originWhitelist={["https://www.jr-shikoku.co.jp"]}
|
||||
javaScriptEnabled
|
||||
setSupportMultipleWindows={false}
|
||||
onLoadStart={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_operation", true);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "info",
|
||||
message: "operation hidden preload loadStart",
|
||||
});
|
||||
}}
|
||||
onLoadEnd={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_operation", false);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "info",
|
||||
message: "operation hidden preload loadEnd",
|
||||
});
|
||||
setInformationLoaded(true);
|
||||
}}
|
||||
onError={() => {
|
||||
setAppLifecycleWebViewActive("startup_hidden_operation", false);
|
||||
Sentry.addBreadcrumb({
|
||||
category: "startup.preload",
|
||||
level: "error",
|
||||
message: "operation hidden preload error",
|
||||
});
|
||||
}}
|
||||
/>
|
||||
) : null}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const PositionsRootGateContext = React.createContext({
|
||||
shouldActivate: false,
|
||||
isRootFocused: false,
|
||||
});
|
||||
|
||||
const InformationRootGateContext = React.createContext({
|
||||
shouldActivate: false,
|
||||
isRootFocused: false,
|
||||
});
|
||||
|
||||
const DeferredPositionsRoot = ({ shouldActivate, isRootFocused }: { shouldActivate: boolean; isRootFocused: boolean }) => {
|
||||
const [hasActivated, setHasActivated] = React.useState(false);
|
||||
|
||||
React.useEffect(() => {
|
||||
Sentry.setContext("positions_root_gate", {
|
||||
focused: isRootFocused,
|
||||
activated: hasActivated,
|
||||
shouldActivate,
|
||||
});
|
||||
}, [hasActivated, isRootFocused, shouldActivate]);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!shouldActivate || hasActivated) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions root activation",
|
||||
data: {
|
||||
reason: "first_root_visit",
|
||||
},
|
||||
});
|
||||
setHasActivated(true);
|
||||
}, [hasActivated, shouldActivate]);
|
||||
|
||||
if (!hasActivated) {
|
||||
return <View style={{ flex: 1 }} />;
|
||||
}
|
||||
|
||||
return <Top />;
|
||||
};
|
||||
|
||||
const PositionsTabScreen = React.memo(() => {
|
||||
const { shouldActivate, isRootFocused } = React.useContext(PositionsRootGateContext);
|
||||
return (
|
||||
<DeferredPositionsRoot
|
||||
shouldActivate={shouldActivate}
|
||||
isRootFocused={isRootFocused}
|
||||
/>
|
||||
);
|
||||
});
|
||||
PositionsTabScreen.displayName = "PositionsTabScreen";
|
||||
|
||||
|
||||
const DeferredInformationRoot = ({ shouldActivate, isRootFocused }: { shouldActivate: boolean; isRootFocused: boolean }) => {
|
||||
const [hasActivated, setHasActivated] = React.useState(false);
|
||||
|
||||
React.useEffect(() => {
|
||||
Sentry.setContext("operation_root_gate", {
|
||||
focused: isRootFocused,
|
||||
activated: hasActivated,
|
||||
shouldActivate,
|
||||
});
|
||||
}, [hasActivated, isRootFocused, shouldActivate]);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!shouldActivate || hasActivated) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation root activation",
|
||||
data: {
|
||||
reason: isRootFocused ? "first_focus" : "background_prewarm",
|
||||
},
|
||||
});
|
||||
setHasActivated(true);
|
||||
}, [hasActivated, isRootFocused, shouldActivate]);
|
||||
|
||||
if (!hasActivated) {
|
||||
return <View style={{ flex: 1 }} />;
|
||||
}
|
||||
|
||||
return <TNDView />;
|
||||
};
|
||||
|
||||
const InformationTabScreen = React.memo(() => {
|
||||
const { shouldActivate, isRootFocused } = React.useContext(InformationRootGateContext);
|
||||
return (
|
||||
<DeferredInformationRoot
|
||||
shouldActivate={shouldActivate}
|
||||
isRootFocused={isRootFocused}
|
||||
/>
|
||||
);
|
||||
});
|
||||
InformationTabScreen.displayName = "InformationTabScreen";
|
||||
|
||||
export function AppContainer() {
|
||||
const { areaInfo, areaIconBadgeText, isInfo } = useAreaInfo();
|
||||
const { selectedLine } = useTrainMenu();
|
||||
const { width, height } = useWindowDimensions();
|
||||
const [isExtraWindowOpen, setIsExtraWindowOpen] = React.useState(false);
|
||||
const [startupInitialRoute, setStartupInitialRoute] = React.useState<keyof RootTabParamList | null>(null);
|
||||
const [hasVisitedPositions, setHasVisitedPositions] = React.useState(false);
|
||||
const [hasVisitedInformation, setHasVisitedInformation] = React.useState(false);
|
||||
const [currentRootRoute, setCurrentRootRoute] = React.useState<keyof RootTabParamList | null>(null);
|
||||
const [navigationReady, setNavigationReady] = React.useState(false);
|
||||
const startupPrewarmAttemptedRef = React.useRef(false);
|
||||
const informationStartupPrewarmAttemptedRef = React.useRef(false);
|
||||
|
||||
// フェードアニメーション用 (0=通常, 1=追加ウィンドウ青)
|
||||
const fadeAnim = React.useRef(new Animated.Value(0)).current;
|
||||
@@ -62,7 +283,47 @@ export function AppContainer() {
|
||||
return `#${[r, g, b].map((v) => Math.min(255, v).toString(16).padStart(2, "0")).join("")}`;
|
||||
};
|
||||
const { isDark } = useThemeColors();
|
||||
const lastRootNavStateRef = React.useRef("");
|
||||
const lineColorDark = lineColor ? darkenHex(lineColor, 0.78) : null;
|
||||
|
||||
React.useEffect(() => {
|
||||
let cancelled = false;
|
||||
|
||||
void (async () => {
|
||||
await waitForStartupNavigationResolution();
|
||||
if (cancelled) return;
|
||||
|
||||
let nextInitialRoute: keyof RootTabParamList = "topMenu";
|
||||
if (!startupExplicitTargetRef.current) {
|
||||
try {
|
||||
const startPage = await AS.getItem(STORAGE_KEYS.START_PAGE);
|
||||
if (startPage === "true") {
|
||||
nextInitialRoute = "positions";
|
||||
}
|
||||
} catch {
|
||||
// Keep the default route when the setting is unset or unreadable.
|
||||
}
|
||||
}
|
||||
|
||||
if (cancelled) return;
|
||||
|
||||
setStartupInitialRoute(nextInitialRoute);
|
||||
setHasVisitedPositions(nextInitialRoute === "positions");
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.root",
|
||||
level: "info",
|
||||
message: "startup initial root route resolved",
|
||||
data: {
|
||||
startupExplicitTarget: startupExplicitTargetRef.current,
|
||||
initialRoute: nextInitialRoute,
|
||||
},
|
||||
});
|
||||
})();
|
||||
|
||||
return () => {
|
||||
cancelled = true;
|
||||
};
|
||||
}, []);
|
||||
const linking = {
|
||||
prefixes: ["jrshikoku://"],
|
||||
config: {
|
||||
@@ -99,17 +360,152 @@ export function AppContainer() {
|
||||
tabBarLabel: label,
|
||||
headerShown: false,
|
||||
gestureEnabled: true,
|
||||
unmountOnBlur: false,
|
||||
tabBarIcon: initIcon(icon as any, iconFamily, tabBarBadge, isInfo),
|
||||
|
||||
},
|
||||
});
|
||||
const applyRootNavigationState = React.useCallback((state: any, source: "ready" | "change") => {
|
||||
const activeRoute = state?.routes?.[state?.index ?? 0];
|
||||
const hasExtra = (activeRoute?.state?.index ?? 0) > 0;
|
||||
const nestedState = activeRoute?.state;
|
||||
const nestedRoute = nestedState?.routes?.[nestedState.index ?? 0]?.name ?? null;
|
||||
const signature = JSON.stringify({
|
||||
rootIndex: state?.index ?? 0,
|
||||
rootRoute: activeRoute?.name ?? null,
|
||||
nestedIndex: nestedState?.index ?? 0,
|
||||
nestedRoute,
|
||||
hasExtra,
|
||||
});
|
||||
if (lastRootNavStateRef.current !== signature) {
|
||||
lastRootNavStateRef.current = signature;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.root",
|
||||
level: "info",
|
||||
message: source === "ready" ? "root state initialized" : "root state change",
|
||||
data: {
|
||||
rootIndex: state?.index ?? 0,
|
||||
rootRoute: activeRoute?.name ?? null,
|
||||
nestedIndex: nestedState?.index ?? 0,
|
||||
nestedRoute,
|
||||
hasExtra,
|
||||
source,
|
||||
},
|
||||
});
|
||||
}
|
||||
const rootRouteName = (activeRoute?.name ?? null) as keyof RootTabParamList | null;
|
||||
if (rootRouteName) {
|
||||
lastObservedRootRouteRef.current = rootRouteName;
|
||||
}
|
||||
recordAppLifecycleRootNavigation({
|
||||
rootIndex: state?.index ?? 0,
|
||||
rootRoute: rootRouteName,
|
||||
nestedIndex: nestedState?.index ?? 0,
|
||||
nestedRoute,
|
||||
source,
|
||||
});
|
||||
Sentry.setTag("root_tab", rootRouteName ?? "unknown");
|
||||
Sentry.setContext("root_navigation", {
|
||||
rootIndex: state?.index ?? 0,
|
||||
rootRoute: rootRouteName,
|
||||
nestedIndex: nestedState?.index ?? 0,
|
||||
nestedRoute,
|
||||
hasExtra,
|
||||
source,
|
||||
operationOrientation: width > height ? "landscape" : "portrait",
|
||||
hasVisitedPositions,
|
||||
hasVisitedInformation,
|
||||
});
|
||||
setCurrentRootRoute(rootRouteName);
|
||||
setIsExtraWindowOpen(hasExtra);
|
||||
}, [hasVisitedInformation, hasVisitedPositions, width, height]);
|
||||
|
||||
const [fontLoaded, error] = useFonts({
|
||||
"JR-Nishi": require("./assets/fonts/jr-nishi.otf"),
|
||||
"JR-WEST-PLUS": require("./assets/fonts/JR-WEST-PLUS.otf"),
|
||||
Zou: require("./assets/fonts/DelaGothicOne-Regular.ttf"),
|
||||
"JNR-font": require("./assets/fonts/JNRfont_pict.ttf"),
|
||||
"DiaPro": require("./assets/fonts/DiaPro-Regular.otf"),
|
||||
});
|
||||
if (!fontLoaded) {
|
||||
React.useEffect(() => {
|
||||
if (!navigationReady || !fontLoaded) return;
|
||||
if (startupPrewarmAttemptedRef.current) return;
|
||||
if (hasVisitedPositions) {
|
||||
startupPrewarmAttemptedRef.current = true;
|
||||
return;
|
||||
}
|
||||
if (currentRootRoute === null || currentRootRoute === "positions") return;
|
||||
|
||||
startupPrewarmAttemptedRef.current = true;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions startup prewarm scheduled",
|
||||
data: {
|
||||
currentRootRoute,
|
||||
},
|
||||
});
|
||||
|
||||
let cancelled = false;
|
||||
const timer = setTimeout(() => {
|
||||
if (cancelled || hasVisitedPositions) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions startup prewarm activated",
|
||||
data: {
|
||||
currentRootRoute,
|
||||
},
|
||||
});
|
||||
setHasVisitedPositions(true);
|
||||
}, 500);
|
||||
|
||||
return () => {
|
||||
cancelled = true;
|
||||
clearTimeout(timer);
|
||||
};
|
||||
}, [currentRootRoute, fontLoaded, hasVisitedPositions, navigationReady]);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!navigationReady || !fontLoaded) return;
|
||||
if (informationStartupPrewarmAttemptedRef.current) return;
|
||||
if (hasVisitedInformation) {
|
||||
informationStartupPrewarmAttemptedRef.current = true;
|
||||
return;
|
||||
}
|
||||
if (currentRootRoute === null || currentRootRoute === "information") return;
|
||||
|
||||
informationStartupPrewarmAttemptedRef.current = true;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation startup prewarm scheduled",
|
||||
data: {
|
||||
currentRootRoute,
|
||||
},
|
||||
});
|
||||
|
||||
let cancelled = false;
|
||||
const timer = setTimeout(() => {
|
||||
if (cancelled || hasVisitedInformation) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation startup prewarm activated",
|
||||
data: {
|
||||
currentRootRoute,
|
||||
},
|
||||
});
|
||||
setHasVisitedInformation(true);
|
||||
}, 500);
|
||||
|
||||
return () => {
|
||||
cancelled = true;
|
||||
clearTimeout(timer);
|
||||
};
|
||||
}, [currentRootRoute, fontLoaded, hasVisitedInformation, navigationReady]);
|
||||
|
||||
if (!fontLoaded || !startupInitialRoute) {
|
||||
return (
|
||||
<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
|
||||
<ActivityIndicator size="large" />
|
||||
@@ -121,14 +517,123 @@ export function AppContainer() {
|
||||
ref={rootNavigationRef}
|
||||
linking={linking}
|
||||
theme={isDark ? DarkTheme : DefaultTheme}
|
||||
onReady={() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.root",
|
||||
level: "info",
|
||||
message: "navigation ready",
|
||||
});
|
||||
applyRootNavigationState(rootNavigationRef.getRootState?.() ?? rootNavigationRef.getState?.(), "ready");
|
||||
setNavigationReady(true);
|
||||
}}
|
||||
onStateChange={(state) => {
|
||||
const activeRoute = state?.routes?.[state?.index ?? 0];
|
||||
const hasExtra = (activeRoute?.state?.index ?? 0) > 0;
|
||||
setIsExtraWindowOpen(hasExtra);
|
||||
applyRootNavigationState(state, "change");
|
||||
}}
|
||||
>
|
||||
<PositionsRootGateContext.Provider
|
||||
value={{
|
||||
shouldActivate: hasVisitedPositions,
|
||||
isRootFocused: currentRootRoute === "positions",
|
||||
}}
|
||||
>
|
||||
<InformationRootGateContext.Provider
|
||||
value={{
|
||||
shouldActivate: hasVisitedInformation,
|
||||
isRootFocused: currentRootRoute === "information",
|
||||
}}
|
||||
>
|
||||
<Tab.Navigator
|
||||
initialRouteName="topMenu"
|
||||
id="rootTabs"
|
||||
detachInactiveScreens={false}
|
||||
initialRouteName={startupInitialRoute}
|
||||
screenListeners={({ route }) => ({
|
||||
tabPress: (event: EventArg<"tabPress", true>) => {
|
||||
const rootState = rootNavigationRef.getState();
|
||||
const activeRootRouteName =
|
||||
(rootState?.routes?.[rootState.index ?? 0]?.name as keyof RootTabParamList | undefined) ??
|
||||
currentRootRoute ??
|
||||
null;
|
||||
const leavingUnstablePositions =
|
||||
route.name !== "positions" &&
|
||||
positionsLifecycleRef.current.isUnstable;
|
||||
const blockingUnstableExit =
|
||||
route.name !== "positions" &&
|
||||
positionsLifecycleRef.current.blockTabExit;
|
||||
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.tab",
|
||||
level: "info",
|
||||
message: blockingUnstableExit
|
||||
? "root tabPress blocked while positions unstable"
|
||||
: leavingUnstablePositions
|
||||
? "root tabPress intercepted for unstable positions"
|
||||
: "root tabPress",
|
||||
data: {
|
||||
route: route.name,
|
||||
currentRootRoute,
|
||||
activeRootRouteName,
|
||||
unstablePositions: positionsLifecycleRef.current.isUnstable,
|
||||
blockTabExit: positionsLifecycleRef.current.blockTabExit,
|
||||
},
|
||||
});
|
||||
|
||||
if (blockingUnstableExit) {
|
||||
event.preventDefault();
|
||||
positionsLifecycleRef.current.resetBeforeLeave?.();
|
||||
requestAnimationFrame(() => {
|
||||
setTimeout(() => {
|
||||
rootNavigationRef.navigate(route.name as never);
|
||||
}, 0);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
if (leavingUnstablePositions) {
|
||||
event.preventDefault();
|
||||
positionsLifecycleRef.current.resetBeforeLeave?.();
|
||||
requestAnimationFrame(() => {
|
||||
setTimeout(() => {
|
||||
rootNavigationRef.navigate(route.name as never);
|
||||
}, 0);
|
||||
});
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions root exit reset and continued while session unstable",
|
||||
data: {
|
||||
route: route.name,
|
||||
},
|
||||
});
|
||||
}
|
||||
},
|
||||
focus: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.tab",
|
||||
level: "info",
|
||||
message: "root tab focus",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
blur: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.tab",
|
||||
level: "info",
|
||||
message: "root tab blur",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
state: (event) => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "nav.tab",
|
||||
level: "info",
|
||||
message: "root tab state",
|
||||
data: {
|
||||
route: route.name,
|
||||
stateType: event.type,
|
||||
},
|
||||
});
|
||||
},
|
||||
})}
|
||||
screenOptions={({ route }) => {
|
||||
const showGradient = route.name === "positions" && !!lineColor && !!lineColorDark;
|
||||
const defaultBg = isDark ? "#1c1c1e" : "white";
|
||||
@@ -136,6 +641,7 @@ export function AppContainer() {
|
||||
const defaultInactive = isDark ? "#8e8e93" : "#8e8e93";
|
||||
return {
|
||||
lazy: false,
|
||||
freezeOnBlur: false,
|
||||
sceneContainerStyle: { backgroundColor: defaultBg },
|
||||
tabBarActiveTintColor: (showGradient || isExtraWindowOpen) ? "white" : defaultActive,
|
||||
tabBarInactiveTintColor: (showGradient || isExtraWindowOpen) ? "rgba(255,255,255,0.75)" : defaultInactive,
|
||||
@@ -169,7 +675,32 @@ export function AppContainer() {
|
||||
>
|
||||
<Tab.Screen
|
||||
{...getTabProps("positions", "走行位置", "bar-chart", "AntDesign")}
|
||||
component={Top}
|
||||
component={PositionsTabScreen}
|
||||
listeners={{
|
||||
tabPress: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions root tabPress activation",
|
||||
});
|
||||
setHasVisitedPositions(true);
|
||||
},
|
||||
focus: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions root focus activation",
|
||||
});
|
||||
setHasVisitedPositions(true);
|
||||
},
|
||||
blur: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.root",
|
||||
level: "info",
|
||||
message: "positions root blur preserved",
|
||||
});
|
||||
},
|
||||
}}
|
||||
/>
|
||||
<Tab.Screen
|
||||
{...getTabProps("topMenu", "トップメニュー", "radio", "Ionicons")}
|
||||
@@ -185,9 +716,40 @@ export function AppContainer() {
|
||||
areaInfo ? areaIconBadgeText : undefined,
|
||||
isInfo
|
||||
)}
|
||||
children={TNDView}
|
||||
component={InformationTabScreen}
|
||||
listeners={{
|
||||
tabPress: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation root tabPress activation",
|
||||
});
|
||||
setHasVisitedInformation(true);
|
||||
},
|
||||
focus: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation root focus activation",
|
||||
});
|
||||
setHasVisitedInformation(true);
|
||||
},
|
||||
blur: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "operation.root",
|
||||
level: "info",
|
||||
message: "operation root blur preserved",
|
||||
});
|
||||
},
|
||||
}}
|
||||
/>
|
||||
</Tab.Navigator>
|
||||
</InformationRootGateContext.Provider>
|
||||
</PositionsRootGateContext.Provider>
|
||||
<HiddenStartupPreloadWebViews
|
||||
shouldPreloadPositions={navigationReady && fontLoaded && currentRootRoute === "topMenu" && !hasVisitedPositions}
|
||||
shouldPreloadInformation={navigationReady && fontLoaded && currentRootRoute === "topMenu" && !hasVisitedInformation}
|
||||
/>
|
||||
</NavigationContainer>
|
||||
);
|
||||
}
|
||||
|
||||
+428
-30
@@ -1,32 +1,161 @@
|
||||
import React from "react";
|
||||
import { Alert, BackHandler, View } from "react-native";
|
||||
import { Alert, ActivityIndicator, BackHandler, StyleSheet, Text, TouchableOpacity, View } from "react-native";
|
||||
import * as FileSystem from "expo-file-system/legacy";
|
||||
import * as Sharing from "expo-sharing";
|
||||
import { WebView } from "react-native-webview";
|
||||
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
||||
import { BigButton } from "./components/atom/BigButton";
|
||||
import { useFocusEffect, useNavigation } from "@react-navigation/native";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { AS } from "./storageControl";
|
||||
import { STORAGE_KEYS } from "@/constants";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import {
|
||||
DEFAULT_JR_DATA_SYSTEM_ENV,
|
||||
normalizeJrDataSystemEnvironment,
|
||||
rewriteJrDataSystemUrl,
|
||||
} from "@/lib/jrDataSystemEnvironment";
|
||||
|
||||
const RECORDING_DOWNLOAD_BRIDGE_SCRIPT = `
|
||||
(() => {
|
||||
if (window.__JRS_RECORDING_DOWNLOAD_BRIDGE__) return true;
|
||||
window.__JRS_RECORDING_DOWNLOAD_BRIDGE__ = true;
|
||||
|
||||
const blobUrls = new Map();
|
||||
const post = (payload) => {
|
||||
window.ReactNativeWebView?.postMessage(JSON.stringify(payload));
|
||||
};
|
||||
const isLikelyRecordingDownload = (url, anchor) => {
|
||||
if (!url) return false;
|
||||
const lowerUrl = String(url).toLowerCase();
|
||||
const downloadName = anchor?.getAttribute?.('download') || '';
|
||||
const lowerName = String(downloadName).toLowerCase();
|
||||
return Boolean(downloadName)
|
||||
|| lowerUrl.includes('recording')
|
||||
|| lowerUrl.includes('recordings')
|
||||
|| lowerUrl.includes('download')
|
||||
|| lowerUrl.includes('export')
|
||||
|| lowerUrl.includes('json')
|
||||
|| lowerName.includes('recording')
|
||||
|| lowerName.endsWith('.json');
|
||||
};
|
||||
const readUrlAsText = async (url) => {
|
||||
if (blobUrls.has(url)) {
|
||||
return blobUrls.get(url).text();
|
||||
}
|
||||
const response = await fetch(url, { credentials: 'include' });
|
||||
if (!response.ok) throw new Error('HTTP ' + response.status);
|
||||
return response.text();
|
||||
};
|
||||
const importFromUrl = async (url) => {
|
||||
try {
|
||||
const text = await readUrlAsText(url);
|
||||
post({ type: 'importRecordingDownload', text, sourceUrl: url });
|
||||
} catch (error) {
|
||||
post({
|
||||
type: 'importRecordingDownloadError',
|
||||
message: error?.message || String(error),
|
||||
sourceUrl: url,
|
||||
});
|
||||
}
|
||||
};
|
||||
const findAnchor = (target) => {
|
||||
let node = target;
|
||||
while (node && node !== document) {
|
||||
if (node.tagName === 'A' && node.href) return node;
|
||||
node = node.parentNode;
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
if (window.URL?.createObjectURL) {
|
||||
const originalCreateObjectURL = window.URL.createObjectURL.bind(window.URL);
|
||||
window.URL.createObjectURL = (object) => {
|
||||
const url = originalCreateObjectURL(object);
|
||||
if (object instanceof Blob) blobUrls.set(url, object);
|
||||
return url;
|
||||
};
|
||||
}
|
||||
|
||||
document.addEventListener('click', (event) => {
|
||||
const anchor = findAnchor(event.target);
|
||||
if (!anchor || !isLikelyRecordingDownload(anchor.href, anchor)) return;
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
importFromUrl(anchor.href);
|
||||
}, true);
|
||||
|
||||
if (window.HTMLAnchorElement?.prototype?.click) {
|
||||
const originalClick = window.HTMLAnchorElement.prototype.click;
|
||||
window.HTMLAnchorElement.prototype.click = function patchedClick() {
|
||||
if (isLikelyRecordingDownload(this.href, this)) {
|
||||
importFromUrl(this.href);
|
||||
return;
|
||||
}
|
||||
return originalClick.apply(this, arguments);
|
||||
};
|
||||
}
|
||||
|
||||
return true;
|
||||
})();
|
||||
true;
|
||||
`;
|
||||
|
||||
const isLikelyRecordingDownloadUrl = (url: string) => {
|
||||
const lowerUrl = url.toLowerCase();
|
||||
return lowerUrl.includes('recording')
|
||||
|| lowerUrl.includes('recordings')
|
||||
|| lowerUrl.includes('download')
|
||||
|| lowerUrl.includes('export')
|
||||
|| lowerUrl.includes('json')
|
||||
|| lowerUrl.endsWith('.json');
|
||||
};
|
||||
|
||||
export default ({ route }) => {
|
||||
if (!route.params) {
|
||||
return null;
|
||||
}
|
||||
const { uri, useExitButton = true } = route.params;
|
||||
const {
|
||||
uri,
|
||||
useExitButton = true,
|
||||
importRecordingDownloads = false,
|
||||
} = route.params;
|
||||
const { goBack } = useNavigation();
|
||||
const { fixed } = useThemeColors();
|
||||
const { importRecordingsFromText } = useTrainMenu();
|
||||
const webViewRef = React.useRef<WebView>(null);
|
||||
const [canGoBack, setCanGoBack] = React.useState(false);
|
||||
const nativeCanGoBackRef = React.useRef(false);
|
||||
const historyStackRef = React.useRef<string[]>([]);
|
||||
const [selectedEnvironment, setSelectedEnvironment] = React.useState(
|
||||
DEFAULT_JR_DATA_SYSTEM_ENV,
|
||||
);
|
||||
const [resolvedUri, setResolvedUri] = React.useState("");
|
||||
const [isEnvironmentReady, setIsEnvironmentReady] = React.useState(false);
|
||||
const hasAlerted = React.useRef(false);
|
||||
const [isLoading, setIsLoading] = React.useState(true);
|
||||
const [hasError, setHasError] = React.useState(false);
|
||||
const [errorMessage, setErrorMessage] = React.useState("");
|
||||
// WebViewをforce remountするためのkey
|
||||
const [webViewKey, setWebViewKey] = React.useState(0);
|
||||
// RN-side watchdog: WebViewプロセスの死活確認用
|
||||
const lastPongAt = React.useRef<number>(Date.now());
|
||||
const isLoadingRef = React.useRef(true);
|
||||
const hasErrorRef = React.useRef(false);
|
||||
// コンテンツ消失検知用: bodyLen の最大値と連続白画面カウント
|
||||
const maxBodyLenRef = React.useRef(0);
|
||||
const blankCountRef = React.useRef(0);
|
||||
|
||||
const remount = React.useCallback(() => {
|
||||
lastPongAt.current = Date.now(); // remount直後に誤検知しないようリセット
|
||||
maxBodyLenRef.current = 0;
|
||||
blankCountRef.current = 0;
|
||||
setHasError(false);
|
||||
hasErrorRef.current = false;
|
||||
setIsLoading(true);
|
||||
isLoadingRef.current = true;
|
||||
setWebViewKey((k) => k + 1);
|
||||
}, []);
|
||||
|
||||
React.useEffect(() => {
|
||||
let isMounted = true;
|
||||
@@ -34,12 +163,15 @@ export default ({ route }) => {
|
||||
const applyEnvironment = (value: unknown) => {
|
||||
if (!isMounted) return;
|
||||
const nextEnvironment = normalizeJrDataSystemEnvironment(value);
|
||||
const rawUri = typeof uri === "string" ? uri : "";
|
||||
historyStackRef.current = [];
|
||||
nativeCanGoBackRef.current = false;
|
||||
setCanGoBack(false);
|
||||
setSelectedEnvironment(nextEnvironment);
|
||||
setResolvedUri(
|
||||
rewriteJrDataSystemUrl(
|
||||
typeof uri === "string" ? uri : "",
|
||||
nextEnvironment,
|
||||
),
|
||||
importRecordingDownloads
|
||||
? rawUri
|
||||
: rewriteJrDataSystemUrl(rawUri, nextEnvironment),
|
||||
);
|
||||
setIsEnvironmentReady(true);
|
||||
};
|
||||
@@ -51,14 +183,95 @@ export default ({ route }) => {
|
||||
return () => {
|
||||
isMounted = false;
|
||||
};
|
||||
}, [uri]);
|
||||
}, [uri, importRecordingDownloads]);
|
||||
|
||||
const handleReload = () => {
|
||||
lastPongAt.current = Date.now();
|
||||
setHasError(false);
|
||||
hasErrorRef.current = false;
|
||||
setIsLoading(true);
|
||||
isLoadingRef.current = true;
|
||||
setWebViewKey((k) => k + 1);
|
||||
};
|
||||
|
||||
const syncCanGoBack = React.useCallback((nativeCanGoBack: boolean) => {
|
||||
nativeCanGoBackRef.current = nativeCanGoBack;
|
||||
setCanGoBack(nativeCanGoBack || historyStackRef.current.length > 1);
|
||||
}, []);
|
||||
|
||||
const pushHistoryEntry = React.useCallback((url: string) => {
|
||||
if (!url) return;
|
||||
const stack = historyStackRef.current;
|
||||
if (stack[stack.length - 1] === url) return;
|
||||
stack.push(url);
|
||||
if (stack.length > 30) {
|
||||
stack.splice(0, stack.length - 30);
|
||||
}
|
||||
}, []);
|
||||
|
||||
const handlePseudoBack = React.useCallback(() => {
|
||||
const stack = historyStackRef.current;
|
||||
if (stack.length <= 1) return false;
|
||||
stack.pop();
|
||||
const previousUrl = stack[stack.length - 1];
|
||||
if (!previousUrl) return false;
|
||||
setResolvedUri(previousUrl);
|
||||
syncCanGoBack(false);
|
||||
remount();
|
||||
return true;
|
||||
}, [remount, syncCanGoBack]);
|
||||
|
||||
const handleWebViewBack = React.useCallback(() => {
|
||||
if (nativeCanGoBackRef.current) {
|
||||
webViewRef.current?.goBack();
|
||||
return true;
|
||||
}
|
||||
return handlePseudoBack();
|
||||
}, [handlePseudoBack]);
|
||||
|
||||
const handleImportRecordingText = React.useCallback(
|
||||
async (content: string) => {
|
||||
try {
|
||||
const result = await importRecordingsFromText(content);
|
||||
Alert.alert(
|
||||
"録画データを読み込みました",
|
||||
result.overwrittenCount > 0
|
||||
? `${result.importedCount}件を読み込みました。${result.overwrittenCount}件は同じIDのため上書きしました。`
|
||||
: `${result.importedCount}件を読み込みました。`,
|
||||
);
|
||||
} catch (error) {
|
||||
Alert.alert(
|
||||
"録画データを読み込めませんでした",
|
||||
(error as Error).message || "ファイル内容を確認してください。",
|
||||
);
|
||||
}
|
||||
},
|
||||
[importRecordingsFromText],
|
||||
);
|
||||
|
||||
const handleImportRecordingUrl = React.useCallback(
|
||||
async (url: string) => {
|
||||
try {
|
||||
const response = await fetch(url);
|
||||
if (!response.ok) {
|
||||
throw new Error(`HTTP ${response.status}`);
|
||||
}
|
||||
await handleImportRecordingText(await response.text());
|
||||
} catch (error) {
|
||||
Alert.alert(
|
||||
"録画データを取得できませんでした",
|
||||
(error as Error).message || "通信状態を確認してください。",
|
||||
);
|
||||
}
|
||||
},
|
||||
[handleImportRecordingText],
|
||||
);
|
||||
|
||||
useFocusEffect(
|
||||
React.useCallback(() => {
|
||||
const onHardwareBack = () => {
|
||||
if (canGoBack) {
|
||||
webViewRef.current?.goBack();
|
||||
return true;
|
||||
if (handleWebViewBack()) return true;
|
||||
}
|
||||
goBack();
|
||||
return true;
|
||||
@@ -66,52 +279,237 @@ export default ({ route }) => {
|
||||
|
||||
const subscription = BackHandler.addEventListener("hardwareBackPress", onHardwareBack);
|
||||
return () => subscription.remove();
|
||||
}, [canGoBack, goBack])
|
||||
}, [canGoBack, goBack, handleWebViewBack])
|
||||
);
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary }}>
|
||||
{isEnvironmentReady && (
|
||||
<WebView
|
||||
key={webViewKey}
|
||||
source={{ uri: resolvedUri }}
|
||||
contentMode="mobile"
|
||||
allowsBackForwardNavigationGestures
|
||||
setSupportMultipleWindows={false}
|
||||
ref={webViewRef}
|
||||
injectedJavaScriptBeforeContentLoaded={
|
||||
importRecordingDownloads ? RECORDING_DOWNLOAD_BRIDGE_SCRIPT : `true;`
|
||||
}
|
||||
onLoadStart={() => {
|
||||
isLoadingRef.current = true;
|
||||
setHasError(false);
|
||||
hasErrorRef.current = false;
|
||||
maxBodyLenRef.current = 0;
|
||||
blankCountRef.current = 0;
|
||||
}}
|
||||
onLoadEnd={() => {
|
||||
setIsLoading(false);
|
||||
isLoadingRef.current = false;
|
||||
lastPongAt.current = Date.now();
|
||||
}}
|
||||
onError={(syntheticEvent) => {
|
||||
const { nativeEvent } = syntheticEvent;
|
||||
setIsLoading(false);
|
||||
isLoadingRef.current = false;
|
||||
setHasError(true);
|
||||
hasErrorRef.current = true;
|
||||
setErrorMessage(nativeEvent.description || "ページを読み込めませんでした");
|
||||
}}
|
||||
onHttpError={(syntheticEvent) => {
|
||||
const { nativeEvent } = syntheticEvent;
|
||||
if (nativeEvent.statusCode >= 500) {
|
||||
setIsLoading(false);
|
||||
isLoadingRef.current = false;
|
||||
setHasError(true);
|
||||
hasErrorRef.current = true;
|
||||
setErrorMessage(`サーバーエラー (${nativeEvent.statusCode})`);
|
||||
}
|
||||
}}
|
||||
onRenderProcessGone={() => {
|
||||
// クラッシュ・メモリ回収どちらも自動remount
|
||||
remount();
|
||||
}}
|
||||
// iOS: コンテンツプロセスがメモリ圧迫で終了した場合
|
||||
onContentProcessDidTerminate={() => remount()}
|
||||
onShouldStartLoadWithRequest={(request) => {
|
||||
if (request.isTopFrame === false) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const rewrittenUrl = rewriteJrDataSystemUrl(
|
||||
request.url,
|
||||
selectedEnvironment,
|
||||
);
|
||||
if (rewrittenUrl !== request.url) {
|
||||
setResolvedUri(rewrittenUrl);
|
||||
if (
|
||||
importRecordingDownloads &&
|
||||
isLikelyRecordingDownloadUrl(request.url) &&
|
||||
request.url !== resolvedUri
|
||||
) {
|
||||
void handleImportRecordingUrl(request.url);
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!importRecordingDownloads) {
|
||||
const rewrittenUrl = rewriteJrDataSystemUrl(
|
||||
request.url,
|
||||
selectedEnvironment,
|
||||
);
|
||||
if (rewrittenUrl !== request.url) {
|
||||
setResolvedUri(rewrittenUrl);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}}
|
||||
onNavigationStateChange={(navState) => {
|
||||
setCanGoBack(navState.canGoBack);
|
||||
if (navState.url === "https://unyohub.2pd.jp/integration/succeeded.php") {
|
||||
webViewRef.current?.goBack();
|
||||
if (!hasAlerted.current) {
|
||||
hasAlerted.current = true;
|
||||
Alert.alert("鉄道運用HUBへの投稿完了", "運用HUBからのこのアプリへのデータ反映には暫く時間がかかりますので、しばらくお待ちください。", [
|
||||
{ text: "完了" },
|
||||
]);
|
||||
onFileDownload={(event) => {
|
||||
if (!importRecordingDownloads) return;
|
||||
const downloadUrl = event.nativeEvent.downloadUrl;
|
||||
if (downloadUrl) {
|
||||
void handleImportRecordingUrl(downloadUrl);
|
||||
}
|
||||
}
|
||||
}}
|
||||
}}
|
||||
onNavigationStateChange={(navState) => {
|
||||
if (navState.url) {
|
||||
const nextUrl = importRecordingDownloads
|
||||
? navState.url
|
||||
: rewriteJrDataSystemUrl(navState.url, selectedEnvironment);
|
||||
setResolvedUri((current) => (current === nextUrl ? current : nextUrl));
|
||||
if (nextUrl !== "https://unyohub.2pd.jp/integration/succeeded.php") {
|
||||
pushHistoryEntry(nextUrl);
|
||||
}
|
||||
}
|
||||
syncCanGoBack(navState.canGoBack);
|
||||
// SPA内遷移中は白画面誤検知を防ぐためblankCountをリセット
|
||||
if (navState.loading) blankCountRef.current = 0;
|
||||
if (navState.url === "https://unyohub.2pd.jp/integration/succeeded.php") {
|
||||
webViewRef.current?.goBack();
|
||||
if (!hasAlerted.current) {
|
||||
hasAlerted.current = true;
|
||||
Alert.alert("鉄道運用HUBへの投稿完了", "運用HUBからのこのアプリへのデータ反映には暫く時間がかかりますので、しばらくお待ちください。", [
|
||||
{ text: "完了" },
|
||||
]);
|
||||
}
|
||||
}
|
||||
}}
|
||||
onMessage={(event) => {
|
||||
const { data } = event.nativeEvent;
|
||||
const { type } = JSON.parse(data);
|
||||
if (type === "back") return webViewRef.current?.goBack();
|
||||
let parsed: any;
|
||||
try {
|
||||
parsed = JSON.parse(data);
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
const { type } = parsed;
|
||||
if (type === "importRecordingDownload") {
|
||||
void handleImportRecordingText(String(parsed.text ?? ""));
|
||||
return;
|
||||
}
|
||||
if (type === "importRecordingDownloadError") {
|
||||
Alert.alert(
|
||||
"録画データを取得できませんでした",
|
||||
parsed.message || "ダウンロード内容を読み取れませんでした。",
|
||||
);
|
||||
return;
|
||||
}
|
||||
if (type === "pong") {
|
||||
lastPongAt.current = Date.now();
|
||||
const bodyLen: number = parsed.bodyLen ?? 0;
|
||||
// innerTextベース: 最大値を更新
|
||||
if (bodyLen > maxBodyLenRef.current) maxBodyLenRef.current = bodyLen;
|
||||
// 一度200文字超の表示テキストがあった後に20文字未満になったら白画面と判定
|
||||
// SPA遷移中の一時的な空白を避けるため3回連続(15秒)で発火
|
||||
if (maxBodyLenRef.current > 200 && bodyLen < 20) {
|
||||
blankCountRef.current += 1;
|
||||
if (blankCountRef.current >= 3) {
|
||||
blankCountRef.current = 0;
|
||||
maxBodyLenRef.current = 0;
|
||||
remount();
|
||||
}
|
||||
} else {
|
||||
blankCountRef.current = 0;
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (type === "printHtml") {
|
||||
(async () => {
|
||||
try {
|
||||
const path = FileSystem.cacheDirectory + "diagram.html";
|
||||
await FileSystem.writeAsStringAsync(path, parsed.html, { encoding: FileSystem.EncodingType.UTF8 });
|
||||
const ok = await Sharing.isAvailableAsync();
|
||||
if (ok) {
|
||||
await Sharing.shareAsync(path, { mimeType: "text/html", dialogTitle: "ダイヤグラムを共有" });
|
||||
}
|
||||
} catch (e) {
|
||||
Alert.alert("エラー", "PDF出力の準備に失敗しました。");
|
||||
}
|
||||
})();
|
||||
return;
|
||||
}
|
||||
if (type === "back") return handleWebViewBack();
|
||||
if (type === "windowClose") return goBack();
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
{useExitButton && <BigButton onPress={goBack} string="閉じる" />}
|
||||
{isLoading && !hasError && (
|
||||
<View style={wvStyles.loadingOverlay} pointerEvents="none">
|
||||
<ActivityIndicator size="large" color="#fff" />
|
||||
</View>
|
||||
)}
|
||||
{hasError && (
|
||||
<View style={wvStyles.errorOverlay}>
|
||||
<MaterialCommunityIcons name="wifi-off" size={48} color="#ccc" />
|
||||
<Text style={wvStyles.errorText}>{errorMessage}</Text>
|
||||
<TouchableOpacity style={wvStyles.reloadButton} onPress={handleReload}>
|
||||
<MaterialCommunityIcons name="reload" size={18} color="#fff" />
|
||||
<Text style={wvStyles.reloadButtonText}>再読み込み</Text>
|
||||
</TouchableOpacity>
|
||||
{useExitButton && (
|
||||
<TouchableOpacity style={wvStyles.backButton} onPress={goBack}>
|
||||
<Text style={wvStyles.backButtonText}>閉じる</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
</View>
|
||||
)}
|
||||
{useExitButton && !hasError && <BigButton onPress={goBack} string="閉じる" />}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const wvStyles = StyleSheet.create({
|
||||
loadingOverlay: {
|
||||
...StyleSheet.absoluteFillObject,
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
backgroundColor: "rgba(0,0,0,0.25)",
|
||||
},
|
||||
errorOverlay: {
|
||||
...StyleSheet.absoluteFillObject,
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
backgroundColor: "#1a1a2e",
|
||||
gap: 16,
|
||||
paddingHorizontal: 32,
|
||||
},
|
||||
errorText: {
|
||||
color: "#aaa",
|
||||
fontSize: 14,
|
||||
textAlign: "center",
|
||||
},
|
||||
reloadButton: {
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
gap: 8,
|
||||
backgroundColor: "#0099CC",
|
||||
borderRadius: 10,
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 12,
|
||||
},
|
||||
reloadButtonText: {
|
||||
color: "#fff",
|
||||
fontSize: 15,
|
||||
fontWeight: "bold",
|
||||
},
|
||||
backButton: {
|
||||
paddingHorizontal: 24,
|
||||
paddingVertical: 10,
|
||||
},
|
||||
backButtonText: {
|
||||
color: "#888",
|
||||
fontSize: 14,
|
||||
},
|
||||
});
|
||||
|
||||
+82
-12
@@ -18,11 +18,12 @@ import Setting from "@/components/Settings/settings";
|
||||
import { useFavoriteStation } from "@/stateBox/useFavoriteStation";
|
||||
import { optionData } from "@/lib/stackOption";
|
||||
import { AllTrainDiagramView } from "@/components/AllTrainDiagramView";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { useNavigation, useIsFocused } from "@react-navigation/native";
|
||||
import { news } from "@/config/newsUpdate";
|
||||
import { useBottomTabBarHeight } from "@react-navigation/bottom-tabs";
|
||||
import GeneralWebView from "@/GeneralWebView";
|
||||
import { StationDiagramView } from "@/components/StationDiagram/StationDiagramView";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
const Stack = createStackNavigator();
|
||||
|
||||
export function MenuPage() {
|
||||
@@ -32,18 +33,38 @@ export function MenuPage() {
|
||||
const tabBarHeight = useBottomTabBarHeight();
|
||||
const navigation = useNavigation<any>();
|
||||
const { addListener } = navigation;
|
||||
const isFocused = useIsFocused();
|
||||
const isDark = useColorScheme() === "dark";
|
||||
const bgColor = isDark ? "#1c1c1e" : "#ffffff";
|
||||
useEffect(() => {
|
||||
AS.getItem(STORAGE_KEYS.START_PAGE)
|
||||
.then((res) => {
|
||||
if (res == "true") navigation.navigate("positions");
|
||||
})
|
||||
.catch((e) => {
|
||||
//6.0以降false
|
||||
AS.setItem(STORAGE_KEYS.START_PAGE, "false");
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu mounted",
|
||||
});
|
||||
return () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu unmounted",
|
||||
});
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: isFocused ? "top menu focused" : "top menu blurred",
|
||||
data: {
|
||||
width,
|
||||
height,
|
||||
},
|
||||
});
|
||||
}, [height, isFocused, width]);
|
||||
|
||||
useEffect(() => {
|
||||
//ニュース表示
|
||||
AS.getItem(STORAGE_KEYS.NEWS_STATUS)
|
||||
.then((d) => {
|
||||
@@ -55,10 +76,20 @@ export function MenuPage() {
|
||||
if (isSetIcon == "true") SheetManager.show("TrainIconUpdate");
|
||||
})
|
||||
.catch((error) => logger.error("Error fetching icon setting:", error));
|
||||
|
||||
return undefined;
|
||||
}, []);
|
||||
|
||||
const scrollRef = useRef(null);
|
||||
const [mapMode, setMapMode] = useState(false);
|
||||
useEffect(() => {
|
||||
Sentry.setContext("top_menu_screen", {
|
||||
focused: isFocused,
|
||||
width,
|
||||
height,
|
||||
mapMode,
|
||||
});
|
||||
}, [height, isFocused, mapMode, width]);
|
||||
const [mapHeight, setMapHeight] = useState(0);
|
||||
const mapHeightRef = useRef(0);
|
||||
const favoriteStationRef = useRef(favoriteStation);
|
||||
@@ -85,6 +116,16 @@ export function MenuPage() {
|
||||
}, [height, tabBarHeight, width]);
|
||||
useEffect(() => {
|
||||
const unsubscribe = addListener("tabPress", (e: any) => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu tabPress handler",
|
||||
data: {
|
||||
focused: navigation.isFocused(),
|
||||
stackIndex: stackNavRef.current?.getState()?.index ?? null,
|
||||
mapMode,
|
||||
},
|
||||
});
|
||||
if (navigation.isFocused() && stackNavRef.current) {
|
||||
if (stackNavRef.current.getState()?.index > 0) {
|
||||
e.preventDefault();
|
||||
@@ -118,10 +159,39 @@ export function MenuPage() {
|
||||
return (
|
||||
<Stack.Navigator
|
||||
id={null}
|
||||
detachInactiveScreens={false}
|
||||
screenOptions={{ cardStyle: { backgroundColor: bgColor } }}
|
||||
screenListeners={({ navigation: stackNav }) => {
|
||||
screenListeners={({ route, navigation: stackNav }) => {
|
||||
stackNavRef.current = stackNav;
|
||||
return {};
|
||||
return {
|
||||
focus: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu stack focus",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
blur: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu stack blur",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
state: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "topMenu.screen",
|
||||
level: "info",
|
||||
message: "top menu stack state",
|
||||
data: {
|
||||
route: route.name,
|
||||
stackIndex: stackNav.getState()?.index ?? null,
|
||||
},
|
||||
});
|
||||
},
|
||||
};
|
||||
}}
|
||||
>
|
||||
<Stack.Screen
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, { useCallback, useEffect, useRef } from "react";
|
||||
import React, { useCallback, useEffect, useRef, useState } from "react";
|
||||
import { createStackNavigator } from "@react-navigation/stack";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { useIsFocused, useNavigation } from "@react-navigation/native";
|
||||
import { useColorScheme } from "react-native";
|
||||
import Apps from "./components/Apps";
|
||||
import TrainBase from "./components/trainbaseview";
|
||||
@@ -13,16 +13,20 @@ import { useCurrentTrain } from "./stateBox/useCurrentTrain";
|
||||
import { useTrainMenu } from "./stateBox/useTrainMenu";
|
||||
import { AS } from "./storageControl";
|
||||
import { news } from "./config/newsUpdate";
|
||||
import { Linking, Platform } from "react-native";
|
||||
import { InteractionManager, Linking, Platform, View } from "react-native";
|
||||
import GeneralWebView from "./GeneralWebView";
|
||||
import { StationDiagramView } from "@/components/StationDiagram/StationDiagramView";
|
||||
import { positionsStackNavRef } from "./lib/rootNavigation";
|
||||
import { positionsLifecycleRef, positionsStackNavRef } from "./lib/rootNavigation";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
const Stack = createStackNavigator();
|
||||
export const Top = () => {
|
||||
const { webview } = useCurrentTrain();
|
||||
const { navigate, addListener, isFocused } = useNavigation<any>();
|
||||
const navigation = useNavigation<any>();
|
||||
const { navigate, addListener } = navigation;
|
||||
const isTabFocused = useIsFocused();
|
||||
const isDark = useColorScheme() === "dark";
|
||||
const bgColor = isDark ? "#1c1c1e" : "#ffffff";
|
||||
const [hasActivatedStack, setHasActivatedStack] = useState(false);
|
||||
|
||||
//地図用
|
||||
const { mapSwitch } = useTrainMenu();
|
||||
@@ -31,24 +35,136 @@ export const Top = () => {
|
||||
mapSwitchRef.current = mapSwitch;
|
||||
}, [mapSwitch]);
|
||||
|
||||
const goToFavoriteList = () =>
|
||||
const goToFavoriteList = (event?: any) => {
|
||||
if (!hasActivatedStack) {
|
||||
event?.preventDefault?.();
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions tabLongPress ignored before stack activation",
|
||||
});
|
||||
return;
|
||||
}
|
||||
navigate("positions", { screen: "favoriteList" });
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
const unsubscribe = addListener("tabLongPress", goToFavoriteList);
|
||||
return unsubscribe;
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack mounted",
|
||||
});
|
||||
return () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack unmounted",
|
||||
});
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (hasActivatedStack) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack activation scheduled",
|
||||
data: {
|
||||
reason: isTabFocused ? "first_focus" : "background_prewarm",
|
||||
},
|
||||
});
|
||||
let cancelled = false;
|
||||
const activate = () => {
|
||||
if (cancelled) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack activation committed",
|
||||
data: {
|
||||
reason: isTabFocused ? "first_focus" : "background_prewarm",
|
||||
},
|
||||
});
|
||||
setHasActivatedStack(true);
|
||||
};
|
||||
|
||||
if (isTabFocused) {
|
||||
const task = InteractionManager.runAfterInteractions(() => {
|
||||
setTimeout(activate, 0);
|
||||
});
|
||||
return () => {
|
||||
cancelled = true;
|
||||
task.cancel?.();
|
||||
};
|
||||
}
|
||||
|
||||
const timer = setTimeout(activate, 300);
|
||||
return () => {
|
||||
cancelled = true;
|
||||
clearTimeout(timer);
|
||||
};
|
||||
}, [hasActivatedStack, isTabFocused]);
|
||||
|
||||
useEffect(() => {
|
||||
Sentry.setContext("positions_stack", {
|
||||
focused: isTabFocused,
|
||||
activated: hasActivatedStack,
|
||||
mapSwitch,
|
||||
});
|
||||
}, [hasActivatedStack, isTabFocused, mapSwitch]);
|
||||
|
||||
const stackNavRef = positionsStackNavRef;
|
||||
|
||||
useEffect(() => {
|
||||
positionsLifecycleRef.current = {
|
||||
...positionsLifecycleRef.current,
|
||||
deactivateStack: null,
|
||||
};
|
||||
return () => {
|
||||
positionsLifecycleRef.current = {
|
||||
...positionsLifecycleRef.current,
|
||||
deactivateStack: null,
|
||||
};
|
||||
};
|
||||
}, []);
|
||||
|
||||
const goToTrainMenu = useCallback((e: any) => {
|
||||
const stackNav = stackNavRef.current;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions tabPress handler",
|
||||
data: {
|
||||
platform: Platform.OS,
|
||||
focused: isTabFocused,
|
||||
mapSwitch: mapSwitchRef.current,
|
||||
stackIndex: stackNav?.getState()?.index ?? null,
|
||||
},
|
||||
});
|
||||
if (Platform.OS === "web") {
|
||||
Linking.openURL("https://train.jr-shikoku.co.jp/");
|
||||
setTimeout(() => navigate("topMenu", { screen: "menu" }), 100);
|
||||
return;
|
||||
}
|
||||
if (!isFocused()) return;
|
||||
const stackNav = stackNavRef.current;
|
||||
if (!hasActivatedStack || !stackNav) {
|
||||
e?.preventDefault?.();
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions tabPress ignored before stack activation",
|
||||
data: {
|
||||
focused: isTabFocused,
|
||||
activated: hasActivatedStack,
|
||||
hasStackNav: !!stackNav,
|
||||
},
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (!isTabFocused) return;
|
||||
if (stackNav && stackNav.getState()?.index > 0) {
|
||||
e.preventDefault();
|
||||
stackNav.goBack();
|
||||
@@ -58,20 +174,75 @@ export const Top = () => {
|
||||
navigate("positions", { screen: "trainMenu" });
|
||||
else webview.current?.injectJavaScript(`AccordionClassEvent()`);
|
||||
return;
|
||||
}, [isFocused, navigate, webview]);
|
||||
}, [hasActivatedStack, isTabFocused, navigate, webview]);
|
||||
|
||||
useEffect(() => {
|
||||
const unsubscribe = addListener("tabPress", goToTrainMenu);
|
||||
return unsubscribe;
|
||||
}, [addListener, goToTrainMenu]);
|
||||
|
||||
if (!hasActivatedStack) {
|
||||
return <View style={{ flex: 1, backgroundColor: bgColor }} />;
|
||||
}
|
||||
|
||||
return (
|
||||
<Stack.Navigator
|
||||
id={null}
|
||||
detachInactiveScreens={false}
|
||||
screenOptions={{ cardStyle: { backgroundColor: bgColor } }}
|
||||
screenListeners={({ navigation: stackNav }) => {
|
||||
screenListeners={({ route, navigation: stackNav }) => {
|
||||
stackNavRef.current = stackNav;
|
||||
return {};
|
||||
return {
|
||||
focus: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack focus",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
blur: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack blur",
|
||||
data: { route: route.name },
|
||||
});
|
||||
},
|
||||
transitionStart: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack transitionStart",
|
||||
data: {
|
||||
route: route.name,
|
||||
stackIndex: stackNav.getState()?.index ?? null,
|
||||
},
|
||||
});
|
||||
},
|
||||
transitionEnd: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack transitionEnd",
|
||||
data: {
|
||||
route: route.name,
|
||||
stackIndex: stackNav.getState()?.index ?? null,
|
||||
},
|
||||
});
|
||||
},
|
||||
state: () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.stack",
|
||||
level: "info",
|
||||
message: "positions stack state",
|
||||
data: {
|
||||
route: route.name,
|
||||
stackIndex: stackNav.getState()?.index ?? null,
|
||||
},
|
||||
});
|
||||
},
|
||||
};
|
||||
}}
|
||||
>
|
||||
<Stack.Screen
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"android",
|
||||
"web"
|
||||
],
|
||||
"version": "7.0.0",
|
||||
"version": "7.1.0",
|
||||
"userInterfaceStyle": "automatic",
|
||||
"orientation": "default",
|
||||
"icon": "./assets/icons/s8600.png",
|
||||
@@ -24,7 +24,7 @@
|
||||
"**/*"
|
||||
],
|
||||
"ios": {
|
||||
"buildNumber": "63",
|
||||
"buildNumber": "67",
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "jrshikokuinfo.xprocess.hrkn",
|
||||
"appleTeamId": "54CRDT797G",
|
||||
@@ -33,16 +33,15 @@
|
||||
},
|
||||
"infoPlist": {
|
||||
"NFCReaderUsageDescription": "To read FeliCa card",
|
||||
"NSPhotoLibraryUsageDescription": "運行情報画像を共有または保存するために写真ライブラリへのアクセスを使用します。",
|
||||
"NSPhotoLibraryAddUsageDescription": "運行情報画像を写真ライブラリに保存するために使用します。",
|
||||
"com.apple.developer.nfc.readersession.felica.systemcodes": [
|
||||
"0003",
|
||||
"FE00"
|
||||
],
|
||||
"ITSAppUsesNonExemptEncryption": false,
|
||||
"NSSupportsLiveActivities": true,
|
||||
"NSSupportsLiveActivitiesFrequentUpdates": true,
|
||||
"UIBackgroundModes": [
|
||||
"audio"
|
||||
]
|
||||
"NSSupportsLiveActivitiesFrequentUpdates": true
|
||||
},
|
||||
"entitlements": {
|
||||
"com.apple.developer.nfc.readersession.formats": [
|
||||
@@ -55,7 +54,7 @@
|
||||
},
|
||||
"android": {
|
||||
"package": "jrshikokuinfo.xprocess.hrkn",
|
||||
"versionCode": 30,
|
||||
"versionCode": 33,
|
||||
"intentFilters": [
|
||||
{
|
||||
"action": "VIEW",
|
||||
@@ -115,6 +114,7 @@
|
||||
{
|
||||
"fonts": [
|
||||
"./assets/fonts/jr-nishi.otf",
|
||||
"./assets/fonts/JR-WEST-PLUS.otf",
|
||||
"./assets/fonts/DelaGothicOne-Regular.ttf",
|
||||
"./assets/fonts/JNRfont_pict.ttf",
|
||||
"./assets/fonts/DiaPro-Regular.otf"
|
||||
@@ -131,7 +131,7 @@
|
||||
[
|
||||
"expo-location",
|
||||
{
|
||||
"locationWhenInUsePermission": "この位置情報は、リンク画面で現在地側近の駅情報を取得するのに使用されます。"
|
||||
"locationWhenInUsePermission": "現在地付近の駅表示と、列車追従中に次の停車駅への接近をりっかちゃん音声で通知するために使用します。"
|
||||
}
|
||||
],
|
||||
[
|
||||
@@ -970,13 +970,29 @@
|
||||
"expo-web-browser",
|
||||
"expo-asset",
|
||||
"expo-sharing",
|
||||
[
|
||||
"react-native-share",
|
||||
{
|
||||
"ios": [],
|
||||
"android": [],
|
||||
"enableBase64ShareAndroid": false
|
||||
}
|
||||
],
|
||||
[
|
||||
"react-native-maps",
|
||||
{
|
||||
"iosGoogleMapsApiKey": "AIzaSyAVGDTjBkR_0wkQiNkoo5WDLhqXCjrjk8Y",
|
||||
"androidGoogleMapsApiKey": "AIzaSyAmFb-Yj033bXZWlSzNrfq_0jc1PgRrWcE"
|
||||
}
|
||||
],
|
||||
[
|
||||
"@sentry/react-native/expo",
|
||||
{
|
||||
"url": "https://sentry.io/",
|
||||
"project": "jr-shikoku-unofficial-apps",
|
||||
"organization": "xprocess-m5"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,27 @@
|
||||
西日本方向ロゴ拡張「JR-WEST-PLUS」
|
||||
|
||||
2026/07/11 by Mameh1nata
|
||||
|
||||
「回送」とか専用の書体の方がかっこよくね?と思い制作したフォントです
|
||||
現時点で対応している種別は以下の通りです
|
||||
回送 試運転 貸切 修学旅行 救援 配給 訓練 検測 競技 検定 教習
|
||||
|
||||
ver1.0 プライベート公開
|
||||
ver1.01 修学旅行を追加
|
||||
ver1.1 救援 配給 訓練の追加
|
||||
ver1.2 競技 検定 教習の追加
|
||||
|
||||
-注意-
|
||||
・このフォントは西日本方向幕ロゴの制作者とは何の関係もありません
|
||||
・常識の範囲内で使うことをお勧めします(常識の範囲外でも自己責任でお願いします)
|
||||
・文字サイズが多少違ったりするかもしれませんがご了承ください
|
||||
・フォント初制作なのであまりにも致命的なミス以外は許してください
|
||||
|
||||
配布元: https://uu.getuploader.com/mameh1nata_dustbox/download/1
|
||||
|
||||
アプリ同梱版の調整:
|
||||
・JR-Nishi と字面を揃えるため、各グリフの表示領域を 1040 units に正規化
|
||||
・送り幅は 930 units とし、広げた字形の右側はアプリ側で小幅の DiaPro NBSP を付加して保護
|
||||
・縦の表示領域を 836 units、ベースラインを -86〜750 に正規化
|
||||
・フォント全体の ascender / descender を JR-Nishi と同じ 781 / -118 に調整
|
||||
・文字コードと内部フォント名は元ファイルから維持
|
||||
@@ -18,4 +18,18 @@ export default [
|
||||
lng: 133.816444,
|
||||
isSpot: true,
|
||||
},
|
||||
{
|
||||
Station_JP: ".小歩危展望台",
|
||||
Station_EN: "Koboke Observatory",
|
||||
MyStation: "0",
|
||||
StationNumber: null,
|
||||
DispNum: "3",
|
||||
StationTimeTable: "",
|
||||
StationMap: "https://maps.app.goo.gl/WBMN5R2tk2tusavk7",
|
||||
JrHpUrl: "https://miyoshi-tourism.jp/spot/5438/",
|
||||
jslodApi: "spot",
|
||||
lat: 33.9372609,
|
||||
lng: 133.753258,
|
||||
isSpot: true,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -122,6 +122,16 @@ export const EachStopList: FC<props> = ({
|
||||
const StationNumbers = Stations.filter((d) => d.StationNumber != null).map(
|
||||
(d) => d.StationNumber as string
|
||||
);
|
||||
const trimmedPlatformNum = platformNum?.trim();
|
||||
const hasPlatformNum = !!trimmedPlatformNum;
|
||||
const isPlatformNumNumeric = hasPlatformNum && /^\d+$/.test(trimmedPlatformNum);
|
||||
const platformDisplay = hasPlatformNum
|
||||
? isPlatformNumNumeric
|
||||
? parseInt(trimmedPlatformNum, 10) === 0
|
||||
? "⓪"
|
||||
: String.fromCharCode(0x2460 + parseInt(trimmedPlatformNum, 10) - 1)
|
||||
: `(${trimmedPlatformNum})`
|
||||
: "";
|
||||
// SE文字列を表示用に変換
|
||||
const [seString, seType] = parseSeString(se);
|
||||
|
||||
@@ -255,10 +265,18 @@ export const EachStopList: FC<props> = ({
|
||||
textAlignVertical: "center",
|
||||
}}
|
||||
>
|
||||
{station}{platformNum &&
|
||||
(parseInt(platformNum) === 0
|
||||
? "⓪"
|
||||
: String.fromCharCode(0x2460 + parseInt(platformNum) - 1))}
|
||||
{station}
|
||||
{hasPlatformNum && (
|
||||
<Text
|
||||
style={{
|
||||
fontSize: fontScale(isPlatformNumNumeric ? 20 : 14),
|
||||
color: colors.text,
|
||||
fontStyle: isCommunity ? "italic" : "normal",
|
||||
}}
|
||||
>
|
||||
{platformDisplay}
|
||||
</Text>
|
||||
)}
|
||||
</Text>
|
||||
<View style={{ flex: 1 }} />
|
||||
</View>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React, { FC, useMemo, useState } from "react";
|
||||
import React, { FC, useMemo } from "react";
|
||||
import { Text, View, TextStyle, TouchableOpacity } from "react-native";
|
||||
import { SheetManager } from "react-native-actions-sheet";
|
||||
import { migrateTrainName } from "../../../lib/eachTrainInfoCoreLib/migrateTrainName";
|
||||
@@ -16,7 +16,9 @@ import type { NavigateFunction } from "@/types";
|
||||
import { useUnyohub } from "@/stateBox/useUnyohub";
|
||||
import { useElesite } from "@/stateBox/useElesite";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { formatWrappedTrainType, shouldWrapTrainType } from "@/lib/trainTypeWrap";
|
||||
import { useResponsive } from "@/lib/responsive";
|
||||
import { normalizeIconDisplayMode } from "@/lib/iconDisplayMode";
|
||||
|
||||
type Props = {
|
||||
data: { trainNum: string; limited: string };
|
||||
@@ -47,11 +49,11 @@ export const HeaderText: FC<Props> = ({
|
||||
from,
|
||||
scrollRef,
|
||||
}) => {
|
||||
const { limited, trainNum } = data;
|
||||
const { trainNum } = data;
|
||||
|
||||
const { fixed } = useThemeColors();
|
||||
const { fontScale } = useResponsive();
|
||||
const { updatePermission } = useTrainMenu();
|
||||
const { iconSetting } = useTrainMenu();
|
||||
const { allCustomTrainData, getTodayOperationByTrainId } =
|
||||
useAllTrainDiagram();
|
||||
const { expoPushToken } = useNotification();
|
||||
@@ -63,19 +65,18 @@ export const HeaderText: FC<Props> = ({
|
||||
} = useUnyohub();
|
||||
const { getElesiteEntriesByTrainNumber, useElesite: elesiteEnabled } =
|
||||
useElesite();
|
||||
const iconDisplayMode = normalizeIconDisplayMode(iconSetting);
|
||||
|
||||
// 追加ソースのON/OFFをここで管理(将来ソースが増えたらここに足す)
|
||||
const additionalSources = {
|
||||
unyohub: unyohubEnabled,
|
||||
elesite: elesiteEnabled,
|
||||
};
|
||||
const hasAdditionalSources = Object.values(additionalSources).some(Boolean);
|
||||
|
||||
// 列車名、種別、フォントの取得
|
||||
const [
|
||||
typeName,
|
||||
trainName,
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -96,7 +97,7 @@ export const HeaderText: FC<Props> = ({
|
||||
to_data,
|
||||
directions,
|
||||
} = result;
|
||||
const [typeString, fontAvailable, isOneMan] = getStringConfig(
|
||||
const [typeString, fontFamily, isOneMan] = getStringConfig(
|
||||
type,
|
||||
trainNum,
|
||||
);
|
||||
@@ -108,7 +109,7 @@ export const HeaderText: FC<Props> = ({
|
||||
(train_num_distance !== "" && !isNaN(parseInt(train_num_distance))
|
||||
? ` ${parseInt(trainNum) - parseInt(train_num_distance)}号`
|
||||
: ""),
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -121,7 +122,7 @@ export const HeaderText: FC<Props> = ({
|
||||
return [
|
||||
typeString,
|
||||
"",
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -133,8 +134,8 @@ export const HeaderText: FC<Props> = ({
|
||||
case to_data && to_data !== "":
|
||||
return [
|
||||
typeString,
|
||||
to_data + "行き",
|
||||
fontAvailable,
|
||||
`${to_data}行き`,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -147,9 +148,9 @@ export const HeaderText: FC<Props> = ({
|
||||
return [
|
||||
typeString,
|
||||
migrateTrainName(
|
||||
trainData[trainData.length - 1].split(",")[0] + "行き",
|
||||
`${trainData[trainData.length - 1].split(",")[0]}行き`,
|
||||
),
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -161,7 +162,7 @@ export const HeaderText: FC<Props> = ({
|
||||
}
|
||||
}, [trainData, trainNum, allCustomTrainData]);
|
||||
|
||||
const allTodayOperation = getTodayOperationByTrainId(trainNum);
|
||||
const allTodayOperation = getTodayOperationByTrainId(trainNum) ?? [];
|
||||
const todayOperation = allTodayOperation.filter((d) => d.state !== 100);
|
||||
|
||||
let iconTrainDirection =
|
||||
@@ -198,7 +199,6 @@ export const HeaderText: FC<Props> = ({
|
||||
: getUnyohubEntriesByTrainNumber(unyohubTrainNumForSourceScreen);
|
||||
const elesiteEntries = getElesiteEntriesByTrainNumber(trainNum);
|
||||
|
||||
// 車番(formations) がある場合のみ「運用Hub情報あり」と判定
|
||||
const hasUnyohubFormation = unyohubEntries.some(
|
||||
(e) => !!e.formations && e.formations.trim() !== "",
|
||||
);
|
||||
@@ -208,11 +208,20 @@ export const HeaderText: FC<Props> = ({
|
||||
|
||||
const hasExtraInfo =
|
||||
priority > 200 ||
|
||||
todayOperation?.length > 0 ||
|
||||
todayOperation.length > 0 ||
|
||||
hasUnyohubFormation ||
|
||||
hasElesiteFormation;
|
||||
|
||||
const [isWrapped, setIsWrapped] = useState(false);
|
||||
const wrapType = shouldWrapTrainType(typeName, trainName);
|
||||
|
||||
const openTrainInfoUrl = () => {
|
||||
if (!trainInfoUrl) return;
|
||||
const uri = trainInfoUrl.includes("pdf")
|
||||
? getPDFViewURL(trainInfoUrl)
|
||||
: trainInfoUrl;
|
||||
navigate("generalWebView", { uri, useExitButton: true });
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
};
|
||||
|
||||
return (
|
||||
<View
|
||||
@@ -232,6 +241,7 @@ export const HeaderText: FC<Props> = ({
|
||||
from={from}
|
||||
todayOperation={todayOperation}
|
||||
direction={iconTrainDirection}
|
||||
iconDisplayMode={iconDisplayMode}
|
||||
/>
|
||||
|
||||
<View
|
||||
@@ -242,15 +252,23 @@ export const HeaderText: FC<Props> = ({
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
numberOfLines={wrapType ? 2 : 1}
|
||||
style={{
|
||||
fontSize: fontScale(20),
|
||||
color: fixed.textOnPrimary,
|
||||
fontFamily: fontAvailable ? "JR-Nishi" : undefined,
|
||||
fontWeight: !fontAvailable ? "bold" : undefined,
|
||||
fontFamily,
|
||||
fontWeight: fontFamily ? undefined : "bold",
|
||||
marginRight: 5,
|
||||
flexShrink: 0,
|
||||
...(wrapType
|
||||
? { width: fontScale(44), lineHeight: fontScale(22) }
|
||||
: {}),
|
||||
}}
|
||||
>
|
||||
{isWrapped ? typeName.replace(/(.{2})/g, "$1\n").trim() : typeName}
|
||||
{wrapType ? formatWrappedTrainType(typeName) : typeName}
|
||||
{fontFamily === "JR-WEST-PLUS" ? (
|
||||
<Text style={{ fontFamily: "DiaPro", fontSize: 7 }}>{"\u00A0"}</Text>
|
||||
) : null}
|
||||
</Text>
|
||||
{isOneMan && <OneManText />}
|
||||
</View>
|
||||
@@ -270,26 +288,18 @@ export const HeaderText: FC<Props> = ({
|
||||
}
|
||||
: {}),
|
||||
}}
|
||||
onPress={() => {
|
||||
if (!trainInfoUrl) return;
|
||||
const uri = trainInfoUrl.includes("pdf")
|
||||
? getPDFViewURL(trainInfoUrl)
|
||||
: trainInfoUrl;
|
||||
navigate("generalWebView", { uri, useExitButton: true });
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
}}
|
||||
onPress={openTrainInfoUrl}
|
||||
disabled={!trainInfoUrl}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
...textConfig,
|
||||
color: fixed.textOnPrimary,
|
||||
...(trainName.length > 10 ? { fontSize: fontScale(16) } : { fontSize: fontScale(17) }),
|
||||
...(trainName.length > 10
|
||||
? { fontSize: fontScale(16) }
|
||||
: { fontSize: fontScale(17) }),
|
||||
flexShrink: 1,
|
||||
}}
|
||||
onTextLayout={(e) => {
|
||||
if (e.nativeEvent.lines.length > 1) setIsWrapped(true);
|
||||
}}
|
||||
>
|
||||
{trainName}
|
||||
</Text>
|
||||
@@ -328,7 +338,6 @@ export const HeaderText: FC<Props> = ({
|
||||
},
|
||||
});
|
||||
} else {
|
||||
// 追加ソースが全てオフ → 元の挙動(直接 DB ページを開く)
|
||||
const uri = `https://jr-shikoku-data-system.pages.dev/trainData/${trainNum}?userID=${expoPushToken}&from=eachTrainInfo`;
|
||||
navigate("generalWebView", { uri, useExitButton: false });
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
|
||||
@@ -3,13 +3,14 @@ import { Text } from "react-native";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
type props = {
|
||||
infogram: string;
|
||||
fontSize?: number;
|
||||
}
|
||||
export const InfogramText: FC<props> = ({infogram}) => {
|
||||
export const InfogramText: FC<props> = ({infogram, fontSize = 20}) => {
|
||||
const { fixed } = useThemeColors();
|
||||
return (
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 20,
|
||||
fontSize,
|
||||
color: fixed.textOnPrimary,
|
||||
fontFamily: "JNR-font",
|
||||
}}
|
||||
|
||||
@@ -0,0 +1,98 @@
|
||||
import React, { ComponentProps, FC } from "react";
|
||||
import { Image, TouchableOpacity, View } from "react-native";
|
||||
import { Ionicons } from "@expo/vector-icons";
|
||||
import type { TrainIconEntry } from "@/lib/trainIconEntries";
|
||||
|
||||
type StackVariant = "header" | "list";
|
||||
type StatusIcon = ComponentProps<typeof Ionicons>;
|
||||
|
||||
type Props = {
|
||||
entries: TrainIconEntry[];
|
||||
direction?: boolean;
|
||||
hidden?: boolean;
|
||||
onPressEntry?: (entry: TrainIconEntry, index: number) => void;
|
||||
statusIcon?: StatusIcon;
|
||||
variant?: StackVariant;
|
||||
};
|
||||
|
||||
const iconSize = {
|
||||
header: {
|
||||
width: 24,
|
||||
height: 30,
|
||||
stackedWidth: 12,
|
||||
stackedHeight: 15,
|
||||
marginRight: 5,
|
||||
stackedMarginLeft: -10,
|
||||
stackedMarginTop: 10,
|
||||
statusSize: 24,
|
||||
},
|
||||
list: {
|
||||
width: 20,
|
||||
height: 22,
|
||||
stackedWidth: 10,
|
||||
stackedHeight: 12,
|
||||
marginRight: 2,
|
||||
stackedMarginLeft: -8,
|
||||
stackedMarginTop: 8,
|
||||
statusSize: 18,
|
||||
},
|
||||
} as const;
|
||||
|
||||
export const TrainIconStack: FC<Props> = ({
|
||||
entries,
|
||||
direction,
|
||||
hidden = false,
|
||||
onPressEntry,
|
||||
statusIcon,
|
||||
variant = "header",
|
||||
}) => {
|
||||
const size = iconSize[variant];
|
||||
|
||||
return (
|
||||
<View style={{ flexDirection: "row", alignItems: "flex-start" }}>
|
||||
{entries.map((entry, index) => {
|
||||
const trainIcon = direction
|
||||
? entry.vehicle_info_img
|
||||
: entry.vehicle_info_right_img || entry.vehicle_info_img;
|
||||
if (!trainIcon) return null;
|
||||
|
||||
const content = (
|
||||
<View>
|
||||
<View style={{ opacity: hidden ? 0 : 1 }}>
|
||||
<Image
|
||||
source={{ uri: trainIcon }}
|
||||
style={{
|
||||
height: index > 0 ? size.stackedHeight : size.height,
|
||||
width: index > 0 ? size.stackedWidth : size.width,
|
||||
marginRight: size.marginRight,
|
||||
marginLeft: index > 0 ? size.stackedMarginLeft : 0,
|
||||
marginTop: index > 0 ? size.stackedMarginTop : 0,
|
||||
}}
|
||||
resizeMethod="resize"
|
||||
/>
|
||||
</View>
|
||||
{statusIcon && hidden && (
|
||||
<View style={{ position: "absolute", top: 0, left: 0 }}>
|
||||
<Ionicons {...statusIcon} size={size.statusSize} />
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
);
|
||||
|
||||
if (!onPressEntry) {
|
||||
return <View key={`${trainIcon}-${index}`}>{content}</View>;
|
||||
}
|
||||
|
||||
return (
|
||||
<TouchableOpacity
|
||||
key={`${trainIcon}-${index}`}
|
||||
onPress={() => onPressEntry(entry, index)}
|
||||
disabled={!entry.vehicle_info_url}
|
||||
>
|
||||
{content}
|
||||
</TouchableOpacity>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
@@ -1,11 +1,12 @@
|
||||
import { useState, useEffect } from 'react';
|
||||
import { lineListPair, stationIDPair } from '@/lib/getStationList';
|
||||
import { useStationList } from '@/stateBox/useStationList';
|
||||
import { OriginalStationList } from '@/lib/CommonTypes';
|
||||
|
||||
const computeThroughStations = (
|
||||
trainData: string[],
|
||||
stationList: any[][],
|
||||
originalStationList: Record<string, any[]>
|
||||
originalStationList: OriginalStationList
|
||||
): { trainDataWithThrough: string[]; haveThrough: boolean } => {
|
||||
if (!trainData.length) return { trainDataWithThrough: [], haveThrough: false };
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React, { ComponentProps, FC, useEffect, useState } from "react";
|
||||
import { View, Image, TouchableOpacity } from "react-native";
|
||||
import React, { ComponentProps, FC, useEffect, useMemo, useState } from "react";
|
||||
import { Ionicons } from "@expo/vector-icons";
|
||||
import dayjs from "dayjs";
|
||||
import { SheetManager } from "react-native-actions-sheet";
|
||||
@@ -8,6 +7,9 @@ import { useAllTrainDiagram } from "@/stateBox/useAllTrainDiagram";
|
||||
import { useInterval } from "@/lib/useInterval";
|
||||
import type { NavigateFunction } from "@/types";
|
||||
import { OperationLogs } from "@/lib/CommonTypes";
|
||||
import type { IconDisplayMode } from "@/lib/iconDisplayMode";
|
||||
import { resolveTrainIconEntries } from "@/lib/trainIconEntries";
|
||||
import { TrainIconStack } from "./TrainIconStack";
|
||||
|
||||
type GlyphNames = ComponentProps<typeof Ionicons>["name"];
|
||||
|
||||
@@ -17,94 +19,54 @@ type Props = {
|
||||
from: string;
|
||||
todayOperation: OperationLogs[];
|
||||
direction?: boolean;
|
||||
iconDisplayMode: IconDisplayMode;
|
||||
};
|
||||
type apt = {
|
||||
name: GlyphNames;
|
||||
color: string;
|
||||
};
|
||||
export const TrainIconStatus: FC<Props> = (props) => {
|
||||
const { data, navigate, from, todayOperation, direction } = props;
|
||||
const {
|
||||
data,
|
||||
navigate,
|
||||
from,
|
||||
todayOperation,
|
||||
direction,
|
||||
iconDisplayMode,
|
||||
} = props;
|
||||
const [anpanmanStatus, setAnpanmanStatus] = useState<apt>();
|
||||
const { allCustomTrainData } = useAllTrainDiagram();
|
||||
const [trainIconData, setTrainIcon] = useState<
|
||||
{ vehicle_info_img: string;vehicle_info_right_img: string; vehicle_info_url: string }[]
|
||||
>([]);
|
||||
const customTrainData = useMemo(
|
||||
() => customTrainDataDetector(data.trainNum, allCustomTrainData),
|
||||
[data.trainNum, allCustomTrainData],
|
||||
);
|
||||
const trainIconData = useMemo(
|
||||
() =>
|
||||
data.trainNum
|
||||
? resolveTrainIconEntries({
|
||||
trainNum: data.trainNum,
|
||||
customTrainData,
|
||||
todayOperation,
|
||||
iconDisplayMode,
|
||||
})
|
||||
: [],
|
||||
[data.trainNum, customTrainData, todayOperation, iconDisplayMode],
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
if (!data.trainNum) return;
|
||||
const { train_info_img: vehicle_info_img, vehicle_info_url } =
|
||||
customTrainDataDetector(data.trainNum, allCustomTrainData);
|
||||
if (todayOperation.length !== 0) {
|
||||
const returnData =
|
||||
todayOperation
|
||||
.sort((a, b) => {
|
||||
// trainIdからカンマ以降の数字を抽出する関数
|
||||
const extractOrderNumber = (trainId: string): number => {
|
||||
const parts = trainId.split(',');
|
||||
if (parts.length > 1) {
|
||||
const num = parseInt(parts[1].trim(), 10);
|
||||
return isNaN(num) ? Infinity : num;
|
||||
}
|
||||
return Infinity; // カンマなし = 末尾に移動
|
||||
};
|
||||
|
||||
// data.trainNumと一致するtrainIdを探す関数
|
||||
const findMatchingTrainId = (operation: OperationLogs): string | null => {
|
||||
const allTrainIds = [
|
||||
...(operation.train_ids || []),
|
||||
...(operation.related_train_ids || []),
|
||||
];
|
||||
|
||||
// data.trainNumの接頭辞と一致するものを探す
|
||||
for (const trainId of allTrainIds) {
|
||||
const prefix = trainId.split(',')[0]; // カンマ前の部分
|
||||
if (prefix === data.trainNum) {
|
||||
return trainId;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
const aTrainId = findMatchingTrainId(a);
|
||||
const bTrainId = findMatchingTrainId(b);
|
||||
|
||||
// マッチしたものがない場合は元の順序を保持
|
||||
if (!aTrainId || !bTrainId) {
|
||||
return aTrainId ? -1 : bTrainId ? 1 : 0;
|
||||
}
|
||||
|
||||
const aOrder = extractOrderNumber(aTrainId);
|
||||
const bOrder = extractOrderNumber(bTrainId);
|
||||
|
||||
return aOrder - bOrder;
|
||||
})
|
||||
.map((op) => ({
|
||||
vehicle_info_img: op.vehicle_img || vehicle_info_img,
|
||||
vehicle_info_right_img: op.vehicle_img_right || op.vehicle_img || vehicle_info_img,
|
||||
vehicle_info_url: op.vehicle_info_url,
|
||||
})) || [];
|
||||
setTrainIcon(returnData);
|
||||
} else if (vehicle_info_img) {
|
||||
setTrainIcon([{ vehicle_info_img, vehicle_info_right_img: vehicle_info_img, vehicle_info_url }]);
|
||||
}
|
||||
|
||||
// アンパンマンステータスAPIのエンドポイント判定
|
||||
let anpanmanApiPath: string | null = null;
|
||||
switch (data.trainNum) {
|
||||
// 予讃線 → yosan-anpanman
|
||||
// しおかぜ 8000 アンパン
|
||||
case "10M":
|
||||
case "22M":
|
||||
case "9M":
|
||||
case "21M":
|
||||
// いしづち 8000 アンパン
|
||||
case "1010M":
|
||||
case "1022M":
|
||||
case "1009M":
|
||||
case "1021M":
|
||||
// いしづち 三桁 アンパン
|
||||
case "1041M":
|
||||
case "1044M":
|
||||
// 宇和海 2000 アンパン
|
||||
case "1058D":
|
||||
case "1066D":
|
||||
case "1074D":
|
||||
@@ -113,8 +75,6 @@ export const TrainIconStatus: FC<Props> = (props) => {
|
||||
case "1067D":
|
||||
anpanmanApiPath = "yosan-anpanman";
|
||||
break;
|
||||
// 土讃線 → dosan-anpanman
|
||||
// 南風 2700 アンパン
|
||||
case "32D":
|
||||
case "36D":
|
||||
case "44D":
|
||||
@@ -132,12 +92,12 @@ export const TrainIconStatus: FC<Props> = (props) => {
|
||||
fetch(
|
||||
`https://n8n.haruk.in/webhook/${anpanmanApiPath}?trainNum=${
|
||||
data.trainNum
|
||||
}&month=${dayjs().format("M")}&day=${dayjs().format("D")}`,{ cache: "no-store" }
|
||||
}&month=${dayjs().format("M")}&day=${dayjs().format("D")}`,
|
||||
{ cache: "no-store" },
|
||||
)
|
||||
.then((d) => d.json())
|
||||
.then((d) => {
|
||||
if (d.trainStatus == "〇" || d.trainStatus == "○") {
|
||||
//setAnpanmanStatus({name:"checkmark-circle-outline",color:"blue"});
|
||||
} else if (d.trainStatus == "▲") {
|
||||
setAnpanmanStatus({ name: "warning-outline", color: "yellow" });
|
||||
} else if (d.trainStatus == "×") {
|
||||
@@ -146,11 +106,8 @@ export const TrainIconStatus: FC<Props> = (props) => {
|
||||
})
|
||||
.catch(() => {});
|
||||
}
|
||||
}, [data.trainNum, allCustomTrainData, todayOperation]);
|
||||
}, [data.trainNum, allCustomTrainData, todayOperation, iconDisplayMode]);
|
||||
|
||||
// JSスレッドでの点滅(useInterval + useState)
|
||||
// reanimated の withRepeat はUIスレッドで毎フレーム更新し続けるため
|
||||
// ActionSheetのスプリングアニメーションと競合する
|
||||
const [showIcon, setShowIcon] = useState(false);
|
||||
useInterval(() => {
|
||||
if (anpanmanStatus) {
|
||||
@@ -159,47 +116,18 @@ export const TrainIconStatus: FC<Props> = (props) => {
|
||||
}, 1000, !!anpanmanStatus);
|
||||
|
||||
return (
|
||||
<>
|
||||
{trainIconData.map(
|
||||
({ vehicle_info_img: trainIcon, vehicle_info_right_img: trainIconRight, vehicle_info_url: address }, index) => (
|
||||
<TouchableOpacity
|
||||
key={`${trainIcon}-${index}`}
|
||||
onPress={() => {
|
||||
navigate("howto", {
|
||||
info: address,
|
||||
goTo: from == "LED" ? "menu" : from,
|
||||
});
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
}}
|
||||
disabled={!address}
|
||||
>
|
||||
<View>
|
||||
<View style={{ opacity: anpanmanStatus && showIcon ? 0 : 1 }}>
|
||||
<Image
|
||||
source={{ uri: direction ? trainIcon : trainIconRight || trainIcon }}
|
||||
style={{
|
||||
height: index > 0 ? 15 : 30,
|
||||
width: index > 0 ? 12 : 24,
|
||||
marginRight: 5,
|
||||
marginLeft: index > 0 ? -10 : 0,
|
||||
marginTop: index > 0 ? 10 : 0,
|
||||
}}
|
||||
resizeMethod="resize"
|
||||
/>
|
||||
</View>
|
||||
{anpanmanStatus && showIcon && (
|
||||
<View style={{ position: "absolute", top: 0, left: 0 }}>
|
||||
<Ionicons
|
||||
{...anpanmanStatus}
|
||||
size={24}
|
||||
style={{ marginRight: 5 }}
|
||||
/>
|
||||
</View>
|
||||
)}
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
)
|
||||
)}
|
||||
</>
|
||||
<TrainIconStack
|
||||
entries={trainIconData}
|
||||
direction={direction}
|
||||
hidden={!!anpanmanStatus && showIcon}
|
||||
statusIcon={anpanmanStatus}
|
||||
onPressEntry={(entry) => {
|
||||
navigate("howto", {
|
||||
info: entry.vehicle_info_url,
|
||||
goTo: from == "LED" ? "menu" : from,
|
||||
});
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -48,7 +48,9 @@ export const StationDeteilView = (props) => {
|
||||
|
||||
const [usePDFView, setUsePDFView] = useState(undefined);
|
||||
useEffect(() => {
|
||||
AS.getItem(STORAGE_KEYS.USE_PDF_VIEW).then(setUsePDFView);
|
||||
AS.getItem(STORAGE_KEYS.USE_PDF_VIEW)
|
||||
.then(setUsePDFView)
|
||||
.catch(() => setUsePDFView("false"));
|
||||
}, []);
|
||||
const info =
|
||||
currentStation &&
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import React, { FC, useState, useEffect, useRef } from "react";
|
||||
import React, { FC, useState, useEffect, useMemo, useRef } from "react";
|
||||
import {
|
||||
View,
|
||||
Text,
|
||||
@@ -21,6 +21,10 @@ import type { UnyohubData, ElesiteData } from "@/types/unyohub";
|
||||
import { useUnyohub } from "@/stateBox/useUnyohub";
|
||||
import { useElesite } from "@/stateBox/useElesite";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import {
|
||||
buildElesiteLineGroups,
|
||||
type ElesiteLineGroup,
|
||||
} from "@/lib/elesiteTrainOrder";
|
||||
import ViewShot from "react-native-view-shot";
|
||||
import * as Sharing from "expo-sharing";
|
||||
|
||||
@@ -83,6 +87,226 @@ const formatDateHHMM = (datetime: string): string => {
|
||||
}
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* FormationChips: "+"区切りの編成名をチップ形式で表示 */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const FormationChips: FC<{ text: string; color: string }> = ({ text, color }) => {
|
||||
const parts = text.split("+").map((s) => s.trim()).filter(Boolean);
|
||||
if (parts.length === 0) return null;
|
||||
return (
|
||||
<View style={{ flexDirection: "row", alignItems: "center", flexWrap: "wrap", gap: 2 }}>
|
||||
{parts.map((part, i) => (
|
||||
<React.Fragment key={i}>
|
||||
{i > 0 && (
|
||||
<Text style={{ fontSize: 11, color, fontWeight: "bold" }}>+</Text>
|
||||
)}
|
||||
<View
|
||||
style={{
|
||||
borderWidth: 1,
|
||||
borderColor: color + "66",
|
||||
borderRadius: 4,
|
||||
paddingHorizontal: 5,
|
||||
paddingVertical: 1,
|
||||
backgroundColor: color + "12",
|
||||
}}
|
||||
>
|
||||
<Text style={{ fontSize: 12, fontWeight: "700", color }} numberOfLines={1}>
|
||||
{part}
|
||||
</Text>
|
||||
</View>
|
||||
</React.Fragment>
|
||||
))}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* FadingSubCycler */
|
||||
/* ------------------------------------------------------------------ */
|
||||
type FadingSubItem = { label: string; datetime: string | null };
|
||||
|
||||
const FadingSubCycler: FC<{ items: FadingSubItem[]; color: string }> = ({ items, color }) => {
|
||||
const { colors } = useThemeColors();
|
||||
const [index, setIndex] = useState(0);
|
||||
const opacity = useRef(new Animated.Value(1)).current;
|
||||
|
||||
useEffect(() => {
|
||||
if (items.length <= 1) return;
|
||||
const cycle = () => {
|
||||
Animated.timing(opacity, { toValue: 0, duration: 300, useNativeDriver: true }).start(() => {
|
||||
setIndex((i) => (i + 1) % items.length);
|
||||
Animated.timing(opacity, { toValue: 1, duration: 300, useNativeDriver: true }).start();
|
||||
});
|
||||
};
|
||||
const id = setInterval(cycle, 3000);
|
||||
return () => clearInterval(id);
|
||||
}, [items.length]);
|
||||
|
||||
const item = items[index];
|
||||
return (
|
||||
<Animated.View style={{ opacity, flexDirection: "row", alignItems: "center", gap: 4 }}>
|
||||
{item.datetime ? (
|
||||
<Text style={{ fontSize: 11, color: colors.textSecondary }} numberOfLines={1}>
|
||||
{`最終投稿: ${formatDateHHMM(item.datetime)}`}
|
||||
</Text>
|
||||
) : (
|
||||
<Text style={{ fontSize: 11, color: colors.textSecondary }} numberOfLines={1}>
|
||||
{`運用情報 ${index + 1}/${items.length}`}
|
||||
</Text>
|
||||
)}
|
||||
</Animated.View>
|
||||
);
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
/* ActiveFormationChipsCycler: 全チップ常時表示、アクティブのみ枠アニメ */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const ActiveFormationChipsCycler: FC<{ items: string[]; color: string }> = ({ items, color }) => {
|
||||
const [activeIndex, setActiveIndex] = useState(0);
|
||||
const borderAnim = useRef(new Animated.Value(items.length <= 1 ? 1.5 : 0)).current;
|
||||
|
||||
useEffect(() => {
|
||||
if (items.length <= 1) return;
|
||||
Animated.timing(borderAnim, { toValue: 1.5, duration: 200, useNativeDriver: false }).start();
|
||||
const id = setInterval(() => {
|
||||
Animated.timing(borderAnim, { toValue: 0, duration: 200, useNativeDriver: false }).start(() => {
|
||||
setActiveIndex((i) => (i + 1) % items.length);
|
||||
Animated.timing(borderAnim, { toValue: 1.5, duration: 200, useNativeDriver: false }).start();
|
||||
});
|
||||
}, 3000);
|
||||
return () => clearInterval(id);
|
||||
}, [items.length]);
|
||||
|
||||
return (
|
||||
<View style={{ flexDirection: "row", alignItems: "center", flexWrap: "wrap", gap: 4 }}>
|
||||
{items.map((text, i) => {
|
||||
const isActive = i === activeIndex;
|
||||
const parts = text.split("+").map((s) => s.trim()).filter(Boolean);
|
||||
const inner = (
|
||||
<View style={{ flexDirection: "row", alignItems: "center", flexWrap: "wrap", gap: 2 }}>
|
||||
{parts.map((part, j) => (
|
||||
<React.Fragment key={j}>
|
||||
{j > 0 && (
|
||||
<Text style={{ fontSize: 11, fontWeight: "bold", color: isActive ? color : color + "55" }}>+</Text>
|
||||
)}
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
fontWeight: isActive ? "700" : "500",
|
||||
color: isActive ? color : color + "55",
|
||||
paddingHorizontal: 4,
|
||||
paddingVertical: 1,
|
||||
}}
|
||||
numberOfLines={1}
|
||||
>
|
||||
{part}
|
||||
</Text>
|
||||
</React.Fragment>
|
||||
))}
|
||||
</View>
|
||||
);
|
||||
return (
|
||||
<React.Fragment key={i}>
|
||||
{i > 0 && (
|
||||
<Text style={{ fontSize: 11, color: color + "55" }}>・</Text>
|
||||
)}
|
||||
{isActive ? (
|
||||
<Animated.View
|
||||
style={{
|
||||
borderWidth: borderAnim,
|
||||
borderColor: color,
|
||||
borderRadius: 6,
|
||||
paddingHorizontal: 4,
|
||||
paddingVertical: 1,
|
||||
backgroundColor: color + "12",
|
||||
}}
|
||||
>
|
||||
{inner}
|
||||
</Animated.View>
|
||||
) : (
|
||||
inner
|
||||
)}
|
||||
</React.Fragment>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const ElesiteLineGroupCycler: FC<{
|
||||
groups: ElesiteLineGroup[];
|
||||
color: string;
|
||||
onActiveGroupChange?: (group: ElesiteLineGroup | null) => void;
|
||||
}> = ({ groups, color, onActiveGroupChange }) => {
|
||||
const { colors } = useThemeColors();
|
||||
const [index, setIndex] = useState(0);
|
||||
const opacity = useRef(new Animated.Value(1)).current;
|
||||
|
||||
useEffect(() => {
|
||||
if (groups.length === 0) {
|
||||
onActiveGroupChange?.(null);
|
||||
return;
|
||||
}
|
||||
|
||||
if (index >= groups.length) {
|
||||
setIndex(0);
|
||||
return;
|
||||
}
|
||||
|
||||
onActiveGroupChange?.(groups[index]);
|
||||
}, [groups, index, onActiveGroupChange]);
|
||||
|
||||
useEffect(() => {
|
||||
if (groups.length <= 1) return;
|
||||
|
||||
const timer = setInterval(() => {
|
||||
Animated.timing(opacity, {
|
||||
toValue: 0,
|
||||
duration: 250,
|
||||
useNativeDriver: true,
|
||||
}).start(() => {
|
||||
setIndex((prev) => (prev + 1) % groups.length);
|
||||
Animated.timing(opacity, {
|
||||
toValue: 1,
|
||||
duration: 250,
|
||||
useNativeDriver: true,
|
||||
}).start();
|
||||
});
|
||||
}, 3000);
|
||||
|
||||
return () => clearInterval(timer);
|
||||
}, [groups.length]);
|
||||
|
||||
const group = groups[index];
|
||||
if (!group) return null;
|
||||
|
||||
return (
|
||||
<Animated.View style={{ opacity }}>
|
||||
{group.formationText ? (
|
||||
<View style={styles.elesiteFormationWrap}>
|
||||
<FormationChips text={group.formationText} color={color} />
|
||||
</View>
|
||||
) : (
|
||||
<Text style={[styles.subText, { color: colors.textSecondary }]}>
|
||||
本日の運用報告なし
|
||||
</Text>
|
||||
)}
|
||||
{(group.leftStation || group.rightStation || group.lineLabel) && (
|
||||
<RefDirectionBanner
|
||||
rows={[
|
||||
{
|
||||
leftLabel: group.leftStation ?? undefined,
|
||||
lineLabel: group.lineLabel ?? undefined,
|
||||
rightLabel: group.rightStation ?? undefined,
|
||||
},
|
||||
]}
|
||||
color={color}
|
||||
/>
|
||||
)}
|
||||
</Animated.View>
|
||||
);
|
||||
};
|
||||
|
||||
export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
payload,
|
||||
}) => {
|
||||
@@ -128,6 +352,12 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
destinationStation,
|
||||
} = payload;
|
||||
|
||||
// __メモ書き サフィックスを除去して列番部分だけを返す
|
||||
const stripMemoSuffix = (value: string | null | undefined): string => {
|
||||
if (!value) return "";
|
||||
return value.split("__")[0].trim();
|
||||
};
|
||||
|
||||
const isFreightRetsuban = trainNum.includes("レ");
|
||||
const hubTrainNum = (unyohubTrainNumProp || trainNum).replace(/レ/g, "");
|
||||
const freightUnyohubCandidates = (() => {
|
||||
@@ -145,11 +375,23 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
})();
|
||||
const matchesHubTrainNum = (candidate?: string | null): boolean => {
|
||||
if (!candidate) return false;
|
||||
if (candidate === hubTrainNum) return true;
|
||||
const normalized = stripMemoSuffix(candidate).replace(/レ/g, "");
|
||||
if (normalized === hubTrainNum) return true;
|
||||
if (!isFreightRetsuban) return false;
|
||||
return freightUnyohubCandidates.has(candidate);
|
||||
return freightUnyohubCandidates.has(normalized);
|
||||
};
|
||||
|
||||
// APIデータ内の元の列番(__メモ付き)を取得して運用Hub連携 URL に使う
|
||||
const originalHubTrainNum = (() => {
|
||||
for (const entry of unyohubEntries) {
|
||||
const match = entry.trains?.find(
|
||||
(t) => stripMemoSuffix(t.train_number).replace(/レ/g, "") === hubTrainNum,
|
||||
);
|
||||
if (match?.train_number) return match.train_number;
|
||||
}
|
||||
return hubTrainNum;
|
||||
})();
|
||||
|
||||
// 進行方向の確定:
|
||||
// 1. payload.direction が明示されていればそれを使う
|
||||
// 2. customTrainData.directions が設定されていればそれを使う
|
||||
@@ -173,8 +415,34 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
const opCount = todayOperation.length;
|
||||
const unyoCount = unyohubEntries.length;
|
||||
const elesiteCount = elesiteEntries.length;
|
||||
const elesiteLineGroups = useMemo(
|
||||
() => buildElesiteLineGroups(elesiteEntries, trainNum),
|
||||
[elesiteEntries, trainNum],
|
||||
);
|
||||
const elesiteDisplayGroups = useMemo(
|
||||
() =>
|
||||
elesiteLineGroups.some((group) => group.hasFormations)
|
||||
? elesiteLineGroups.filter((group) => group.hasFormations)
|
||||
: elesiteLineGroups,
|
||||
[elesiteLineGroups],
|
||||
);
|
||||
const [activeElesiteGroupKey, setActiveElesiteGroupKey] = useState<string | null>(null);
|
||||
const hasTrainInfo = priority > 200;
|
||||
|
||||
useEffect(() => {
|
||||
if (elesiteDisplayGroups.length === 0) {
|
||||
setActiveElesiteGroupKey(null);
|
||||
return;
|
||||
}
|
||||
|
||||
if (
|
||||
!activeElesiteGroupKey ||
|
||||
!elesiteDisplayGroups.some((group) => group.key === activeElesiteGroupKey)
|
||||
) {
|
||||
setActiveElesiteGroupKey(elesiteDisplayGroups[0].key);
|
||||
}
|
||||
}, [activeElesiteGroupKey, elesiteDisplayGroups]);
|
||||
|
||||
// 運用情報: train_ids / related_train_ids の位置番号でソートして unit_ids を収集
|
||||
// "4565M,2" のようなカンマ区切り位置番号を解析
|
||||
// 上り(resolvedDirection=true)=ASC, 下り(false)=DESC
|
||||
@@ -262,6 +530,12 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
.sort()
|
||||
.at(-1) ?? null;
|
||||
|
||||
// フェードサイクル用アイテム(編成あるエントリのみ)
|
||||
const unyohubSubItems: FadingSubItem[] = nonEmptyFormationEntries.map((e) => ({
|
||||
label: e.formations?.trim() || e.operation_id || "",
|
||||
datetime: e.last_posted_datetime ?? null,
|
||||
}));
|
||||
|
||||
// 投稿日時が今日でない場合はカードを薄く表示("YYYY-MM-DD HH:MM:SS" 形式)
|
||||
const todayDateStr = new Date().toLocaleDateString("sv"); // "YYYY-MM-DD"
|
||||
const isUnyohubStale =
|
||||
@@ -293,28 +567,32 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
)?.direction;
|
||||
const hubSortDescending = matchedDirection === "inbound";
|
||||
|
||||
const formationNames =
|
||||
[...nonEmptyFormationEntries]
|
||||
.sort((a, b) => {
|
||||
const posA =
|
||||
a.trains?.find((t) => matchesHubTrainNum(t.train_number))
|
||||
?.position_forward ?? 0;
|
||||
const posB =
|
||||
b.trains?.find((t) => matchesHubTrainNum(t.train_number))
|
||||
?.position_forward ?? 0;
|
||||
return hubSortDescending ? posB - posA : posA - posB;
|
||||
})
|
||||
.slice(0, 4)
|
||||
.map((e) => e.formations)
|
||||
.join("・") +
|
||||
(nonEmptyFormationEntries.length > 4
|
||||
? ` 他${nonEmptyFormationEntries.length - 4}件`
|
||||
: "");
|
||||
const sortedFormationDisplay = [...nonEmptyFormationEntries]
|
||||
.sort((a, b) => {
|
||||
const posA =
|
||||
a.trains?.find((t) => matchesHubTrainNum(t.train_number))
|
||||
?.position_forward ?? 0;
|
||||
const posB =
|
||||
b.trains?.find((t) => matchesHubTrainNum(t.train_number))
|
||||
?.position_forward ?? 0;
|
||||
return hubSortDescending ? posB - posA : posA - posB;
|
||||
})
|
||||
.slice(0, 4);
|
||||
|
||||
const formationDetail = (
|
||||
<View style={styles.operationDetailBlock}>
|
||||
{hasNonEmptyFormations && (
|
||||
<Text style={[styles.unitIdText, { color: colors.textAccent, opacity: isUnyohubStale ? 0.4 : 1 }]}>{formationNames}</Text>
|
||||
<View style={{ opacity: isUnyohubStale ? 0.4 : 1 }}>
|
||||
<ActiveFormationChipsCycler
|
||||
items={sortedFormationDisplay.map((e) => e.formations || "")}
|
||||
color={colors.textAccent}
|
||||
/>
|
||||
{nonEmptyFormationEntries.length > 4 && (
|
||||
<Text style={{ fontSize: 11, color: colors.textTertiary, marginTop: 2 }}>
|
||||
他{nonEmptyFormationEntries.length - 4}件
|
||||
</Text>
|
||||
)}
|
||||
</View>
|
||||
)}
|
||||
{unyohubGroupNames !== "" && (
|
||||
<Text style={[styles.subText, { color: colors.textSecondary }]}>{unyohubGroupNames}</Text>
|
||||
@@ -354,46 +632,25 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
</View>
|
||||
);
|
||||
|
||||
// えれサイト最終投稿時刻(last_reported_at が最新のエントリ)
|
||||
const elesiteLastReportedAt =
|
||||
elesiteEntries
|
||||
.map((e) => e.report_info?.last_reported_at)
|
||||
.filter((d): d is string => !!d)
|
||||
.sort()
|
||||
.at(-1) ?? null;
|
||||
|
||||
// えれサイト: units が1件以上あるエントリのみ「データあり」と判定
|
||||
const elesiteHasNonEmptyFormations = elesiteEntries.some(
|
||||
(e) => (e.formation_config?.units?.length ?? 0) > 0,
|
||||
const elesiteHasNonEmptyFormations = elesiteDisplayGroups.some(
|
||||
(group) => group.hasFormations,
|
||||
);
|
||||
const elesiteNonEmptyFormationEntries = elesiteEntries
|
||||
.filter((e) => (e.formation_config?.units?.length ?? 0) > 0)
|
||||
.sort((a, b) => {
|
||||
// high松(left_station)側のユニットを先に表示
|
||||
// (heading_to === "left") === is_leading が true → high松(left)端のユニット
|
||||
const aNav = a.trains?.find((t) => t.train_number === trainNum)?.nav;
|
||||
const bNav = b.trains?.find((t) => t.train_number === trainNum)?.nav;
|
||||
const aIsLeft =
|
||||
(aNav?.heading_to === "left") === (aNav?.is_leading === true);
|
||||
const bIsLeft =
|
||||
(bNav?.heading_to === "left") === (bNav?.is_leading === true);
|
||||
if (aIsLeft === bIsLeft) return 0;
|
||||
return aIsLeft ? -1 : 1;
|
||||
});
|
||||
// えれサイト: 編成名テキスト(formation_config.units 優先)
|
||||
const elesiteFormationNames =
|
||||
elesiteNonEmptyFormationEntries
|
||||
.slice(0, 4)
|
||||
.map((e) => {
|
||||
const units = e.formation_config?.units;
|
||||
return units?.length
|
||||
? units.map((u) => u.formation).join("+")
|
||||
: e.formations;
|
||||
})
|
||||
.join("・") +
|
||||
(elesiteNonEmptyFormationEntries.length > 4
|
||||
? ` 他${elesiteNonEmptyFormationEntries.length - 4}件`
|
||||
: "");
|
||||
const activeElesiteGroup =
|
||||
elesiteDisplayGroups.find((group) => group.key === activeElesiteGroupKey) ??
|
||||
elesiteDisplayGroups[0] ??
|
||||
null;
|
||||
const activeElesiteGroupIndex = activeElesiteGroup
|
||||
? elesiteDisplayGroups.findIndex((group) => group.key === activeElesiteGroup.key)
|
||||
: 0;
|
||||
const elesiteBadgeCount = elesiteHasNonEmptyFormations
|
||||
? elesiteDisplayGroups.length
|
||||
: null;
|
||||
const activeElesiteGroupLabel =
|
||||
activeElesiteGroup?.lineLabel ||
|
||||
[activeElesiteGroup?.leftStation, activeElesiteGroup?.rightStation]
|
||||
.filter(Boolean)
|
||||
.join("〜") ||
|
||||
null;
|
||||
|
||||
// 列車情報 subテキスト
|
||||
const trainInfoSub = customTrainData?.vehicle_formation
|
||||
@@ -414,23 +671,15 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
|
||||
const elesiteFormationDetail = (
|
||||
<View style={styles.operationDetailBlock}>
|
||||
{elesiteHasNonEmptyFormations && (
|
||||
<Text style={styles.unitIdText}>{elesiteFormationNames}</Text>
|
||||
{elesiteDisplayGroups.length > 0 && (
|
||||
<ElesiteLineGroupCycler
|
||||
groups={elesiteDisplayGroups}
|
||||
color="#44bb44"
|
||||
onActiveGroupChange={(group) =>
|
||||
setActiveElesiteGroupKey(group?.key ?? null)
|
||||
}
|
||||
/>
|
||||
)}
|
||||
{elesiteCount > 0
|
||||
? (() => {
|
||||
const fc = (elesiteNonEmptyFormationEntries[0] ?? elesiteEntries[0])
|
||||
?.formation_config;
|
||||
return fc?.left_station && fc?.right_station ? (
|
||||
<RefDirectionBanner
|
||||
rows={[
|
||||
{ leftLabel: fc.left_station, rightLabel: fc.right_station },
|
||||
]}
|
||||
color="#44bb44"
|
||||
/>
|
||||
) : null;
|
||||
})()
|
||||
: undefined}
|
||||
</View>
|
||||
);
|
||||
return (
|
||||
@@ -503,9 +752,11 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
label="外部コミュニティデータ"
|
||||
sub={
|
||||
hasNonEmptyFormations
|
||||
? unyohubLastPostedDatetime
|
||||
? `最終投稿: ${formatDateHHMM(unyohubLastPostedDatetime)}`
|
||||
: ""
|
||||
? unyohubSubItems.length > 1
|
||||
? <FadingSubCycler items={unyohubSubItems} color={colors.textSecondary} />
|
||||
: unyohubLastPostedDatetime
|
||||
? `最終投稿: ${formatDateHHMM(unyohubLastPostedDatetime)}`
|
||||
: ""
|
||||
: unyoCount > 0
|
||||
? "数日の運用報告なし"
|
||||
: "この列車の運用データはありません"
|
||||
@@ -516,7 +767,8 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
disabled={unyoCount === 0}
|
||||
onPress={() =>
|
||||
openWebView(
|
||||
`https://jr-shikoku-data-system.pages.dev/unyohub-connection-train-data/${hubTrainNum}`,
|
||||
`https://jr-shikoku-data-system.pages.dev/unyohub-connection-train-data/${originalHubTrainNum}`,
|
||||
|
||||
true,
|
||||
)
|
||||
}
|
||||
@@ -534,23 +786,20 @@ export const TrainDataSources: FC<{ payload?: TrainDataSourcesPayload }> = ({
|
||||
elesiteCount === 0
|
||||
? "この列車の運用データはありません"
|
||||
: !elesiteHasNonEmptyFormations
|
||||
? "本日の運用報告なし"
|
||||
: elesiteLastReportedAt
|
||||
? `最終投稿: ${formatHHMM(elesiteLastReportedAt)}`
|
||||
: ""
|
||||
? activeElesiteGroupLabel || "本日の運用報告なし"
|
||||
: elesiteDisplayGroups.length > 1
|
||||
? activeElesiteGroupLabel || ""
|
||||
: activeElesiteGroup?.lastReportedAt
|
||||
? `最終投稿: ${formatHHMM(activeElesiteGroup.lastReportedAt)}`
|
||||
: activeElesiteGroupLabel || ""
|
||||
}
|
||||
badge={elesiteHasNonEmptyFormations ? elesiteCount : null}
|
||||
badge={elesiteBadgeCount}
|
||||
badgeColor="#44bb44"
|
||||
detail={elesiteFormationDetail}
|
||||
disabled={elesiteCount === 0}
|
||||
onPress={() => {
|
||||
const matchedEntry =
|
||||
elesiteNonEmptyFormationEntries[0] ?? elesiteEntries[0];
|
||||
const matchedTrain = matchedEntry?.trains?.find(
|
||||
(t) => t.train_number === trainNum,
|
||||
);
|
||||
const url =
|
||||
matchedTrain?.timetable_url || "https://www.elesite-next.com/";
|
||||
activeElesiteGroup?.timetableUrl || "https://www.elesite-next.com/";
|
||||
SheetManager.hide("TrainDataSources");
|
||||
Linking.openURL(url);
|
||||
}}
|
||||
@@ -833,7 +1082,7 @@ const TrainInfoDetail: FC<{
|
||||
uwasa,
|
||||
optional_text,
|
||||
} = data;
|
||||
const { fontAvailable } = getTrainType({
|
||||
const { fontFamily } = getTrainType({
|
||||
type: data.type,
|
||||
whiteMode: false,
|
||||
});
|
||||
@@ -871,13 +1120,16 @@ const TrainInfoDetail: FC<{
|
||||
style={[
|
||||
styles.typeTagText,
|
||||
{
|
||||
fontFamily: fontAvailable ? "JR-Nishi" : undefined,
|
||||
fontWeight: !fontAvailable ? "bold" : undefined,
|
||||
paddingTop: fontAvailable ? 2 : 0,
|
||||
fontFamily,
|
||||
fontWeight: fontFamily ? undefined : "bold",
|
||||
paddingTop: fontFamily ? 2 : 0,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{typeName}
|
||||
{fontFamily === "JR-WEST-PLUS" ? (
|
||||
<Text style={{ fontFamily: "DiaPro", fontSize: 7 }}>{"\u00A0"}</Text>
|
||||
) : null}
|
||||
</Text>
|
||||
</View>
|
||||
)}
|
||||
@@ -1011,7 +1263,7 @@ type SourceCardProps = {
|
||||
color: string;
|
||||
title: string;
|
||||
label: string;
|
||||
sub?: string;
|
||||
sub?: string | React.ReactNode;
|
||||
badge: number | string | null;
|
||||
badgeColor: string;
|
||||
disabled?: boolean;
|
||||
@@ -1063,9 +1315,13 @@ const SourceCard: FC<SourceCardProps> = ({
|
||||
<Text style={[styles.labelText, { color: colors.textQuaternary }]}>{label}</Text>
|
||||
</View>
|
||||
{sub && (
|
||||
<Text style={[styles.subText, { color: colors.textSecondary }]} numberOfLines={1}>
|
||||
{sub}
|
||||
</Text>
|
||||
typeof sub === "string" ? (
|
||||
<Text style={[styles.subText, { color: colors.textSecondary }]} numberOfLines={1}>
|
||||
{sub}
|
||||
</Text>
|
||||
) : (
|
||||
<View style={styles.subNodeWrap}>{sub}</View>
|
||||
)
|
||||
)}
|
||||
{detail && <View style={styles.detailWrap}>{detail}</View>}
|
||||
</View>
|
||||
@@ -1228,6 +1484,14 @@ const styles = StyleSheet.create({
|
||||
subText: {
|
||||
fontSize: 12,
|
||||
},
|
||||
routePagerText: {
|
||||
fontSize: 11,
|
||||
fontWeight: "600",
|
||||
marginBottom: 4,
|
||||
},
|
||||
subNodeWrap: {
|
||||
marginTop: 2,
|
||||
},
|
||||
subTextDisabled: {
|
||||
color: "#bbb",
|
||||
},
|
||||
@@ -1260,6 +1524,9 @@ const styles = StyleSheet.create({
|
||||
color: "#0077aa",
|
||||
letterSpacing: 0.5,
|
||||
},
|
||||
elesiteFormationWrap: {
|
||||
marginBottom: 4,
|
||||
},
|
||||
footer: {
|
||||
height: 20,
|
||||
},
|
||||
|
||||
@@ -8,7 +8,6 @@ import {
|
||||
TextInput,
|
||||
ScrollView,
|
||||
Linking,
|
||||
Image,
|
||||
} from "react-native";
|
||||
import { useAllTrainDiagram } from "../stateBox/useAllTrainDiagram";
|
||||
import { useBottomTabBarHeight } from "@react-navigation/bottom-tabs";
|
||||
@@ -24,10 +23,18 @@ import { Switch } from "@rneui/themed";
|
||||
import { migrateTrainName } from "@/lib/eachTrainInfoCoreLib/migrateTrainName";
|
||||
import { OneManText } from "./ActionSheetComponents/EachTrainInfoCore/HeaderTextParts/OneManText";
|
||||
import { getStringConfig } from "@/lib/getStringConfig";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import { normalizeIconDisplayMode } from "@/lib/iconDisplayMode";
|
||||
import { InfogramText } from "./ActionSheetComponents/EachTrainInfoCore/HeaderTextParts/InfogramText";
|
||||
import { resolveTrainIconEntries } from "@/lib/trainIconEntries";
|
||||
import { TrainIconStack } from "./ActionSheetComponents/EachTrainInfoCore/TrainIconStack";
|
||||
import { formatWrappedTrainType, shouldWrapTrainType } from "@/lib/trainTypeWrap";
|
||||
|
||||
export const AllTrainDiagramView: FC = () => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const { goBack, navigate } = useNavigation<any>();
|
||||
const { iconSetting } = useTrainMenu();
|
||||
const iconDisplayMode = normalizeIconDisplayMode(iconSetting);
|
||||
const tabBarHeight = useBottomTabBarHeight();
|
||||
const {
|
||||
keyList,
|
||||
@@ -80,12 +87,28 @@ export const AllTrainDiagramView: FC = () => {
|
||||
openTrainInfo: (d: string) => void;
|
||||
};
|
||||
const Item: FC<ItemProps> = ({ id, openTrainInfo }) => {
|
||||
const { train_info_img, train_name, type, train_num_distance, to_data } =
|
||||
customTrainDataDetector(id, allCustomTrainData);
|
||||
const todayOperation = getTodayOperationByTrainId(id).filter(d=> d.state !== 100);
|
||||
const [isWrapped, setIsWrapped] = useState(false);
|
||||
|
||||
const [typeString, fontAvailable, isOneMan] = getStringConfig(type, id);
|
||||
const customTrainData = customTrainDataDetector(id, allCustomTrainData);
|
||||
const {
|
||||
train_name,
|
||||
type,
|
||||
train_num_distance,
|
||||
to_data,
|
||||
infogram,
|
||||
directions,
|
||||
} = customTrainData;
|
||||
const todayOperation = (getTodayOperationByTrainId(id) ?? []).filter(d=> d.state !== 100);
|
||||
const trainIconData = resolveTrainIconEntries({
|
||||
trainNum: id,
|
||||
customTrainData,
|
||||
todayOperation,
|
||||
iconDisplayMode,
|
||||
});
|
||||
let iconTrainDirection =
|
||||
parseInt(id.replace(/[^\d]/g, "")) % 2 == 0 ? true : false;
|
||||
if (directions != undefined) {
|
||||
iconTrainDirection = directions ? true : false;
|
||||
}
|
||||
const [typeString, fontFamily, isOneMan] = getStringConfig(type, id);
|
||||
|
||||
const trainNameString = (() => {
|
||||
switch (true) {
|
||||
@@ -110,6 +133,7 @@ export const AllTrainDiagramView: FC = () => {
|
||||
return migrateTrainName(hoge + "行き");
|
||||
}
|
||||
})();
|
||||
const wrapType = shouldWrapTrainType(typeString, trainNameString);
|
||||
return (
|
||||
<TouchableOpacity
|
||||
style={{
|
||||
@@ -124,29 +148,11 @@ export const AllTrainDiagramView: FC = () => {
|
||||
onPress={() => openTrainInfo(id)}
|
||||
>
|
||||
<View style={{ marginHorizontal: 5, flexDirection: "row" }}>
|
||||
{todayOperation.length > 0
|
||||
? todayOperation.map((operation, index) => (
|
||||
<Image
|
||||
key={index}
|
||||
source={{ uri: operation.vehicle_img || train_info_img }}
|
||||
style={{
|
||||
width: 20,
|
||||
height: 22,
|
||||
marginHorizontal: 2,
|
||||
display: index == 0 ? "flex" : "none", //暫定対応:複数アイコンがある場合は最初のアイコンのみ表示
|
||||
}}
|
||||
/>
|
||||
))
|
||||
: train_info_img && (
|
||||
<Image
|
||||
source={{ uri: train_info_img }}
|
||||
style={{
|
||||
width: 20,
|
||||
height: 22,
|
||||
marginHorizontal: 2,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
<TrainIconStack
|
||||
entries={trainIconData}
|
||||
direction={iconTrainDirection}
|
||||
variant="list"
|
||||
/>
|
||||
</View>
|
||||
|
||||
<View
|
||||
@@ -158,37 +164,49 @@ export const AllTrainDiagramView: FC = () => {
|
||||
>
|
||||
{typeString && (
|
||||
<Text
|
||||
numberOfLines={wrapType ? 2 : 1}
|
||||
style={{
|
||||
fontSize: 20,
|
||||
color: fixed.textOnPrimary,
|
||||
fontFamily: fontAvailable ? "JR-Nishi" : undefined,
|
||||
fontWeight: !fontAvailable ? "bold" : undefined,
|
||||
fontFamily,
|
||||
fontWeight: fontFamily ? undefined : "bold",
|
||||
marginRight: 5,
|
||||
flexShrink: 0,
|
||||
...(wrapType
|
||||
? { width: 44, lineHeight: 22 }
|
||||
: {}),
|
||||
}}
|
||||
>
|
||||
{isWrapped
|
||||
? typeString.replace(/(.{2})/g, "$1\n").trim()
|
||||
: typeString}
|
||||
{wrapType ? formatWrappedTrainType(typeString) : typeString}
|
||||
{fontFamily === "JR-WEST-PLUS" ? (
|
||||
<Text style={{ fontFamily: "DiaPro", fontSize: 7 }}>{"\u00A0"}</Text>
|
||||
) : null}
|
||||
</Text>
|
||||
)}
|
||||
{isOneMan && <OneManText />}
|
||||
</View>
|
||||
{trainNameString && (
|
||||
<Text
|
||||
{(trainNameString || infogram) && (
|
||||
<View
|
||||
style={{
|
||||
fontSize: 20,
|
||||
fontWeight: "bold",
|
||||
color: fixed.textOnPrimary,
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
flexShrink: 1,
|
||||
}}
|
||||
onTextLayout={(e) => {
|
||||
if (e.nativeEvent.lines.length > 1) {
|
||||
setIsWrapped(true);
|
||||
}
|
||||
}}
|
||||
>
|
||||
{trainNameString}
|
||||
</Text>
|
||||
{trainNameString && (
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 20,
|
||||
fontWeight: "bold",
|
||||
color: fixed.textOnPrimary,
|
||||
flexShrink: 1,
|
||||
}}
|
||||
>
|
||||
{trainNameString}
|
||||
</Text>
|
||||
)}
|
||||
{infogram ? <InfogramText infogram={infogram} fontSize={18} /> : null}
|
||||
</View>
|
||||
)}
|
||||
<View style={{ flex: 1 }} />
|
||||
<Text style={{ fontSize: 20, fontWeight: "bold", color: fixed.textOnPrimary }}>
|
||||
|
||||
@@ -6,21 +6,24 @@ import {
|
||||
} from "react-native-android-widget";
|
||||
import dayjs from "dayjs";
|
||||
import { WidgetColors, widgetLightColors } from "./widget-theme";
|
||||
import { API_ENDPOINTS } from "@/constants";
|
||||
import type { OperationInfoSnapshot } from "@/types";
|
||||
|
||||
export const getInfoString = async () => {
|
||||
// Fetch data from the server
|
||||
const time = dayjs().format("HH:mm");
|
||||
const text = await fetch(
|
||||
"https://script.google.com/macros/s/AKfycbz80LcaEUrhnlEsLkJy0LG2IRO3DBVQhfNmN1d_0f_HvtsujNQpxM90SrV9yKWH_JG1Ww/exec"
|
||||
)
|
||||
.then((response) => response.text())
|
||||
.then((data) => {
|
||||
if (data !== "") {
|
||||
return data.split("^");
|
||||
}
|
||||
return null;
|
||||
});
|
||||
//ToastAndroid.show(`${text}`, ToastAndroid.SHORT);
|
||||
const response = await fetch(API_ENDPOINTS.OPERATION_INFO, {
|
||||
cache: "no-store",
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(
|
||||
`Operation information request failed: ${response.status}`
|
||||
);
|
||||
}
|
||||
|
||||
const snapshot = (await response.json()) as OperationInfoSnapshot;
|
||||
const operationInfoText = snapshot.compatibility?.operationInfoText ?? "";
|
||||
const text = operationInfoText === "" ? null : operationInfoText.split("^");
|
||||
|
||||
return { time, text };
|
||||
};
|
||||
|
||||
|
||||
+277
-32
@@ -1,10 +1,12 @@
|
||||
import React from "react";
|
||||
import { InteractionManager } from "react-native";
|
||||
import {
|
||||
View,
|
||||
Platform,
|
||||
useWindowDimensions,
|
||||
StatusBar,
|
||||
useColorScheme,
|
||||
Button,
|
||||
} from "react-native";
|
||||
import * as Updates from "expo-updates";
|
||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||
@@ -23,7 +25,11 @@ import { NewMenu } from "./Apps/NewMenu";
|
||||
import { MapsButton } from "./Apps/MapsButton";
|
||||
import { ReloadButton } from "./Apps/ReloadButton";
|
||||
import { useStationList } from "../stateBox/useStationList";
|
||||
import { positionsLifecycleRef } from "../lib/rootNavigation";
|
||||
import { FixedPositionBox } from "./Apps/FixedPositionBox";
|
||||
import { PlaybackTimeline } from "./Apps/PlaybackTimeline";
|
||||
import { RecordingStatusBar } from "./Apps/RecordingStatusBar";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
|
||||
export default function Apps() {
|
||||
const { webview, fixedPosition, setFixedPosition } = useCurrentTrain();
|
||||
@@ -31,11 +37,15 @@ export default function Apps() {
|
||||
const { navigate } = useNavigation<any>();
|
||||
const { isLandscape } = useDeviceOrientationChange();
|
||||
const { top } = useSafeAreaInsets();
|
||||
const handleLayout = () => {};
|
||||
const { originalStationList } = useStationList();
|
||||
const { mapSwitch, trainInfo, setTrainInfo, selectedLine } = useTrainMenu();
|
||||
const isDark = useColorScheme() === "dark";
|
||||
const isFocused = useIsFocused();
|
||||
const [hasActivatedScreen, setHasActivatedScreen] = React.useState(false);
|
||||
const [hasActivatedWebView, setHasActivatedWebView] = React.useState(false);
|
||||
const [hasStableWebViewSession, setHasStableWebViewSession] = React.useState(false);
|
||||
const lastFocusSignatureRef = React.useRef("");
|
||||
const lastLayoutSignatureRef = React.useRef("");
|
||||
|
||||
const lineColor = selectedLine && stationIDPair[selectedLine]
|
||||
? lineColorList[stationIDPair[selectedLine]]
|
||||
@@ -82,20 +92,219 @@ export default function Apps() {
|
||||
}
|
||||
};
|
||||
const bgColor = isDark ? "#1c1c1e" : "#ffffff";
|
||||
|
||||
const resetTransientPositionsSession = React.useCallback(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: hasStableWebViewSession
|
||||
? "positions stable session preserved before leave"
|
||||
: "positions transient session reset before leave",
|
||||
data: {
|
||||
stableWebViewSession: hasStableWebViewSession,
|
||||
},
|
||||
});
|
||||
positionsLifecycleRef.current = {
|
||||
...positionsLifecycleRef.current,
|
||||
isUnstable: false,
|
||||
blockTabExit: false,
|
||||
};
|
||||
if (hasStableWebViewSession) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
webview.current?.stopLoading?.();
|
||||
} catch {}
|
||||
setHasActivatedWebView(false);
|
||||
setHasActivatedScreen(false);
|
||||
setHasStableWebViewSession(false);
|
||||
}, [hasStableWebViewSession, webview]);
|
||||
|
||||
React.useEffect(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions screen mounted",
|
||||
});
|
||||
return () => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions screen unmounted",
|
||||
});
|
||||
};
|
||||
}, []);
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!isFocused) {
|
||||
if (!hasActivatedWebView && !hasStableWebViewSession) {
|
||||
// allow one hidden startup prewarm so the positions session can begin before first tab focus
|
||||
} else {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions webview preserved on blur",
|
||||
data: {
|
||||
stableWebViewSession: hasStableWebViewSession,
|
||||
activatedWebView: hasActivatedWebView,
|
||||
},
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (hasActivatedScreen && hasActivatedWebView) return;
|
||||
const activationReason = isFocused
|
||||
? (hasActivatedScreen ? "focus" : "first_focus")
|
||||
: "background_prewarm";
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions screen activation scheduled",
|
||||
data: {
|
||||
reason: activationReason,
|
||||
},
|
||||
});
|
||||
let cancelled = false;
|
||||
const activate = () => {
|
||||
if (cancelled) {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions screen activation cancelled before webview mount",
|
||||
data: {
|
||||
reason: activationReason,
|
||||
},
|
||||
});
|
||||
return;
|
||||
}
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions screen activation committed",
|
||||
data: {
|
||||
reason: activationReason,
|
||||
},
|
||||
});
|
||||
setHasActivatedScreen(true);
|
||||
setHasActivatedWebView(true);
|
||||
};
|
||||
|
||||
if (isFocused) {
|
||||
const task = InteractionManager.runAfterInteractions(() => {
|
||||
setTimeout(activate, 250);
|
||||
});
|
||||
return () => {
|
||||
cancelled = true;
|
||||
task.cancel?.();
|
||||
};
|
||||
}
|
||||
|
||||
const timer = setTimeout(activate, 350);
|
||||
return () => {
|
||||
cancelled = true;
|
||||
clearTimeout(timer);
|
||||
};
|
||||
}, [hasActivatedScreen, hasActivatedWebView, hasStableWebViewSession, isFocused]);
|
||||
|
||||
React.useEffect(() => {
|
||||
const shouldGuardTabExit = isFocused && hasActivatedWebView && !hasStableWebViewSession;
|
||||
positionsLifecycleRef.current = {
|
||||
isUnstable: shouldGuardTabExit,
|
||||
blockTabExit: shouldGuardTabExit,
|
||||
resetBeforeLeave: resetTransientPositionsSession,
|
||||
deactivateStack: positionsLifecycleRef.current.deactivateStack,
|
||||
};
|
||||
return () => {
|
||||
positionsLifecycleRef.current = {
|
||||
isUnstable: false,
|
||||
blockTabExit: false,
|
||||
resetBeforeLeave: null,
|
||||
deactivateStack: positionsLifecycleRef.current.deactivateStack,
|
||||
};
|
||||
};
|
||||
}, [hasActivatedWebView, hasStableWebViewSession, isFocused, resetTransientPositionsSession]);
|
||||
|
||||
React.useEffect(() => {
|
||||
Sentry.setContext("positions_screen", {
|
||||
focused: isFocused,
|
||||
activatedScreen: hasActivatedScreen,
|
||||
activatedWebView: hasActivatedWebView,
|
||||
stableWebViewSession: hasStableWebViewSession,
|
||||
mapSwitch,
|
||||
selectedLine: selectedLine ?? null,
|
||||
trainNum: trainInfo?.trainNum ?? null,
|
||||
landscape: isLandscape,
|
||||
width,
|
||||
height,
|
||||
});
|
||||
}, [hasActivatedScreen, hasActivatedWebView, hasStableWebViewSession, height, isFocused, isLandscape, mapSwitch, selectedLine, trainInfo?.trainNum, width]);
|
||||
|
||||
React.useEffect(() => {
|
||||
const signature = JSON.stringify({
|
||||
focused: isFocused,
|
||||
mapSwitch,
|
||||
selectedLine: selectedLine ?? null,
|
||||
trainNum: trainInfo?.trainNum ?? null,
|
||||
landscape: isLandscape,
|
||||
});
|
||||
if (lastFocusSignatureRef.current === signature) return;
|
||||
lastFocusSignatureRef.current = signature;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: isFocused ? "positions focused" : "positions blurred",
|
||||
data: {
|
||||
mapSwitch,
|
||||
selectedLine: selectedLine ?? null,
|
||||
trainNum: trainInfo?.trainNum ?? null,
|
||||
landscape: isLandscape,
|
||||
},
|
||||
});
|
||||
}, [hasActivatedWebView, isFocused, isLandscape, mapSwitch, selectedLine, trainInfo?.trainNum]);
|
||||
|
||||
const handleLayout = React.useCallback((event) => {
|
||||
const layout = event?.nativeEvent?.layout;
|
||||
if (!layout) return;
|
||||
const signature = [Math.round(layout.width), Math.round(layout.height), isLandscape ? "landscape" : "portrait"].join(":");
|
||||
if (lastLayoutSignatureRef.current === signature) return;
|
||||
lastLayoutSignatureRef.current = signature;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions layout",
|
||||
data: {
|
||||
width: Math.round(layout.width),
|
||||
height: Math.round(layout.height),
|
||||
landscape: isLandscape,
|
||||
},
|
||||
});
|
||||
}, [isLandscape]);
|
||||
|
||||
return (
|
||||
<View style={{ flex: 1, backgroundColor: bgColor }}>
|
||||
{isFocused && mapSwitch === "true" && lineColor && lineColorDark && (
|
||||
<LinearGradient
|
||||
colors={[lineColorDark, lineColor]}
|
||||
start={{ x: 0, y: 0 }}
|
||||
end={{ x: 0, y: 1 }}
|
||||
style={{ position: "absolute", top: 0, left: 0, right: 0, height: top }}
|
||||
/>
|
||||
)}
|
||||
{isFocused && mapSwitch !== "true" && (
|
||||
<View style={{ position: "absolute", top: 0, left: 0, right: 0, height: top, backgroundColor: "#0099CC" }} />
|
||||
)}
|
||||
{isFocused && (
|
||||
<View
|
||||
pointerEvents="none"
|
||||
style={{ position: "absolute", top: 0, left: 0, right: 0, height: top }}
|
||||
>
|
||||
{mapSwitch === "true" && lineColor && lineColorDark ? (
|
||||
<LinearGradient
|
||||
colors={[lineColorDark, lineColor]}
|
||||
start={{ x: 0, y: 0 }}
|
||||
end={{ x: 0, y: 1 }}
|
||||
style={{ flex: 1 }}
|
||||
/>
|
||||
) : (
|
||||
<View
|
||||
style={{
|
||||
flex: 1,
|
||||
backgroundColor: "#0099CC",
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</View>
|
||||
)}
|
||||
{isFocused && hasActivatedScreen && (
|
||||
<StatusBar barStyle="light-content" />
|
||||
)}
|
||||
<View
|
||||
@@ -106,28 +315,64 @@ export default function Apps() {
|
||||
}}
|
||||
onLayout={handleLayout}
|
||||
>
|
||||
<AppsWebView
|
||||
{...{
|
||||
openStationACFromEachTrainInfo,
|
||||
}}
|
||||
/>
|
||||
{hasActivatedScreen ? (
|
||||
<>
|
||||
{hasActivatedWebView ? (
|
||||
<AppsWebView
|
||||
openStationACFromEachTrainInfo={openStationACFromEachTrainInfo}
|
||||
onInitialLoadReady={() => {
|
||||
if (hasStableWebViewSession) return;
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "positions webview became stable",
|
||||
});
|
||||
positionsLifecycleRef.current = {
|
||||
...positionsLifecycleRef.current,
|
||||
isUnstable: false,
|
||||
blockTabExit: false,
|
||||
};
|
||||
setHasStableWebViewSession(true);
|
||||
}}
|
||||
/>
|
||||
) : (
|
||||
<View style={{ flex: 1 }} />
|
||||
)}
|
||||
|
||||
<MapsButton
|
||||
onPress={() => {
|
||||
navigate("trainMenu", { webview });
|
||||
}}
|
||||
/>
|
||||
{isFocused && (
|
||||
<MapsButton
|
||||
onPress={() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.screen",
|
||||
level: "info",
|
||||
message: "maps button press",
|
||||
data: {
|
||||
mapSwitch,
|
||||
selectedLine: selectedLine ?? null,
|
||||
hasActivatedWebView,
|
||||
},
|
||||
});
|
||||
navigate("trainMenu", { webview });
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
|
||||
{fixedPosition.type && <FixedPositionBox />}
|
||||
|
||||
{mapSwitch == "true" ? (
|
||||
<ReloadButton
|
||||
onPress={() => Updates.reloadAsync()}
|
||||
right={isLandscape && trainInfo.trainNum ? (width / 100) * 40 : 0}
|
||||
/>
|
||||
) : (
|
||||
<NewMenu />
|
||||
)}
|
||||
{isFocused && fixedPosition.type && <FixedPositionBox />}
|
||||
{isFocused && <PlaybackTimeline />}
|
||||
{isFocused && <RecordingStatusBar />}
|
||||
{isFocused &&
|
||||
(mapSwitch == "true" ? (
|
||||
<ReloadButton
|
||||
onPress={() => Updates.reloadAsync()}
|
||||
right={isLandscape && trainInfo.trainNum ? (width / 100) * 40 : 0}
|
||||
/>
|
||||
) : (
|
||||
<NewMenu />
|
||||
))}
|
||||
</>
|
||||
) : (
|
||||
<View style={{ flex: 1 }} />
|
||||
)}
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
|
||||
@@ -58,7 +58,7 @@ type props = {
|
||||
|
||||
export const FixedStation: FC<props> = ({ stationID }) => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const { mapSwitch } = useTrainMenu();
|
||||
const { mapSwitch, playbackCurrentTimeIso } = useTrainMenu();
|
||||
const {
|
||||
currentTrain,
|
||||
fixedPosition,
|
||||
@@ -151,11 +151,11 @@ export const FixedStation: FC<props> = ({ stationID }) => {
|
||||
if (!currentTrain) return () => {};
|
||||
const data = trainTimeAndNumber
|
||||
.filter((d) => currentTrain.map((m) => m.num).includes(d.train)) //現在の列車に絞る[ToDo]
|
||||
.filter((d) => trainTimeFiltering({ d, currentTrain, station })) //時間フィルター
|
||||
.filter((d) => trainTimeFiltering({ d, currentTrain, station, stationList, now: playbackCurrentTimeIso })) //時間フィルター
|
||||
.filter((d) => !d.isThrough)
|
||||
.filter((d) => d.lastStation != station[0].Station_JP); //最終列車表示設定
|
||||
setSelectedTrain(data);
|
||||
}, [trainTimeAndNumber, currentTrain, tick /*liveActivity periodic refresh*/]);
|
||||
}, [trainTimeAndNumber, currentTrain, stationList, playbackCurrentTimeIso, tick /*liveActivity periodic refresh*/]);
|
||||
|
||||
useEffect(() => {
|
||||
liveNotifyIdRef.current = liveNotifyId;
|
||||
@@ -259,7 +259,7 @@ export const FixedStation: FC<props> = ({ stationID }) => {
|
||||
const player = delayAnnouncementPlayerRef.current;
|
||||
setAudioModeAsync({
|
||||
playsInSilentMode: true,
|
||||
shouldPlayInBackground: true,
|
||||
shouldPlayInBackground: false,
|
||||
interruptionMode: "duckOthers",
|
||||
})
|
||||
.then(() => {
|
||||
@@ -332,10 +332,14 @@ export const FixedStation: FC<props> = ({ stationID }) => {
|
||||
}, [selectedTrain, currentTrain, liveNotifyId, buildTrainsInfo]);
|
||||
|
||||
// バナー表示と同時にLive Activityを自動開始(selectedTrainが揃ってから)
|
||||
// iOSのみ一時的に無効化中(Androidは有効)
|
||||
useEffect(() => {
|
||||
// iOSのLive Activityは無効化
|
||||
if (Platform.OS === 'ios') return;
|
||||
if (
|
||||
!isLiveActivityAvailable() ||
|
||||
hasStartedRef.current ||
|
||||
station.length === 0
|
||||
) {
|
||||
return;
|
||||
}
|
||||
hasStartedRef.current = true;
|
||||
const startActivity = async () => {
|
||||
if (Platform.OS === 'android' && Platform.Version >= 33) {
|
||||
|
||||
@@ -26,17 +26,67 @@ import { Ionicons } from "@expo/vector-icons";
|
||||
import dayjs from "dayjs";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { normalizeIconDisplayMode } from "@/lib/iconDisplayMode";
|
||||
import { resolveTrainDataIcon } from "@/lib/trainDataIcon";
|
||||
import { resolveTrainIconEntries } from "@/lib/trainIconEntries";
|
||||
import {
|
||||
startTrainFollowActivity,
|
||||
updateTrainFollowActivity,
|
||||
endTrainFollowActivity,
|
||||
isAvailable as isLiveActivityAvailable,
|
||||
cancelLocationAnnouncements,
|
||||
} from "expo-live-activity";
|
||||
import {
|
||||
DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE,
|
||||
prepareBackgroundRikkaAnnouncements,
|
||||
sendTrainPositionRikkaAnnouncement,
|
||||
} from "@/lib/backgroundRikkaAnnouncements";
|
||||
import { AS } from "@/storageControl";
|
||||
import { STORAGE_KEYS } from "@/constants";
|
||||
|
||||
type props = {
|
||||
trainID: string;
|
||||
};
|
||||
|
||||
type TrainPathEntry = {
|
||||
raw: string;
|
||||
station: string;
|
||||
se: string;
|
||||
time: string;
|
||||
index: number;
|
||||
isThrough: boolean;
|
||||
hasTime: boolean;
|
||||
};
|
||||
|
||||
const normalizeTrainPosLabel = (value: string) =>
|
||||
value
|
||||
.replace(
|
||||
/(下り)|(上り)|\(下り\)|\(上り\)|(徳島線)|(高徳線)|(坂出方)|(児島方)/g,
|
||||
""
|
||||
)
|
||||
.trim();
|
||||
|
||||
const isHiddenThroughPointEntry = (raw: string) => {
|
||||
const [station = "", se = ""] = (raw || "").split(",");
|
||||
return station.startsWith(".") && se.includes("通");
|
||||
};
|
||||
|
||||
const calcDistanceMinute = (
|
||||
time: string,
|
||||
delayTime: number,
|
||||
playbackCurrentTimeIso?: string | null
|
||||
) => {
|
||||
if (!time || time === "") return null;
|
||||
const now = playbackCurrentTimeIso ? dayjs(playbackCurrentTimeIso) : dayjs();
|
||||
const hour = parseInt(time.split(":")[0], 10);
|
||||
const target = now
|
||||
.hour(hour < 4 ? hour + 24 : hour)
|
||||
.minute(parseInt(time.split(":")[1], 10));
|
||||
let diff = target.diff(now, "minute") + delayTime;
|
||||
if (now.hour() < 4 && hour < 4) diff -= 1440;
|
||||
return diff;
|
||||
};
|
||||
|
||||
export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const {
|
||||
@@ -48,22 +98,44 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
setFixedPositionSize,
|
||||
} = useCurrentTrain();
|
||||
|
||||
const { mapSwitch } = useTrainMenu();
|
||||
const { allCustomTrainData, allTrainDiagram } = useAllTrainDiagram();
|
||||
const { mapSwitch, iconSetting, playbackCurrentTimeIso } = useTrainMenu();
|
||||
const { allCustomTrainData, allTrainDiagram, getTodayOperationByTrainId } =
|
||||
useAllTrainDiagram();
|
||||
const iconDisplayMode = normalizeIconDisplayMode(iconSetting);
|
||||
|
||||
const [liveNotifyId, setLiveNotifyId] = useState<string | null>(null);
|
||||
const liveNotifyIdRef = useRef<string | null>(null);
|
||||
const hasStartedRef = useRef(false);
|
||||
const backgroundRikkaSignatureRef = useRef("");
|
||||
const lastTrainPositionAnnouncementRef = useRef("");
|
||||
const backgroundRikkaTrackingId = `train-${trainID}`;
|
||||
|
||||
const [train, setTrain] = useState<trainDataType>(null);
|
||||
const [customData, setCustomData] = useState<CustomTrainData>(
|
||||
getCurrentTrainData(trainID, currentTrain, allCustomTrainData)
|
||||
);
|
||||
const todayOperation = useMemo(
|
||||
() => (getTodayOperationByTrainId(trainID) ?? []).filter((d) => d.state !== 100),
|
||||
[getTodayOperationByTrainId, trainID]
|
||||
);
|
||||
const customTrainIcon = useMemo(() => {
|
||||
const iconEntry = resolveTrainIconEntries({
|
||||
trainNum: trainID,
|
||||
customTrainData: customData,
|
||||
todayOperation,
|
||||
iconDisplayMode,
|
||||
})[0];
|
||||
|
||||
return (
|
||||
iconEntry?.vehicle_info_img ||
|
||||
resolveTrainDataIcon(customData, iconDisplayMode)
|
||||
);
|
||||
}, [customData, iconDisplayMode, todayOperation, trainID]);
|
||||
useEffect(() => {
|
||||
setCustomData(
|
||||
getCurrentTrainData(trainID, currentTrain, allCustomTrainData)
|
||||
);
|
||||
}, [currentTrain, trainID]);
|
||||
}, [currentTrain, trainID, allCustomTrainData]);
|
||||
useEffect(() => {
|
||||
const stationData = getCurrentStationData(trainID);
|
||||
if (stationData) {
|
||||
@@ -85,8 +157,11 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
);
|
||||
|
||||
const computedTrainDataWithThrough = useMemo(() => {
|
||||
const trainData = allTrainDiagram[trainID]?.split("#");
|
||||
if (!trainData) return [];
|
||||
const trainData =
|
||||
allTrainDiagram[trainID]
|
||||
?.split("#")
|
||||
.filter((entry) => !isHiddenThroughPointEntry(entry)) ?? [];
|
||||
if (trainData.length === 0) return [];
|
||||
|
||||
// 駅名ごとに駅情報を集約するマップを構築
|
||||
const stationByNameMap = new Map();
|
||||
@@ -132,6 +207,8 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
originalStationList[
|
||||
lineListPair[stationIDPair[betweenStationLine]]
|
||||
].forEach((d) => {
|
||||
const isHiddenPassPoint = d.Station_JP?.startsWith(".");
|
||||
if (isHiddenPassPoint) return;
|
||||
if (
|
||||
d.StationNumber > baseStationNumberFirst &&
|
||||
d.StationNumber < baseStationNumberSecond
|
||||
@@ -189,6 +266,22 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
setStopStationList(computedStopStationIDList);
|
||||
}, [computedStopStationIDList]);
|
||||
const [currentPosition, setCurrentPosition] = useState<string[]>([]);
|
||||
const parsedTrainPath = useMemo<TrainPathEntry[]>(
|
||||
() =>
|
||||
trainDataWidhThrough.map((raw, index) => {
|
||||
const [station = "", se = "", time = ""] = (raw || "").split(",");
|
||||
return {
|
||||
raw,
|
||||
station,
|
||||
se,
|
||||
time,
|
||||
index,
|
||||
isThrough: se.includes("通"),
|
||||
hasTime: time !== "",
|
||||
};
|
||||
}),
|
||||
[trainDataWidhThrough]
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
let position = getPosition(train);
|
||||
@@ -223,96 +316,127 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
}
|
||||
}, [train, stopStationIDList]);
|
||||
|
||||
const [nextStationData, setNextStationData] = useState<StationProps[]>([]);
|
||||
const [untilStationData, setUntilStationData] = useState<StationProps[]>([]);
|
||||
const [currentPointData, setCurrentPointData] = useState<StationProps[]>([]);
|
||||
const [nextStopStationData, setNextStopStationData] = useState<StationProps[]>([]);
|
||||
const [untilStationData, setUntilStationData] = useState<string[]>([]);
|
||||
const [probably, setProbably] = useState(false);
|
||||
const [isCurrentPointDisplay, setIsCurrentPointDisplay] = useState(false);
|
||||
const [currentDisplayIndex, setCurrentDisplayIndex] = useState(0);
|
||||
const [tick, setTick] = useState(0);
|
||||
|
||||
useEffect(() => {
|
||||
if (playbackCurrentTimeIso) return;
|
||||
const interval = setInterval(() => setTick((value) => value + 1), 15000);
|
||||
return () => clearInterval(interval);
|
||||
}, [playbackCurrentTimeIso]);
|
||||
|
||||
useEffect(() => {
|
||||
//棒線駅判定を入れて、棒線駅なら時間を見て分数がマイナスならcontinue;
|
||||
const points = findReversalPoints(currentPosition, stopStationIDList);
|
||||
if (!points) return;
|
||||
if (points.length == 0) return;
|
||||
let searchCountFirst = points.findIndex((d) => d == true);
|
||||
let searchCountLast = points.findLastIndex((d) => d == true);
|
||||
if (!points || points.length === 0) return;
|
||||
|
||||
const delayTime = train?.delay == "入線" ? 0 : train?.delay;
|
||||
let additionalSkipCount = 0;
|
||||
const pointIndexes = points.reduce(
|
||||
(acc: number[], isCurrent, index) => {
|
||||
if (isCurrent) acc.push(index);
|
||||
return acc;
|
||||
},
|
||||
[] as number[]
|
||||
);
|
||||
if (!pointIndexes.length) return;
|
||||
|
||||
// 2駅間走行中の場合: ダイヤ順で後ろのインデックスが進行方向の駅
|
||||
// Direction に関係なく、travel-order で大きい方が「向かう駅」
|
||||
let searchStart: number;
|
||||
if (currentPosition.length === 2) {
|
||||
const idx0 = stopStationIDList.findIndex(d => d.includes(currentPosition[0]));
|
||||
const idx1 = stopStationIDList.findIndex(d => d.includes(currentPosition[1]));
|
||||
const aheadIdx = Math.max(
|
||||
idx0 >= 0 ? idx0 : -1,
|
||||
idx1 >= 0 ? idx1 : -1
|
||||
);
|
||||
searchStart = aheadIdx >= 0 ? aheadIdx : searchCountLast;
|
||||
} else {
|
||||
searchStart = searchCountFirst;
|
||||
}
|
||||
const firstMatchedIndex = pointIndexes[0];
|
||||
const isCurrentStationCluster = currentPosition.length <= 1;
|
||||
const delayTime =
|
||||
train?.delay == "入線" ? 0 : parseInt(String(train?.delay), 10) || 0;
|
||||
|
||||
for (
|
||||
let searchCount = searchStart;
|
||||
searchCount < trainDataWidhThrough.length;
|
||||
searchCount++
|
||||
) {
|
||||
const nextPos = trainDataWidhThrough[searchCount];
|
||||
let anchorIndex = firstMatchedIndex;
|
||||
let usedTimeEstimation = false;
|
||||
const shouldShowCurrentPoint = isCurrentStationCluster;
|
||||
const hasIntermediateCurrentPoints = pointIndexes.length > 1;
|
||||
|
||||
if (nextPos) {
|
||||
const [station, se, time] = nextPos.split(",");
|
||||
if (!isCurrentStationCluster && hasIntermediateCurrentPoints) {
|
||||
let upcomingTimedIndex = -1;
|
||||
let lastPassedTimedIndex = -1;
|
||||
|
||||
// 通過駅はスキップ
|
||||
if (se.includes("通")) {
|
||||
for (
|
||||
let searchCount = firstMatchedIndex;
|
||||
searchCount < parsedTrainPath.length;
|
||||
searchCount++
|
||||
) {
|
||||
const entry = parsedTrainPath[searchCount];
|
||||
if (!entry?.raw || !entry.hasTime) continue;
|
||||
|
||||
const distanceMinute = calcDistanceMinute(
|
||||
entry.time,
|
||||
delayTime,
|
||||
playbackCurrentTimeIso
|
||||
);
|
||||
if (distanceMinute == null) continue;
|
||||
|
||||
if (distanceMinute < 0) {
|
||||
lastPassedTimedIndex = searchCount;
|
||||
continue;
|
||||
}
|
||||
|
||||
// 駅に停車中(1点一致)の場合は時刻判定不要
|
||||
if (searchCountFirst == searchCountLast) {
|
||||
setNextStationData(getStationDataFromName(station));
|
||||
break;
|
||||
}
|
||||
|
||||
// 2駅間走行中: 時刻で既に通過済みか判定
|
||||
let distanceMinute = 0;
|
||||
if (time != "") {
|
||||
const now = dayjs();
|
||||
const hour = parseInt(time.split(":")[0]);
|
||||
const distanceTime = now
|
||||
.hour(hour < 4 ? hour + 24 : hour)
|
||||
.minute(parseInt(time.split(":")[1]));
|
||||
distanceMinute = distanceTime.diff(now, "minute") + delayTime;
|
||||
if (now.hour() < 4) {
|
||||
if (hour < 4) {
|
||||
distanceMinute = distanceMinute - 1440;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (distanceMinute >= 0) {
|
||||
setNextStationData(getStationDataFromName(station));
|
||||
break;
|
||||
} else {
|
||||
additionalSkipCount++;
|
||||
continue;
|
||||
}
|
||||
upcomingTimedIndex = searchCount;
|
||||
break;
|
||||
}
|
||||
|
||||
const baseIndex =
|
||||
lastPassedTimedIndex >= 0 ? lastPassedTimedIndex + 1 : firstMatchedIndex;
|
||||
|
||||
if (upcomingTimedIndex >= 0) {
|
||||
const hasUntimedGapBeforeUpcoming = parsedTrainPath
|
||||
.slice(baseIndex, upcomingTimedIndex)
|
||||
.some((entry) => entry?.raw && !entry.hasTime);
|
||||
|
||||
anchorIndex = hasUntimedGapBeforeUpcoming ? baseIndex : upcomingTimedIndex;
|
||||
} else if (lastPassedTimedIndex >= 0) {
|
||||
const lastPassedEntry = parsedTrainPath[lastPassedTimedIndex];
|
||||
anchorIndex = lastPassedEntry?.isThrough
|
||||
? Math.min(lastPassedTimedIndex + 1, parsedTrainPath.length - 1)
|
||||
: lastPassedTimedIndex;
|
||||
}
|
||||
|
||||
usedTimeEstimation = anchorIndex !== firstMatchedIndex;
|
||||
}
|
||||
let trainList = [];
|
||||
for (
|
||||
let searchCount = searchCountFirst - 1;
|
||||
searchCount < points.length;
|
||||
searchCount++
|
||||
) {
|
||||
trainList.push(trainDataWidhThrough[searchCount]);
|
||||
}
|
||||
if (additionalSkipCount > 0) {
|
||||
trainList = trainList.slice(additionalSkipCount);
|
||||
setProbably(true);
|
||||
} else {
|
||||
setProbably(false);
|
||||
}
|
||||
|
||||
const anchorEntry = parsedTrainPath[anchorIndex];
|
||||
const currentPointName = anchorEntry?.station || "";
|
||||
setCurrentPointData(
|
||||
currentPointName ? getStationDataFromName(currentPointName) : []
|
||||
);
|
||||
|
||||
const nextStopSearchStart = shouldShowCurrentPoint
|
||||
? anchorIndex + 1
|
||||
: anchorIndex;
|
||||
const nextStopEntry = parsedTrainPath.find(
|
||||
(entry, index) =>
|
||||
index >= nextStopSearchStart && !!entry?.station && !entry.isThrough
|
||||
);
|
||||
const nextStopName = nextStopEntry?.station || "";
|
||||
setNextStopStationData(
|
||||
nextStopName ? getStationDataFromName(nextStopName) : []
|
||||
);
|
||||
|
||||
const visibleStart = Math.max(anchorIndex - 1, 0);
|
||||
const trainList = parsedTrainPath
|
||||
.slice(visibleStart)
|
||||
.map((entry) => entry.raw)
|
||||
.filter((entry) => !!entry);
|
||||
|
||||
setProbably(usedTimeEstimation);
|
||||
setIsCurrentPointDisplay(shouldShowCurrentPoint);
|
||||
setCurrentDisplayIndex(Math.max(anchorIndex - visibleStart, 0));
|
||||
setUntilStationData(trainList);
|
||||
}, [currentPosition, trainDataWidhThrough]);
|
||||
}, [
|
||||
currentPosition,
|
||||
parsedTrainPath,
|
||||
playbackCurrentTimeIso,
|
||||
stopStationIDList,
|
||||
tick,
|
||||
train?.delay,
|
||||
getStationDataFromName,
|
||||
]);
|
||||
const [ToData, setToData] = useState("");
|
||||
useEffect(() => {
|
||||
if (customData.to_data && customData.to_data != "") {
|
||||
@@ -331,7 +455,9 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
setStation(data);
|
||||
}, [ToData]);
|
||||
const lineColor =
|
||||
station.length > 0
|
||||
customData.to_data_color && customData.to_data_color.length > 0
|
||||
? customData.to_data_color[0]
|
||||
: station.length > 0
|
||||
? lineColorList[station[0]?.StationNumber?.slice(0, 1)]
|
||||
: "black";
|
||||
//const lineColor = "red";
|
||||
@@ -351,7 +477,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
(last: number, d: string, i: number) => (d ? i : last), -1
|
||||
);
|
||||
const filteredTrainData = trainDataWidhThrough.filter((d, idx) => {
|
||||
if (!d) return false;
|
||||
if (!d || isHiddenThroughPointEntry(d)) return false;
|
||||
const [, se] = d.split(",");
|
||||
if (!se) return true;
|
||||
// 着を含み発を含まないエントリは終着駅のみ許可
|
||||
@@ -403,13 +529,22 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
};
|
||||
});
|
||||
|
||||
const shouldShowCurrentLabel =
|
||||
isCurrentPointDisplay || currentPointData[0]?.Station_JP === train?.Pos;
|
||||
const currentStationLabel = shouldShowCurrentLabel
|
||||
? currentPointData[0]?.Station_JP || train?.Pos || ""
|
||||
: train?.Pos || "";
|
||||
const bannerStationData = shouldShowCurrentLabel
|
||||
? currentPointData
|
||||
: nextStopStationData;
|
||||
|
||||
// 全駅リスト中の現在地インデックス
|
||||
const currentStationIndex = (() => {
|
||||
const pos = train?.Pos || "";
|
||||
const pos = currentStationLabel;
|
||||
if (!pos) return 0;
|
||||
// Pos は "駅名" (駅にいる時) or "駅A~駅B" (走行中) の形式
|
||||
const posStations = pos.split("~").map((s: string) =>
|
||||
s.replace(/(下り)|(上り)|\(下り\)|\(上り\)/g, "").trim()
|
||||
normalizeTrainPosLabel(s)
|
||||
);
|
||||
// 完全一致
|
||||
const firstIdx = allStations.findIndex((s) => s.name === posStations[0]);
|
||||
@@ -423,7 +558,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
})();
|
||||
|
||||
const nextStationIndex = (() => {
|
||||
const name = nextStationData[0]?.Station_JP;
|
||||
const name = nextStopStationData[0]?.Station_JP;
|
||||
if (!name) return -1;
|
||||
const idx = stationStops.indexOf(name);
|
||||
if (idx >= 0) return idx;
|
||||
@@ -448,11 +583,10 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
if (!liveNotifyId || !train) return;
|
||||
const delayNum = train.delay === "入線" ? 0 : parseInt(String(train.delay)) || 0;
|
||||
const delayStatus = delayNum > 0 ? `${delayNum}分遅れ` : "定刻";
|
||||
const positionStatus =
|
||||
nextStationData[0]?.Station_JP === train.Pos ? "ただいま" : "次は";
|
||||
const positionStatus = shouldShowCurrentLabel ? "ただいま" : "次は";
|
||||
updateTrainFollowActivity(liveNotifyId, {
|
||||
currentStation: train.Pos || "",
|
||||
nextStation: nextStationData[0]?.Station_JP || "",
|
||||
currentStation: currentStationLabel,
|
||||
nextStation: nextStopStationData[0]?.Station_JP || "",
|
||||
delayMinutes: delayNum,
|
||||
scheduledArrival: "",
|
||||
trainNumber: trainID,
|
||||
@@ -468,13 +602,27 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
allStations,
|
||||
currentStationIndex,
|
||||
}).catch(() => {});
|
||||
}, [train, nextStationData, liveNotifyId, stationStops, nextStationIndex, currentStationIndex]);
|
||||
}, [
|
||||
train,
|
||||
nextStopStationData,
|
||||
liveNotifyId,
|
||||
stationStops,
|
||||
nextStationIndex,
|
||||
currentStationIndex,
|
||||
currentStationLabel,
|
||||
shouldShowCurrentLabel,
|
||||
]);
|
||||
|
||||
// バナー表示と同時にLive Activityを自動開始
|
||||
// iOSのみ一時的に無効化中(Androidは有効)
|
||||
useEffect(() => {
|
||||
// iOSのLive Activityは無効化
|
||||
if (Platform.OS === 'ios') return;
|
||||
if (
|
||||
!isLiveActivityAvailable() ||
|
||||
hasStartedRef.current ||
|
||||
!train ||
|
||||
!nextStopStationData[0]
|
||||
) {
|
||||
return;
|
||||
}
|
||||
hasStartedRef.current = true;
|
||||
const startActivity = async () => {
|
||||
if (Platform.OS === 'android' && Platform.Version >= 33) {
|
||||
@@ -485,15 +633,14 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
}
|
||||
const delayNum = train?.delay === "入線" ? 0 : parseInt(String(train?.delay)) || 0;
|
||||
const delayStatus = delayNum > 0 ? `${delayNum}分遅れ` : "定刻";
|
||||
const positionStatus =
|
||||
nextStationData[0]?.Station_JP === train?.Pos ? "ただいま" : "次は";
|
||||
const positionStatus = shouldShowCurrentLabel ? "ただいま" : "次は";
|
||||
try {
|
||||
const id = await startTrainFollowActivity({
|
||||
trainNumber: trainID,
|
||||
lineName: "",
|
||||
destination: ToData,
|
||||
currentStation: train?.Pos || "",
|
||||
nextStation: nextStationData[0]?.Station_JP || "",
|
||||
currentStation: currentStationLabel,
|
||||
nextStation: nextStopStationData[0]?.Station_JP || "",
|
||||
delayMinutes: delayNum,
|
||||
scheduledArrival: "",
|
||||
trainType: customTrainType.shortName,
|
||||
@@ -510,10 +657,175 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
setLiveNotifyId(id);
|
||||
} catch (e) {
|
||||
console.warn('[LiveNotify] start error:', e);
|
||||
hasStartedRef.current = false;
|
||||
}
|
||||
};
|
||||
startActivity();
|
||||
}, [train]);
|
||||
}, [
|
||||
train,
|
||||
nextStopStationData,
|
||||
currentStationLabel,
|
||||
shouldShowCurrentLabel,
|
||||
ToData,
|
||||
trainID,
|
||||
customTrainType.shortName,
|
||||
trainNameText,
|
||||
customTrainType.color,
|
||||
lineColor,
|
||||
stationStops,
|
||||
nextStationIndex,
|
||||
allStations,
|
||||
currentStationIndex,
|
||||
]);
|
||||
|
||||
// iOSへ残り停車駅の位置トリガーとりっかちゃん通知音を登録する。
|
||||
useEffect(() => {
|
||||
if (Platform.OS !== "ios" || playbackCurrentTimeIso) return;
|
||||
|
||||
const upcomingStations = allStations
|
||||
.slice(currentStationIndex + 1)
|
||||
.map((entry, offset) => ({ entry, offset }))
|
||||
.filter(({ entry }) => entry.isStop)
|
||||
.map(({ entry, offset }) => {
|
||||
const stationData = getStationDataFromName(entry.name)[0];
|
||||
if (
|
||||
!stationData ||
|
||||
!Number.isFinite(stationData.lat) ||
|
||||
!Number.isFinite(stationData.lng)
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return {
|
||||
identifier: `${currentStationIndex + 1 + offset}-${stationData.StationNumber || entry.name}`,
|
||||
stationName: entry.name,
|
||||
latitude: stationData.lat,
|
||||
longitude: stationData.lng,
|
||||
};
|
||||
})
|
||||
.filter((station): station is NonNullable<typeof station> => station != null)
|
||||
.slice(0, 20);
|
||||
|
||||
if (upcomingStations.length === 0) return;
|
||||
|
||||
const signature = [
|
||||
backgroundRikkaTrackingId,
|
||||
currentStationIndex,
|
||||
...upcomingStations.map((station) => station.identifier),
|
||||
].join(":");
|
||||
if (backgroundRikkaSignatureRef.current === signature) return;
|
||||
|
||||
const controller = new AbortController();
|
||||
Promise.all([
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_ANNOUNCEMENT).catch(() => "false"),
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_TRIGGER_SOURCE).catch(
|
||||
() => DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE
|
||||
),
|
||||
])
|
||||
.then(async ([value, source]) => {
|
||||
const enabled = value === true || value === "true";
|
||||
if (
|
||||
!enabled ||
|
||||
source === "trainPosition" ||
|
||||
controller.signal.aborted
|
||||
) {
|
||||
backgroundRikkaSignatureRef.current = "";
|
||||
await cancelLocationAnnouncements(backgroundRikkaTrackingId);
|
||||
return;
|
||||
}
|
||||
|
||||
backgroundRikkaSignatureRef.current = signature;
|
||||
const result = await prepareBackgroundRikkaAnnouncements({
|
||||
trackingId: backgroundRikkaTrackingId,
|
||||
stations: upcomingStations,
|
||||
signal: controller.signal,
|
||||
});
|
||||
console.info(
|
||||
`[BackgroundRikka] scheduled=${result.scheduled} failed=${result.failedStations.length}`
|
||||
);
|
||||
})
|
||||
.catch((error) => {
|
||||
backgroundRikkaSignatureRef.current = "";
|
||||
if (!controller.signal.aborted) {
|
||||
console.warn("[BackgroundRikka] Failed to schedule announcements", error);
|
||||
}
|
||||
});
|
||||
|
||||
return () => controller.abort();
|
||||
}, [
|
||||
allStations,
|
||||
backgroundRikkaTrackingId,
|
||||
currentStationIndex,
|
||||
getStationDataFromName,
|
||||
playbackCurrentTimeIso,
|
||||
]);
|
||||
|
||||
// 検証用: 列車走行位置から算出した次駅が変わった瞬間に通知する。
|
||||
useEffect(() => {
|
||||
if (Platform.OS !== "ios") return;
|
||||
|
||||
const stationName = nextStopStationData[0]?.Station_JP;
|
||||
if (!stationName) return;
|
||||
|
||||
const controller = new AbortController();
|
||||
Promise.all([
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_ANNOUNCEMENT).catch(() => "false"),
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_TRIGGER_SOURCE).catch(
|
||||
() => DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE
|
||||
),
|
||||
])
|
||||
.then(async ([enabledValue, source]) => {
|
||||
const enabled =
|
||||
enabledValue === true || enabledValue === "true";
|
||||
if (
|
||||
!enabled ||
|
||||
source !== "trainPosition" ||
|
||||
controller.signal.aborted
|
||||
) {
|
||||
lastTrainPositionAnnouncementRef.current = "";
|
||||
return;
|
||||
}
|
||||
|
||||
const announcementKey = `${trainID}:${stationName}`;
|
||||
if (
|
||||
lastTrainPositionAnnouncementRef.current === announcementKey
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
lastTrainPositionAnnouncementRef.current = announcementKey;
|
||||
await cancelLocationAnnouncements(backgroundRikkaTrackingId);
|
||||
if (controller.signal.aborted) return;
|
||||
|
||||
await sendTrainPositionRikkaAnnouncement({
|
||||
stationName,
|
||||
trainId: trainID,
|
||||
signal: controller.signal,
|
||||
});
|
||||
})
|
||||
.catch((error) => {
|
||||
lastTrainPositionAnnouncementRef.current = "";
|
||||
if (!controller.signal.aborted) {
|
||||
console.warn(
|
||||
"[BackgroundRikka] Train-position announcement failed",
|
||||
error
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
return () => controller.abort();
|
||||
}, [
|
||||
backgroundRikkaTrackingId,
|
||||
nextStopStationData,
|
||||
train?.Pos,
|
||||
trainID,
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
cancelLocationAnnouncements(backgroundRikkaTrackingId).catch(() => {});
|
||||
};
|
||||
}, [backgroundRikkaTrackingId]);
|
||||
|
||||
return (
|
||||
<View
|
||||
@@ -555,7 +867,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
}}
|
||||
>
|
||||
<Image
|
||||
source={{ uri: customData.train_info_img || "" }}
|
||||
source={{ uri: customTrainIcon }}
|
||||
width={fixedPositionSize === 226 ? 23 : 14}
|
||||
height={fixedPositionSize === 226 ? 26 : 17}
|
||||
style={{ margin: 5 }}
|
||||
@@ -572,19 +884,18 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
<Text
|
||||
style={{
|
||||
fontSize: trainNameText.length > 4 ? 12 : 14,
|
||||
fontFamily: customTrainType.fontAvailable
|
||||
? "JR-Nishi"
|
||||
: undefined,
|
||||
fontWeight: !customTrainType.fontAvailable
|
||||
? "bold"
|
||||
: undefined,
|
||||
marginTop: customTrainType.fontAvailable ? 3 : 0,
|
||||
fontFamily: customTrainType.fontFamily,
|
||||
fontWeight: customTrainType.fontFamily ? undefined : "bold",
|
||||
marginTop: customTrainType.fontFamily ? 3 : 0,
|
||||
color: fixed.textOnPrimary,
|
||||
textAlignVertical: "center",
|
||||
textAlign: "left",
|
||||
}}
|
||||
>
|
||||
{customTrainType.shortName}
|
||||
{customTrainType.fontFamily === "JR-WEST-PLUS" ? (
|
||||
<Text style={{ fontFamily: "DiaPro", fontSize: 7 }}>{"\u00A0"}</Text>
|
||||
) : null}
|
||||
</Text>
|
||||
{customData.train_name && (
|
||||
<Text
|
||||
@@ -689,9 +1000,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
marginVertical: -1,
|
||||
}}
|
||||
>
|
||||
{nextStationData[0]?.Station_JP == train?.Pos
|
||||
? "ただいま"
|
||||
: "次は"}
|
||||
{shouldShowCurrentLabel ? "ただいま" : "次は"}
|
||||
</Text>
|
||||
{probably && (
|
||||
<Text
|
||||
@@ -709,7 +1018,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
)}
|
||||
</View>
|
||||
<StationNumberMaker
|
||||
currentStation={nextStationData}
|
||||
currentStation={bannerStationData}
|
||||
singleSize={20}
|
||||
useEach={true}
|
||||
/>
|
||||
@@ -721,7 +1030,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
flex: 1,
|
||||
}}
|
||||
>
|
||||
{nextStationData[0]?.Station_JP || "不明"}
|
||||
{bannerStationData[0]?.Station_JP || "不明"}
|
||||
</Text>
|
||||
{fixedPositionSize !== 226 && (
|
||||
<View
|
||||
@@ -745,6 +1054,7 @@ export const FixedTrain: FC<props> = ({ trainID }) => {
|
||||
train={train}
|
||||
lineColor={lineColor}
|
||||
trainDataWithThrough={untilStationData}
|
||||
currentDisplayIndex={currentDisplayIndex}
|
||||
isSmall={fixedPositionSize !== 226}
|
||||
/>
|
||||
</View>
|
||||
@@ -871,6 +1181,7 @@ const CurrentPositionBox = ({
|
||||
train,
|
||||
lineColor,
|
||||
trainDataWithThrough,
|
||||
currentDisplayIndex,
|
||||
isSmall,
|
||||
}) => {
|
||||
const { colors } = useThemeColors();
|
||||
@@ -880,13 +1191,13 @@ const CurrentPositionBox = ({
|
||||
const { isBetween, Pos: PosData } = trainPosition(train);
|
||||
if (isBetween === true) {
|
||||
const { from, to } = PosData;
|
||||
firstText = from;
|
||||
secondText = to;
|
||||
firstText = normalizeTrainPosLabel(from);
|
||||
secondText = normalizeTrainPosLabel(to);
|
||||
marginText = "→";
|
||||
} else {
|
||||
const { Pos } = PosData;
|
||||
if (Pos !== "") {
|
||||
firstText = Pos;
|
||||
firstText = normalizeTrainPosLabel(Pos);
|
||||
}
|
||||
}
|
||||
const delayTime = train?.delay == "入線" ? 0 : parseInt(train?.delay);
|
||||
@@ -939,6 +1250,7 @@ const CurrentPositionBox = ({
|
||||
(() => {
|
||||
// 着→発ペアを同一駅で統合(EachStopListと同様)
|
||||
const merged: { d: string; arrivalTime: string | null }[] = [];
|
||||
let mergedCurrentDisplayIndex = Math.max(currentDisplayIndex, 0);
|
||||
for (let i = 0; i < trainDataWithThrough.length; i++) {
|
||||
const d = trainDataWithThrough[i];
|
||||
if (!d) continue;
|
||||
@@ -959,11 +1271,17 @@ const CurrentPositionBox = ({
|
||||
const [prevSt, prevSe, prevTime] = prev.split(",");
|
||||
if (prevSt === st && prevSe?.includes("着")) {
|
||||
merged.push({ d, arrivalTime: prevTime });
|
||||
if (i === currentDisplayIndex || i - 1 === currentDisplayIndex) {
|
||||
mergedCurrentDisplayIndex = merged.length - 1;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
merged.push({ d, arrivalTime: null });
|
||||
if (i === currentDisplayIndex) {
|
||||
mergedCurrentDisplayIndex = merged.length - 1;
|
||||
}
|
||||
}
|
||||
return merged.map(({ d, arrivalTime }, index) => (
|
||||
<EachStopData
|
||||
@@ -973,6 +1291,7 @@ const CurrentPositionBox = ({
|
||||
delayTime={delayTime}
|
||||
isSmall={isSmall}
|
||||
secondText={secondText}
|
||||
currentDisplayIndex={mergedCurrentDisplayIndex}
|
||||
arrivalTime={arrivalTime}
|
||||
/>
|
||||
));
|
||||
@@ -988,18 +1307,28 @@ type eachStopType = {
|
||||
isSmall: boolean;
|
||||
index: number;
|
||||
secondText: string;
|
||||
currentDisplayIndex: number;
|
||||
arrivalTime?: string | null;
|
||||
};
|
||||
|
||||
const EachStopData: FC<eachStopType> = (props) => {
|
||||
const { colors } = useThemeColors();
|
||||
const { d, delayTime, isSmall, index, secondText, arrivalTime } = props;
|
||||
const { playbackCurrentTimeIso } = useTrainMenu();
|
||||
const {
|
||||
d,
|
||||
delayTime,
|
||||
isSmall,
|
||||
index,
|
||||
secondText,
|
||||
currentDisplayIndex,
|
||||
arrivalTime,
|
||||
} = props;
|
||||
if (!d) return null;
|
||||
if (d == "") return null;
|
||||
const [station, se, time] = d.split(",");
|
||||
const calcMinute = (t: string) => {
|
||||
if (!t || t === "") return null;
|
||||
const now = dayjs();
|
||||
const now = playbackCurrentTimeIso ? dayjs(playbackCurrentTimeIso) : dayjs();
|
||||
const hour = parseInt(t.split(":")[0]);
|
||||
const dt = now
|
||||
.hour(hour < 4 ? hour + 24 : hour)
|
||||
@@ -1074,7 +1403,7 @@ const EachStopData: FC<eachStopType> = (props) => {
|
||||
style={{
|
||||
fontSize: isSmall ? 8 : 14,
|
||||
color:
|
||||
index == 1 && secondText == ""
|
||||
index === currentDisplayIndex && secondText === ""
|
||||
? "#ffe852ff"
|
||||
: se.includes("通")
|
||||
? "#020202ff"
|
||||
@@ -1084,14 +1413,14 @@ const EachStopData: FC<eachStopType> = (props) => {
|
||||
fontWeight: "bold",
|
||||
}}
|
||||
>
|
||||
{index == 1 && secondText == ""
|
||||
{index === currentDisplayIndex && secondText === ""
|
||||
? "→"
|
||||
: se.includes("通")
|
||||
? null
|
||||
: "●"}
|
||||
</Text>
|
||||
</View>
|
||||
{index == 0 && secondText != "" && (
|
||||
{index === 0 && secondText !== "" && (
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "column",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { useState, useEffect } from "react";
|
||||
import { useAllTrainDiagram } from "@/stateBox/useAllTrainDiagram";
|
||||
import { useStationList } from "@/stateBox/useStationList";
|
||||
import { OriginalStationList } from "@/lib/CommonTypes";
|
||||
|
||||
interface StationIDPair {
|
||||
[key: string]: string;
|
||||
@@ -10,12 +11,10 @@ interface LineListPair {
|
||||
[key: string]: string;
|
||||
}
|
||||
|
||||
interface OriginalStationList {
|
||||
[key: string]: Array<{
|
||||
Station_JP: string;
|
||||
StationNumber: string;
|
||||
}>;
|
||||
}
|
||||
const isHiddenThroughPointEntry = (raw: string) => {
|
||||
const [station = "", se = ""] = (raw || "").split(",");
|
||||
return station.startsWith(".") && se.includes("通");
|
||||
};
|
||||
|
||||
/**
|
||||
* 通過駅を含む列車データを生成するカスタムフック
|
||||
@@ -33,8 +32,11 @@ export const useTrainDataWithThrough = (
|
||||
const [trainDataWithThrough, setTrainDataWithThrough] = useState<string[]>([]);
|
||||
|
||||
useEffect(() => {
|
||||
const trainData = allTrainDiagram[trainID]?.split("#");
|
||||
if (!trainData) return;
|
||||
const trainData =
|
||||
allTrainDiagram[trainID]
|
||||
?.split("#")
|
||||
.filter((entry) => !isHiddenThroughPointEntry(entry)) ?? [];
|
||||
if (trainData.length === 0) return;
|
||||
|
||||
// 各停車駅の情報を取得
|
||||
const stopStationList = trainData.map((i) => {
|
||||
@@ -76,6 +78,8 @@ export const useTrainDataWithThrough = (
|
||||
if (!lineStations) return [];
|
||||
|
||||
lineStations.forEach((d) => {
|
||||
const isHiddenPassPoint = d.Station_JP?.startsWith(".");
|
||||
if (isHiddenPassPoint) return;
|
||||
// 順方向の判定
|
||||
if (
|
||||
d.StationNumber > baseStationNumberFirst &&
|
||||
|
||||
@@ -0,0 +1,283 @@
|
||||
import React, { FC, useRef, useCallback, useState } from "react";
|
||||
import {
|
||||
View,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
PanResponder,
|
||||
LayoutChangeEvent,
|
||||
} from "react-native";
|
||||
import { Ionicons } from "@expo/vector-icons";
|
||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||
import dayjs from "dayjs";
|
||||
import { useTrainMenu } from "../../stateBox/useTrainMenu";
|
||||
import { useThemeColors } from "../../lib/theme";
|
||||
import { useResponsive } from "../../lib/responsive";
|
||||
|
||||
/**
|
||||
* 再生中に走行位置WebViewの上部に表示するタイムラインコントローラー。
|
||||
* FixedPositionBox と同じ absolute 配置で zIndex を上に設定する。
|
||||
*/
|
||||
export const PlaybackTimeline: FC = () => {
|
||||
const { top } = useSafeAreaInsets();
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const { moderateScale } = useResponsive();
|
||||
const {
|
||||
recorderState,
|
||||
activeRecording,
|
||||
playbackIndex,
|
||||
playbackPaused,
|
||||
stopPlayback,
|
||||
pausePlayback,
|
||||
resumePlayback,
|
||||
seekToSnapshot,
|
||||
} = useTrainMenu();
|
||||
|
||||
// ─── すべてのフックは早期returnより前に呼ぶ ───
|
||||
const trackViewRef = useRef<View>(null);
|
||||
const trackWidthRef = useRef(1);
|
||||
const trackPageXRef = useRef(0); // スクリーン絶対座標でのトラック左端
|
||||
const [isScrubbing, setIsScrubbing] = useState(false);
|
||||
const [scrubIndex, setScrubIndex] = useState<number | null>(null);
|
||||
const scrubIndexRef = useRef<number | null>(null);
|
||||
|
||||
// PanResponder のハンドラ内で最新値を参照するために ref を使う
|
||||
const seekRef = useRef(seekToSnapshot);
|
||||
seekRef.current = seekToSnapshot;
|
||||
const totalRef = useRef(0);
|
||||
|
||||
// gestureState.moveX(画面絶対座標)からインデックスを計算
|
||||
// locationX はドラッグ中に子 View をまたぐと基準がズレて端に飛ぶため使わない
|
||||
const indexFromPageX = useCallback((pageX: number) => {
|
||||
if (totalRef.current <= 1) return 0;
|
||||
const relX = pageX - trackPageXRef.current;
|
||||
const width = Math.max(trackWidthRef.current, 1);
|
||||
const clampedX = Math.max(0, Math.min(relX, width));
|
||||
const idx = Math.round((clampedX / width) * (totalRef.current - 1));
|
||||
return Math.max(0, Math.min(idx, totalRef.current - 1));
|
||||
}, []);
|
||||
|
||||
const endScrubbing = useCallback((index: number) => {
|
||||
seekRef.current(index);
|
||||
setIsScrubbing(false);
|
||||
setScrubIndex(null);
|
||||
scrubIndexRef.current = null;
|
||||
}, []);
|
||||
|
||||
const panResponder = useRef(
|
||||
PanResponder.create({
|
||||
onStartShouldSetPanResponder: () => true,
|
||||
onMoveShouldSetPanResponder: () => true,
|
||||
onPanResponderGrant: (evt, gestureState) => {
|
||||
const idx = indexFromPageX(gestureState.x0);
|
||||
pausePlayback();
|
||||
setIsScrubbing(true);
|
||||
setScrubIndex(idx);
|
||||
scrubIndexRef.current = idx;
|
||||
},
|
||||
onPanResponderMove: (evt, gestureState) => {
|
||||
const idx = indexFromPageX(gestureState.moveX);
|
||||
setScrubIndex(idx);
|
||||
scrubIndexRef.current = idx;
|
||||
},
|
||||
onPanResponderRelease: (evt, gestureState) => {
|
||||
const idx = scrubIndexRef.current ?? indexFromPageX(gestureState.moveX);
|
||||
endScrubbing(idx);
|
||||
},
|
||||
onPanResponderTerminate: (evt, gestureState) => {
|
||||
const idx = scrubIndexRef.current ?? indexFromPageX(gestureState.moveX);
|
||||
endScrubbing(idx);
|
||||
},
|
||||
})
|
||||
).current;
|
||||
|
||||
const onTrackLayout = useCallback((e: LayoutChangeEvent) => {
|
||||
trackWidthRef.current = e.nativeEvent.layout.width;
|
||||
// レイアウト確定後に絶対座標を取得
|
||||
trackViewRef.current?.measure((_x, _y, _w, _h, pageX) => {
|
||||
trackPageXRef.current = pageX;
|
||||
});
|
||||
}, []);
|
||||
|
||||
const btnSize = moderateScale(36);
|
||||
const iconSize = moderateScale(20);
|
||||
|
||||
// ─── 早期return ───
|
||||
if (recorderState !== "playing" || !activeRecording) return null;
|
||||
|
||||
const total = activeRecording.snapshots.length;
|
||||
totalRef.current = total; // PanResponder が参照する最新値を更新
|
||||
|
||||
const displayIndex = isScrubbing && scrubIndex !== null ? scrubIndex : playbackIndex;
|
||||
const snap = activeRecording.snapshots[displayIndex];
|
||||
|
||||
// スナップショット時刻 = 録画開始時刻 + elapsed
|
||||
const snapTime = dayjs(activeRecording.recordedAt).add(snap.t, "ms");
|
||||
const timeLabel = snapTime.format("HH:mm:ss");
|
||||
|
||||
// 録画の総時間をフォーマット
|
||||
const totalSec = Math.round(activeRecording.durationMs / 1000);
|
||||
const totalLabel =
|
||||
totalSec >= 60
|
||||
? `${Math.floor(totalSec / 60)}:${String(totalSec % 60).padStart(2, "0")}`
|
||||
: `${totalSec}s`;
|
||||
|
||||
const progress = total > 1 ? displayIndex / (total - 1) : 0;
|
||||
|
||||
return (
|
||||
<View
|
||||
style={{
|
||||
position: "absolute",
|
||||
top,
|
||||
left: 0,
|
||||
right: 0,
|
||||
zIndex: 2000,
|
||||
backgroundColor: colors.surface + "f2", // 少し透過
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: colors.borderSecondary,
|
||||
paddingHorizontal: 12,
|
||||
paddingTop: 6,
|
||||
paddingBottom: 8,
|
||||
}}
|
||||
pointerEvents="box-none"
|
||||
>
|
||||
{/* 上段: ボタン + 時刻 + コマ数 */}
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
gap: 4,
|
||||
}}
|
||||
>
|
||||
{/* 先頭コマへ */}
|
||||
<TouchableOpacity
|
||||
onPress={() => seekToSnapshot(0)}
|
||||
style={[styles.btn(btnSize, colors.borderSecondary)]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons name="play-skip-back" size={iconSize} color={colors.textPrimary} />
|
||||
</TouchableOpacity>
|
||||
|
||||
{/* 前のコマ */}
|
||||
<TouchableOpacity
|
||||
onPress={() => seekToSnapshot(playbackIndex - 1)}
|
||||
style={[styles.btn(btnSize, colors.borderSecondary)]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons name="play-back" size={iconSize} color={colors.textPrimary} />
|
||||
</TouchableOpacity>
|
||||
|
||||
{/* 再生 / 一時停止 */}
|
||||
<TouchableOpacity
|
||||
onPress={playbackPaused ? resumePlayback : pausePlayback}
|
||||
style={[styles.btn(btnSize, fixed.primary)]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons
|
||||
name={playbackPaused ? "play" : "pause"}
|
||||
size={iconSize}
|
||||
color={fixed.textOnPrimary}
|
||||
/>
|
||||
</TouchableOpacity>
|
||||
|
||||
{/* 次のコマ */}
|
||||
<TouchableOpacity
|
||||
onPress={() => seekToSnapshot(playbackIndex + 1)}
|
||||
style={[styles.btn(btnSize, colors.borderSecondary)]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons name="play-forward" size={iconSize} color={colors.textPrimary} />
|
||||
</TouchableOpacity>
|
||||
|
||||
{/* 末尾コマへ */}
|
||||
<TouchableOpacity
|
||||
onPress={() => seekToSnapshot(total - 1)}
|
||||
style={[styles.btn(btnSize, colors.borderSecondary)]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons name="play-skip-forward" size={iconSize} color={colors.textPrimary} />
|
||||
</TouchableOpacity>
|
||||
|
||||
{/* スペーサー */}
|
||||
<View style={{ flex: 1 }} />
|
||||
|
||||
{/* 時刻表示 */}
|
||||
<View style={{ alignItems: "flex-end" }}>
|
||||
<Text style={{ fontSize: moderateScale(15), fontWeight: "bold", color: colors.textPrimary, fontVariant: ["tabular-nums"] }}>
|
||||
{timeLabel}
|
||||
</Text>
|
||||
<Text style={{ fontSize: moderateScale(10), color: colors.textSecondary, fontVariant: ["tabular-nums"] }}>
|
||||
{displayIndex + 1}/{total} {totalLabel}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
{/* 停止ボタン */}
|
||||
<TouchableOpacity
|
||||
onPress={stopPlayback}
|
||||
style={[styles.btn(btnSize, "#e53935"), { marginLeft: 6 }]}
|
||||
hitSlop={{ top: 8, bottom: 8, left: 4, right: 4 }}
|
||||
>
|
||||
<Ionicons name="stop" size={iconSize} color="#fff" />
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
|
||||
{/* 下段: スクラバートラック */}
|
||||
<View
|
||||
ref={trackViewRef}
|
||||
style={{ marginTop: 6, paddingVertical: 8, marginVertical: -8 }}
|
||||
onLayout={onTrackLayout}
|
||||
{...panResponder.panHandlers}
|
||||
>
|
||||
{/* トラック背景 */}
|
||||
<View
|
||||
style={{
|
||||
height: 6,
|
||||
borderRadius: 3,
|
||||
backgroundColor: colors.borderSecondary,
|
||||
overflow: "hidden",
|
||||
}}
|
||||
>
|
||||
{/* 進捗バー */}
|
||||
<View
|
||||
style={{
|
||||
position: "absolute",
|
||||
left: 0,
|
||||
top: 0,
|
||||
bottom: 0,
|
||||
width: `${progress * 100}%`,
|
||||
backgroundColor: fixed.primary,
|
||||
borderRadius: 3,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
{/* ドラッグハンドル */}
|
||||
<View
|
||||
style={{
|
||||
position: "absolute",
|
||||
top: -4,
|
||||
left: `${progress * 100}%`,
|
||||
marginLeft: -8,
|
||||
width: 14,
|
||||
height: 14,
|
||||
borderRadius: 7,
|
||||
backgroundColor: fixed.primary,
|
||||
borderWidth: 2,
|
||||
borderColor: fixed.textOnPrimary,
|
||||
elevation: 2,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
// ヘルパー: ボタンスタイル生成
|
||||
const styles = {
|
||||
btn: (size: number, bg: string) => ({
|
||||
width: size,
|
||||
height: size,
|
||||
borderRadius: size / 2,
|
||||
backgroundColor: bg,
|
||||
alignItems: "center" as const,
|
||||
justifyContent: "center" as const,
|
||||
}),
|
||||
};
|
||||
@@ -0,0 +1,163 @@
|
||||
import React, { FC, useEffect, useRef, useState } from "react";
|
||||
import { View, Text, AppState, InteractionManager } from "react-native";
|
||||
import { activateKeepAwakeAsync, deactivateKeepAwake } from "expo-keep-awake";
|
||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||
import { useTrainMenu } from "../../stateBox/useTrainMenu";
|
||||
import { useThemeColors } from "../../lib/theme";
|
||||
import { useResponsive } from "../../lib/responsive";
|
||||
|
||||
const KEEP_AWAKE_TAG = "recording-status-bar";
|
||||
|
||||
const isActivityUnavailableError = (error: unknown) =>
|
||||
String(error).includes("The current activity is no longer available");
|
||||
|
||||
/**
|
||||
* 録画中に走行位置画面上部に表示するステータスバー。
|
||||
* PlaybackTimeline と同じ absolute 配置。
|
||||
* 録画中はスリープを抑制する。
|
||||
*/
|
||||
export const RecordingStatusBar: FC = () => {
|
||||
const { top } = useSafeAreaInsets();
|
||||
const { colors } = useThemeColors();
|
||||
const { moderateScale } = useResponsive();
|
||||
const { recorderState, recordingSnapshotCount } = useTrainMenu();
|
||||
|
||||
// 経過時間(秒)
|
||||
const [elapsedSec, setElapsedSec] = useState(0);
|
||||
const startTimeRef = useRef<number>(Date.now());
|
||||
|
||||
// 録画開始時にタイマーをリセットして1秒ごとに更新
|
||||
useEffect(() => {
|
||||
if (recorderState !== "recording") {
|
||||
setElapsedSec(0);
|
||||
return;
|
||||
}
|
||||
startTimeRef.current = Date.now();
|
||||
setElapsedSec(0);
|
||||
const timer = setInterval(() => {
|
||||
setElapsedSec(Math.floor((Date.now() - startTimeRef.current) / 1000));
|
||||
}, 1000);
|
||||
return () => clearInterval(timer);
|
||||
}, [recorderState]);
|
||||
|
||||
// 録画中はスリープ抑制
|
||||
useEffect(() => {
|
||||
if (recorderState !== "recording") return;
|
||||
if (__DEV__) return;
|
||||
|
||||
let mounted = true;
|
||||
|
||||
const activate = async () => {
|
||||
if (!mounted || AppState.currentState !== "active") return;
|
||||
try {
|
||||
await activateKeepAwakeAsync(KEEP_AWAKE_TAG);
|
||||
} catch (error) {
|
||||
if (!isActivityUnavailableError(error)) {
|
||||
console.warn("RecordingStatusBar: failed to activate keep awake", error);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const interactionHandle = InteractionManager.runAfterInteractions(() => {
|
||||
void activate();
|
||||
});
|
||||
|
||||
const subscription = AppState.addEventListener("change", (state) => {
|
||||
if (state === "active") {
|
||||
void activate();
|
||||
return;
|
||||
}
|
||||
deactivateKeepAwake(KEEP_AWAKE_TAG).catch(() => {});
|
||||
});
|
||||
|
||||
return () => {
|
||||
mounted = false;
|
||||
interactionHandle.cancel();
|
||||
subscription.remove();
|
||||
deactivateKeepAwake(KEEP_AWAKE_TAG).catch(() => {});
|
||||
};
|
||||
}, [recorderState]);
|
||||
|
||||
if (recorderState !== "recording") return null;
|
||||
|
||||
const minutes = Math.floor(elapsedSec / 60);
|
||||
const seconds = elapsedSec % 60;
|
||||
const timeLabel = `${String(minutes).padStart(2, "0")}:${String(seconds).padStart(2, "0")}`;
|
||||
|
||||
return (
|
||||
<View
|
||||
style={{
|
||||
position: "absolute",
|
||||
top,
|
||||
left: 0,
|
||||
right: 0,
|
||||
zIndex: 2000,
|
||||
backgroundColor: "rgba(229, 57, 53, 0.92)",
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
paddingHorizontal: 14,
|
||||
paddingVertical: 7,
|
||||
gap: 10,
|
||||
}}
|
||||
pointerEvents="none"
|
||||
>
|
||||
{/* 点滅 REC ドット */}
|
||||
<BlinkDot />
|
||||
|
||||
<Text
|
||||
style={{
|
||||
color: "#fff",
|
||||
fontWeight: "bold",
|
||||
fontSize: moderateScale(13),
|
||||
letterSpacing: 1,
|
||||
}}
|
||||
>
|
||||
REC
|
||||
</Text>
|
||||
|
||||
<Text
|
||||
style={{
|
||||
color: "#fff",
|
||||
fontSize: moderateScale(15),
|
||||
fontWeight: "bold",
|
||||
fontVariant: ["tabular-nums"],
|
||||
letterSpacing: 1,
|
||||
}}
|
||||
>
|
||||
{timeLabel}
|
||||
</Text>
|
||||
|
||||
<View style={{ flex: 1 }} />
|
||||
|
||||
<Text
|
||||
style={{
|
||||
color: "rgba(255,255,255,0.85)",
|
||||
fontSize: moderateScale(11),
|
||||
}}
|
||||
>
|
||||
{recordingSnapshotCount} コマ
|
||||
</Text>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
/** 1秒ごとに点滅する録画インジケータードット */
|
||||
const BlinkDot: FC = () => {
|
||||
const [visible, setVisible] = useState(true);
|
||||
useEffect(() => {
|
||||
const timer = setInterval(() => setVisible((v) => !v), 700);
|
||||
return () => clearInterval(timer);
|
||||
}, []);
|
||||
return (
|
||||
<View
|
||||
style={{
|
||||
width: 10,
|
||||
height: 10,
|
||||
borderRadius: 5,
|
||||
backgroundColor: visible ? "#fff" : "transparent",
|
||||
borderWidth: 1.5,
|
||||
borderColor: "#fff",
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
@@ -22,10 +22,11 @@ type ReloadButton = {
|
||||
}
|
||||
export const ReloadButton:FC<ReloadButton> = ({ onPress, right }) => {
|
||||
const { fixed } = useThemeColors();
|
||||
const { mapSwitch, LoadError = false } = useTrainMenu();
|
||||
const { mapSwitch, LoadError = false, mockApiFeatureEnabled } = useTrainMenu();
|
||||
const { top } = useSafeAreaInsets();
|
||||
const { moderateScale } = useResponsive();
|
||||
const buttonSize = moderateScale(50);
|
||||
const buttonColor = LoadError ? "red" : mockApiFeatureEnabled ? "#7c3aed" : fixed.primary;
|
||||
const styles: stylesType = {
|
||||
touch: {
|
||||
position: "absolute",
|
||||
@@ -33,7 +34,7 @@ export const ReloadButton:FC<ReloadButton> = ({ onPress, right }) => {
|
||||
right: 10 + right,
|
||||
width: buttonSize,
|
||||
height: buttonSize,
|
||||
backgroundColor: LoadError ? "red" : fixed.primary,
|
||||
backgroundColor: buttonColor,
|
||||
borderColor: fixed.textOnPrimary,
|
||||
borderStyle: "solid",
|
||||
borderWidth: 1,
|
||||
|
||||
+240
-15
@@ -1,4 +1,4 @@
|
||||
import React from "react";
|
||||
import React, { useCallback, useEffect, useRef } from "react";
|
||||
import { Platform } from "react-native";
|
||||
import { WebView } from "react-native-webview";
|
||||
|
||||
@@ -15,13 +15,19 @@ import { useCurrentTrain } from "../../stateBox/useCurrentTrain";
|
||||
import { useDeviceOrientationChange } from "../../stateBox/useDeviceOrientationChange";
|
||||
import { SheetManager } from "react-native-actions-sheet";
|
||||
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { useNavigation, useIsFocused } from "@react-navigation/native";
|
||||
import { useTrainMenu } from "../../stateBox/useTrainMenu";
|
||||
import { useStationList } from "../../stateBox/useStationList";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
import { useWebViewRemount } from "@/lib/useWebViewRemount";
|
||||
import { generateMockUpdateScript } from "../../lib/mockApi/webviewXhrInterceptor";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
import { setAppLifecycleWebViewActive } from "@/lib/observability/appLifecycleCrashSentinel";
|
||||
export const AppsWebView = ({ openStationACFromEachTrainInfo, onInitialLoadReady }) => {
|
||||
const initialPositionsUrl = "https://train.jr-shikoku.co.jp/sp.html";
|
||||
const { webview, currentTrain } = useCurrentTrain();
|
||||
const { navigate } = useNavigation<any>();
|
||||
const isFocused = useIsFocused();
|
||||
const { favoriteStation } = useFavoriteStation();
|
||||
const { isLandscape } = useDeviceOrientationChange();
|
||||
const { isDark } = useThemeColors();
|
||||
@@ -34,14 +40,142 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
setLoadError,
|
||||
setTrainInfo,
|
||||
injectJavascript,
|
||||
injectJavascriptBeforeContentLoaded,
|
||||
mockApiFeatureEnabled,
|
||||
mockTrainPositions,
|
||||
} = useTrainMenu();
|
||||
var urlcache = "";
|
||||
let once = false;
|
||||
const addWebViewBreadcrumb = (
|
||||
message: string,
|
||||
data?: Record<string, string | number | boolean | null | undefined>
|
||||
) => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "positions.webview",
|
||||
level: "info",
|
||||
message,
|
||||
data,
|
||||
});
|
||||
};
|
||||
const { remountKey, remount, processHandlers, pingHandlers, webViewRef } = useWebViewRemount({
|
||||
pingEnabled: Platform.OS === "ios",
|
||||
backgroundThresholdMs: null,
|
||||
isFocused,
|
||||
pauseWatchdogWhenUnfocused: Platform.OS === "ios",
|
||||
ignoreProcessTerminationWhenUnfocused: Platform.OS === "ios",
|
||||
onRemount: (reason, data) => {
|
||||
addWebViewBreadcrumb("webview remount requested", {
|
||||
reason,
|
||||
...(data ?? {}),
|
||||
});
|
||||
},
|
||||
});
|
||||
const lastRemountKeyRef = useRef<typeof remountKey | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
setAppLifecycleWebViewActive("positions_main", true);
|
||||
return () => setAppLifecycleWebViewActive("positions_main", false);
|
||||
}, []);
|
||||
|
||||
// コマが変化したとき(再生・シーク)に WebView 内の _MOCK_TRAIN を差し替えて再描画
|
||||
const mountedRef = useRef(false);
|
||||
const urlCacheRef = useRef("");
|
||||
const initialInjectDoneRef = useRef(false);
|
||||
const pendingInitialInjectRef = useRef<string | null>(null);
|
||||
const loadEndTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
||||
const focusedRef = useRef(isFocused);
|
||||
const initialLoadReadyNotifiedRef = useRef(false);
|
||||
const previousMockApiFeatureEnabledRef = useRef(mockApiFeatureEnabled);
|
||||
|
||||
useEffect(() => {
|
||||
const previousEnabled = previousMockApiFeatureEnabledRef.current;
|
||||
if (previousEnabled === mockApiFeatureEnabled) return;
|
||||
|
||||
previousMockApiFeatureEnabledRef.current = mockApiFeatureEnabled;
|
||||
addWebViewBreadcrumb("mock mode changed; remounting webview", {
|
||||
previousEnabled,
|
||||
enabled: mockApiFeatureEnabled,
|
||||
focused: focusedRef.current,
|
||||
});
|
||||
remount();
|
||||
}, [mockApiFeatureEnabled, remount]);
|
||||
|
||||
useEffect(() => {
|
||||
focusedRef.current = isFocused;
|
||||
addWebViewBreadcrumb(isFocused ? "webview focused" : "webview blurred", {
|
||||
landscape: isLandscape,
|
||||
mockApi: mockApiFeatureEnabled,
|
||||
});
|
||||
if (!isFocused) return;
|
||||
if (!pendingInitialInjectRef.current) return;
|
||||
addWebViewBreadcrumb("webview pending initial inject resumed on focus");
|
||||
webview?.current?.injectJavaScript(pendingInitialInjectRef.current);
|
||||
pendingInitialInjectRef.current = null;
|
||||
initialInjectDoneRef.current = true;
|
||||
}, [isFocused, isLandscape, mockApiFeatureEnabled]);
|
||||
|
||||
useEffect(() => {
|
||||
if (lastRemountKeyRef.current !== remountKey) {
|
||||
addWebViewBreadcrumb("webview remount key", { remountKey });
|
||||
lastRemountKeyRef.current = remountKey;
|
||||
initialInjectDoneRef.current = false;
|
||||
pendingInitialInjectRef.current = null;
|
||||
initialLoadReadyNotifiedRef.current = false;
|
||||
if (loadEndTimeoutRef.current) {
|
||||
clearTimeout(loadEndTimeoutRef.current);
|
||||
loadEndTimeoutRef.current = null;
|
||||
}
|
||||
}
|
||||
}, [remountKey]);
|
||||
|
||||
useEffect(() => {
|
||||
Sentry.setContext("positions_webview", {
|
||||
focused: isFocused,
|
||||
landscape: isLandscape,
|
||||
mockApi: mockApiFeatureEnabled,
|
||||
remountKey,
|
||||
currentUrl: urlCacheRef.current || null,
|
||||
});
|
||||
}, [isFocused, isLandscape, mockApiFeatureEnabled, remountKey]);
|
||||
|
||||
useEffect(() => {
|
||||
return () => {
|
||||
addWebViewBreadcrumb("webview cleanup start", {
|
||||
focused: focusedRef.current,
|
||||
currentUrl: urlCacheRef.current || null,
|
||||
});
|
||||
if (loadEndTimeoutRef.current) {
|
||||
clearTimeout(loadEndTimeoutRef.current);
|
||||
loadEndTimeoutRef.current = null;
|
||||
}
|
||||
addWebViewBreadcrumb("webview unmounted");
|
||||
};
|
||||
}, []);
|
||||
useEffect(() => {
|
||||
// 初回マウント時はスキップ(beforeContentLoaded で既に正しいデータが入っている)
|
||||
if (!mountedRef.current) {
|
||||
mountedRef.current = true;
|
||||
addWebViewBreadcrumb("mock positions effect skipped initial mount", {
|
||||
mockApi: mockApiFeatureEnabled,
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (!mockApiFeatureEnabled || !mockTrainPositions) return;
|
||||
addWebViewBreadcrumb("mock positions injected", {
|
||||
positionCount: mockTrainPositions.length,
|
||||
});
|
||||
const script = generateMockUpdateScript(mockTrainPositions);
|
||||
webview?.current?.injectJavaScript(script);
|
||||
}, [mockApiFeatureEnabled, mockTrainPositions, webview]);
|
||||
|
||||
const attachWebViewRefs = useCallback((instance) => {
|
||||
webview.current = instance;
|
||||
webViewRef.current = instance;
|
||||
}, [webViewRef, webview]);
|
||||
|
||||
const onNavigationStateChange = ({ url }) => {
|
||||
if (url == urlcache) return;
|
||||
if (url == urlCacheRef.current) return;
|
||||
//URL二重判定回避
|
||||
urlcache = url;
|
||||
urlCacheRef.current = url;
|
||||
addWebViewBreadcrumb("webview navigation", { url });
|
||||
switch (true) {
|
||||
case url.includes("https://train.jr-shikoku.co.jp/usage.htm"):
|
||||
if (Platform.OS === "android") navigate("howto", { info: url });
|
||||
@@ -55,7 +189,20 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
break;
|
||||
}
|
||||
};
|
||||
const getRestorableUrl = () => {
|
||||
const cachedUrl = urlCacheRef.current;
|
||||
if (!cachedUrl) return initialPositionsUrl;
|
||||
if (cachedUrl.includes("https://train.jr-shikoku.co.jp/usage.htm")) {
|
||||
return initialPositionsUrl;
|
||||
}
|
||||
if (cachedUrl.includes("https://train.jr-shikoku.co.jp/train.html")) {
|
||||
return initialPositionsUrl;
|
||||
}
|
||||
return cachedUrl;
|
||||
};
|
||||
|
||||
const onMessage = (event) => {
|
||||
pingHandlers.onMessage?.(event);
|
||||
const { data } = event.nativeEvent;
|
||||
/**
|
||||
* {type,trainNum,limited}
|
||||
@@ -63,14 +210,27 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
* {type,event,id,name,pdf,map,url,chk}
|
||||
*/
|
||||
if (data.includes("train.html")) {
|
||||
addWebViewBreadcrumb("webview train link", { data });
|
||||
navigate("trainbase", { info: data, from: "Train" });
|
||||
return;
|
||||
}
|
||||
if (!originalStationList) {
|
||||
addWebViewBreadcrumb("webview message blocked waiting station data");
|
||||
alert("駅名標データを取得中...");
|
||||
return;
|
||||
}
|
||||
const dataSet = JSON.parse(data);
|
||||
let dataSet;
|
||||
try {
|
||||
dataSet = JSON.parse(data);
|
||||
} catch (error) {
|
||||
addWebViewBreadcrumb("webview message parse failed", {
|
||||
dataPreview: data.slice(0, 120),
|
||||
});
|
||||
throw error;
|
||||
}
|
||||
addWebViewBreadcrumb("webview message", {
|
||||
type: dataSet.type ?? "unknown",
|
||||
});
|
||||
switch (dataSet.type) {
|
||||
case "LoadError": {
|
||||
setLoadError(true);
|
||||
@@ -134,8 +294,30 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
}
|
||||
};
|
||||
|
||||
const onLoadStart = () => {
|
||||
pingHandlers.onLoadStart?.();
|
||||
addWebViewBreadcrumb("webview loadStart", {
|
||||
focused: focusedRef.current,
|
||||
currentUrl: urlCacheRef.current || null,
|
||||
});
|
||||
};
|
||||
|
||||
const onLoadEnd = () => {
|
||||
if (once) return () => {};
|
||||
pingHandlers.onLoadEnd?.();
|
||||
addWebViewBreadcrumb("webview loadEnd", {
|
||||
focused: focusedRef.current,
|
||||
hasStationData: !!stationData,
|
||||
hasOriginalStationList: !!originalStationList,
|
||||
favoriteCount: favoriteStation.length,
|
||||
});
|
||||
if (!initialLoadReadyNotifiedRef.current) {
|
||||
initialLoadReadyNotifiedRef.current = true;
|
||||
addWebViewBreadcrumb("webview initial load ready", {
|
||||
focused: focusedRef.current,
|
||||
});
|
||||
onInitialLoadReady?.();
|
||||
}
|
||||
if (initialInjectDoneRef.current) return () => {};
|
||||
if (!stationData) return () => {};
|
||||
if (!originalStationList) return () => {};
|
||||
if (favoriteStation.length < 1) return () => {};
|
||||
@@ -143,17 +325,45 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
favoriteStation[0][0].StationNumber
|
||||
);
|
||||
if (!string) return () => {};
|
||||
setTimeout(() => {
|
||||
if (loadEndTimeoutRef.current) {
|
||||
clearTimeout(loadEndTimeoutRef.current);
|
||||
}
|
||||
addWebViewBreadcrumb("webview initial inject scheduled", {
|
||||
focused: focusedRef.current,
|
||||
});
|
||||
loadEndTimeoutRef.current = setTimeout(() => {
|
||||
addWebViewBreadcrumb(
|
||||
focusedRef.current
|
||||
? "webview initial inject run"
|
||||
: "webview initial inject run while blurred",
|
||||
{
|
||||
focused: focusedRef.current,
|
||||
}
|
||||
);
|
||||
webview?.current?.injectJavaScript(string);
|
||||
}, 500);
|
||||
once = true;
|
||||
pendingInitialInjectRef.current = null;
|
||||
initialInjectDoneRef.current = true;
|
||||
loadEndTimeoutRef.current = null;
|
||||
}, focusedRef.current ? 500 : 700);
|
||||
};
|
||||
|
||||
const handleRenderProcessGone = (event) => {
|
||||
addWebViewBreadcrumb("webview render process gone", {
|
||||
didCrash: event.nativeEvent.didCrash,
|
||||
});
|
||||
processHandlers.onRenderProcessGone?.(event);
|
||||
};
|
||||
|
||||
const handleContentProcessDidTerminate = () => {
|
||||
addWebViewBreadcrumb("webview content process terminated");
|
||||
processHandlers.onContentProcessDidTerminate?.();
|
||||
};
|
||||
|
||||
return (
|
||||
<WebView
|
||||
key={isDark ? 'dark' : 'light'}
|
||||
ref={webview}
|
||||
source={{ uri: "https://train.jr-shikoku.co.jp/sp.html" }}
|
||||
key={`positions-webview-${remountKey}`}
|
||||
ref={attachWebViewRefs}
|
||||
source={{ uri: getRestorableUrl() }}
|
||||
originWhitelist={[
|
||||
"https://train.jr-shikoku.co.jp",
|
||||
"https://train.jr-shikoku.co.jp/sp.html",
|
||||
@@ -164,7 +374,22 @@ export const AppsWebView = ({ openStationACFromEachTrainInfo }) => {
|
||||
setSupportMultipleWindows
|
||||
contentMode="mobile"
|
||||
style={{ backgroundColor: bgColor }}
|
||||
onLoadStart={onLoadStart}
|
||||
onError={(event) => {
|
||||
addWebViewBreadcrumb("webview error", {
|
||||
description: event.nativeEvent.description || null,
|
||||
code: event.nativeEvent.code ?? null,
|
||||
});
|
||||
}}
|
||||
onHttpError={(event) => {
|
||||
addWebViewBreadcrumb("webview http error", {
|
||||
statusCode: event.nativeEvent.statusCode ?? null,
|
||||
});
|
||||
}}
|
||||
onRenderProcessGone={handleRenderProcessGone}
|
||||
onContentProcessDidTerminate={handleContentProcessDidTerminate}
|
||||
{...{ onMessage, onNavigationStateChange, onLoadEnd }}
|
||||
injectedJavaScriptBeforeContentLoaded={injectJavascriptBeforeContentLoaded}
|
||||
injectedJavaScript={injectJavascript}
|
||||
/>
|
||||
);
|
||||
|
||||
@@ -9,6 +9,7 @@ import {
|
||||
TouchableOpacity,
|
||||
Text,
|
||||
ScrollView,
|
||||
Platform,
|
||||
} from "react-native";
|
||||
import Carousel, { ICarouselInstance } from "react-native-reanimated-carousel";
|
||||
import { SheetManager } from "react-native-actions-sheet";
|
||||
@@ -27,6 +28,10 @@ import Animated, {
|
||||
} from "react-native-reanimated";
|
||||
import { useSortMode } from "./useSortMode";
|
||||
import { StationSource } from "@/types";
|
||||
import * as Sentry from "@sentry/react-native";
|
||||
|
||||
const isMissingStorageKeyError = (error: unknown) =>
|
||||
String(error).includes("Not Found!");
|
||||
|
||||
export const CarouselBox = ({
|
||||
originalStationList,
|
||||
@@ -45,6 +50,9 @@ export const CarouselBox = ({
|
||||
navigate: any;
|
||||
stationSource: StationSource;
|
||||
}) => {
|
||||
const isAndroid = Platform.OS === "android";
|
||||
const sortControlsEntering = isAndroid ? undefined : FadeIn.duration(200);
|
||||
const sortControlsExiting = isAndroid ? undefined : FadeOut.duration(150);
|
||||
const carouselRef = useRef<ICarouselInstance>(null);
|
||||
const { width } = useWindowDimensions();
|
||||
const { colors, fixed } = useThemeColors();
|
||||
@@ -109,6 +117,15 @@ export const CarouselBox = ({
|
||||
// コンテナ高さ(カルーセル ↔ グリッドで可変)
|
||||
const containerHeight = useSharedValue(carouselHeight);
|
||||
const containerHeightStyle = useAnimatedStyle(() => ({ height: containerHeight.value }));
|
||||
const androidContainerStyle = isAndroid ? { height: isSortMode ? gridHeight : carouselHeight } : null;
|
||||
const carouselModeProps = {
|
||||
mode: "parallax" as const,
|
||||
modeConfig: {
|
||||
parallaxScrollingScale: 1,
|
||||
parallaxScrollingOffset: 100,
|
||||
parallaxAdjacentItemScale: 0.8,
|
||||
},
|
||||
};
|
||||
|
||||
// ドットエリアのフェード
|
||||
const dotsOpacity = useSharedValue(1);
|
||||
@@ -122,6 +139,11 @@ export const CarouselBox = ({
|
||||
const gridAnimStyle = useAnimatedStyle(() => ({ opacity: gridOpacity.value }));
|
||||
|
||||
useEffect(() => {
|
||||
if (isAndroid) {
|
||||
setIsGridMounted(isSortMode);
|
||||
return;
|
||||
}
|
||||
|
||||
const duration = 250;
|
||||
if (isSortMode) {
|
||||
setIsGridMounted(true); // フェードイン前にマウント
|
||||
@@ -137,7 +159,7 @@ export const CarouselBox = ({
|
||||
if (finished) runOnJS(setIsGridMounted)(false); // フェードアウト完了後にアンマウント
|
||||
});
|
||||
}
|
||||
}, [isSortMode, gridHeight, carouselHeight]);
|
||||
}, [isAndroid, isSortMode, gridHeight, carouselHeight]);
|
||||
|
||||
// ソートモード終了直後フラグ(次の listIndex 変更でアニメーションをスキップ)
|
||||
const justExitedSortRef = useRef(false);
|
||||
@@ -150,11 +172,10 @@ export const CarouselBox = ({
|
||||
|
||||
// バッジからのインデックス変更をカルーセルに反映
|
||||
useEffect(() => {
|
||||
if (listIndex >= 0 && carouselRef.current) {
|
||||
const animated = !justExitedSortRef.current;
|
||||
justExitedSortRef.current = false;
|
||||
carouselRef.current.scrollTo({ index: listIndex, animated });
|
||||
}
|
||||
if (listIndex < 0) return;
|
||||
const animated = !justExitedSortRef.current;
|
||||
justExitedSortRef.current = false;
|
||||
carouselRef.current?.scrollTo({ index: listIndex, animated });
|
||||
}, [listIndex]);
|
||||
|
||||
// ドットのスクロール追従
|
||||
@@ -167,9 +188,39 @@ export const CarouselBox = ({
|
||||
|
||||
// ドット表示設定の読み込み
|
||||
useEffect(() => {
|
||||
AS.getItem("CarouselSettings/activeDotSettings").then((data) => {
|
||||
setDotButton(data === "true");
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "info",
|
||||
message: "carousel activeDotSettings read scheduled",
|
||||
});
|
||||
AS.getItem("CarouselSettings/activeDotSettings")
|
||||
.then((data) => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "info",
|
||||
message: "carousel activeDotSettings read success",
|
||||
data: {
|
||||
rawValue: data == null ? "<null>" : String(data),
|
||||
resolved: data === "true",
|
||||
},
|
||||
});
|
||||
setDotButton(data === "true");
|
||||
})
|
||||
.catch((error) => {
|
||||
setDotButton(false);
|
||||
if (isMissingStorageKeyError(error)) {
|
||||
return;
|
||||
}
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "error",
|
||||
message: "carousel activeDotSettings read failed",
|
||||
data: {
|
||||
errorName: error instanceof Error ? error.name : typeof error,
|
||||
errorMessage: error instanceof Error ? error.message : String(error),
|
||||
},
|
||||
});
|
||||
});
|
||||
}, []);
|
||||
|
||||
const oPSign = () => {
|
||||
@@ -199,7 +250,38 @@ export const CarouselBox = ({
|
||||
duration: 600,
|
||||
update: { type: "spring", springDamping: 0.5 },
|
||||
});
|
||||
AS.setItem("CarouselSettings/activeDotSettings", !dotButton ? "true" : "false");
|
||||
const nextValue = !dotButton ? "true" : "false";
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "info",
|
||||
message: "carousel activeDotSettings write scheduled",
|
||||
data: {
|
||||
nextValue,
|
||||
},
|
||||
});
|
||||
void AS.setItem("CarouselSettings/activeDotSettings", nextValue)
|
||||
.then(() => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "info",
|
||||
message: "carousel activeDotSettings write success",
|
||||
data: {
|
||||
nextValue,
|
||||
},
|
||||
});
|
||||
})
|
||||
.catch((error) => {
|
||||
Sentry.addBreadcrumb({
|
||||
category: "menu.carousel",
|
||||
level: "error",
|
||||
message: "carousel activeDotSettings write failed",
|
||||
data: {
|
||||
nextValue,
|
||||
errorName: error instanceof Error ? error.name : typeof error,
|
||||
errorMessage: error instanceof Error ? error.message : String(error),
|
||||
},
|
||||
});
|
||||
});
|
||||
setDotButton(!dotButton);
|
||||
};
|
||||
|
||||
@@ -255,10 +337,10 @@ export const CarouselBox = ({
|
||||
return (
|
||||
<View style={{ flex: 1, paddingTop: 10 }}>
|
||||
{/* カルーセル / グリッド(同じ高さ領域を共用・クロスフェード) */}
|
||||
<Animated.View style={[{ overflow: "visible" }, containerHeightStyle]}>
|
||||
<Animated.View style={[{ overflow: "visible" }, isAndroid ? androidContainerStyle : containerHeightStyle]}>
|
||||
{/* カルーセル */}
|
||||
<Animated.View
|
||||
style={[{ position: "absolute", width }, carouselAnimStyle]}
|
||||
style={[{ position: "absolute", width }, isAndroid ? { opacity: isSortMode ? 0 : 1 } : carouselAnimStyle]}
|
||||
pointerEvents={isSortMode ? "none" : "auto"}
|
||||
>
|
||||
<Carousel
|
||||
@@ -270,13 +352,7 @@ export const CarouselBox = ({
|
||||
loop={false}
|
||||
width={width}
|
||||
style={{ width, alignContent: "center" }}
|
||||
mode="parallax"
|
||||
modeConfig={{
|
||||
parallaxScrollingScale: 1,
|
||||
parallaxScrollingOffset: 100,
|
||||
parallaxAdjacentItemScale: 0.8,
|
||||
}}
|
||||
scrollAnimationDuration={600}
|
||||
scrollAnimationDuration={isAndroid ? 450 : 600}
|
||||
onSnapToItem={setListIndex}
|
||||
renderItem={RenderItem}
|
||||
overscrollEnabled={false}
|
||||
@@ -285,6 +361,8 @@ export const CarouselBox = ({
|
||||
? 0
|
||||
: lastValidListIndexRef.current
|
||||
}
|
||||
enabled={!isSortMode}
|
||||
{...carouselModeProps}
|
||||
/>
|
||||
</Animated.View>
|
||||
|
||||
@@ -293,7 +371,7 @@ export const CarouselBox = ({
|
||||
<Animated.View
|
||||
style={[
|
||||
{ position: "absolute", width, height: gridHeight, paddingHorizontal: gridPad, overflow: "visible" },
|
||||
gridAnimStyle,
|
||||
isAndroid ? { opacity: 1 } : gridAnimStyle,
|
||||
]}
|
||||
>
|
||||
<Sortable.Grid
|
||||
@@ -311,7 +389,7 @@ export const CarouselBox = ({
|
||||
</Animated.View>
|
||||
|
||||
{/* ドットエリア:ソートモード時はフェードアウト */}
|
||||
<Animated.View style={dotsAnimStyle} pointerEvents={isSortMode ? "none" : "auto"}>
|
||||
<Animated.View style={isAndroid ? { opacity: isSortMode ? 0 : 1 } : dotsAnimStyle} pointerEvents={isSortMode ? "none" : "auto"}>
|
||||
<ScrollView
|
||||
horizontal
|
||||
showsHorizontalScrollIndicator={false}
|
||||
@@ -355,8 +433,8 @@ export const CarouselBox = ({
|
||||
{/* 並び替えコントロール:ソートモード時に最下部からスライドイン */}
|
||||
{isSortMode && (
|
||||
<Animated.View
|
||||
entering={FadeIn.duration(200)}
|
||||
exiting={FadeOut.duration(150)}
|
||||
entering={sortControlsEntering}
|
||||
exiting={sortControlsExiting}
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
|
||||
@@ -268,6 +268,24 @@ export const FixedContentBottom = (props) => {
|
||||
</Text>
|
||||
<MaterialCommunityIcons name="chart-gantt" color="white" size={moderateScale(40)} />
|
||||
</TextBox>
|
||||
<TextBox
|
||||
backgroundColor="#7F8C8D"
|
||||
flex={1}
|
||||
onPressButton={() => {
|
||||
const uri = `https://shikoku-railinfo.haruk.in/timetable/?userID=${expoPushToken}&from=eachTrainInfo`;
|
||||
props.navigate("generalWebView", { uri, useExitButton: false });
|
||||
SheetManager.hide("EachTrainInfo");
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: "white", fontWeight: "bold", fontSize: fontScale(20) }}>
|
||||
紙風時刻表
|
||||
</Text>
|
||||
<MaterialCommunityIcons
|
||||
name="file-document-outline"
|
||||
color="white"
|
||||
size={moderateScale(40)}
|
||||
/>
|
||||
</TextBox>
|
||||
</View>
|
||||
<Text style={{ fontWeight: "bold", fontSize: fontScale(20), color: colors.text }}>その他</Text>
|
||||
<TextBox
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
import React, { useState, useEffect } from "react";
|
||||
import { View, Text, ScrollView, StyleSheet, Image, TouchableOpacity, Linking } from "react-native";
|
||||
import {
|
||||
View,
|
||||
Text,
|
||||
ScrollView,
|
||||
StyleSheet,
|
||||
Image,
|
||||
TouchableOpacity,
|
||||
Linking,
|
||||
} from "react-native";
|
||||
import { Switch } from "@rneui/themed";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
||||
@@ -10,9 +18,14 @@ import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import {
|
||||
DEFAULT_JR_DATA_SYSTEM_ENV,
|
||||
getJrDataSystemTrack,
|
||||
getJrDataSystemUiVariant,
|
||||
JR_DATA_SYSTEM_ENV_OPTIONS,
|
||||
JrDataSystemTrack,
|
||||
JrDataSystemUiVariant,
|
||||
JrDataSystemEnvironmentKey,
|
||||
normalizeJrDataSystemEnvironment,
|
||||
resolveJrDataSystemEnvironment,
|
||||
} from "@/lib/jrDataSystemEnvironment";
|
||||
|
||||
const HUB_LOGO_PNG = require("@/assets/relationLogo/unyohub_logo.webp");
|
||||
@@ -64,7 +77,16 @@ const DataSourceAccordionCard: React.FC<DataSourceAccordionCardProps> = ({
|
||||
const { colors } = useThemeColors();
|
||||
|
||||
return (
|
||||
<View style={[styles.accordionCard, { backgroundColor: colors.surface, borderColor: colors.borderSecondary }, enabled && styles.accordionCardEnabled]}>
|
||||
<View
|
||||
style={[
|
||||
styles.accordionCard,
|
||||
{
|
||||
backgroundColor: colors.surface,
|
||||
borderColor: colors.borderSecondary,
|
||||
},
|
||||
enabled && styles.accordionCardEnabled,
|
||||
]}
|
||||
>
|
||||
{/* ── ヘッダー行(常時表示) ── */}
|
||||
<View style={styles.accordionHeader}>
|
||||
{/* 左:ロゴ */}
|
||||
@@ -72,8 +94,14 @@ const DataSourceAccordionCard: React.FC<DataSourceAccordionCardProps> = ({
|
||||
|
||||
{/* 中央:タイトル+タグライン */}
|
||||
<View style={styles.accordionTitles}>
|
||||
<Text style={[styles.accordionTitle, { color: colors.textPrimary }]}>{title}</Text>
|
||||
<Text style={[styles.accordionTagline, { color: colors.textTertiary }]}>{tagline}</Text>
|
||||
<Text style={[styles.accordionTitle, { color: colors.textPrimary }]}>
|
||||
{title}
|
||||
</Text>
|
||||
<Text
|
||||
style={[styles.accordionTagline, { color: colors.textTertiary }]}
|
||||
>
|
||||
{tagline}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
{/* 右:スイッチ */}
|
||||
@@ -87,19 +115,36 @@ const DataSourceAccordionCard: React.FC<DataSourceAccordionCardProps> = ({
|
||||
|
||||
{/* スイッチ状態テキスト */}
|
||||
<View style={styles.accordionStatusRow}>
|
||||
<View style={[styles.statusDot, { backgroundColor: enabled ? accentColor : colors.textDisabled }]} />
|
||||
<Text style={[styles.statusText, { color: enabled ? accentColor : colors.textQuaternary }]}>
|
||||
{enabled ? "有効 — 編成データを取得します" : "無効 — データを取得しません"}
|
||||
<View
|
||||
style={[
|
||||
styles.statusDot,
|
||||
{ backgroundColor: enabled ? accentColor : colors.textDisabled },
|
||||
]}
|
||||
/>
|
||||
<Text
|
||||
style={[
|
||||
styles.statusText,
|
||||
{ color: enabled ? accentColor : colors.textQuaternary },
|
||||
]}
|
||||
>
|
||||
{enabled
|
||||
? "有効 — 編成データを取得します"
|
||||
: "無効 — データを取得しません"}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
{/* ── 展開トリガー ── */}
|
||||
<TouchableOpacity
|
||||
style={[styles.accordionToggleRow, { borderTopColor: colors.borderCard }]}
|
||||
style={[
|
||||
styles.accordionToggleRow,
|
||||
{ borderTopColor: colors.borderCard },
|
||||
]}
|
||||
onPress={() => setExpanded((v) => !v)}
|
||||
activeOpacity={0.6}
|
||||
>
|
||||
<Text style={[styles.accordionToggleLabel, { color: colors.textSecondary }]}>
|
||||
<Text
|
||||
style={[styles.accordionToggleLabel, { color: colors.textSecondary }]}
|
||||
>
|
||||
{expanded ? "詳細を閉じる" : (detailLabel ?? `${title} について`)}
|
||||
</Text>
|
||||
<MaterialCommunityIcons
|
||||
@@ -111,31 +156,69 @@ const DataSourceAccordionCard: React.FC<DataSourceAccordionCardProps> = ({
|
||||
|
||||
{/* ── 展開コンテンツ ── */}
|
||||
{expanded && (
|
||||
<View style={[styles.accordionBody, { borderTopColor: colors.borderCard, backgroundColor: colors.backgroundTertiary }]}>
|
||||
<View
|
||||
style={[
|
||||
styles.accordionBody,
|
||||
{
|
||||
borderTopColor: colors.borderCard,
|
||||
backgroundColor: colors.backgroundTertiary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{/* 説明文 */}
|
||||
<Text style={[styles.bodyDesc, { color: colors.textSecondary }]}>{description}</Text>
|
||||
<Text style={[styles.bodyDesc, { color: colors.textSecondary }]}>
|
||||
{description}
|
||||
</Text>
|
||||
|
||||
{/* 機能リスト */}
|
||||
<View style={[styles.bodyFeatures, { borderTopColor: colors.borderSecondary }]}>
|
||||
<View
|
||||
style={[
|
||||
styles.bodyFeatures,
|
||||
{ borderTopColor: colors.borderSecondary },
|
||||
]}
|
||||
>
|
||||
{features.map((f) => (
|
||||
<View key={f.icon} style={styles.featureRow}>
|
||||
<View style={styles.featureIcon}>
|
||||
<MaterialCommunityIcons name={f.icon as any} size={14} color={colors.iconSecondary} />
|
||||
<MaterialCommunityIcons
|
||||
name={f.icon as any}
|
||||
size={14}
|
||||
color={colors.iconSecondary}
|
||||
/>
|
||||
</View>
|
||||
<Text style={[styles.featureLabel, { color: colors.textPrimary }]}>{f.label}</Text>
|
||||
<Text style={[styles.featureText, { color: colors.textSecondary }]}>{f.text}</Text>
|
||||
<Text
|
||||
style={[styles.featureLabel, { color: colors.textPrimary }]}
|
||||
>
|
||||
{f.label}
|
||||
</Text>
|
||||
<Text
|
||||
style={[styles.featureText, { color: colors.textSecondary }]}
|
||||
>
|
||||
{f.text}
|
||||
</Text>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
|
||||
{/* リンク */}
|
||||
<TouchableOpacity
|
||||
style={[styles.bodyLink, { borderTopColor: colors.borderSecondary }]}
|
||||
style={[
|
||||
styles.bodyLink,
|
||||
{ borderTopColor: colors.borderSecondary },
|
||||
]}
|
||||
onPress={() => Linking.openURL(linkUrl)}
|
||||
activeOpacity={0.7}
|
||||
>
|
||||
<MaterialCommunityIcons name="open-in-new" size={13} color={colors.iconSecondary} />
|
||||
<Text style={[styles.bodyLinkText, { color: colors.textSecondary }]}>{linkLabel}</Text>
|
||||
<MaterialCommunityIcons
|
||||
name="open-in-new"
|
||||
size={13}
|
||||
color={colors.iconSecondary}
|
||||
/>
|
||||
<Text
|
||||
style={[styles.bodyLinkText, { color: colors.textSecondary }]}
|
||||
>
|
||||
{linkLabel}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
)}
|
||||
@@ -147,17 +230,45 @@ const DataSourceAccordionCard: React.FC<DataSourceAccordionCardProps> = ({
|
||||
/* 定数 */
|
||||
/* ------------------------------------------------------------------ */
|
||||
const UNYOHUB_FEATURES: Feature[] = [
|
||||
{ icon: "calendar-today", label: "運用データ", text: "当日・過去数日から投稿があった運用の継続予測運用情報を表示" },
|
||||
{ icon: "map-outline", label: "対象エリア", text: "JR四国全線" },
|
||||
{ icon: "train", label: "対象運用", text: "JR四国管内営業列車及び貨物列車,定期回送列車に対応、臨時列車/突発運用は非対応" },
|
||||
{ icon: "pencil", label: "入力方式", text: "アプリ内連携システムにて当日の運用の投稿が可能" },
|
||||
{
|
||||
icon: "calendar-today",
|
||||
label: "運用データ",
|
||||
text: "当日・過去数日から投稿があった運用の継続予測運用情報を表示",
|
||||
},
|
||||
{ icon: "map-outline", label: "対象エリア", text: "JR四国全線" },
|
||||
{
|
||||
icon: "train",
|
||||
label: "対象運用",
|
||||
text: "JR四国管内営業列車及び貨物列車,定期回送列車に対応、臨時列車/突発運用は非対応",
|
||||
},
|
||||
{
|
||||
icon: "pencil",
|
||||
label: "入力方式",
|
||||
text: "アプリ内連携システムにて当日の運用の投稿が可能",
|
||||
},
|
||||
];
|
||||
|
||||
const ELESITE_FEATURES: Feature[] = [
|
||||
{ icon: "calendar-today", label: "運用データ", text: "当日報告のあった運用情報のみ表示" },
|
||||
{ icon: "map-outline", label: "対象エリア", text: "予讃線/瀬戸大橋線(直通している特急などの列番は含みます)" },
|
||||
{ icon: "train", label: "対象運用", text: "JR四国管内営業列車対応、臨時列車/突発運用は非対応" },
|
||||
{ icon: "pencil", label: "入力方式", text: "アプリ外リンク連携にて当日の運用の投稿が可能" },
|
||||
{
|
||||
icon: "calendar-today",
|
||||
label: "運用データ",
|
||||
text: "当日報告のあった運用情報のみ表示",
|
||||
},
|
||||
{
|
||||
icon: "map-outline",
|
||||
label: "対象エリア",
|
||||
text: "予讃線/瀬戸大橋線(直通している特急などの列番は含みます)",
|
||||
},
|
||||
{
|
||||
icon: "train",
|
||||
label: "対象運用",
|
||||
text: "JR四国管内営業列車対応、臨時列車/突発運用は非対応",
|
||||
},
|
||||
{
|
||||
icon: "pencil",
|
||||
label: "入力方式",
|
||||
text: "アプリ外リンク連携にて当日の運用の投稿が可能",
|
||||
},
|
||||
];
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
@@ -172,6 +283,19 @@ export const DataSourceSettings = () => {
|
||||
const [useElesite, setUseElesite] = useState(false);
|
||||
const [jrDataSystemEnv, setJrDataSystemEnv] =
|
||||
useState<JrDataSystemEnvironmentKey>(DEFAULT_JR_DATA_SYSTEM_ENV);
|
||||
const [jrDataSystemTrack, setJrDataSystemTrack] = useState<JrDataSystemTrack>(
|
||||
getJrDataSystemTrack(DEFAULT_JR_DATA_SYSTEM_ENV),
|
||||
);
|
||||
const [jrDataSystemUiVariant, setJrDataSystemUiVariant] =
|
||||
useState<JrDataSystemUiVariant>(
|
||||
getJrDataSystemUiVariant(DEFAULT_JR_DATA_SYSTEM_ENV),
|
||||
);
|
||||
const applyJrDataSystemEnv = (env: JrDataSystemEnvironmentKey) => {
|
||||
setJrDataSystemEnv(env);
|
||||
setJrDataSystemTrack(getJrDataSystemTrack(env));
|
||||
setJrDataSystemUiVariant(getJrDataSystemUiVariant(env));
|
||||
AS.setItem(STORAGE_KEYS.JR_DATA_SYSTEM_ENV, env);
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
AS.getItem(STORAGE_KEYS.USE_UNYOHUB).then((value) => {
|
||||
@@ -182,10 +306,17 @@ export const DataSourceSettings = () => {
|
||||
});
|
||||
AS.getItem(STORAGE_KEYS.JR_DATA_SYSTEM_ENV)
|
||||
.then((value) => {
|
||||
setJrDataSystemEnv(normalizeJrDataSystemEnvironment(value));
|
||||
const env = normalizeJrDataSystemEnvironment(value);
|
||||
setJrDataSystemEnv(env);
|
||||
setJrDataSystemTrack(getJrDataSystemTrack(env));
|
||||
setJrDataSystemUiVariant(getJrDataSystemUiVariant(env));
|
||||
})
|
||||
.catch(() => {
|
||||
setJrDataSystemEnv(DEFAULT_JR_DATA_SYSTEM_ENV);
|
||||
setJrDataSystemTrack(getJrDataSystemTrack(DEFAULT_JR_DATA_SYSTEM_ENV));
|
||||
setJrDataSystemUiVariant(
|
||||
getJrDataSystemUiVariant(DEFAULT_JR_DATA_SYSTEM_ENV),
|
||||
);
|
||||
});
|
||||
}, []);
|
||||
|
||||
@@ -199,9 +330,19 @@ export const DataSourceSettings = () => {
|
||||
AS.setItem(STORAGE_KEYS.USE_ELESITE, value.toString());
|
||||
};
|
||||
|
||||
const handleSelectJrDataSystemEnv = (value: JrDataSystemEnvironmentKey) => {
|
||||
setJrDataSystemEnv(value);
|
||||
AS.setItem(STORAGE_KEYS.JR_DATA_SYSTEM_ENV, value);
|
||||
const handleSelectJrDataSystemTrack = (value: JrDataSystemTrack) => {
|
||||
setJrDataSystemTrack(value);
|
||||
const normalizedVariant =
|
||||
value === "experimental" ? "release" : jrDataSystemUiVariant;
|
||||
setJrDataSystemUiVariant(normalizedVariant);
|
||||
const env = resolveJrDataSystemEnvironment(value, normalizedVariant);
|
||||
applyJrDataSystemEnv(env);
|
||||
};
|
||||
|
||||
const handleSelectJrDataSystemUiVariant = (value: JrDataSystemUiVariant) => {
|
||||
setJrDataSystemUiVariant(value);
|
||||
const env = resolveJrDataSystemEnvironment(jrDataSystemTrack, value);
|
||||
applyJrDataSystemEnv(env);
|
||||
};
|
||||
|
||||
return (
|
||||
@@ -214,56 +355,107 @@ export const DataSourceSettings = () => {
|
||||
position: "left",
|
||||
}}
|
||||
/>
|
||||
<ScrollView style={[styles.content, { backgroundColor: colors.backgroundSecondary }]} contentContainerStyle={styles.contentInner}>
|
||||
<Text style={[styles.sectionTitle, { color: colors.textTertiary }]}>外部データソース</Text>
|
||||
<ScrollView
|
||||
style={[
|
||||
styles.content,
|
||||
{ backgroundColor: colors.backgroundSecondary },
|
||||
]}
|
||||
contentContainerStyle={styles.contentInner}
|
||||
>
|
||||
<Text style={[styles.sectionTitle, { color: colors.textTertiary }]}>
|
||||
外部データソース
|
||||
</Text>
|
||||
|
||||
<DataSourceAccordionCard
|
||||
logo={HUB_LOGO_PNG}
|
||||
accentColor="#0099CC"
|
||||
title="鉄道運用Hub"
|
||||
tagline="コミュニティによる列車運用情報サービス"
|
||||
enabled={useUnyohub}
|
||||
onToggle={handleToggleUnyohub}
|
||||
description={
|
||||
"鉄道運用Hubはオープンソースのユーザー投稿型鉄道運用情報データベースアプリケーションです。JR 四国をはじめ全国多数の路線系統に対応しています。\n\nデータがある列車では地図上にアイコンでマークが表示され、列車情報画面の編成表示も更新されます。"
|
||||
}
|
||||
features={UNYOHUB_FEATURES}
|
||||
linkLabel="unyohub.2pd.jp を開く(JR四国)"
|
||||
linkUrl="https://unyohub.2pd.jp/railroad_shikoku/"
|
||||
/>
|
||||
<DataSourceAccordionCard
|
||||
logo={HUB_LOGO_PNG}
|
||||
accentColor="#0099CC"
|
||||
title="鉄道運用Hub"
|
||||
tagline="コミュニティによる列車運用情報サービス"
|
||||
enabled={useUnyohub}
|
||||
onToggle={handleToggleUnyohub}
|
||||
description={
|
||||
"鉄道運用Hubはオープンソースのユーザー投稿型鉄道運用情報データベースアプリケーションです。JR 四国をはじめ全国多数の路線系統に対応しています。\n\nデータがある列車では地図上にアイコンでマークが表示され、列車情報画面の編成表示も更新されます。"
|
||||
}
|
||||
features={UNYOHUB_FEATURES}
|
||||
linkLabel="unyohub.2pd.jp を開く(JR四国)"
|
||||
linkUrl="https://unyohub.2pd.jp/railroad_shikoku/"
|
||||
/>
|
||||
|
||||
<DataSourceAccordionCard
|
||||
logo={ELESITE_LOGO_PNG}
|
||||
accentColor="#44bb44"
|
||||
title="えれサイト"
|
||||
tagline="コミュニティによる列車運用情報サービス"
|
||||
enabled={useElesite}
|
||||
onToggle={handleToggleElesite}
|
||||
description={
|
||||
"えれサイトは、鉄道の運用情報を利用者同士で共有するサービスです。皆様からの投稿をもとに、列車のリアルタイムな動きを反映しています。JR四国の特急・普通列車をはじめ、現在は全国の路線に対応しています。\n\nデータがある列車では地図上にアイコンでマークが表示され、列車情報画面の編成表示も更新されます。"
|
||||
}
|
||||
features={ELESITE_FEATURES}
|
||||
linkLabel="elesite-next.com を開く"
|
||||
linkUrl="https://www.elesite-next.com/"
|
||||
/>
|
||||
<DataSourceAccordionCard
|
||||
logo={ELESITE_LOGO_PNG}
|
||||
accentColor="#44bb44"
|
||||
title="えれサイト"
|
||||
tagline="コミュニティによる列車運用情報サービス"
|
||||
enabled={useElesite}
|
||||
onToggle={handleToggleElesite}
|
||||
description={
|
||||
"えれサイトは、鉄道の運用情報を利用者同士で共有するサービスです。皆様からの投稿をもとに、列車のリアルタイムな動きを反映しています。JR四国の特急・普通列車をはじめ、現在は全国の路線に対応しています。\n\nデータがある列車では地図上にアイコンでマークが表示され、列車情報画面の編成表示も更新されます。"
|
||||
}
|
||||
features={ELESITE_FEATURES}
|
||||
linkLabel="elesite-next.com を開く"
|
||||
linkUrl="https://www.elesite-next.com/"
|
||||
/>
|
||||
|
||||
<View style={[styles.infoSection, { backgroundColor: colors.backgroundTertiary }]}>
|
||||
<Text style={[styles.infoText, { color: colors.textCaution }]}>
|
||||
外部のコミュニティデータソースとの連携を管理します。
|
||||
{"\n\n"}
|
||||
データの正確性は保証されません。また、これらの連携情報を利用する時点でそれぞれのサイトの利用規約に同意したものとします。{"\n\n"}外部ソースはJR四国非公式アプリが管理していないデータであるため、お問い合わせは各サービスの窓口までお願いいたします。
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
style={[
|
||||
styles.infoSection,
|
||||
{ backgroundColor: colors.backgroundTertiary },
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.infoText, { color: colors.textCaution }]}>
|
||||
外部のコミュニティデータソースとの連携を管理します。
|
||||
{"\n\n"}
|
||||
データの正確性は保証されません。また、これらの連携情報を利用する時点でそれぞれのサイトの利用規約に同意したものとします。
|
||||
{"\n\n"}
|
||||
外部ソースはJR四国非公式アプリが管理していないデータであるため、お問い合わせは各サービスの窓口までお願いいたします。
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
{showDebugSelector && (
|
||||
<View style={[styles.debugSection, { backgroundColor: colors.surface, borderColor: colors.borderSecondary }]}>
|
||||
<Text style={[styles.debugTitle, { color: colors.textPrimary }]}>デバッグ: 投稿システム接続先</Text>
|
||||
<Text style={[styles.debugDescription, { color: colors.textSecondary }]}>
|
||||
列車情報・編成投稿画面を、本番 / ChatGPT案 / Claude案で切り替えます。
|
||||
{showDebugSelector && (
|
||||
<>
|
||||
<View
|
||||
style={[
|
||||
styles.debugSection,
|
||||
{
|
||||
backgroundColor: colors.surface,
|
||||
borderColor: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.debugTitle, { color: colors.textPrimary }]}>
|
||||
投稿システム接続先
|
||||
</Text>
|
||||
<Text
|
||||
style={[
|
||||
styles.debugDescription,
|
||||
{ color: colors.textSecondary },
|
||||
]}
|
||||
>
|
||||
本番運用と実験場、および本番のリリース版/ベータ版を切り替えます。
|
||||
</Text>
|
||||
|
||||
<Text
|
||||
style={[
|
||||
styles.debugCurrentText,
|
||||
{ color: colors.textTertiary },
|
||||
]}
|
||||
>
|
||||
系統
|
||||
</Text>
|
||||
<View style={styles.debugOptionRow}>
|
||||
{JR_DATA_SYSTEM_ENV_OPTIONS.map((option) => {
|
||||
const selected = jrDataSystemEnv === option.key;
|
||||
{[
|
||||
{
|
||||
key: "production" as const,
|
||||
label: "本番",
|
||||
caption: "一般公開向け",
|
||||
},
|
||||
{
|
||||
key: "experimental" as const,
|
||||
label: "実験",
|
||||
caption: "毎日リセット",
|
||||
},
|
||||
].map((option) => {
|
||||
const selected = jrDataSystemTrack === option.key;
|
||||
return (
|
||||
<TouchableOpacity
|
||||
key={option.key}
|
||||
@@ -278,13 +470,17 @@ export const DataSourceSettings = () => {
|
||||
: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
onPress={() => handleSelectJrDataSystemEnv(option.key)}
|
||||
onPress={() => handleSelectJrDataSystemTrack(option.key)}
|
||||
activeOpacity={0.8}
|
||||
>
|
||||
<Text
|
||||
style={[
|
||||
styles.debugOptionTitle,
|
||||
{ color: selected ? fixed.textOnPrimary : colors.textPrimary },
|
||||
{
|
||||
color: selected
|
||||
? fixed.textOnPrimary
|
||||
: colors.textPrimary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{option.label}
|
||||
@@ -292,7 +488,11 @@ export const DataSourceSettings = () => {
|
||||
<Text
|
||||
style={[
|
||||
styles.debugOptionCaption,
|
||||
{ color: selected ? fixed.textOnPrimary : colors.textTertiary },
|
||||
{
|
||||
color: selected
|
||||
? fixed.textOnPrimary
|
||||
: colors.textTertiary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{option.caption}
|
||||
@@ -301,10 +501,96 @@ export const DataSourceSettings = () => {
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
<Text style={[styles.debugCurrentText, { color: colors.textTertiary }]}>現在の接続先: {JR_DATA_SYSTEM_ENV_OPTIONS.find((option) => option.key === jrDataSystemEnv)?.baseUrl}</Text>
|
||||
|
||||
<Text
|
||||
style={[
|
||||
styles.debugCurrentText,
|
||||
{ color: colors.textTertiary },
|
||||
]}
|
||||
>
|
||||
UIバージョン(本番のみ)
|
||||
</Text>
|
||||
<View style={styles.debugOptionRow}>
|
||||
{[
|
||||
{
|
||||
key: "release" as const,
|
||||
label: "リリース",
|
||||
caption: "安定版",
|
||||
},
|
||||
{
|
||||
key: "beta" as const,
|
||||
label: "ベータ",
|
||||
caption: "夜間ビルド",
|
||||
},
|
||||
].map((option) => {
|
||||
const selected = jrDataSystemUiVariant === option.key;
|
||||
const disabled = jrDataSystemTrack === "experimental";
|
||||
return (
|
||||
<TouchableOpacity
|
||||
key={option.key}
|
||||
style={[
|
||||
styles.debugOptionButton,
|
||||
{
|
||||
opacity: disabled ? 0.45 : 1,
|
||||
backgroundColor: selected
|
||||
? fixed.primary
|
||||
: colors.backgroundTertiary,
|
||||
borderColor: selected
|
||||
? fixed.primary
|
||||
: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
onPress={() => {
|
||||
if (disabled) return;
|
||||
handleSelectJrDataSystemUiVariant(option.key);
|
||||
}}
|
||||
activeOpacity={0.8}
|
||||
>
|
||||
<Text
|
||||
style={[
|
||||
styles.debugOptionTitle,
|
||||
{
|
||||
color: selected
|
||||
? fixed.textOnPrimary
|
||||
: colors.textPrimary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{option.label}
|
||||
</Text>
|
||||
<Text
|
||||
style={[
|
||||
styles.debugOptionCaption,
|
||||
{
|
||||
color: selected
|
||||
? fixed.textOnPrimary
|
||||
: colors.textTertiary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
{option.caption}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
<Text
|
||||
style={[
|
||||
styles.debugCurrentText,
|
||||
{ color: colors.textTertiary },
|
||||
]}
|
||||
>
|
||||
現在の接続先:{" "}
|
||||
{
|
||||
JR_DATA_SYSTEM_ENV_OPTIONS.find(
|
||||
(option) => option.key === jrDataSystemEnv,
|
||||
)?.baseUrl
|
||||
}
|
||||
</Text>
|
||||
</View>
|
||||
)}
|
||||
</ScrollView>
|
||||
</>
|
||||
)}
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -24,23 +24,49 @@ export const LayoutSettings = ({
|
||||
setTrainPosition,
|
||||
headerSize,
|
||||
setHeaderSize,
|
||||
allowHubIcon = false,
|
||||
}) => {
|
||||
const { goBack } = useNavigation() as any;
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const visibleIconSetting =
|
||||
allowHubIcon || iconSetting !== "hub" ? iconSetting : "original";
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary }}>
|
||||
<SheetHeaderItem title="レイアウト設定" LeftItem={{ title: "< 設定", onPress: goBack }} />
|
||||
<ScrollView style={{ flex: 1, backgroundColor: colors.background }}>
|
||||
<View style={{ flex: 1 }}>
|
||||
<SwitchArea
|
||||
str="列車アイコン表示"
|
||||
bool={iconSetting}
|
||||
setBool={setIconSetting}
|
||||
falseImage={require("../../assets/configuration/icon_default.jpg")}
|
||||
trueImage={require("../../assets/configuration/icon_original.jpg")}
|
||||
falseText={"本家\n(文字アイコン)"}
|
||||
trueText={"オリジナル\n(車種アイコン)"}
|
||||
/>
|
||||
<View
|
||||
style={{
|
||||
backgroundColor: "#00000010",
|
||||
borderRadius: 10,
|
||||
margin: 5,
|
||||
}}
|
||||
>
|
||||
<TripleSwitchArea
|
||||
str="列車アイコン表示"
|
||||
bool={visibleIconSetting}
|
||||
setBool={setIconSetting}
|
||||
firstItem={{
|
||||
firstImage: require("../../assets/configuration/icon_default.jpg"),
|
||||
firstText: "本家\n(文字アイコン)",
|
||||
firstValue: "default",
|
||||
}}
|
||||
secondItem={{
|
||||
secondImage: require("../../assets/configuration/icon_original.jpg"),
|
||||
secondText: "オリジナル\n(車種アイコン)",
|
||||
secondValue: "original",
|
||||
}}
|
||||
thirdItem={
|
||||
allowHubIcon
|
||||
? {
|
||||
thirdImage: require("../../assets/relationLogo/unyohub_logo.webp"),
|
||||
thirdText: "鉄道運用Hub\n(Hubアイコン)",
|
||||
thirdValue: "hub",
|
||||
}
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
</View>
|
||||
<SwitchArea
|
||||
str="列車表示"
|
||||
bool={uiSetting}
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
import React from "react";
|
||||
import { View, Text, ScrollView } from "react-native";
|
||||
import { Switch } from "@rneui/themed";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
|
||||
type OperationInfoSettingsProps = {
|
||||
operationLandscapeEnabled: boolean;
|
||||
setOperationLandscapeEnabled: (value: boolean) => void;
|
||||
operationCaptureEnabled: boolean;
|
||||
setOperationCaptureEnabled: (value: boolean) => void;
|
||||
};
|
||||
|
||||
export const OperationInfoSettings = ({
|
||||
operationLandscapeEnabled,
|
||||
setOperationLandscapeEnabled,
|
||||
operationCaptureEnabled,
|
||||
setOperationCaptureEnabled,
|
||||
}: OperationInfoSettingsProps) => {
|
||||
const { goBack } = useNavigation();
|
||||
const { colors, fixed } = useThemeColors();
|
||||
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary }}>
|
||||
<SheetHeaderItem
|
||||
title="運行情報設定(β)"
|
||||
LeftItem={{ title: "< 設定", onPress: goBack }}
|
||||
/>
|
||||
<ScrollView style={{ flex: 1, backgroundColor: colors.background }}>
|
||||
<SettingRow
|
||||
title="横倒し表示機能"
|
||||
description="端末を横向きにしたとき、運行情報ページを見やすく再構成した専用表示を有効にします。"
|
||||
value={operationLandscapeEnabled}
|
||||
onValueChange={setOperationLandscapeEnabled}
|
||||
/>
|
||||
<SettingRow
|
||||
title="スクリーンショット切り出し機能"
|
||||
description="運行情報ページ内に、項目単位・全体単位の切り出しボタンを表示します。"
|
||||
value={operationCaptureEnabled}
|
||||
onValueChange={setOperationCaptureEnabled}
|
||||
/>
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
type SettingRowProps = {
|
||||
title: string;
|
||||
description: string;
|
||||
value: boolean;
|
||||
onValueChange: (value: boolean) => void;
|
||||
};
|
||||
|
||||
const SettingRow = ({ title, description, value, onValueChange }: SettingRowProps) => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
|
||||
return (
|
||||
<View
|
||||
style={{
|
||||
paddingHorizontal: 15,
|
||||
paddingVertical: 14,
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: colors.borderSecondary ?? "#ccc",
|
||||
backgroundColor: colors.surface,
|
||||
gap: 8,
|
||||
}}
|
||||
>
|
||||
<View style={{ flexDirection: "row", alignItems: "center", gap: 12 }}>
|
||||
<View style={{ flex: 1 }}>
|
||||
<Text style={{ fontSize: 16, fontWeight: "600", color: colors.text }}>
|
||||
{title}
|
||||
</Text>
|
||||
<Text style={{ marginTop: 4, fontSize: 13, lineHeight: 19, color: colors.textSecondary }}>
|
||||
{description}
|
||||
</Text>
|
||||
</View>
|
||||
<Switch
|
||||
value={value}
|
||||
onValueChange={onValueChange}
|
||||
color={fixed.primary}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,528 @@
|
||||
import React, { useRef, useState } from "react";
|
||||
import {
|
||||
Alert,
|
||||
ScrollView,
|
||||
StyleSheet,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
View,
|
||||
} from "react-native";
|
||||
import { Switch } from "@rneui/themed";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { MaterialCommunityIcons } from "@expo/vector-icons";
|
||||
import Swipeable from "react-native-gesture-handler/Swipeable";
|
||||
import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import { useNotification } from "@/stateBox/useNotifications";
|
||||
|
||||
export const ResearchToolsSettings = () => {
|
||||
const navigation = useNavigation<any>();
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const { expoPushToken } = useNotification();
|
||||
const {
|
||||
updatePermission,
|
||||
mockApiFeatureEnabled,
|
||||
setMockApiFeatureEnabled,
|
||||
recorderState,
|
||||
recordingSnapshotCount,
|
||||
recordingList,
|
||||
startRecording,
|
||||
stopRecording,
|
||||
startPlayback,
|
||||
stopPlayback,
|
||||
deleteRecording,
|
||||
exportRecordingFile,
|
||||
exportAllRecordingsFile,
|
||||
importRecordingFile,
|
||||
} = useTrainMenu();
|
||||
const showResearchTools = __DEV__ || updatePermission;
|
||||
const recordingSwipeRefs = useRef<Record<string, { close: () => void } | null>>({});
|
||||
const [recordingFileStatus, setRecordingFileStatus] = useState<{
|
||||
type: "info" | "success" | "error";
|
||||
text: string;
|
||||
}>({ type: "info", text: "録画JSONの書き出しと読み込みができます。" });
|
||||
|
||||
const closeRecordingSwipe = (id: string) => {
|
||||
recordingSwipeRefs.current[id]?.close();
|
||||
};
|
||||
|
||||
const confirmDeleteRecording = (id: string, label: string) => {
|
||||
closeRecordingSwipe(id);
|
||||
Alert.alert("録画を削除", `${label} の録画を削除しますか?`, [
|
||||
{ text: "キャンセル", style: "cancel" },
|
||||
{
|
||||
text: "削除",
|
||||
style: "destructive",
|
||||
onPress: () => {
|
||||
void deleteRecording(id);
|
||||
},
|
||||
},
|
||||
]);
|
||||
};
|
||||
|
||||
const setFileStatus = (type: "info" | "success" | "error", text: string) => {
|
||||
setRecordingFileStatus({ type, text });
|
||||
};
|
||||
|
||||
const handleExportRecordingFile = async (id: string, label: string) => {
|
||||
try {
|
||||
await exportRecordingFile(id);
|
||||
setFileStatus("success", `${label} の録画JSONを書き出しました。`);
|
||||
} catch (error) {
|
||||
setFileStatus(
|
||||
"error",
|
||||
`録画JSONを書き出せませんでした: ${(error as Error).message}`,
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
const handleExportAllRecordingsFile = async () => {
|
||||
try {
|
||||
await exportAllRecordingsFile();
|
||||
setFileStatus("success", `${recordingList.length}件の録画JSONを書き出しました。`);
|
||||
} catch (error) {
|
||||
setFileStatus(
|
||||
"error",
|
||||
`録画JSONを書き出せませんでした: ${(error as Error).message}`,
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
const handleImportRecordingFile = async () => {
|
||||
try {
|
||||
const result = await importRecordingFile();
|
||||
if (!result) {
|
||||
setFileStatus("info", "録画JSONの読み込みをキャンセルしました。");
|
||||
return;
|
||||
}
|
||||
setFileStatus(
|
||||
"success",
|
||||
result.overwrittenCount > 0
|
||||
? `${result.importedCount}件を読み込みました。${result.overwrittenCount}件は同じIDのため上書きしました。`
|
||||
: `${result.importedCount}件を読み込みました。`,
|
||||
);
|
||||
} catch (error) {
|
||||
setFileStatus(
|
||||
"error",
|
||||
`録画JSONを読み込めませんでした: ${(error as Error).message}`,
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
const openRecordingDatabase = () => {
|
||||
const uri = `https://experimental.shikoku-railinfo.haruk.in/position-board?from=eachTrainInfo&userID=${encodeURIComponent(expoPushToken || "")}`;
|
||||
const params = {
|
||||
uri,
|
||||
importRecordingDownloads: true,
|
||||
useExitButton: false,
|
||||
};
|
||||
const parentNavigation = navigation.getParent?.();
|
||||
if (parentNavigation) {
|
||||
parentNavigation.navigate("generalWebView", params);
|
||||
return;
|
||||
}
|
||||
navigation.navigate("generalWebView", params);
|
||||
};
|
||||
|
||||
return (
|
||||
<View style={[styles.container, { backgroundColor: fixed.primary }]}>
|
||||
<SheetHeaderItem
|
||||
title="調査ツール"
|
||||
LeftItem={{
|
||||
title: "< 戻る",
|
||||
onPress: () => navigation.goBack(),
|
||||
position: "left",
|
||||
}}
|
||||
/>
|
||||
<ScrollView
|
||||
style={[styles.content, { backgroundColor: colors.backgroundSecondary }]}
|
||||
contentContainerStyle={styles.contentInner}
|
||||
>
|
||||
{!showResearchTools ? (
|
||||
<View
|
||||
style={[
|
||||
styles.debugSection,
|
||||
{
|
||||
backgroundColor: colors.surface,
|
||||
borderColor: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.debugTitle, { color: colors.textPrimary }]}>利用できる調査ツールはありません</Text>
|
||||
<Text style={[styles.debugDescription, { color: colors.textSecondary }]}>このページは開発・管理向けの調査機能を配置しています。</Text>
|
||||
</View>
|
||||
) : (
|
||||
<>
|
||||
<View
|
||||
style={[
|
||||
styles.debugSection,
|
||||
{
|
||||
backgroundColor: colors.surface,
|
||||
borderColor: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.debugTitle, { color: colors.textPrimary }]}>デバッグ: モックAPI検証</Text>
|
||||
<Text style={[styles.debugDescription, { color: colors.textSecondary }]}>公式サイトの代わりにサンプルデータを流し込みます。</Text>
|
||||
<View style={styles.switchRow}>
|
||||
<Text style={[styles.debugCurrentText, { color: colors.textPrimary, fontSize: 14 }]}>モックAPI検証機能</Text>
|
||||
<Switch
|
||||
value={mockApiFeatureEnabled}
|
||||
onValueChange={setMockApiFeatureEnabled}
|
||||
color={fixed.primary}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
<View
|
||||
style={[
|
||||
styles.debugSection,
|
||||
{
|
||||
backgroundColor: colors.surface,
|
||||
borderColor: colors.borderSecondary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
<Text style={[styles.debugTitle, { color: colors.textPrimary }]}>デバッグ: 走行位置録画</Text>
|
||||
<Text style={[styles.debugDescription, { color: colors.textSecondary }]}>ライブデータを録画してモックとして再生します。録画中はモックOFFになります。</Text>
|
||||
|
||||
<View style={styles.statusRow}>
|
||||
<View
|
||||
style={{
|
||||
width: 10,
|
||||
height: 10,
|
||||
borderRadius: 5,
|
||||
backgroundColor:
|
||||
recorderState === "recording"
|
||||
? "#e53935"
|
||||
: recorderState === "playing"
|
||||
? "#43a047"
|
||||
: colors.borderSecondary,
|
||||
}}
|
||||
/>
|
||||
<Text style={[styles.debugCurrentText, { color: colors.textSecondary, fontSize: 13 }]}>
|
||||
{recorderState === "recording"
|
||||
? `録画中… ${recordingSnapshotCount} スナップショット`
|
||||
: recorderState === "playing"
|
||||
? "再生中"
|
||||
: `${recordingList.length} 件の録画`}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
<View style={styles.buttonRow}>
|
||||
{recorderState === "idle" && (
|
||||
<TouchableOpacity onPress={startRecording} style={styles.recordButton}>
|
||||
<Text style={styles.primaryButtonText}>● 録画開始</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
{recorderState === "recording" && (
|
||||
<TouchableOpacity onPress={stopRecording} style={[styles.neutralButton, { backgroundColor: colors.borderSecondary }]}>
|
||||
<Text style={[styles.neutralButtonText, { color: colors.textPrimary }]}>■ 録画停止</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
{recorderState === "playing" && (
|
||||
<TouchableOpacity onPress={stopPlayback} style={[styles.neutralButton, { backgroundColor: colors.borderSecondary }]}>
|
||||
<Text style={[styles.neutralButtonText, { color: colors.textPrimary }]}>■ 再生停止</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
</View>
|
||||
|
||||
<View style={[styles.fileBox, { backgroundColor: colors.backgroundTertiary }]}>
|
||||
<Text style={{ color: colors.textPrimary, fontSize: 13, fontWeight: "600" }}>録画JSONファイル</Text>
|
||||
<View style={styles.buttonRow}>
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
void handleImportRecordingFile();
|
||||
}}
|
||||
disabled={recorderState === "recording"}
|
||||
style={{
|
||||
backgroundColor: recorderState === "recording" ? colors.borderSecondary : fixed.primary,
|
||||
borderRadius: 8,
|
||||
paddingHorizontal: 12,
|
||||
paddingVertical: 8,
|
||||
opacity: recorderState === "recording" ? 0.6 : 1,
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: fixed.textOnPrimary, fontWeight: "bold", fontSize: 12 }}>JSONを読み込む</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
void handleExportAllRecordingsFile();
|
||||
}}
|
||||
disabled={recordingList.length === 0 || recorderState === "recording"}
|
||||
style={{
|
||||
backgroundColor:
|
||||
recordingList.length === 0 || recorderState === "recording"
|
||||
? colors.borderSecondary
|
||||
: colors.surface,
|
||||
borderRadius: 8,
|
||||
borderWidth: 1,
|
||||
borderColor: colors.borderSecondary,
|
||||
paddingHorizontal: 12,
|
||||
paddingVertical: 8,
|
||||
opacity: recordingList.length === 0 || recorderState === "recording" ? 0.6 : 1,
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: colors.textPrimary, fontWeight: "bold", fontSize: 12 }}>全件を書き出す</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View
|
||||
style={{
|
||||
borderRadius: 8,
|
||||
paddingHorizontal: 10,
|
||||
paddingVertical: 8,
|
||||
backgroundColor:
|
||||
recordingFileStatus.type === "success"
|
||||
? "#43a04722"
|
||||
: recordingFileStatus.type === "error"
|
||||
? "#e5393522"
|
||||
: colors.surface,
|
||||
borderWidth: 1,
|
||||
borderColor:
|
||||
recordingFileStatus.type === "success"
|
||||
? "#43a04755"
|
||||
: recordingFileStatus.type === "error"
|
||||
? "#e5393555"
|
||||
: colors.borderSecondary,
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: colors.textSecondary, fontSize: 12, lineHeight: 18 }}>{recordingFileStatus.text}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
{recordingList.length > 0 && recorderState !== "recording" && (
|
||||
<View style={styles.recordingList}>
|
||||
{recordingList.map((rec) => {
|
||||
const isPlaying = recorderState === "playing";
|
||||
const durationSec = Math.round(rec.durationMs / 1000);
|
||||
const durationLabel = durationSec >= 60
|
||||
? `${Math.floor(durationSec / 60)}分${durationSec % 60}秒`
|
||||
: `${durationSec}秒`;
|
||||
const dateLabel = new Date(rec.recordedAt).toLocaleString("ja-JP", {
|
||||
month: "numeric",
|
||||
day: "numeric",
|
||||
hour: "2-digit",
|
||||
minute: "2-digit",
|
||||
});
|
||||
const recordingRow = (
|
||||
<TouchableOpacity
|
||||
onPress={() => startPlayback(rec.id)}
|
||||
onLongPress={() => {
|
||||
void handleExportRecordingFile(rec.id, dateLabel);
|
||||
}}
|
||||
disabled={isPlaying}
|
||||
activeOpacity={0.72}
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
backgroundColor: colors.backgroundSecondary,
|
||||
borderRadius: 8,
|
||||
padding: 12,
|
||||
gap: 10,
|
||||
opacity: isPlaying ? 0.6 : 1,
|
||||
}}
|
||||
>
|
||||
<View style={{ flex: 1 }}>
|
||||
<Text style={{ color: colors.textPrimary, fontSize: 13, fontWeight: "bold" }}>{dateLabel}</Text>
|
||||
<Text style={{ color: colors.textSecondary, fontSize: 11 }}>{rec.snapshotCount} コマ / {durationLabel}</Text>
|
||||
</View>
|
||||
<View style={{ alignItems: "flex-end", gap: 4 }}>
|
||||
<View style={styles.playbackHint}>
|
||||
<MaterialCommunityIcons
|
||||
name={isPlaying ? "pause-circle-outline" : "play-circle-outline"}
|
||||
size={18}
|
||||
color={isPlaying ? colors.textTertiary : "#43a047"}
|
||||
/>
|
||||
<Text
|
||||
style={{
|
||||
color: isPlaying ? colors.textTertiary : colors.textPrimary,
|
||||
fontSize: 12,
|
||||
fontWeight: "600",
|
||||
}}
|
||||
>
|
||||
{isPlaying ? "再生中は操作不可" : "タップで再生"}
|
||||
</Text>
|
||||
</View>
|
||||
{!isPlaying && (
|
||||
<Text style={{ color: colors.textTertiary, fontSize: 10 }}>長押しで書き出し / 左へスワイプで削除</Text>
|
||||
)}
|
||||
</View>
|
||||
<MaterialCommunityIcons name="chevron-right" size={18} color={colors.iconSecondary} />
|
||||
</TouchableOpacity>
|
||||
);
|
||||
|
||||
if (isPlaying) {
|
||||
return <View key={rec.id}>{recordingRow}</View>;
|
||||
}
|
||||
|
||||
return (
|
||||
<Swipeable
|
||||
key={rec.id}
|
||||
ref={(instance) => {
|
||||
recordingSwipeRefs.current[rec.id] = instance;
|
||||
}}
|
||||
friction={2}
|
||||
overshootRight={false}
|
||||
rightThreshold={48}
|
||||
renderRightActions={() => (
|
||||
<View style={styles.deleteAction}>
|
||||
<MaterialCommunityIcons name="trash-can-outline" size={18} color="#fff" />
|
||||
<Text style={styles.deleteActionText}>削除</Text>
|
||||
</View>
|
||||
)}
|
||||
onSwipeableOpen={() => confirmDeleteRecording(rec.id, dateLabel)}
|
||||
>
|
||||
{recordingRow}
|
||||
</Swipeable>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
)}
|
||||
|
||||
<TouchableOpacity
|
||||
onPress={openRecordingDatabase}
|
||||
activeOpacity={0.78}
|
||||
style={[
|
||||
styles.databaseButton,
|
||||
{
|
||||
backgroundColor: fixed.primary,
|
||||
borderColor: fixed.primary,
|
||||
},
|
||||
]}
|
||||
>
|
||||
<MaterialCommunityIcons
|
||||
name="database-search-outline"
|
||||
size={18}
|
||||
color={fixed.textOnPrimary}
|
||||
/>
|
||||
<Text style={[styles.databaseButtonText, { color: fixed.textOnPrimary }]}>
|
||||
全録データベースを参照
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
|
||||
</View>
|
||||
</>
|
||||
)}
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
container: {
|
||||
flex: 1,
|
||||
backgroundColor: "#0099CC",
|
||||
},
|
||||
content: {
|
||||
flex: 1,
|
||||
backgroundColor: "#f8f8fc",
|
||||
},
|
||||
contentInner: {
|
||||
paddingHorizontal: 14,
|
||||
paddingBottom: 40,
|
||||
paddingTop: 20,
|
||||
gap: 12,
|
||||
},
|
||||
debugSection: {
|
||||
borderRadius: 12,
|
||||
borderWidth: 1,
|
||||
padding: 14,
|
||||
gap: 10,
|
||||
},
|
||||
debugTitle: {
|
||||
fontSize: 15,
|
||||
fontWeight: "bold",
|
||||
},
|
||||
debugDescription: {
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
},
|
||||
debugCurrentText: {
|
||||
fontSize: 11,
|
||||
lineHeight: 16,
|
||||
},
|
||||
switchRow: {
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
justifyContent: "space-between",
|
||||
marginTop: 8,
|
||||
},
|
||||
statusRow: {
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
marginTop: 8,
|
||||
gap: 8,
|
||||
},
|
||||
buttonRow: {
|
||||
flexDirection: "row",
|
||||
gap: 8,
|
||||
marginTop: 10,
|
||||
flexWrap: "wrap",
|
||||
},
|
||||
recordButton: {
|
||||
backgroundColor: "#e53935",
|
||||
borderRadius: 8,
|
||||
paddingHorizontal: 14,
|
||||
paddingVertical: 8,
|
||||
},
|
||||
neutralButton: {
|
||||
borderRadius: 8,
|
||||
paddingHorizontal: 14,
|
||||
paddingVertical: 8,
|
||||
},
|
||||
primaryButtonText: {
|
||||
color: "#fff",
|
||||
fontWeight: "bold",
|
||||
fontSize: 13,
|
||||
},
|
||||
neutralButtonText: {
|
||||
fontWeight: "bold",
|
||||
fontSize: 13,
|
||||
},
|
||||
fileBox: {
|
||||
marginTop: 4,
|
||||
gap: 8,
|
||||
borderRadius: 8,
|
||||
padding: 10,
|
||||
},
|
||||
recordingList: {
|
||||
marginTop: 10,
|
||||
gap: 6,
|
||||
},
|
||||
playbackHint: {
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
gap: 4,
|
||||
},
|
||||
deleteAction: {
|
||||
width: 96,
|
||||
borderRadius: 8,
|
||||
backgroundColor: "#e53935",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
marginLeft: 6,
|
||||
},
|
||||
deleteActionText: {
|
||||
color: "#fff",
|
||||
fontSize: 11,
|
||||
fontWeight: "bold",
|
||||
marginTop: 4,
|
||||
},
|
||||
databaseButton: {
|
||||
minHeight: 46,
|
||||
borderRadius: 10,
|
||||
borderWidth: 1,
|
||||
paddingHorizontal: 14,
|
||||
paddingVertical: 12,
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
gap: 8,
|
||||
marginTop: 4,
|
||||
},
|
||||
databaseButtonText: {
|
||||
fontSize: 14,
|
||||
fontWeight: "bold",
|
||||
},
|
||||
});
|
||||
@@ -16,8 +16,9 @@ import { SwitchArea } from "../atom/SwitchArea";
|
||||
import { useNotification } from "../../stateBox/useNotifications";
|
||||
import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem";
|
||||
import { useThemeColors, type ColorThemePref } from "@/lib/theme/useThemeColors";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
|
||||
const versionCode = "7.0.2"; // Update this version code as needed
|
||||
const versionCode = "7.1";
|
||||
|
||||
export const SettingTopPage = ({
|
||||
testNFC,
|
||||
@@ -29,6 +30,8 @@ export const SettingTopPage = ({
|
||||
const { expoPushToken } = useNotification();
|
||||
const { colors, fixed, colorTheme, setColorTheme } = useThemeColors();
|
||||
const navigation = useNavigation<any>();
|
||||
const { updatePermission } = useTrainMenu();
|
||||
const showResearchTools = __DEV__ || updatePermission;
|
||||
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary }}>
|
||||
@@ -118,6 +121,12 @@ export const SettingTopPage = ({
|
||||
navigation.navigate("setting", { screen: "SoundSettings" })
|
||||
}
|
||||
/>
|
||||
<SettingList
|
||||
string="運行情報設定(β)"
|
||||
onPress={() =>
|
||||
navigation.navigate("setting", { screen: "OperationInfoSettings" })
|
||||
}
|
||||
/>
|
||||
|
||||
<SectionHeader title="通知・データ" />
|
||||
<SettingList
|
||||
@@ -135,6 +144,14 @@ export const SettingTopPage = ({
|
||||
navigation.navigate("setting", { screen: "DataSourceSettings" })
|
||||
}
|
||||
/>
|
||||
{showResearchTools && (
|
||||
<SettingList
|
||||
string="調査ツール"
|
||||
onPress={() =>
|
||||
navigation.navigate("setting", { screen: "ResearchToolsSettings" })
|
||||
}
|
||||
/>
|
||||
)}
|
||||
|
||||
<SectionHeader title="その他" />
|
||||
<SettingList
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
import React, { useCallback, useEffect, useState } from "react";
|
||||
import { View, Text, ScrollView, Platform } from "react-native";
|
||||
import {
|
||||
View,
|
||||
Text,
|
||||
ScrollView,
|
||||
Platform,
|
||||
TouchableOpacity,
|
||||
} from "react-native";
|
||||
import { Switch } from "@rneui/themed";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { SheetHeaderItem } from "@/components/atom/SheetHeaderItem";
|
||||
@@ -9,13 +15,26 @@ import { useThemeColors } from "@/lib/theme";
|
||||
import { Asset } from "expo-asset";
|
||||
import { useAudioPlayer, setAudioModeAsync } from "expo-audio";
|
||||
import type { AudioSource } from "expo-audio";
|
||||
import {
|
||||
DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE,
|
||||
type BackgroundRikkaTriggerSource,
|
||||
} from "@/lib/backgroundRikkaAnnouncements";
|
||||
import { VoicepeakDebugLogSection } from "@/components/Settings/VoicepeakDebugLogSection";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
|
||||
const previewSound = require("../../assets/sound/rikka-test.mp3");
|
||||
|
||||
export const SoundSettings = () => {
|
||||
const { goBack } = useNavigation();
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const { restrictedSoundPermission } = useTrainMenu();
|
||||
const [delayAnnouncement, setDelayAnnouncement] = useState(false);
|
||||
const [voicepeakEnabled, setVoicepeakEnabled] = useState(false);
|
||||
const [backgroundRikkaEnabled, setBackgroundRikkaEnabled] = useState(false);
|
||||
const [backgroundRikkaSource, setBackgroundRikkaSource] =
|
||||
useState<BackgroundRikkaTriggerSource>(
|
||||
DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE
|
||||
);
|
||||
|
||||
// expo-asset でローカルパスを取得し、expo-audio に渡す
|
||||
const [resolvedSource, setResolvedSource] = useState<AudioSource>(null);
|
||||
@@ -54,11 +73,34 @@ export const SoundSettings = () => {
|
||||
const previewPlayer = useAudioPlayer(resolvedSource);
|
||||
|
||||
useEffect(() => {
|
||||
AS.getItem(STORAGE_KEYS.SOUND_DELAY_ANNOUNCEMENT)
|
||||
.then((v) => setDelayAnnouncement(v === true || v === "true"))
|
||||
.catch(() => {
|
||||
// 未設定時はデフォルト値 false のまま
|
||||
});
|
||||
Promise.all([
|
||||
AS.getItem(STORAGE_KEYS.SOUND_DELAY_ANNOUNCEMENT).catch(() => "false"),
|
||||
AS.getItem(STORAGE_KEYS.VOICEPEAK_ENABLED).catch(() => "false"),
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_ANNOUNCEMENT).catch(
|
||||
() => "false"
|
||||
),
|
||||
AS.getItem(STORAGE_KEYS.BACKGROUND_RIKKA_TRIGGER_SOURCE).catch(
|
||||
() => DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE
|
||||
),
|
||||
]).then(
|
||||
([
|
||||
delayValue,
|
||||
enabledValue,
|
||||
backgroundRikkaValue,
|
||||
backgroundRikkaSourceValue,
|
||||
]) => {
|
||||
setDelayAnnouncement(delayValue === true || delayValue === "true");
|
||||
setVoicepeakEnabled(enabledValue === true || enabledValue === "true");
|
||||
setBackgroundRikkaEnabled(
|
||||
backgroundRikkaValue === true || backgroundRikkaValue === "true"
|
||||
);
|
||||
setBackgroundRikkaSource(
|
||||
backgroundRikkaSourceValue === "trainPosition"
|
||||
? "trainPosition"
|
||||
: DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE
|
||||
);
|
||||
}
|
||||
);
|
||||
}, []);
|
||||
|
||||
const playPreview = useCallback(async () => {
|
||||
@@ -85,6 +127,26 @@ export const SoundSettings = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const handleVoicepeakToggle = (value: boolean) => {
|
||||
setVoicepeakEnabled(value);
|
||||
AS.setItem(STORAGE_KEYS.VOICEPEAK_ENABLED, value.toString());
|
||||
};
|
||||
|
||||
const handleBackgroundRikkaToggle = (value: boolean) => {
|
||||
setBackgroundRikkaEnabled(value);
|
||||
AS.setItem(
|
||||
STORAGE_KEYS.BACKGROUND_RIKKA_ANNOUNCEMENT,
|
||||
value.toString()
|
||||
);
|
||||
};
|
||||
|
||||
const handleBackgroundRikkaSource = (
|
||||
value: BackgroundRikkaTriggerSource
|
||||
) => {
|
||||
setBackgroundRikkaSource(value);
|
||||
AS.setItem(STORAGE_KEYS.BACKGROUND_RIKKA_TRIGGER_SOURCE, value);
|
||||
};
|
||||
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary }}>
|
||||
<SheetHeaderItem
|
||||
@@ -112,6 +174,153 @@ export const SoundSettings = () => {
|
||||
color={fixed.primary}
|
||||
/>
|
||||
</View>
|
||||
|
||||
{restrictedSoundPermission && (
|
||||
<View
|
||||
style={{
|
||||
paddingHorizontal: 15,
|
||||
paddingTop: 18,
|
||||
paddingBottom: 10,
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: colors.borderSecondary ?? "#ccc",
|
||||
backgroundColor: colors.surface,
|
||||
}}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
marginBottom: 12,
|
||||
}}
|
||||
>
|
||||
<Text style={{ flex: 1, fontSize: 16, color: colors.text }}>
|
||||
Voicepeak 発車案内
|
||||
</Text>
|
||||
<Switch
|
||||
value={voicepeakEnabled}
|
||||
onValueChange={handleVoicepeakToggle}
|
||||
color={fixed.primary}
|
||||
/>
|
||||
</View>
|
||||
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
color: colors.textSecondary ?? colors.text,
|
||||
marginBottom: 8,
|
||||
}}
|
||||
>
|
||||
トップメニューの最寄り駅・お気に入り駅で表示中の LED に合わせて、
|
||||
発車時刻 2 分 30 秒前と 30 秒前に Voicepeak API
|
||||
の案内音声を再生します。
|
||||
</Text>
|
||||
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
marginBottom: 8,
|
||||
}}
|
||||
>
|
||||
<View style={{ flex: 1, paddingRight: 12 }}>
|
||||
<Text style={{ fontSize: 15, color: colors.text }}>
|
||||
バックグラウンド駅接近案内
|
||||
</Text>
|
||||
<Text
|
||||
style={{
|
||||
marginTop: 4,
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
color: colors.textSecondary ?? colors.text,
|
||||
}}
|
||||
>
|
||||
列車追従中、端末が次の停車駅へ近づくと、他のアプリ使用中や
|
||||
画面ロック中でも「次は、○○です。」と通知します。
|
||||
</Text>
|
||||
</View>
|
||||
<Switch
|
||||
value={backgroundRikkaEnabled}
|
||||
onValueChange={handleBackgroundRikkaToggle}
|
||||
disabled={!voicepeakEnabled}
|
||||
color={fixed.primary}
|
||||
/>
|
||||
</View>
|
||||
|
||||
{backgroundRikkaEnabled && (
|
||||
<View style={{ gap: 8, paddingBottom: 14 }}>
|
||||
<Text style={{ fontSize: 13, color: colors.text }}>
|
||||
次駅の判定方式
|
||||
</Text>
|
||||
<View style={{ flexDirection: "row", gap: 8 }}>
|
||||
{(
|
||||
[
|
||||
["deviceLocation", "端末の駅接近"],
|
||||
["trainPosition", "列車走行位置"],
|
||||
] as const
|
||||
).map(([value, label]) => {
|
||||
const selected = backgroundRikkaSource === value;
|
||||
return (
|
||||
<TouchableOpacity
|
||||
key={value}
|
||||
accessibilityRole="button"
|
||||
accessibilityState={{ selected }}
|
||||
onPress={() => handleBackgroundRikkaSource(value)}
|
||||
style={{
|
||||
flex: 1,
|
||||
paddingHorizontal: 10,
|
||||
paddingVertical: 10,
|
||||
borderWidth: 1,
|
||||
borderColor: selected
|
||||
? fixed.primary
|
||||
: colors.borderSecondary ?? "#aaa",
|
||||
borderRadius: 10,
|
||||
backgroundColor: selected
|
||||
? fixed.primary
|
||||
: colors.background,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
textAlign: "center",
|
||||
fontSize: 13,
|
||||
fontWeight: selected ? "700" : "400",
|
||||
color: selected ? "#fff" : colors.text,
|
||||
}}
|
||||
>
|
||||
{label}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
);
|
||||
})}
|
||||
</View>
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
color: colors.textSecondary ?? colors.text,
|
||||
}}
|
||||
>
|
||||
{backgroundRikkaSource === "deviceLocation"
|
||||
? "実利用向け。iOSが端末の駅接近を検知するため、アプリ停止中も通知できます。"
|
||||
: "検証向け。列車走行位置から次駅が変わった時に通知します。モック走行にも対応しますが、アプリ停止後の監視にはサーバープッシュが必要です。"}
|
||||
</Text>
|
||||
</View>
|
||||
)}
|
||||
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
color: colors.textSecondary ?? colors.text,
|
||||
paddingBottom: 8,
|
||||
}}
|
||||
>
|
||||
音声はアプリ専用の公開APIから取得します。話者は小春六花に固定され、API設定やトークンの入力は不要です。
|
||||
</Text>
|
||||
</View>
|
||||
)}
|
||||
{restrictedSoundPermission && <VoicepeakDebugLogSection />}
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
|
||||
@@ -0,0 +1,214 @@
|
||||
import React, { useCallback, useEffect, useRef, useState } from "react";
|
||||
import { Alert, Text, TouchableOpacity, View } from "react-native";
|
||||
import { setAudioModeAsync, useAudioPlayer } from "expo-audio";
|
||||
import { WebView } from "react-native-webview";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import {
|
||||
requestVoicepeakSpeechBytes,
|
||||
VoicepeakRequestError,
|
||||
} from "@/lib/voicepeak";
|
||||
import {
|
||||
createVoicepeakAudioSource,
|
||||
type PreparedVoicepeakAudio,
|
||||
} from "@/lib/voicepeakAudioSource";
|
||||
import type { VoicepeakDebugLogEntry } from "@/lib/voicepeakDebugLog";
|
||||
|
||||
type DebugAudioAction = "fetch" | "force";
|
||||
|
||||
export const VoicepeakDebugAudioActions = ({
|
||||
log,
|
||||
onComplete,
|
||||
}: {
|
||||
log: VoicepeakDebugLogEntry;
|
||||
onComplete?: () => void | Promise<void>;
|
||||
}) => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const player = useAudioPlayer(null);
|
||||
const [activeAction, setActiveAction] = useState<DebugAudioAction | null>(
|
||||
null,
|
||||
);
|
||||
const [nativeAudio, setNativeAudio] = useState<{
|
||||
html: string;
|
||||
key: number;
|
||||
} | null>(null);
|
||||
const requestControllerRef = useRef<AbortController | null>(null);
|
||||
const cleanupAudioRef = useRef<(() => void) | undefined>(undefined);
|
||||
|
||||
const stopCurrentAudio = useCallback(() => {
|
||||
try {
|
||||
player.pause();
|
||||
} catch {
|
||||
// Player may not have a source yet.
|
||||
}
|
||||
setNativeAudio(null);
|
||||
cleanupAudioRef.current?.();
|
||||
cleanupAudioRef.current = undefined;
|
||||
}, [player]);
|
||||
|
||||
useEffect(
|
||||
() => () => {
|
||||
requestControllerRef.current?.abort();
|
||||
stopCurrentAudio();
|
||||
},
|
||||
[log.id, stopCurrentAudio],
|
||||
);
|
||||
|
||||
const playAudio = useCallback(
|
||||
async (audio: PreparedVoicepeakAudio) => {
|
||||
stopCurrentAudio();
|
||||
cleanupAudioRef.current =
|
||||
audio.kind === "expo-audio" ? audio.cleanup : undefined;
|
||||
|
||||
await setAudioModeAsync({
|
||||
playsInSilentMode: true,
|
||||
shouldPlayInBackground: false,
|
||||
interruptionMode: "duckOthers",
|
||||
});
|
||||
|
||||
if (audio.kind === "native-webview") {
|
||||
setNativeAudio({ html: audio.html, key: Date.now() });
|
||||
return;
|
||||
}
|
||||
|
||||
player.replace(audio.source);
|
||||
player.volume = 1;
|
||||
await player.seekTo(0);
|
||||
player.play();
|
||||
},
|
||||
[player, stopCurrentAudio],
|
||||
);
|
||||
|
||||
const runAction = useCallback(
|
||||
async (force: boolean) => {
|
||||
if (activeAction) return;
|
||||
|
||||
const action: DebugAudioAction = force ? "force" : "fetch";
|
||||
const controller = new AbortController();
|
||||
requestControllerRef.current = controller;
|
||||
setActiveAction(action);
|
||||
|
||||
try {
|
||||
const bytes = await requestVoicepeakSpeechBytes({
|
||||
text: log.text,
|
||||
settings: { enabled: true },
|
||||
signal: controller.signal,
|
||||
format: log.format,
|
||||
force,
|
||||
});
|
||||
if (controller.signal.aborted) return;
|
||||
|
||||
const audio = await createVoicepeakAudioSource(bytes, log.format);
|
||||
if (controller.signal.aborted) {
|
||||
if (audio.kind === "expo-audio") audio.cleanup?.();
|
||||
return;
|
||||
}
|
||||
|
||||
await playAudio(audio);
|
||||
await onComplete?.();
|
||||
} catch (error) {
|
||||
const aborted =
|
||||
controller.signal.aborted ||
|
||||
(error instanceof VoicepeakRequestError && error.code === "ABORTED");
|
||||
if (!aborted) {
|
||||
const message =
|
||||
error instanceof VoicepeakRequestError
|
||||
? `${error.message}\n\nHTTP: ${error.status || "-"}\nCode: ${
|
||||
error.code
|
||||
}\nRequest ID: ${error.requestId || "-"}`
|
||||
: error instanceof Error
|
||||
? error.message
|
||||
: String(error);
|
||||
Alert.alert(
|
||||
force ? "音声の再作成に失敗しました" : "音声の取得に失敗しました",
|
||||
message,
|
||||
);
|
||||
}
|
||||
} finally {
|
||||
if (requestControllerRef.current === controller) {
|
||||
requestControllerRef.current = null;
|
||||
}
|
||||
setActiveAction(null);
|
||||
}
|
||||
},
|
||||
[activeAction, log.format, log.text, onComplete, playAudio],
|
||||
);
|
||||
|
||||
const disabled = activeAction !== null;
|
||||
const borderColor = colors.borderSecondary ?? "#ccc";
|
||||
|
||||
return (
|
||||
<View style={{ marginTop: 14 }}>
|
||||
<Text
|
||||
style={{
|
||||
marginBottom: 8,
|
||||
color: colors.textSecondary ?? colors.text,
|
||||
fontSize: 12,
|
||||
lineHeight: 17,
|
||||
}}
|
||||
>
|
||||
取得・再生は現在のキャッシュを利用します。再作成はキャッシュを使わず新しい音声を生成します。
|
||||
</Text>
|
||||
<View style={{ flexDirection: "row", gap: 8 }}>
|
||||
<TouchableOpacity
|
||||
accessibilityRole="button"
|
||||
disabled={disabled}
|
||||
onPress={() => void runAction(false)}
|
||||
style={{
|
||||
flex: 1,
|
||||
paddingVertical: 11,
|
||||
borderRadius: 8,
|
||||
borderWidth: 1,
|
||||
borderColor: fixed.primary,
|
||||
opacity: disabled ? 0.55 : 1,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
color: fixed.primary,
|
||||
textAlign: "center",
|
||||
fontWeight: "600",
|
||||
}}
|
||||
>
|
||||
{activeAction === "fetch" ? "取得中…" : "取得・再生"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
accessibilityRole="button"
|
||||
disabled={disabled}
|
||||
onPress={() => void runAction(true)}
|
||||
style={{
|
||||
flex: 1,
|
||||
paddingVertical: 11,
|
||||
borderRadius: 8,
|
||||
backgroundColor: disabled ? borderColor : fixed.primary,
|
||||
opacity: disabled ? 0.55 : 1,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{ color: "#fff", textAlign: "center", fontWeight: "600" }}
|
||||
>
|
||||
{activeAction === "force" ? "再作成中…" : "再作成して再生"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
{nativeAudio && (
|
||||
<WebView
|
||||
key={nativeAudio.key}
|
||||
source={{ html: nativeAudio.html }}
|
||||
originWhitelist={["*"]}
|
||||
javaScriptEnabled
|
||||
scrollEnabled={false}
|
||||
mediaPlaybackRequiresUserAction={false}
|
||||
allowsInlineMediaPlayback
|
||||
onMessage={() => setNativeAudio(null)}
|
||||
style={{
|
||||
position: "absolute",
|
||||
width: 1,
|
||||
height: 1,
|
||||
opacity: 0,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,373 @@
|
||||
import React, { useCallback, useState } from "react";
|
||||
import {
|
||||
Alert,
|
||||
Modal,
|
||||
Pressable,
|
||||
ScrollView,
|
||||
Text,
|
||||
TouchableOpacity,
|
||||
View,
|
||||
} from "react-native";
|
||||
import * as Clipboard from "expo-clipboard";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import {
|
||||
clearVoicepeakDebugLogs,
|
||||
getVoicepeakDebugLogs,
|
||||
type VoicepeakDebugLogEntry,
|
||||
} from "@/lib/voicepeakDebugLog";
|
||||
import { VoicepeakDebugAudioActions } from "@/components/Settings/VoicepeakDebugAudioActions";
|
||||
|
||||
const formatDebugLog = (log: VoicepeakDebugLogEntry) =>
|
||||
JSON.stringify(log, null, 2);
|
||||
|
||||
const formatAllDebugLogs = (logs: VoicepeakDebugLogEntry[]) =>
|
||||
JSON.stringify(
|
||||
{
|
||||
exportedAt: new Date().toISOString(),
|
||||
retentionDays: 7,
|
||||
count: logs.length,
|
||||
logs,
|
||||
},
|
||||
null,
|
||||
2,
|
||||
);
|
||||
|
||||
export const VoicepeakDebugLogSection = () => {
|
||||
const { colors, fixed } = useThemeColors();
|
||||
const [logs, setLogs] = useState<VoicepeakDebugLogEntry[]>([]);
|
||||
const [selectedLog, setSelectedLog] = useState<VoicepeakDebugLogEntry | null>(
|
||||
null,
|
||||
);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [copied, setCopied] = useState(false);
|
||||
const [expanded, setExpanded] = useState(false);
|
||||
|
||||
const refresh = useCallback(async () => {
|
||||
setLoading(true);
|
||||
try {
|
||||
setLogs(await getVoicepeakDebugLogs());
|
||||
} catch (error) {
|
||||
console.warn("Failed to load Voicepeak debug logs", error);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, []);
|
||||
|
||||
const toggleExpanded = useCallback(() => {
|
||||
setExpanded((current) => {
|
||||
const next = !current;
|
||||
if (next) void refresh();
|
||||
return next;
|
||||
});
|
||||
}, [refresh]);
|
||||
|
||||
const copyText = useCallback(async (text: string) => {
|
||||
await Clipboard.setStringAsync(text);
|
||||
setCopied(true);
|
||||
setTimeout(() => setCopied(false), 1500);
|
||||
}, []);
|
||||
|
||||
const clearLogs = useCallback(() => {
|
||||
Alert.alert(
|
||||
"音声作成ログを削除",
|
||||
"端末に保存されたVoicepeakデバッグ履歴をすべて削除します。",
|
||||
[
|
||||
{ text: "キャンセル", style: "cancel" },
|
||||
{
|
||||
text: "削除",
|
||||
style: "destructive",
|
||||
onPress: () => {
|
||||
void clearVoicepeakDebugLogs().then(() => {
|
||||
setLogs([]);
|
||||
setSelectedLog(null);
|
||||
});
|
||||
},
|
||||
},
|
||||
],
|
||||
);
|
||||
}, []);
|
||||
|
||||
const borderColor = colors.borderSecondary ?? "#ccc";
|
||||
const secondaryText = colors.textSecondary ?? colors.text;
|
||||
|
||||
return (
|
||||
<View
|
||||
style={{
|
||||
paddingHorizontal: 15,
|
||||
paddingVertical: 18,
|
||||
borderBottomWidth: 1,
|
||||
borderBottomColor: borderColor,
|
||||
backgroundColor: colors.surface,
|
||||
}}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
marginBottom: expanded ? 8 : 0,
|
||||
}}
|
||||
>
|
||||
<TouchableOpacity
|
||||
accessibilityRole="button"
|
||||
accessibilityState={{ expanded }}
|
||||
onPress={toggleExpanded}
|
||||
style={{
|
||||
flex: 1,
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
paddingVertical: 2,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
flex: 1,
|
||||
fontSize: 16,
|
||||
fontWeight: "600",
|
||||
color: colors.text,
|
||||
}}
|
||||
>
|
||||
Voicepeak デバッグログ
|
||||
{expanded ? `(${logs.length}件)` : ""}
|
||||
</Text>
|
||||
<Text style={{ color: fixed.primary, padding: 8 }}>
|
||||
{expanded ? "閉じる ▲" : "表示する ▼"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
{expanded && (
|
||||
<TouchableOpacity onPress={() => void refresh()}>
|
||||
<Text style={{ color: fixed.primary, padding: 8 }}>
|
||||
{loading ? "読込中" : "更新"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
)}
|
||||
</View>
|
||||
|
||||
{expanded && (
|
||||
<>
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
color: secondaryText,
|
||||
marginBottom: 12,
|
||||
}}
|
||||
>
|
||||
音声作成APIへ送信したテキスト、HTTP結果、処理時間、応答サイズを端末内に保存します。
|
||||
APIトークンは保存しません。履歴は7日後に自動削除されます。
|
||||
</Text>
|
||||
|
||||
<View style={{ flexDirection: "row", gap: 8, marginBottom: 12 }}>
|
||||
<TouchableOpacity
|
||||
disabled={logs.length === 0}
|
||||
onPress={() => void copyText(formatAllDebugLogs(logs))}
|
||||
style={{
|
||||
flex: 1,
|
||||
paddingVertical: 10,
|
||||
borderRadius: 8,
|
||||
backgroundColor: logs.length > 0 ? fixed.primary : borderColor,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
color: "#fff",
|
||||
textAlign: "center",
|
||||
fontWeight: "600",
|
||||
}}
|
||||
>
|
||||
{copied ? "コピーしました" : "全履歴をコピー"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
disabled={logs.length === 0}
|
||||
onPress={clearLogs}
|
||||
style={{
|
||||
paddingHorizontal: 16,
|
||||
paddingVertical: 10,
|
||||
borderRadius: 8,
|
||||
borderWidth: 1,
|
||||
borderColor,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{ color: logs.length > 0 ? "#d32f2f" : secondaryText }}
|
||||
>
|
||||
削除
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
|
||||
{logs.length === 0 ? (
|
||||
<Text style={{ color: secondaryText, paddingVertical: 10 }}>
|
||||
保存されたログはありません。
|
||||
</Text>
|
||||
) : (
|
||||
logs.slice(0, 200).map((log) => {
|
||||
const statusColor =
|
||||
log.status === "success"
|
||||
? "#2e7d32"
|
||||
: log.status === "error"
|
||||
? "#d32f2f"
|
||||
: "#ed6c02";
|
||||
return (
|
||||
<TouchableOpacity
|
||||
key={log.id}
|
||||
onPress={() => setSelectedLog(log)}
|
||||
style={{
|
||||
paddingVertical: 11,
|
||||
borderTopWidth: 1,
|
||||
borderTopColor: borderColor,
|
||||
}}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
alignItems: "center",
|
||||
marginBottom: 5,
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: statusColor, fontWeight: "700" }}>
|
||||
{log.status === "success"
|
||||
? "成功"
|
||||
: log.status === "error"
|
||||
? "失敗"
|
||||
: "処理中"}
|
||||
</Text>
|
||||
<Text
|
||||
style={{
|
||||
flex: 1,
|
||||
textAlign: "right",
|
||||
color: secondaryText,
|
||||
fontSize: 12,
|
||||
}}
|
||||
>
|
||||
{new Date(log.createdAt).toLocaleString("ja-JP")}
|
||||
</Text>
|
||||
</View>
|
||||
<Text
|
||||
numberOfLines={2}
|
||||
style={{ color: colors.text, fontSize: 13, lineHeight: 18 }}
|
||||
>
|
||||
{log.text}
|
||||
</Text>
|
||||
<Text
|
||||
style={{
|
||||
color: secondaryText,
|
||||
fontSize: 11,
|
||||
marginTop: 5,
|
||||
}}
|
||||
>
|
||||
{log.codePointCount ?? Array.from(log.text).length}文字
|
||||
{log.chunkIndex && log.totalChunks
|
||||
? ` ・ 分割 ${log.chunkIndex}/${log.totalChunks}`
|
||||
: ""}
|
||||
{log.attemptNumber ? ` ・ 試行 ${log.attemptNumber}` : ""}
|
||||
{typeof log.httpStatus === "number"
|
||||
? ` ・ HTTP ${log.httpStatus}`
|
||||
: ""}
|
||||
{log.errorCode ? ` ・ ${log.errorCode}` : ""}
|
||||
{log.cacheStatus ? ` ・ ${log.cacheStatus}` : ""}
|
||||
{typeof log.durationMilliseconds === "number"
|
||||
? ` ・ ${log.durationMilliseconds}ms`
|
||||
: ""}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
);
|
||||
})
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
|
||||
<Modal
|
||||
visible={selectedLog !== null}
|
||||
transparent
|
||||
animationType="fade"
|
||||
onRequestClose={() => setSelectedLog(null)}
|
||||
>
|
||||
<Pressable
|
||||
onPress={() => setSelectedLog(null)}
|
||||
style={{
|
||||
flex: 1,
|
||||
justifyContent: "center",
|
||||
padding: 20,
|
||||
backgroundColor: "rgba(0,0,0,0.55)",
|
||||
}}
|
||||
>
|
||||
<Pressable
|
||||
onPress={(event) => event.stopPropagation()}
|
||||
style={{
|
||||
maxHeight: "85%",
|
||||
padding: 16,
|
||||
borderRadius: 12,
|
||||
backgroundColor: colors.surface,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 17,
|
||||
fontWeight: "700",
|
||||
color: colors.text,
|
||||
marginBottom: 12,
|
||||
}}
|
||||
>
|
||||
Voicepeakログ詳細
|
||||
</Text>
|
||||
{selectedLog && (
|
||||
<VoicepeakDebugAudioActions
|
||||
log={selectedLog}
|
||||
onComplete={refresh}
|
||||
/>
|
||||
)}
|
||||
<ScrollView>
|
||||
<Text
|
||||
selectable
|
||||
style={{
|
||||
color: colors.text,
|
||||
fontSize: 12,
|
||||
lineHeight: 18,
|
||||
fontFamily: "monospace",
|
||||
}}
|
||||
>
|
||||
{selectedLog ? formatDebugLog(selectedLog) : ""}
|
||||
</Text>
|
||||
</ScrollView>
|
||||
<View style={{ flexDirection: "row", gap: 8, marginTop: 14 }}>
|
||||
<TouchableOpacity
|
||||
onPress={() =>
|
||||
selectedLog && void copyText(formatDebugLog(selectedLog))
|
||||
}
|
||||
style={{
|
||||
flex: 1,
|
||||
paddingVertical: 11,
|
||||
borderRadius: 8,
|
||||
backgroundColor: fixed.primary,
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
color: "#fff",
|
||||
textAlign: "center",
|
||||
fontWeight: "600",
|
||||
}}
|
||||
>
|
||||
{copied ? "コピーしました" : "詳細をコピー"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
onPress={() => setSelectedLog(null)}
|
||||
style={{
|
||||
paddingHorizontal: 18,
|
||||
paddingVertical: 11,
|
||||
borderRadius: 8,
|
||||
borderWidth: 1,
|
||||
borderColor,
|
||||
}}
|
||||
>
|
||||
<Text style={{ color: colors.text }}>閉じる</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</Pressable>
|
||||
</Pressable>
|
||||
</Modal>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
@@ -10,7 +10,7 @@ import {
|
||||
ToastAndroid,
|
||||
} from "react-native";
|
||||
import { createStackNavigator } from "@react-navigation/stack";
|
||||
import { TransitionPresets } from "@react-navigation/stack";
|
||||
import { pushTransitionOptions } from "@/lib/stackOption";
|
||||
import * as ExpoFelicaReader from "../../modules/expo-felica-reader/src";
|
||||
import * as Updates from "expo-updates";
|
||||
import { AS } from "../../storageControl";
|
||||
@@ -22,15 +22,36 @@ import { FavoriteSettings } from "./FavoriteSettings";
|
||||
import { NotificationSettings } from "./NotificationSettings";
|
||||
import { LauncherIconSettings } from "./LauncherIconSettings";
|
||||
import { DataSourceSettings } from "./DataSourceSettings";
|
||||
import { ResearchToolsSettings } from "./ResearchToolsSettings";
|
||||
import { FelicaHistoryPage } from "./FelicaHistoryPage";
|
||||
import { SoundSettings } from "./SoundSettings";
|
||||
import { OperationInfoSettings } from "./OperationInfoSettings";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import {
|
||||
normalizeIconDisplayMode,
|
||||
type IconDisplayMode,
|
||||
} from "@/lib/iconDisplayMode";
|
||||
|
||||
const readStoredValue = async <T,>(
|
||||
key: string,
|
||||
fallback: T,
|
||||
mapValue?: (value: any) => T,
|
||||
) => {
|
||||
try {
|
||||
const value = await AS.getItem(key);
|
||||
return mapValue ? mapValue(value) : (value as T);
|
||||
} catch {
|
||||
return fallback;
|
||||
}
|
||||
};
|
||||
|
||||
const Stack = createStackNavigator();
|
||||
export default function Setting(props) {
|
||||
const {
|
||||
navigation: { navigate },
|
||||
} = props;
|
||||
const [iconSetting, setIconSetting] = useState(false);
|
||||
const { updatePermission } = useTrainMenu();
|
||||
const [iconSetting, setIconSetting] = useState<IconDisplayMode>("original");
|
||||
const [mapSwitch, setMapSwitch] = useState(false);
|
||||
const [stationMenu, setStationMenu] = useState(false);
|
||||
const [usePDFView, setUsePDFView] = useState(false);
|
||||
@@ -39,16 +60,54 @@ export default function Setting(props) {
|
||||
const [headerSize, setHeaderSize] = useState("default");
|
||||
const [startPage, setStartPage] = useState(false);
|
||||
const [uiSetting, setUiSetting] = useState("tokyo");
|
||||
const [operationLandscapeEnabled, setOperationLandscapeEnabled] = useState(false);
|
||||
const [operationCaptureEnabled, setOperationCaptureEnabled] = useState(false);
|
||||
useLayoutEffect(() => {
|
||||
AS.getItem(STORAGE_KEYS.ICON_SWITCH).then(setIconSetting);
|
||||
AS.getItem(STORAGE_KEYS.MAP_SWITCH).then(setMapSwitch);
|
||||
AS.getItem(STORAGE_KEYS.STATION_SWITCH).then(setStationMenu);
|
||||
AS.getItem(STORAGE_KEYS.USE_PDF_VIEW).then(setUsePDFView);
|
||||
AS.getItem(STORAGE_KEYS.TRAIN_SWITCH).then(setTrainMenu);
|
||||
AS.getItem(STORAGE_KEYS.TRAIN_POSITION_SWITCH).then(setTrainPosition);
|
||||
AS.getItem(STORAGE_KEYS.HEADER_SIZE).then(setHeaderSize);
|
||||
AS.getItem(STORAGE_KEYS.START_PAGE).then(setStartPage);
|
||||
AS.getItem(STORAGE_KEYS.UI_SETTING).then(setUiSetting);
|
||||
void Promise.all([
|
||||
readStoredValue(STORAGE_KEYS.ICON_SWITCH, "original", normalizeIconDisplayMode),
|
||||
readStoredValue(STORAGE_KEYS.MAP_SWITCH, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.STATION_SWITCH, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.USE_PDF_VIEW, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.TRAIN_SWITCH, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.TRAIN_POSITION_SWITCH, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.HEADER_SIZE, "default"),
|
||||
readStoredValue(STORAGE_KEYS.START_PAGE, false, (value) => value === true || value === "true"),
|
||||
readStoredValue(STORAGE_KEYS.UI_SETTING, "tokyo"),
|
||||
readStoredValue(
|
||||
STORAGE_KEYS.OPERATION_INFO_LANDSCAPE_ENABLED,
|
||||
false,
|
||||
(value) => value === true || value === "true",
|
||||
),
|
||||
readStoredValue(
|
||||
STORAGE_KEYS.OPERATION_INFO_CAPTURE_ENABLED,
|
||||
false,
|
||||
(value) => value === true || value === "true",
|
||||
),
|
||||
]).then(([
|
||||
nextIconSetting,
|
||||
nextMapSwitch,
|
||||
nextStationMenu,
|
||||
nextUsePdfView,
|
||||
nextTrainMenu,
|
||||
nextTrainPosition,
|
||||
nextHeaderSize,
|
||||
nextStartPage,
|
||||
nextUiSetting,
|
||||
nextOperationLandscapeEnabled,
|
||||
nextOperationCaptureEnabled,
|
||||
]) => {
|
||||
setIconSetting(nextIconSetting);
|
||||
setMapSwitch(nextMapSwitch);
|
||||
setStationMenu(nextStationMenu);
|
||||
setUsePDFView(nextUsePdfView);
|
||||
setTrainMenu(nextTrainMenu);
|
||||
setTrainPosition(nextTrainPosition);
|
||||
setHeaderSize(nextHeaderSize);
|
||||
setStartPage(nextStartPage);
|
||||
setUiSetting(nextUiSetting);
|
||||
setOperationLandscapeEnabled(nextOperationLandscapeEnabled);
|
||||
setOperationCaptureEnabled(nextOperationCaptureEnabled);
|
||||
});
|
||||
}, []);
|
||||
const testNFC = async () => {
|
||||
console.log("Testing NFC...");
|
||||
@@ -73,8 +132,10 @@ export default function Setting(props) {
|
||||
}
|
||||
};
|
||||
const updateAndReload = () => {
|
||||
const iconSettingToSave =
|
||||
updatePermission || iconSetting !== "hub" ? iconSetting : "original";
|
||||
Promise.all([
|
||||
AS.setItem(STORAGE_KEYS.ICON_SWITCH, iconSetting.toString()),
|
||||
AS.setItem(STORAGE_KEYS.ICON_SWITCH, iconSettingToSave.toString()),
|
||||
AS.setItem(STORAGE_KEYS.MAP_SWITCH, mapSwitch.toString()),
|
||||
AS.setItem(STORAGE_KEYS.STATION_SWITCH, stationMenu.toString()),
|
||||
AS.setItem(STORAGE_KEYS.USE_PDF_VIEW, usePDFView.toString()),
|
||||
@@ -83,6 +144,8 @@ export default function Setting(props) {
|
||||
AS.setItem(STORAGE_KEYS.HEADER_SIZE, headerSize),
|
||||
AS.setItem(STORAGE_KEYS.START_PAGE, startPage.toString()),
|
||||
AS.setItem(STORAGE_KEYS.UI_SETTING, uiSetting),
|
||||
AS.setItem(STORAGE_KEYS.OPERATION_INFO_LANDSCAPE_ENABLED, operationLandscapeEnabled.toString()),
|
||||
AS.setItem(STORAGE_KEYS.OPERATION_INFO_CAPTURE_ENABLED, operationCaptureEnabled.toString()),
|
||||
]).then(() => Updates.reloadAsync());
|
||||
};
|
||||
return (
|
||||
@@ -91,7 +154,7 @@ export default function Setting(props) {
|
||||
name="settingTopPage"
|
||||
options={{
|
||||
gestureEnabled: false,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -111,7 +174,7 @@ export default function Setting(props) {
|
||||
name="LayoutSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -136,6 +199,7 @@ export default function Setting(props) {
|
||||
setUiSetting={setUiSetting}
|
||||
headerSize={headerSize}
|
||||
setHeaderSize={setHeaderSize}
|
||||
allowHubIcon={updatePermission}
|
||||
/>
|
||||
)}
|
||||
</Stack.Screen>
|
||||
@@ -143,7 +207,7 @@ export default function Setting(props) {
|
||||
name="NotificationSettings"
|
||||
options={{
|
||||
//gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -154,7 +218,7 @@ export default function Setting(props) {
|
||||
name="LauncherIconSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -165,7 +229,7 @@ export default function Setting(props) {
|
||||
name="FavoriteSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -176,18 +240,29 @@ export default function Setting(props) {
|
||||
name="DataSourceSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
}}
|
||||
component={DataSourceSettings}
|
||||
/>
|
||||
<Stack.Screen
|
||||
name="ResearchToolsSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
}}
|
||||
component={ResearchToolsSettings}
|
||||
/>
|
||||
<Stack.Screen
|
||||
name="FelicaHistoryPage"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
@@ -198,13 +273,33 @@ export default function Setting(props) {
|
||||
name="SoundSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...TransitionPresets.SlideFromRightIOS,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
}}
|
||||
component={SoundSettings}
|
||||
/>
|
||||
<Stack.Screen
|
||||
name="OperationInfoSettings"
|
||||
options={{
|
||||
gestureEnabled: true,
|
||||
...pushTransitionOptions,
|
||||
cardOverlayEnabled: true,
|
||||
headerTransparent: true,
|
||||
headerShown: false,
|
||||
}}
|
||||
>
|
||||
{(props) => (
|
||||
<OperationInfoSettings
|
||||
{...props}
|
||||
operationLandscapeEnabled={operationLandscapeEnabled}
|
||||
setOperationLandscapeEnabled={setOperationLandscapeEnabled}
|
||||
operationCaptureEnabled={operationCaptureEnabled}
|
||||
setOperationCaptureEnabled={setOperationCaptureEnabled}
|
||||
/>
|
||||
)}
|
||||
</Stack.Screen>
|
||||
</Stack.Navigator>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -19,6 +19,7 @@ type hoge = {
|
||||
name: string;
|
||||
timeType: string;
|
||||
time: string;
|
||||
platformNum: string | null;
|
||||
}[];
|
||||
export const ExGridSimpleView: FC<{
|
||||
data: hoge;
|
||||
@@ -63,6 +64,7 @@ export const ExGridSimpleView: FC<{
|
||||
timeType: string;
|
||||
time: string;
|
||||
isOperating: boolean;
|
||||
platformNum: string | null;
|
||||
}[];
|
||||
} = {
|
||||
"4": [], "5": [], "6": [], "7": [], "8": [], "9": [],
|
||||
|
||||
@@ -29,6 +29,7 @@ export const ExGridSimpleViewItem: FC<{
|
||||
timeType: string;
|
||||
time: string;
|
||||
isOperating: boolean;
|
||||
platformNum: string | null;
|
||||
};
|
||||
index: number;
|
||||
array: {
|
||||
@@ -233,6 +234,20 @@ export const ExGridSimpleViewItem: FC<{
|
||||
{d.timeType}
|
||||
</Text>
|
||||
)}
|
||||
{showLastStop && d.platformNum && (
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 10,
|
||||
position: "absolute",
|
||||
top: 36,
|
||||
left: 28,
|
||||
fontWeight: "bold",
|
||||
color: isCancelled ? "gray" : colors.text,
|
||||
}}
|
||||
>
|
||||
{d.platformNum}番
|
||||
</Text>
|
||||
)}
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 12,
|
||||
|
||||
@@ -11,6 +11,7 @@ type hoge = {
|
||||
name: string;
|
||||
timeType: string;
|
||||
time: string;
|
||||
platformNum: string | null;
|
||||
};
|
||||
export const ListView: FC<{
|
||||
data: hoge[];
|
||||
|
||||
@@ -29,6 +29,7 @@ export const ListViewItem: FC<{
|
||||
name: string;
|
||||
timeType: string;
|
||||
time: string;
|
||||
platformNum: string | null;
|
||||
};
|
||||
showVehicle?: boolean;
|
||||
showAppSource?: boolean;
|
||||
@@ -58,7 +59,7 @@ export const ListViewItem: FC<{
|
||||
const [
|
||||
typeString,
|
||||
trainName,
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -78,7 +79,7 @@ export const ListViewItem: FC<{
|
||||
to_data_color,
|
||||
train_number_override,
|
||||
} = customTrainDataDetector(d.trainNumber, allCustomTrainData);
|
||||
const [typeString, fontAvailable, isOneMan] = getStringConfig(
|
||||
const [typeString, fontFamily, isOneMan] = getStringConfig(
|
||||
type,
|
||||
d.trainNumber
|
||||
);
|
||||
@@ -110,7 +111,7 @@ export const ListViewItem: FC<{
|
||||
return [
|
||||
typeString,
|
||||
displayName,
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -127,7 +128,7 @@ export const ListViewItem: FC<{
|
||||
return [
|
||||
typeString,
|
||||
"",
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -144,7 +145,7 @@ export const ListViewItem: FC<{
|
||||
migrateTrainName(
|
||||
trainDataArray[trainDataArray.length - 1].split(",")[0] + "行き"
|
||||
),
|
||||
fontAvailable,
|
||||
fontFamily,
|
||||
isOneMan,
|
||||
infogram,
|
||||
priority,
|
||||
@@ -313,15 +314,18 @@ export const ListViewItem: FC<{
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 15,
|
||||
fontFamily: fontAvailable ? "JR-Nishi" : undefined,
|
||||
fontWeight: !fontAvailable ? "bold" : undefined,
|
||||
paddingTop: fontAvailable ? 2 : 0,
|
||||
fontFamily,
|
||||
fontWeight: fontFamily ? undefined : "bold",
|
||||
paddingTop: fontFamily ? 2 : 0,
|
||||
paddingLeft: 10,
|
||||
color: isCancelled ? "gray" : color,
|
||||
textDecorationLine: isCancelled ? "line-through" : "none",
|
||||
}}
|
||||
>
|
||||
{typeString}
|
||||
{fontFamily === "JR-WEST-PLUS" ? (
|
||||
<Text style={{ fontFamily: "DiaPro", fontSize: 7 }}>{"\u00A0"}</Text>
|
||||
) : null}
|
||||
</Text>
|
||||
{showVehicle
|
||||
? (() => {
|
||||
@@ -385,6 +389,20 @@ export const ListViewItem: FC<{
|
||||
>
|
||||
{trainName}
|
||||
</Text>
|
||||
{d.platformNum ? (
|
||||
<View
|
||||
style={{
|
||||
backgroundColor: isCancelled ? "gray" : colors.text,
|
||||
borderRadius: 10,
|
||||
paddingHorizontal: 6,
|
||||
paddingVertical: 1,
|
||||
}}
|
||||
>
|
||||
<Text style={{ fontSize: 11, color: colors.diagramBackground, fontWeight: "bold" }}>
|
||||
{d.platformNum}
|
||||
</Text>
|
||||
</View>
|
||||
) : null}
|
||||
</View>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
|
||||
@@ -91,6 +91,7 @@ export const StationDiagramView: FC<props> = ({ route }) => {
|
||||
name: string;
|
||||
timeType: string;
|
||||
time: string;
|
||||
platformNum: string | null;
|
||||
}[];
|
||||
const [showTypeFiltering, setShowTypeFiltering] = useState(false);
|
||||
const [showLastStop, setShowLastStop] = useState(false);
|
||||
@@ -160,7 +161,7 @@ export const StationDiagramView: FC<props> = ({ route }) => {
|
||||
return station === stationName;
|
||||
})
|
||||
.forEach((x) => {
|
||||
const [name, timeType, time] = x.split(",");
|
||||
const [name, timeType, time, platformNum] = x.split(",");
|
||||
if (!name || !timeType || !time) return;
|
||||
|
||||
const { type } = customTrainDataDetector(d, allCustomTrainData);
|
||||
@@ -170,6 +171,7 @@ export const StationDiagramView: FC<props> = ({ route }) => {
|
||||
name,
|
||||
timeType,
|
||||
time,
|
||||
platformNum: platformNum ?? null,
|
||||
};
|
||||
// //条件によってフィルタリング
|
||||
if (!threw && timeType && timeType.includes("通")) return;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import React, { FC } from "react";
|
||||
import { Image, StyleSheet, View } from "react-native";
|
||||
import { Image, StyleSheet, View, Platform } from "react-native";
|
||||
import { Marker } from "react-native-maps";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { useStationList } from "@/stateBox/useStationList";
|
||||
|
||||
@@ -21,7 +21,8 @@ export const SimpleSwitch = ({
|
||||
<View style={{ flex: 1 }}>
|
||||
<TouchableOpacity
|
||||
style={{
|
||||
backgroundColor: bool == value.toString() ? color : null,
|
||||
backgroundColor:
|
||||
bool === value || String(bool) === String(value) ? color : null,
|
||||
padding: 5,
|
||||
borderRadius: 5,
|
||||
margin: 10,
|
||||
@@ -32,7 +33,7 @@ export const SimpleSwitch = ({
|
||||
}}
|
||||
onPress={() => {
|
||||
LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut);
|
||||
setBool(value.toString());
|
||||
setBool(value);
|
||||
}}
|
||||
>
|
||||
<Image
|
||||
|
||||
@@ -66,7 +66,7 @@ export const SwitchArea = ({
|
||||
subText={trueText}
|
||||
/>
|
||||
</View>
|
||||
{bool == "true" && children}
|
||||
{(bool === true || String(bool) === "true") && children}
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -5,11 +5,13 @@ export const TripleSwitchArea = ({
|
||||
str,
|
||||
bool,
|
||||
setBool,
|
||||
firstItem: { firstImage, firstText, firstValue },
|
||||
secondItem: { secondImage, secondText, secondValue },
|
||||
thirdItem: { thirdImage, thirdText, thirdValue },
|
||||
firstItem,
|
||||
secondItem,
|
||||
thirdItem,
|
||||
}) => {
|
||||
const { colors } = useThemeColors();
|
||||
const { firstImage, firstText, firstValue } = firstItem;
|
||||
const { secondImage, secondText, secondValue } = secondItem;
|
||||
return (
|
||||
<View style={{ flexDirection: "column", padding: 10 }}>
|
||||
<Text
|
||||
@@ -41,14 +43,16 @@ export const TripleSwitchArea = ({
|
||||
image={secondImage}
|
||||
subText={secondText}
|
||||
/>
|
||||
<SimpleSwitch
|
||||
bool={bool}
|
||||
setBool={setBool}
|
||||
color="red"
|
||||
value={thirdValue}
|
||||
image={thirdImage}
|
||||
subText={thirdText}
|
||||
/>
|
||||
{thirdItem ? (
|
||||
<SimpleSwitch
|
||||
bool={bool}
|
||||
setBool={setBool}
|
||||
color="red"
|
||||
value={thirdItem.thirdValue}
|
||||
image={thirdItem.thirdImage}
|
||||
subText={thirdItem.thirdText}
|
||||
/>
|
||||
) : null}
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import React, { useRef, useState, useEffect, useLayoutEffect } from "react";
|
||||
import { View, Text, TouchableOpacity, Linking } from "react-native";
|
||||
import MapView from "react-native-maps";
|
||||
import { View, Text, TouchableOpacity, Linking, Platform } from "react-native";
|
||||
import MapView, { Marker } from "react-native-maps";
|
||||
import { useCurrentTrain } from "../stateBox/useCurrentTrain";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import lineColorList from "../assets/originData/lineColorList";
|
||||
@@ -12,6 +12,10 @@ import { UsefulBox } from "./TrainMenu/UsefulBox";
|
||||
import { MapsButton } from "./TrainMenu/MapsButton";
|
||||
import { useStationList } from "@/stateBox/useStationList";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { useUserPosition } from "@/stateBox/useUserPosition";
|
||||
const ANDROID_USER_LOCATION_MARKER_SIZE = 18;
|
||||
const ANDROID_USER_LOCATION_INNER_SIZE = 8;
|
||||
|
||||
export default function TrainMenu({ style }) {
|
||||
const { fixed, isDark } = useThemeColors();
|
||||
const { webview } = useCurrentTrain();
|
||||
@@ -24,6 +28,7 @@ export default function TrainMenu({ style }) {
|
||||
mapsStationData: stationData,
|
||||
} = useTrainMenu();
|
||||
const { originalStationList } = useStationList();
|
||||
const { position } = useUserPosition();
|
||||
useEffect(() => {
|
||||
const stationPinData = [];
|
||||
Object.keys(lineList_LineWebID).forEach((d, indexBase) => {
|
||||
@@ -49,7 +54,7 @@ export default function TrainMenu({ style }) {
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary, ...style }}>
|
||||
<MapView
|
||||
style={{ flex: 1, width: "100%", height: "100%" }}
|
||||
showsUserLocation={true}
|
||||
showsUserLocation={Platform.OS !== "android"}
|
||||
loadingEnabled={true}
|
||||
showsMyLocationButton={false}
|
||||
moveOnMarkerPress={false}
|
||||
@@ -64,6 +69,42 @@ export default function TrainMenu({ style }) {
|
||||
longitudeDelta: 1.8,
|
||||
}}
|
||||
>
|
||||
{Platform.OS === "android" && position ? (
|
||||
<Marker
|
||||
key="android-user-location"
|
||||
coordinate={{
|
||||
latitude: position.coords.latitude,
|
||||
longitude: position.coords.longitude,
|
||||
}}
|
||||
anchor={{ x: 0.5, y: 0.5 }}
|
||||
tracksViewChanges={false}
|
||||
zIndex={999}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
width: ANDROID_USER_LOCATION_MARKER_SIZE,
|
||||
height: ANDROID_USER_LOCATION_MARKER_SIZE,
|
||||
borderRadius: ANDROID_USER_LOCATION_MARKER_SIZE / 2,
|
||||
backgroundColor: "rgba(10, 132, 255, 0.24)",
|
||||
borderWidth: 1,
|
||||
borderColor: "rgba(10, 132, 255, 0.42)",
|
||||
alignItems: "center",
|
||||
justifyContent: "center",
|
||||
}}
|
||||
>
|
||||
<View
|
||||
style={{
|
||||
width: ANDROID_USER_LOCATION_INNER_SIZE,
|
||||
height: ANDROID_USER_LOCATION_INNER_SIZE,
|
||||
borderRadius: ANDROID_USER_LOCATION_INNER_SIZE / 2,
|
||||
backgroundColor: "#0A84FF",
|
||||
borderWidth: 1,
|
||||
borderColor: "#ffffff",
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
</Marker>
|
||||
) : null}
|
||||
{stationPin.map(({ D, d, latlng, indexBase, index }) => (
|
||||
<MapPin
|
||||
index={index}
|
||||
|
||||
@@ -1,225 +1,9 @@
|
||||
import React, { useRef, useState, useEffect, useLayoutEffect } from "react";
|
||||
import { View, Text, TouchableOpacity, Linking } from "react-native";
|
||||
//import MapView from "react-native-maps";
|
||||
import { useCurrentTrain } from "../stateBox/useCurrentTrain";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import lineColorList from "../assets/originData/lineColorList";
|
||||
import { lineListPair, stationIDPair } from "../lib/getStationList";
|
||||
import { SheetManager } from "react-native-actions-sheet";
|
||||
import { useTrainMenu } from "../stateBox/useTrainMenu";
|
||||
//import { MapPin } from "./TrainMenu/MapPin";
|
||||
import { UsefulBox } from "./TrainMenu/UsefulBox";
|
||||
import { MapsButton } from "./TrainMenu/MapsButton";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
export default function TrainMenu({ style }) {
|
||||
const { fixed } = useThemeColors();
|
||||
import type { StyleProp, ViewStyle } from "react-native";
|
||||
|
||||
type TrainMenuProps = {
|
||||
style?: StyleProp<ViewStyle>;
|
||||
};
|
||||
|
||||
export default function TrainMenu(_props: TrainMenuProps) {
|
||||
return null;
|
||||
const { webview } = useCurrentTrain();
|
||||
const mapRef = useRef();
|
||||
const { navigate, goBack } = useNavigation();
|
||||
const [stationPin, setStationPin] = useState([]);
|
||||
const {
|
||||
selectedLine,
|
||||
setSelectedLine,
|
||||
mapsStationData: stationData,
|
||||
} = useTrainMenu();
|
||||
useEffect(() => {
|
||||
const stationPinData = [];
|
||||
Object.keys(stationData).forEach((d, indexBase) => {
|
||||
stationData[d].forEach((D, index) => {
|
||||
if (!D.StationMap) return null;
|
||||
if (selectedLine && selectedLine != d) return;
|
||||
const latlng = D.StationMap.replace(
|
||||
"https://www.google.co.jp/maps/place/",
|
||||
""
|
||||
).split(",");
|
||||
if (latlng.length == 0) return null;
|
||||
stationPinData.push({ D, d, latlng, indexBase: 0, index });
|
||||
});
|
||||
});
|
||||
setStationPin(stationPinData);
|
||||
}, [stationData, selectedLine]);
|
||||
useLayoutEffect(() => {
|
||||
mapRef.current.fitToCoordinates(
|
||||
stationPin.map(({ latlng }) => ({
|
||||
latitude: parseFloat(latlng[0]),
|
||||
longitude: parseFloat(latlng[1]),
|
||||
})),
|
||||
{ edgePadding: { top: 80, bottom: 120, left: 50, right: 50 } } // Add margin values here
|
||||
);
|
||||
}, [stationPin]);
|
||||
return (
|
||||
<View style={{ height: "100%", backgroundColor: fixed.primary, ...style }}>
|
||||
<MapView
|
||||
style={{ flex: 1, width: "100%", height: "100%" }}
|
||||
showsUserLocation={true}
|
||||
loadingEnabled={true}
|
||||
showsMyLocationButton={false}
|
||||
moveOnMarkerPress={false}
|
||||
showsCompass={false}
|
||||
ref={mapRef}
|
||||
//provider={PROVIDER_GOOGLE}
|
||||
initialRegion={{
|
||||
latitude: 33.774519,
|
||||
longitude: 133.533306,
|
||||
latitudeDelta: 1.8, //小さくなるほどズーム
|
||||
longitudeDelta: 1.8,
|
||||
}}
|
||||
>
|
||||
{stationPin.map(({ D, d, latlng, indexBase, index }) => (
|
||||
<MapPin
|
||||
index={index}
|
||||
indexBase={indexBase}
|
||||
latlng={latlng}
|
||||
D={D}
|
||||
d={d}
|
||||
navigate={navigate}
|
||||
webview={webview}
|
||||
key={D.StationNumber + d}
|
||||
/>
|
||||
))}
|
||||
</MapView>
|
||||
<View style={{ position: "relative" }}>
|
||||
<View
|
||||
style={{
|
||||
flexDirection: "row",
|
||||
position: "absolute",
|
||||
width: "100vw",
|
||||
bottom: 0,
|
||||
flex: 1,
|
||||
}}
|
||||
>
|
||||
<TouchableOpacity
|
||||
style={{
|
||||
backgroundColor: selectedLine
|
||||
? lineColorList[stationIDPair[selectedLine]]
|
||||
: fixed.primary,
|
||||
padding: 10,
|
||||
zIndex: 1,
|
||||
alignItems: "center",
|
||||
position: "absolute",
|
||||
bottom: 0,
|
||||
width: "100%",
|
||||
paddingBottom: 50,
|
||||
}}
|
||||
onPress={() => SheetManager.show("TrainMenuLineSelector")}
|
||||
>
|
||||
<Text
|
||||
style={{
|
||||
color: "white",
|
||||
fontWeight: "bold",
|
||||
fontSize: 10,
|
||||
textAlign: "center",
|
||||
}}
|
||||
>
|
||||
▲ ここを押して路線をフィルタリングできます ▲
|
||||
</Text>
|
||||
<Text
|
||||
style={{
|
||||
color: "white",
|
||||
fontWeight: "bold",
|
||||
fontSize: 20,
|
||||
textAlign: "center",
|
||||
}}
|
||||
>
|
||||
{selectedLine
|
||||
? lineListPair[stationIDPair[selectedLine]]
|
||||
: "JR四国 対象全駅"}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<Text style={{ position: "absolute", bottom: 40 }}>
|
||||
路線記号からフィルタリング
|
||||
</Text>
|
||||
{Object.keys(stationData).map((d) => (
|
||||
<TouchableOpacity
|
||||
key={stationIDPair[d]}
|
||||
style={{
|
||||
flex: 1,
|
||||
backgroundColor: lineColorList[stationIDPair[d]],
|
||||
padding: 5,
|
||||
margin: 2,
|
||||
borderRadius: 10,
|
||||
borderColor: "white",
|
||||
borderWidth: 1,
|
||||
borderStyle: "solid",
|
||||
alignItems: "center",
|
||||
opacity: selectedLine == d ? 1 : !selectedLine ? 1 : 0.5,
|
||||
zIndex: 10,
|
||||
}}
|
||||
onPress={() => {
|
||||
const s = selectedLine == d ? undefined : d;
|
||||
if(!s) return;
|
||||
setSelectedLine(s);
|
||||
Object.keys(stationData).forEach((data, indexBase) => {
|
||||
stationData[data].forEach((D, index) => {
|
||||
if (!D.StationMap) return null;
|
||||
if (s && s != data) return;
|
||||
const latlng = D.StationMap.replace(
|
||||
"https://www.google.co.jp/maps/place/",
|
||||
""
|
||||
).split(",");
|
||||
if (latlng.length == 0) return null;
|
||||
if (index == 0 && stationPin.length > 0) {
|
||||
webview.current
|
||||
?.injectJavaScript(`MoveDisplayStation('${data}_${D.MyStation}_${D.Station_JP}');
|
||||
document.getElementById("disp").insertAdjacentHTML("afterbegin", "<div />");`);
|
||||
}
|
||||
});
|
||||
});
|
||||
}}
|
||||
>
|
||||
<Text
|
||||
style={{ color: "white", fontWeight: "bold", fontSize: 20 }}
|
||||
>
|
||||
{stationIDPair[d]}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
))}
|
||||
</View>
|
||||
</View>
|
||||
{navigate && (
|
||||
<View style={{ flexDirection: "row" }}>
|
||||
<UsefulBox
|
||||
backgroundColor={"#F89038"}
|
||||
icon="train-car"
|
||||
flex={1}
|
||||
onPressButton={() =>
|
||||
navigate("howto", {
|
||||
info: "https://train.jr-shikoku.co.jp/usage.htm",
|
||||
})
|
||||
}
|
||||
>
|
||||
使い方
|
||||
</UsefulBox>
|
||||
<UsefulBox
|
||||
backgroundColor={"#EA4752"}
|
||||
icon="star"
|
||||
flex={1}
|
||||
onPressButton={() => navigate("favoriteList")}
|
||||
>
|
||||
お気に入り
|
||||
</UsefulBox>
|
||||
<UsefulBox
|
||||
backgroundColor={"#91C31F"}
|
||||
icon="clipboard-list-outline"
|
||||
flex={1}
|
||||
onPressButton={() =>
|
||||
Linking.openURL(
|
||||
"https://nexcloud.haruk.in/apps/forms/ZRHjWFF7znr5Xjr2"
|
||||
)
|
||||
}
|
||||
>
|
||||
フィードバック
|
||||
</UsefulBox>
|
||||
</View>
|
||||
)}
|
||||
<MapsButton
|
||||
onPress={() => {
|
||||
goBack();
|
||||
}}
|
||||
top={0}
|
||||
mapSwitch={"flex"}
|
||||
/>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ import { getCurrentTrainData } from "@/lib/getCurrentTrainData";
|
||||
import type { NavigateFunction } from "@/types";
|
||||
import { PlatformNumber } from "./LED_inside_Component/PlatformNumber";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
|
||||
type Props = {
|
||||
d: eachTrainDiagramType;
|
||||
@@ -48,6 +49,7 @@ export const EachData: FC<Props> = (props) => {
|
||||
} = props;
|
||||
const { currentTrain } = useCurrentTrain();
|
||||
const { stationList } = useStationList();
|
||||
const { playbackCurrentTimeIso } = useTrainMenu();
|
||||
const { allCustomTrainData } = useAllTrainDiagram();
|
||||
const { fixed } = useThemeColors();
|
||||
const openTrainInfo = (d: {
|
||||
@@ -134,7 +136,7 @@ export const EachData: FC<Props> = (props) => {
|
||||
const [h, m] = d.time.split(":");
|
||||
const IntH = parseInt(h);
|
||||
const IntM = parseInt(m);
|
||||
const currentTime = dayjs();
|
||||
const currentTime = playbackCurrentTimeIso ? dayjs(playbackCurrentTimeIso) : dayjs();
|
||||
const trainTime = currentTime
|
||||
.set("hour", IntH < 4 ? IntH + 24 : IntH)
|
||||
.set("minute", IntM);
|
||||
@@ -145,7 +147,7 @@ export const EachData: FC<Props> = (props) => {
|
||||
setIsDepartureNow(false);
|
||||
setIsShow(true);
|
||||
};
|
||||
}, [d.time, currentTrainData]);
|
||||
}, [d.time, currentTrainData, playbackCurrentTimeIso]);
|
||||
useInterval(() => {
|
||||
if (isDepartureNow) {
|
||||
setIsShow(!isShow);
|
||||
|
||||
@@ -3,11 +3,8 @@ import { Text, View, LayoutChangeEvent } from "react-native";
|
||||
import Animated, {
|
||||
useSharedValue,
|
||||
useAnimatedStyle,
|
||||
withTiming,
|
||||
withRepeat,
|
||||
withSequence,
|
||||
withDelay,
|
||||
cancelAnimation,
|
||||
useFrameCallback,
|
||||
} from "react-native-reanimated";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
|
||||
@@ -18,40 +15,65 @@ type Props = {
|
||||
export const ScrollingDescription: FC<Props> = ({ description }) => {
|
||||
const { fixed } = useThemeColors();
|
||||
const scrollX = useSharedValue(0);
|
||||
const isRunning = useSharedValue(false);
|
||||
const contentWidth = useSharedValue(0);
|
||||
const viewportWidth = useSharedValue(0);
|
||||
const [textWidth, setTextWidth] = useState(0);
|
||||
const [containerWidth, setContainerWidth] = useState(0);
|
||||
const gap = 20;
|
||||
const pixelsPerSecond = 84;
|
||||
|
||||
// 改行を削除して1行にする
|
||||
const singleLineDescription = description?.replace(/\n/g, " ") || "";
|
||||
|
||||
useEffect(() => {
|
||||
cancelAnimation(scrollX);
|
||||
contentWidth.value = textWidth;
|
||||
viewportWidth.value = containerWidth;
|
||||
|
||||
if (!singleLineDescription || textWidth === 0 || containerWidth === 0) {
|
||||
isRunning.value = false;
|
||||
scrollX.value = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
// テキストが画面幅より短い場合はスクロールしない
|
||||
if (textWidth <= containerWidth) {
|
||||
isRunning.value = false;
|
||||
scrollX.value = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
const distance = textWidth + containerWidth;
|
||||
const duration = distance * 6; // スクロール速度
|
||||
|
||||
// 初期位置を設定(画面の右端から開始)
|
||||
scrollX.value = containerWidth;
|
||||
|
||||
scrollX.value = withRepeat(
|
||||
withSequence(
|
||||
withDelay(500, withTiming(-textWidth - 20, { duration })),
|
||||
withDelay(500, withTiming(containerWidth, { duration: 0 }))
|
||||
),
|
||||
-1
|
||||
);
|
||||
isRunning.value = true;
|
||||
|
||||
return () => {
|
||||
isRunning.value = false;
|
||||
cancelAnimation(scrollX);
|
||||
};
|
||||
}, [singleLineDescription, textWidth, containerWidth]);
|
||||
}, [
|
||||
singleLineDescription,
|
||||
textWidth,
|
||||
containerWidth,
|
||||
scrollX,
|
||||
isRunning,
|
||||
contentWidth,
|
||||
viewportWidth,
|
||||
]);
|
||||
|
||||
useFrameCallback((frameInfo) => {
|
||||
"worklet";
|
||||
|
||||
if (!isRunning.value) {
|
||||
return;
|
||||
}
|
||||
|
||||
const elapsedMs = frameInfo.timeSincePreviousFrame ?? 16.67;
|
||||
const nextX = scrollX.value - (pixelsPerSecond * elapsedMs) / 1000;
|
||||
const resetPoint = -contentWidth.value - gap;
|
||||
|
||||
scrollX.value = nextX <= resetPoint ? viewportWidth.value : nextX;
|
||||
});
|
||||
|
||||
const animatedStyle = useAnimatedStyle(() => ({
|
||||
transform: [{ translateX: scrollX.value }],
|
||||
@@ -60,14 +82,20 @@ export const ScrollingDescription: FC<Props> = ({ description }) => {
|
||||
const handleTextLayout = (event: LayoutChangeEvent) => {
|
||||
const { width } = event.nativeEvent.layout;
|
||||
if (width > 0) {
|
||||
setTextWidth(Math.round(width));
|
||||
const nextWidth = Math.round(width);
|
||||
setTextWidth((currentWidth) =>
|
||||
currentWidth === nextWidth ? currentWidth : nextWidth
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
const handleContainerLayout = (event: LayoutChangeEvent) => {
|
||||
const { width } = event.nativeEvent.layout;
|
||||
if (width > 0) {
|
||||
setContainerWidth(Math.round(width));
|
||||
const nextWidth = Math.round(width);
|
||||
setContainerWidth((currentWidth) =>
|
||||
currentWidth === nextWidth ? currentWidth : nextWidth
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
+464
-16
@@ -1,5 +1,5 @@
|
||||
import React, { useState, useEffect, FC } from "react";
|
||||
import { View, useWindowDimensions, Text } from "react-native";
|
||||
import React, { useState, useEffect, FC, useCallback, useRef } from "react";
|
||||
import { View, useWindowDimensions, Text, Platform } from "react-native";
|
||||
import { objectIsEmpty } from "@/lib/objectIsEmpty";
|
||||
import { useCurrentTrain } from "@/stateBox/useCurrentTrain";
|
||||
import { useAreaInfo } from "@/stateBox/useAreaInfo";
|
||||
@@ -13,6 +13,40 @@ import { getTime, trainTimeFiltering } from "@/lib/trainTimeFiltering";
|
||||
import { eachTrainDiagramType, StationProps } from "@/lib/CommonTypes";
|
||||
import { useNavigation } from "@react-navigation/native";
|
||||
import { useThemeColors } from "@/lib/theme";
|
||||
import { getCurrentTrainData } from "@/lib/getCurrentTrainData";
|
||||
import {
|
||||
useAudioPlayer,
|
||||
useAudioPlayerStatus,
|
||||
setAudioModeAsync,
|
||||
} from "expo-audio";
|
||||
import { useInterval } from "@/lib/useInterval";
|
||||
import {
|
||||
buildVoicepeakAnnouncementKey,
|
||||
buildVoicepeakAnnouncementText,
|
||||
getVoicepeakAnnouncementStage,
|
||||
hasVoicepeakConfiguration,
|
||||
loadVoicepeakSettings,
|
||||
requestVoicepeakSpeeches,
|
||||
type VoicepeakSettings,
|
||||
} from "@/lib/voicepeak";
|
||||
import {
|
||||
EMPTY_NATIVE_VOICEPEAK_HTML,
|
||||
type PreparedVoicepeakAudio,
|
||||
} from "@/lib/voicepeakAudioSource";
|
||||
import { WebView } from "react-native-webview";
|
||||
import { stackAwareNavigate } from "@/lib/rootNavigation";
|
||||
import { useStationList } from "@/stateBox/useStationList";
|
||||
import { useTrainMenu } from "@/stateBox/useTrainMenu";
|
||||
import { checkDuplicateTrainData } from "@/lib/checkDuplicateTrainData";
|
||||
import { trainPosition } from "@/lib/trainPositionTextArray";
|
||||
|
||||
const readBooleanSetting = async (key: string) => {
|
||||
try {
|
||||
return (await AS.getItem(key)) === "true";
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -46,11 +80,38 @@ import { useThemeColors } from "@/lib/theme";
|
||||
type props = {
|
||||
station: StationProps[];
|
||||
};
|
||||
|
||||
type VoicepeakCandidate = {
|
||||
key: string;
|
||||
text: string;
|
||||
departureTime: string;
|
||||
priority: number;
|
||||
};
|
||||
|
||||
const getServiceMinute = (timeText: string) => {
|
||||
const [hourText, minuteText] = timeText.split(":");
|
||||
const hour = Number.parseInt(hourText, 10);
|
||||
const minute = Number.parseInt(minuteText, 10);
|
||||
if (Number.isNaN(hour) || Number.isNaN(minute)) return null;
|
||||
return (hour < 4 ? hour + 24 : hour) * 60 + minute;
|
||||
};
|
||||
|
||||
const getDwellMinutes = (arrivalTime: string, departureTime: string) => {
|
||||
const arrivalMinute = getServiceMinute(arrivalTime);
|
||||
const departureMinute = getServiceMinute(departureTime);
|
||||
if (arrivalMinute === null || departureMinute === null) return null;
|
||||
|
||||
const difference = departureMinute - arrivalMinute;
|
||||
return difference < 0 ? difference + 24 * 60 : difference;
|
||||
};
|
||||
|
||||
export const LED_vision: FC<props> = (props) => {
|
||||
const { station } = props;
|
||||
|
||||
const { navigate, addListener, isFocused } = useNavigation();
|
||||
const { navigate, addListener } = useNavigation();
|
||||
const { currentTrain } = useCurrentTrain();
|
||||
const { stationList } = useStationList();
|
||||
const { playbackCurrentTimeIso } = useTrainMenu();
|
||||
const [stationDiagram, setStationDiagram] = useState<{
|
||||
[key: string]: string;
|
||||
}>({}); //当該駅の全時刻表
|
||||
@@ -59,20 +120,75 @@ export const LED_vision: FC<props> = (props) => {
|
||||
const [trainDescriptionSwitch, setTrainDescriptionSwitch] = useState(false);
|
||||
const [isInfoArea, setIsInfoArea] = useState(false);
|
||||
const { areaInfo, areaStationID } = useAreaInfo();
|
||||
const { allTrainDiagram } = useAllTrainDiagram();
|
||||
const { allTrainDiagram, allCustomTrainData } = useAllTrainDiagram();
|
||||
const { fixed } = useThemeColors();
|
||||
const [voicepeakSettings, setVoicepeakSettings] =
|
||||
useState<VoicepeakSettings | null>(null);
|
||||
const announcementPlayer = useAudioPlayer(null);
|
||||
const announcementPlayerStatus = useAudioPlayerStatus(announcementPlayer);
|
||||
const announcedKeysRef = useRef<Set<string>>(new Set());
|
||||
const reservedAnnouncementKeysRef = useRef<Set<string>>(new Set());
|
||||
const queuedAnnouncementsRef = useRef<Map<string, VoicepeakCandidate>>(
|
||||
new Map()
|
||||
);
|
||||
const isVoicepeakBusyRef = useRef(false);
|
||||
const isExpoVoicepeakPlayingRef = useRef(false);
|
||||
const isNativeVoicepeakPlayingRef = useRef(false);
|
||||
const drainVoicepeakQueueRef = useRef<() => void>(() => {});
|
||||
const isVoicepeakMountedRef = useRef(true);
|
||||
const currentRequestRef = useRef<AbortController | null>(null);
|
||||
const cleanupAudioRef = useRef<(() => void) | undefined>(undefined);
|
||||
const pendingVoicepeakAudiosRef = useRef<PreparedVoicepeakAudio[]>([]);
|
||||
const startVoicepeakAudioRef = useRef<
|
||||
(audio: PreparedVoicepeakAudio) => Promise<void>
|
||||
>(async () => {});
|
||||
const [nativeVoicepeakHtml, setNativeVoicepeakHtml] = useState(
|
||||
EMPTY_NATIVE_VOICEPEAK_HTML
|
||||
);
|
||||
const [nativeVoicepeakPlaybackKey, setNativeVoicepeakPlaybackKey] = useState(0);
|
||||
|
||||
const refreshVoicepeakSettings = useCallback(() => {
|
||||
loadVoicepeakSettings()
|
||||
.then((settings) => {
|
||||
setVoicepeakSettings(settings);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.warn("Failed to load Voicepeak settings", error);
|
||||
});
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
AS.getItem("LEDSettings/trainIDSwitch").then((data) => {
|
||||
setTrainIDSwitch(data === "true");
|
||||
isVoicepeakMountedRef.current = true;
|
||||
void Promise.all([
|
||||
readBooleanSetting("LEDSettings/trainIDSwitch"),
|
||||
readBooleanSetting("LEDSettings/trainDescriptionSwitch"),
|
||||
readBooleanSetting("LEDSettings/finalSwitch"),
|
||||
]).then(([nextTrainIdSwitch, nextTrainDescriptionSwitch, nextFinalSwitch]) => {
|
||||
setTrainIDSwitch(nextTrainIdSwitch);
|
||||
setTrainDescriptionSwitch(nextTrainDescriptionSwitch);
|
||||
setFinalSwitch(nextFinalSwitch);
|
||||
});
|
||||
AS.getItem("LEDSettings/trainDescriptionSwitch").then((data) => {
|
||||
setTrainDescriptionSwitch(data === "true");
|
||||
});
|
||||
AS.getItem("LEDSettings/finalSwitch").then((data) => {
|
||||
setFinalSwitch(data === "true");
|
||||
});
|
||||
}, []);
|
||||
|
||||
refreshVoicepeakSettings();
|
||||
|
||||
const unsubscribe = addListener("focus", refreshVoicepeakSettings);
|
||||
|
||||
return () => {
|
||||
isVoicepeakMountedRef.current = false;
|
||||
unsubscribe();
|
||||
currentRequestRef.current?.abort();
|
||||
cleanupAudioRef.current?.();
|
||||
cleanupAudioRef.current = undefined;
|
||||
pendingVoicepeakAudiosRef.current.forEach((audio) => {
|
||||
if (audio.kind === "expo-audio") audio.cleanup?.();
|
||||
});
|
||||
pendingVoicepeakAudiosRef.current = [];
|
||||
queuedAnnouncementsRef.current.clear();
|
||||
reservedAnnouncementKeysRef.current.clear();
|
||||
isVoicepeakBusyRef.current = false;
|
||||
};
|
||||
}, [addListener, refreshVoicepeakSettings]);
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
// 現在の駅に停車するダイヤを作成する副作用[列車ダイヤと現在駅情報]
|
||||
@@ -112,10 +228,316 @@ export const LED_vision: FC<props> = (props) => {
|
||||
if (!currentTrain) return () => {};
|
||||
const data = trainTimeAndNumber
|
||||
.filter((d) => currentTrain.map((m) => m.num).includes(d.train)) //現在の列車に絞る[ToDo]
|
||||
.filter((d) => trainTimeFiltering({ d, currentTrain, station })) //時間フィルター
|
||||
.filter((d) => trainTimeFiltering({ d, currentTrain, station, stationList, now: playbackCurrentTimeIso })) //時間フィルター
|
||||
.filter((d) => !!finalSwitch || d.lastStation != station[0].Station_JP); //最終列車表示設定
|
||||
setSelectedTrain(data);
|
||||
}, [trainTimeAndNumber, currentTrain, finalSwitch]);
|
||||
}, [trainTimeAndNumber, currentTrain, finalSwitch, stationList, playbackCurrentTimeIso]);
|
||||
|
||||
const getVoicepeakCandidates = useCallback(() => {
|
||||
if (!currentTrain?.length || !allCustomTrainData) return [];
|
||||
|
||||
const activeTrainNumbers = new Set(currentTrain.map((train) => train.num));
|
||||
const candidateTrains = new Map(
|
||||
selectedTrain.map((train) => [train.train, train])
|
||||
);
|
||||
trainTimeAndNumber.forEach((train) => {
|
||||
if (train.isThrough && activeTrainNumbers.has(train.train)) {
|
||||
candidateTrains.set(train.train, train);
|
||||
}
|
||||
});
|
||||
|
||||
return [...candidateTrains.values()]
|
||||
.flatMap((train) => {
|
||||
const currentTrainData = getCurrentTrainData(
|
||||
train.train,
|
||||
currentTrain,
|
||||
allCustomTrainData
|
||||
);
|
||||
const currentTrainStatuses = currentTrain.filter(
|
||||
(currentTrainItem) => currentTrainItem.num === train.train
|
||||
);
|
||||
const currentTrainStatus =
|
||||
currentTrainStatuses.length > 1
|
||||
? checkDuplicateTrainData(currentTrainStatuses, stationList) ??
|
||||
currentTrainStatuses[0]
|
||||
: currentTrainStatuses[0];
|
||||
const position = currentTrainStatus
|
||||
? trainPosition(currentTrainStatus)
|
||||
: null;
|
||||
const isStoppedAtStation =
|
||||
position?.isBetween === false &&
|
||||
position.Pos.Pos === station[0].Station_JP;
|
||||
const delayMinutes =
|
||||
typeof currentTrainStatus?.delay === "number"
|
||||
? currentTrainStatus.delay
|
||||
: 0;
|
||||
|
||||
if (!currentTrainData) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const getStage = (timingTrain: eachTrainDiagramType) =>
|
||||
getVoicepeakAnnouncementStage({
|
||||
station: station[0],
|
||||
train: timingTrain,
|
||||
currentTrainData,
|
||||
delayMinutes,
|
||||
});
|
||||
const buildCandidate = (
|
||||
timingTrain: eachTrainDiagramType,
|
||||
stage: NonNullable<ReturnType<typeof getVoicepeakAnnouncementStage>>,
|
||||
advanceTimeBasis: "arrival" | "departure" = "departure"
|
||||
): VoicepeakCandidate => ({
|
||||
key: buildVoicepeakAnnouncementKey(station[0], timingTrain, stage),
|
||||
text: buildVoicepeakAnnouncementText({
|
||||
station: station[0],
|
||||
train: timingTrain,
|
||||
currentTrainData,
|
||||
stage,
|
||||
delayMinutes,
|
||||
isOrigin: timingTrain.isOrigin === true,
|
||||
isStoppedAtStation,
|
||||
advanceTimeBasis,
|
||||
}),
|
||||
departureTime: timingTrain.time,
|
||||
priority:
|
||||
stage === "passing" ? 0 : stage === "departure" ? 1 : 2,
|
||||
});
|
||||
|
||||
if (train.arrivalTime && train.departureTime) {
|
||||
const candidates: VoicepeakCandidate[] = [];
|
||||
const arrivalTimingTrain = { ...train, time: train.arrivalTime };
|
||||
const arrivalStage = getStage(arrivalTimingTrain);
|
||||
if (arrivalStage === "advance" || arrivalStage === "departure") {
|
||||
candidates.push(
|
||||
buildCandidate(arrivalTimingTrain, "advance", "arrival")
|
||||
);
|
||||
}
|
||||
|
||||
const departureTimingTrain = { ...train, time: train.departureTime };
|
||||
const departureStage = getStage(departureTimingTrain);
|
||||
const dwellMinutes = getDwellMinutes(
|
||||
train.arrivalTime,
|
||||
train.departureTime
|
||||
);
|
||||
if (departureStage === "departure") {
|
||||
candidates.push(
|
||||
buildCandidate(departureTimingTrain, "departure")
|
||||
);
|
||||
} else if (
|
||||
departureStage === "advance" &&
|
||||
dwellMinutes !== null &&
|
||||
dwellMinutes >= 3
|
||||
) {
|
||||
candidates.push(buildCandidate(departureTimingTrain, "advance"));
|
||||
}
|
||||
return candidates;
|
||||
}
|
||||
|
||||
const stage = getStage(train);
|
||||
return stage ? [buildCandidate(train, stage)] : [];
|
||||
})
|
||||
.sort(
|
||||
(a, b) =>
|
||||
a.priority - b.priority ||
|
||||
a.departureTime.localeCompare(b.departureTime)
|
||||
);
|
||||
}, [
|
||||
allCustomTrainData,
|
||||
currentTrain,
|
||||
selectedTrain,
|
||||
station,
|
||||
stationList,
|
||||
trainTimeAndNumber,
|
||||
]);
|
||||
|
||||
const finishVoicepeakPlayback = useCallback(() => {
|
||||
isExpoVoicepeakPlayingRef.current = false;
|
||||
isNativeVoicepeakPlayingRef.current = false;
|
||||
cleanupAudioRef.current?.();
|
||||
cleanupAudioRef.current = undefined;
|
||||
pendingVoicepeakAudiosRef.current.forEach((audio) => {
|
||||
if (audio.kind === "expo-audio") audio.cleanup?.();
|
||||
});
|
||||
pendingVoicepeakAudiosRef.current = [];
|
||||
isVoicepeakBusyRef.current = false;
|
||||
|
||||
if (isVoicepeakMountedRef.current) {
|
||||
drainVoicepeakQueueRef.current();
|
||||
}
|
||||
}, []);
|
||||
|
||||
const startVoicepeakAudio = useCallback(
|
||||
async (audio: PreparedVoicepeakAudio) => {
|
||||
cleanupAudioRef.current?.();
|
||||
cleanupAudioRef.current =
|
||||
audio.kind === "expo-audio" ? audio.cleanup : undefined;
|
||||
|
||||
await setAudioModeAsync({
|
||||
playsInSilentMode: true,
|
||||
shouldPlayInBackground: false,
|
||||
interruptionMode: "duckOthers",
|
||||
});
|
||||
|
||||
if (audio.kind === "native-webview") {
|
||||
isNativeVoicepeakPlayingRef.current = true;
|
||||
setNativeVoicepeakHtml(audio.html);
|
||||
setNativeVoicepeakPlaybackKey((current) => current + 1);
|
||||
} else {
|
||||
announcementPlayer.replace(audio.source);
|
||||
announcementPlayer.volume = 1;
|
||||
await announcementPlayer.seekTo(0);
|
||||
isExpoVoicepeakPlayingRef.current = true;
|
||||
announcementPlayer.play();
|
||||
}
|
||||
},
|
||||
[announcementPlayer]
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
startVoicepeakAudioRef.current = startVoicepeakAudio;
|
||||
}, [startVoicepeakAudio]);
|
||||
|
||||
const completeVoicepeakAudioSegment = useCallback(() => {
|
||||
isExpoVoicepeakPlayingRef.current = false;
|
||||
isNativeVoicepeakPlayingRef.current = false;
|
||||
cleanupAudioRef.current?.();
|
||||
cleanupAudioRef.current = undefined;
|
||||
|
||||
const nextAudio = pendingVoicepeakAudiosRef.current.shift();
|
||||
if (!nextAudio || !isVoicepeakMountedRef.current) {
|
||||
finishVoicepeakPlayback();
|
||||
return;
|
||||
}
|
||||
|
||||
void startVoicepeakAudioRef.current(nextAudio).catch((error) => {
|
||||
console.warn("Failed to play Voicepeak announcement segment", error);
|
||||
finishVoicepeakPlayback();
|
||||
});
|
||||
}, [finishVoicepeakPlayback]);
|
||||
|
||||
const playVoicepeakAnnouncementBatch = useCallback(
|
||||
async (candidates: VoicepeakCandidate[]) => {
|
||||
if (!voicepeakSettings || !hasVoicepeakConfiguration(voicepeakSettings)) {
|
||||
candidates.forEach((candidate) => {
|
||||
reservedAnnouncementKeysRef.current.delete(candidate.key);
|
||||
});
|
||||
isVoicepeakBusyRef.current = false;
|
||||
return;
|
||||
}
|
||||
|
||||
const combinedText = candidates
|
||||
.map((candidate) => candidate.text)
|
||||
.join("続いて、");
|
||||
const controller = new AbortController();
|
||||
currentRequestRef.current = controller;
|
||||
|
||||
try {
|
||||
const audios = await requestVoicepeakSpeeches({
|
||||
text: combinedText,
|
||||
settings: voicepeakSettings,
|
||||
signal: controller.signal,
|
||||
});
|
||||
|
||||
if (!isVoicepeakMountedRef.current) {
|
||||
audios.forEach((audio) => {
|
||||
if (audio.kind === "expo-audio") audio.cleanup?.();
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const [firstAudio, ...remainingAudios] = audios;
|
||||
if (!firstAudio) {
|
||||
throw new Error("Voicepeak returned no announcement audio");
|
||||
}
|
||||
pendingVoicepeakAudiosRef.current = remainingAudios;
|
||||
await startVoicepeakAudio(firstAudio);
|
||||
|
||||
candidates.forEach((candidate) => {
|
||||
announcedKeysRef.current.add(candidate.key);
|
||||
reservedAnnouncementKeysRef.current.delete(candidate.key);
|
||||
});
|
||||
} catch (error) {
|
||||
candidates.forEach((candidate) => {
|
||||
reservedAnnouncementKeysRef.current.delete(candidate.key);
|
||||
if (!controller.signal.aborted) {
|
||||
announcedKeysRef.current.add(candidate.key);
|
||||
}
|
||||
});
|
||||
if (!controller.signal.aborted) {
|
||||
console.warn("Failed to play Voicepeak announcement", error);
|
||||
}
|
||||
finishVoicepeakPlayback();
|
||||
} finally {
|
||||
if (currentRequestRef.current === controller) {
|
||||
currentRequestRef.current = null;
|
||||
}
|
||||
}
|
||||
},
|
||||
[finishVoicepeakPlayback, startVoicepeakAudio, voicepeakSettings]
|
||||
);
|
||||
|
||||
const drainVoicepeakQueue = useCallback(() => {
|
||||
if (
|
||||
isVoicepeakBusyRef.current ||
|
||||
queuedAnnouncementsRef.current.size === 0
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
const candidates = [...queuedAnnouncementsRef.current.values()].sort(
|
||||
(a, b) =>
|
||||
a.priority - b.priority ||
|
||||
a.departureTime.localeCompare(b.departureTime)
|
||||
);
|
||||
queuedAnnouncementsRef.current.clear();
|
||||
isVoicepeakBusyRef.current = true;
|
||||
void playVoicepeakAnnouncementBatch(candidates);
|
||||
}, [playVoicepeakAnnouncementBatch]);
|
||||
|
||||
useEffect(() => {
|
||||
drainVoicepeakQueueRef.current = drainVoicepeakQueue;
|
||||
}, [drainVoicepeakQueue]);
|
||||
|
||||
useEffect(() => {
|
||||
if (
|
||||
isExpoVoicepeakPlayingRef.current &&
|
||||
announcementPlayerStatus.didJustFinish
|
||||
) {
|
||||
completeVoicepeakAudioSegment();
|
||||
}
|
||||
}, [
|
||||
announcementPlayerStatus.didJustFinish,
|
||||
completeVoicepeakAudioSegment,
|
||||
]);
|
||||
|
||||
const checkVoicepeakAnnouncement = useCallback(() => {
|
||||
if (!voicepeakSettings || !hasVoicepeakConfiguration(voicepeakSettings)) {
|
||||
return;
|
||||
}
|
||||
|
||||
getVoicepeakCandidates().forEach((candidate) => {
|
||||
if (
|
||||
announcedKeysRef.current.has(candidate.key) ||
|
||||
reservedAnnouncementKeysRef.current.has(candidate.key)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
reservedAnnouncementKeysRef.current.add(candidate.key);
|
||||
queuedAnnouncementsRef.current.set(candidate.key, candidate);
|
||||
});
|
||||
|
||||
drainVoicepeakQueue();
|
||||
}, [drainVoicepeakQueue, getVoicepeakCandidates, voicepeakSettings]);
|
||||
|
||||
useEffect(() => {
|
||||
checkVoicepeakAnnouncement();
|
||||
}, [checkVoicepeakAnnouncement]);
|
||||
|
||||
useInterval(() => {
|
||||
checkVoicepeakAnnouncement();
|
||||
}, 1000);
|
||||
|
||||
const { width } = useWindowDimensions();
|
||||
const adjustedWidth = width * 0.98;
|
||||
@@ -129,6 +551,32 @@ export const LED_vision: FC<props> = (props) => {
|
||||
marginHorizontal: width * 0.01,
|
||||
}}
|
||||
>
|
||||
{Platform.OS !== "web" && (
|
||||
<WebView
|
||||
key={nativeVoicepeakPlaybackKey}
|
||||
source={{ html: nativeVoicepeakHtml }}
|
||||
originWhitelist={["*"]}
|
||||
javaScriptEnabled
|
||||
scrollEnabled={false}
|
||||
mediaPlaybackRequiresUserAction={false}
|
||||
allowsInlineMediaPlayback
|
||||
onMessage={(event) => {
|
||||
const message = event.nativeEvent.data;
|
||||
if (
|
||||
isNativeVoicepeakPlayingRef.current &&
|
||||
(message === "voicepeak-ended" || message === "voicepeak-error")
|
||||
) {
|
||||
completeVoicepeakAudioSegment();
|
||||
}
|
||||
}}
|
||||
style={{
|
||||
position: "absolute",
|
||||
width: 1,
|
||||
height: 1,
|
||||
opacity: 0,
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
<Header station={station[0]} />
|
||||
|
||||
<View
|
||||
@@ -163,7 +611,7 @@ export const LED_vision: FC<props> = (props) => {
|
||||
<AreaDescription
|
||||
numberOfLines={1}
|
||||
areaInfo={areaInfo}
|
||||
onClick={() => alert(areaInfo)}
|
||||
onClick={() => stackAwareNavigate("information")}
|
||||
/>
|
||||
)}
|
||||
|
||||
|
||||
@@ -7,6 +7,12 @@ const BASE_URL = 'https://jr-shikoku-api-data-storage.haruk.in';
|
||||
export const API_ENDPOINTS = {
|
||||
/** 本日のダイアグラムデータ */
|
||||
DIAGRAM_TODAY: `${BASE_URL}/tmp/diagram-today.json`,
|
||||
|
||||
/** 本日のダイアグラムデータ(experimental環境用) */
|
||||
DIAGRAM_TODAY_BETA: `${BASE_URL}/tmp/diagram-today-beta.json`,
|
||||
|
||||
/** JR四国運行情報スナップショット */
|
||||
OPERATION_INFO: `${BASE_URL}/operation-info/jr-shikoku/latest.json`,
|
||||
|
||||
/** カスタム列車データ */
|
||||
CUSTOM_TRAIN_DATA: 'https://haruk.in/api/jr/getTrain.php',
|
||||
|
||||
+37
-1
@@ -91,7 +91,7 @@ export const STORAGE_KEYS = {
|
||||
/** えれサイト使用設定 */
|
||||
USE_ELESITE: 'useElesite',
|
||||
|
||||
/** 投稿システム接続先(デバッグ用) */
|
||||
/** 投稿システム接続先 */
|
||||
JR_DATA_SYSTEM_ENV: 'jrDataSystemEnv',
|
||||
|
||||
/** えれサイトデータ */
|
||||
@@ -109,8 +109,44 @@ export const STORAGE_KEYS = {
|
||||
/** 駅固定モード遅延速報案内機能(サウンド) */
|
||||
SOUND_DELAY_ANNOUNCEMENT: 'soundDelayAnnouncement',
|
||||
|
||||
/** Voicepeak 発車案内機能の有効化スイッチ */
|
||||
VOICEPEAK_ENABLED: 'voicepeakEnabled',
|
||||
|
||||
/** 列車追従中のバックグラウンドりっかちゃん駅接近案内 */
|
||||
BACKGROUND_RIKKA_ANNOUNCEMENT: 'backgroundRikkaAnnouncement',
|
||||
|
||||
/** りっかちゃん駅接近案内の判定元 ("deviceLocation" | "trainPosition") */
|
||||
BACKGROUND_RIKKA_TRIGGER_SOURCE: 'backgroundRikkaTriggerSource',
|
||||
|
||||
/** Voicepeak API ベースURL */
|
||||
VOICEPEAK_BASE_URL: 'voicepeakBaseUrl',
|
||||
|
||||
/** Voicepeak API トークン */
|
||||
VOICEPEAK_API_TOKEN: 'voicepeakApiToken',
|
||||
|
||||
/** Voicepeak 話者名 */
|
||||
VOICEPEAK_SPEAKER: 'voicepeakSpeaker',
|
||||
|
||||
/** カラーテーマ設定 ("light" | "system" | "dark") */
|
||||
COLOR_THEME: 'colorTheme',
|
||||
|
||||
/** 運行情報横倒し機能の有効化スイッチ(β) */
|
||||
OPERATION_INFO_LANDSCAPE_ENABLED: 'operationInfoLandscapeEnabled',
|
||||
|
||||
/** 運行情報スクリーンショット切り出し機能の有効化スイッチ(β) */
|
||||
OPERATION_INFO_CAPTURE_ENABLED: 'operationInfoCaptureEnabled',
|
||||
|
||||
/** モックAPI検証機能の有効化スイッチ(admin専用) */
|
||||
MOCK_API_FEATURE_ENABLED: 'mockApiFeatureEnabled',
|
||||
|
||||
/** 走行位置録画インデックス(admin専用 / 複数録画のメタ情報一覧) */
|
||||
MOCK_RECORDINGS_INDEX: 'mockRecordingsIndex',
|
||||
|
||||
/** 走行位置録画データプレフィックス(admin専用 / + id でキーを構成) */
|
||||
MOCK_RECORDING_DATA_PREFIX: 'mockRecordingData_',
|
||||
|
||||
/** 走行位置録画データ(旧フォーマット / マイグレーション用) */
|
||||
MOCK_RECORDING: 'mockRecording',
|
||||
} as const;
|
||||
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,591 @@
|
||||
# API構成・通信負荷レビュー 2026-07-29
|
||||
|
||||
## 結論
|
||||
|
||||
現状の重さは、単純な「APIレスポンスが遅い」だけではなく、次の4点が重なって発生している。
|
||||
|
||||
1. 同じ大容量データをReact Native側と走行位置WebView側が別々に30秒ごとに取得している。
|
||||
2. 起動時は通常ポーリングとは別に、同じ取得が短時間に2回以上発生する経路がある。
|
||||
3. 更新がなくても全件JSONを再取得し、展開・JSON parse・全件走査・JSON stringify・state更新を繰り返している。
|
||||
4. n8n、Google Apps Script、静的ストレージ、バックエンドAPI、公式Webサイトへ端末が直接接続し、キャッシュ・fallback・データ結合を各端末側で担当している。
|
||||
|
||||
最優先は、バックエンドを単なるデータ取得先ではなく「端末向けBFF(Backend for Frontend)」にして、データ取得の所有者をReact Native側の1か所へ集約すること。そのうえで、WebViewには取得済みデータを注入する。
|
||||
|
||||
バックエンド側では、データの更新頻度を以下の3階層に分けるのがよい。
|
||||
|
||||
- live: 走行位置、運行情報サマリー。5〜15秒単位、差分または304。
|
||||
- operational: 運行ログ、外部運用情報。30〜60秒単位、差分または対象列番だけ。
|
||||
- daily/static: 当日ダイヤ、列車マスタ、駅マスタ。バージョンが変わったときだけ取得。
|
||||
|
||||
この構成にすると、アプリは「複数hostの取得・fallback・結合・キャッシュ」を持たず、`live snapshot` と `versioned resources` を表示するだけになる。
|
||||
|
||||
---
|
||||
|
||||
## 調査範囲
|
||||
|
||||
- `App.tsx` の全Provider
|
||||
- `stateBox` 配下のデータ取得
|
||||
- `lib/webViewInjectjavascript.ts` のWebView内fetchとlocalStorage cache
|
||||
- 走行位置・運行情報の起動時prewarm
|
||||
- 列車詳細、発車標、駅詳細、Android Widgetの個別fetch
|
||||
- API endpoint、ポーリング間隔、timeout、retry、fallback
|
||||
- 2026-07-29時点の公開endpointに対するGET実測
|
||||
|
||||
今回変更したのは本レポートだけで、アプリ実装は変更していない。
|
||||
|
||||
---
|
||||
|
||||
## 現在の通信構造
|
||||
|
||||
```text
|
||||
アプリ起動
|
||||
├─ React Native Providers
|
||||
│ ├─ n8n: current positions(15秒)
|
||||
│ ├─ backend-api: train-data(30秒)
|
||||
│ ├─ backend-api: operation-logs(30秒)
|
||||
│ ├─ data-storage: diagram-today(30秒)
|
||||
│ ├─ n8n + GAS: operation flag/text(60秒)
|
||||
│ ├─ GAS: delay, train-pair, bus/train
|
||||
│ └─ backend-api: permission
|
||||
│
|
||||
├─ 走行位置WebView
|
||||
│ ├─ JR四国公式ページ/XHR
|
||||
│ ├─ backend-api: train-data(30秒)
|
||||
│ ├─ backend-api: operation-logs(30秒)
|
||||
│ ├─ data-storage: diagram-today(30秒)
|
||||
│ ├─ n8n: station-list / position-problems
|
||||
│ └─ data-storage: unyohub / elesite(有効時30秒)
|
||||
│
|
||||
└─ 運行情報WebView
|
||||
└─ JR四国公式ページ
|
||||
```
|
||||
|
||||
走行位置WebViewが表示タブでなくても保持されるため、React Native Providerの通信とWebViewの通信が同時に継続する。
|
||||
|
||||
---
|
||||
|
||||
## 実測したレスポンス
|
||||
|
||||
2026-07-29 10:39〜10:42 UTCに1回ずつ計測した参考値。時間はネットワーク状況で変動する。
|
||||
|
||||
| データ | endpoint | JSON/本文サイズ | zstd交渉時の転送量 | 件数 | 参考応答時間 |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| 列車マスタ/カスタム列車 | `/train-data` | 1,218,990 B | 72,498 B | 1,851 | 0.12〜0.21秒 |
|
||||
| 当日ダイヤ | `/tmp/diagram-today.json` | 667,584 B | 120,278 B | 1,333 | 0.16〜0.52秒 |
|
||||
| 運行ログ | `/operation-logs` | 64,162 B | 9,508 B | 115 | 0.08秒 |
|
||||
| 現在位置 | n8n positions | 13,887 B | 2,328 B | 105 | 0.14〜0.46秒 |
|
||||
| 駅リスト | n8n station-list | 82,561 B | 11,389 B | 9路線 | 0.17〜0.49秒 |
|
||||
| UnyoHub | static JSON | 957,331 B | 62,048 B | 220 | 0.16〜0.56秒 |
|
||||
| えれサイト | static JSON | 867,937 B | 29,588 B | 374 | 0.14〜0.59秒 |
|
||||
| 運行情報本文 | GAS | 小容量 | 20 B(今回) | - | 2.16秒 |
|
||||
| 遅延情報本文 | GAS | 小容量 | 20 B(今回) | - | 1.70秒 |
|
||||
| バス・列車データ | GAS | 小容量 | 1,436 B | - | 2.52秒 |
|
||||
| 列車ペア | GAS | 小容量 | 512 B | - | 1.68秒 |
|
||||
|
||||
### HTTP cacheの状態
|
||||
|
||||
- Cloudflare圧縮は有効であり、転送時の圧縮不足は主問題ではない。
|
||||
- 今回確認した主要endpointには `Cache-Control` がなかった。
|
||||
- `/train-data` と `/operation-logs` は `cf-cache-status: DYNAMIC` で、確認したレスポンスにはETagがなかった。
|
||||
- static JSONにはETag/Last-Modifiedがあるが、`cf-cache-status: DYNAMIC` だった。
|
||||
- UnyoHub/えれサイトはクライアントが毎回 `?_=timestamp` を付けるため、ETagや通常のHTTP cacheを実質利用できない。
|
||||
|
||||
圧縮後の転送量が小さくても、端末では毎回1.2MB等へ展開してJSON parseする。WebView側はさらに全体を `JSON.stringify` して変更判定とlocalStorage保存を行う。
|
||||
|
||||
---
|
||||
|
||||
## 概算負荷
|
||||
|
||||
### 通常時
|
||||
|
||||
走行位置WebViewが一度起動して保持されている前提では、主要3データだけで以下が継続する。
|
||||
|
||||
| 実行場所 | 30秒ごとの対象 | 1分あたりの展開後JSON |
|
||||
|---|---|---:|
|
||||
| React Native | train-data + diagram + operation-logs | 約3.90MB |
|
||||
| WebView | train-data + diagram + operation-logs | 約3.90MB |
|
||||
| React Native | positions(15秒) | 約0.06MB |
|
||||
| 合計 | - | 約7.86MB/分 |
|
||||
|
||||
1時間表示すると、変更有無に関係なく約472MB分のJSONを両JS runtimeで処理する計算になる。zstd相当の圧縮が使われた場合でも、参考転送量は約0.82MB/分、約49MB/時。
|
||||
|
||||
UnyoHubとえれサイトを両方有効にすると、WebViewだけでさらに約3.65MB/分の展開・parseが増える。参考転送量は約0.18MB/分増える。React Native側の同名hookが複数mountされると、その分も追加される。
|
||||
|
||||
### 起動時
|
||||
|
||||
トップメニュー起動から走行位置WebViewの初期化までに、主要JSONだけで概算約6MBが展開・parseされる。これには公式WebViewのHTML、CSS、JavaScript、画像、公式XHR、GAS、n8nの補助APIは含めていない。
|
||||
|
||||
理由:
|
||||
|
||||
- `getCurrentTrain()` は初回effectと `mockApiFeatureEnabled` effectの両方がmount時に走る。
|
||||
- WebViewのPhase 1/2で主要APIを取得した直後、`startPolling()` が初回待機なしで同じAPIを再取得する。
|
||||
- React Native Providerも同じ主要APIを取得済み。
|
||||
|
||||
---
|
||||
|
||||
## 無駄な通信と判断した要素
|
||||
|
||||
### P0: React NativeとWebViewの二重取得
|
||||
|
||||
対象:
|
||||
|
||||
- `/train-data`
|
||||
- `/operation-logs`
|
||||
- `/tmp/diagram-today.json`
|
||||
|
||||
React Native側は `stateBox/useAllTrainDiagram.tsx` で30秒ごと、WebView側は `lib/webViewInjectjavascript.ts` で30秒ごとに取得する。
|
||||
|
||||
同じアプリプロセス内にWebView bridgeがあるため、通信の所有者をReact Native側に統一し、WebViewへ差分注入できる。これだけで主要3データの通信・parse・hash処理をほぼ半減できる。
|
||||
|
||||
### P0: WebView初期取得直後の即時再取得
|
||||
|
||||
WebViewはPhase 1/2で以下を取得する。
|
||||
|
||||
- station-list
|
||||
- operation-logs
|
||||
- position-problems
|
||||
- train-data
|
||||
- diagram-today
|
||||
|
||||
その完了直後に `startPolling()` を呼び、その中で初回fetchを即実行するため、station-list以外の4データを短時間にもう一度取得する。
|
||||
|
||||
ポーリング開始時は最初の30秒を待つか、Phase 1/2の取得時刻を初回ポーリング成功として扱うべき。
|
||||
|
||||
### P0: 起動時positionsの二重取得
|
||||
|
||||
`stateBox/useCurrentTrain.tsx` は以下の2 effectがmount時に両方実行される。
|
||||
|
||||
- dependency `[]` の初回取得
|
||||
- dependency `[mockApiFeatureEnabled]` の切替時取得
|
||||
|
||||
結果として通常位置情報を2本同時に開始し得る。n8n失敗時は各リクエストがretry後にGAS fallbackへ進むため、不調時に通信が増幅する。
|
||||
|
||||
### P0: 非表示タブのWebView prewarm重複
|
||||
|
||||
トップメニュー起動時は、1pxのhidden positions/operation WebViewを読み込む。同時に500ms後にはpositions/information root自体もprewarmされ、実WebViewをmountする。
|
||||
|
||||
hidden WebViewの読み込みが完了前に実WebViewへ切り替わると、公式ページの初期通信を2回行ったうえ、hidden側のwarm-up結果を実WebView instanceへ引き継げない。
|
||||
|
||||
hidden preloadと実root preloadのどちらか一方に統一すべき。
|
||||
|
||||
### P0: 全件データを更新有無に関係なく30秒取得
|
||||
|
||||
特に `/train-data` は1,851件、約1.22MB。多くの `updated_at` は分単位で変わる性質ではないが、30秒ごとに全件取得している。
|
||||
|
||||
`diagram-today` も当日中の変更頻度に対して30秒全件取得は過剰。ETag/If-None-Match、バージョンmanifest、immutable URLのいずれかが必要。
|
||||
|
||||
### P0: UnyoHub/えれサイトの多重ポーラー
|
||||
|
||||
`useUnyohub()` と `useElesite()` は共有Contextではなく、hookを呼ぶコンポーネントごとに独立state・独立intervalを作る。
|
||||
|
||||
確認できた呼び出し箇所:
|
||||
|
||||
- StationDiagramView
|
||||
- StationDiagram/ListView
|
||||
- TrainDataSources
|
||||
- EachTrainInfoCore/HeaderText
|
||||
|
||||
さらにWebViewも同じデータを30秒ごとに取得する。React Native hookは10分間隔だが、mount数に比例して増える。
|
||||
|
||||
両データは約0.96MB、約0.87MBあるため、1つのProvider/BFF queryへ集約する必要がある。
|
||||
|
||||
### P0: cache busterによるHTTP cache無効化
|
||||
|
||||
UnyoHub/えれサイトはReact Native/WebViewの両方で `?_=Date.now()` を付ける。static JSONにはETagがあるため、これは既存のcache能力を捨てている。
|
||||
|
||||
更新確認には `If-None-Match` またはversion manifestを使うべきで、timestamp queryは削除対象。
|
||||
|
||||
### P1: retry時間がpoll間隔を超え、リクエストが重なる
|
||||
|
||||
React Nativeの主要fetchはtimeout 15秒、最大1 retry、retry前wait 0.75〜1.25秒。最悪約31秒かかる一方、poll間隔は30秒。
|
||||
|
||||
positionsはtimeout 8秒 + retryで最悪約17秒、poll間隔は15秒。
|
||||
|
||||
`useInterval` にin-flight guardがないため、不調時に次周期が開始される。バックエンドが遅いほど端末とサーバー双方へ追加負荷をかける。
|
||||
|
||||
### P1: 表示詳細ごとのn8n GET
|
||||
|
||||
位置ID補助情報は少なくとも以下2 componentから同じendpointへ取得される。
|
||||
|
||||
- `TrainDataView`
|
||||
- LED `TrainPosition`
|
||||
|
||||
`TrainDataView` は `currentTrainData` object全体をdependencyにしているため、15秒ごとのpositions更新で同じ位置でも再取得し得る。
|
||||
|
||||
このメタデータはpositionsレスポンスへ結合するか、BFF側の `position_meta_by_key` として一括配信する方がよい。
|
||||
|
||||
### P1: アンパンマン列車statusの再取得
|
||||
|
||||
`TrainIconStatus` のn8n fetchは、列番だけでなく `allCustomTrainData`、`todayOperation`、`iconDisplayMode` の変更でも再実行される。前2つは30秒ごとに新しい配列へ置き換わる。
|
||||
|
||||
同じ列番を複数rowで表示する場合も各componentが個別取得する。日次列車メタデータかlive train contextへstatusを含めるべき。
|
||||
|
||||
### P1: 小容量だが遅いGASへの直接接続
|
||||
|
||||
今回の実測ではGASの小容量responseに1.7〜2.5秒かかった。
|
||||
|
||||
- operation text
|
||||
- delay text
|
||||
- bus/train
|
||||
- train pair
|
||||
- positions fallback
|
||||
|
||||
データ量の問題ではなく、接続先と実行基盤の応答時間が支配的。バックエンドがGASを定期取得・cacheし、端末には同一originから即時返す方がよい。
|
||||
|
||||
### P2: 駅住所の外部LOD API取得
|
||||
|
||||
駅詳細表示時に `jslodApi.json` を直接取得する。駅住所は更新頻度が極めて低いため、駅マスタへ含めるかアプリassetにするべき。
|
||||
|
||||
### P2: 使用されていないendpoint定数
|
||||
|
||||
`constants/api.ts` の以下は現在のアプリコードから参照されていない。
|
||||
|
||||
- `CUSTOM_TRAIN_DATA`
|
||||
- `DELAY_INFO`
|
||||
- `SPECIAL_TRAIN_INFO`
|
||||
|
||||
旧endpointを残すならdeprecated表示と削除予定を明記し、そうでなければ削除してAPI inventoryを単純化する。
|
||||
|
||||
---
|
||||
|
||||
## バックエンド側で簡略化すべき要素
|
||||
|
||||
### 1. 端末向けBFFを1 originに集約
|
||||
|
||||
推奨origin例:
|
||||
|
||||
```text
|
||||
https://jr-shikoku-backend-api-v2.haruk.in
|
||||
```
|
||||
|
||||
BFFが以下を吸収する。
|
||||
|
||||
- n8n
|
||||
- GAS
|
||||
- static data storage
|
||||
- mock/productionの環境差
|
||||
- upstream timeout/retry
|
||||
- last-known-good cache
|
||||
- response schema normalization
|
||||
- source freshness
|
||||
|
||||
端末は各upstream URLを知らず、BFFだけを呼ぶ。
|
||||
|
||||
### 2. 更新頻度別にAPIを分離
|
||||
|
||||
#### `GET /v2/bootstrap`
|
||||
|
||||
小容量の起動manifestと現在のlive summaryだけを返す。
|
||||
|
||||
```json
|
||||
{
|
||||
"schema_version": 2,
|
||||
"generated_at": "2026-07-29T10:40:00Z",
|
||||
"live": {
|
||||
"cursor": "live-...",
|
||||
"positions": [],
|
||||
"operation_summary": {
|
||||
"badge": "",
|
||||
"affected_station_ids": [],
|
||||
"text": "",
|
||||
"is_information": false
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"daily": {
|
||||
"version": "2026-07-29.abc123",
|
||||
"url": "/v2/resources/daily/2026-07-29.abc123.json"
|
||||
},
|
||||
"station_master": {
|
||||
"version": "station.def456",
|
||||
"url": "/v2/resources/stations/station.def456.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
bootstrap自体へ1〜3MBを詰め込むのではなく、version確認とlive初期表示に限定する。
|
||||
|
||||
#### `GET /v2/live`
|
||||
|
||||
対象:
|
||||
|
||||
- positions
|
||||
- operation summary
|
||||
- 必要ならoperation log delta
|
||||
|
||||
`If-None-Match` または `?since=<cursor>` を受け、変更なしなら304/204を返す。
|
||||
|
||||
#### versioned daily resource
|
||||
|
||||
対象:
|
||||
|
||||
- diagram by train id
|
||||
- train metadata by train id
|
||||
- train-pair
|
||||
- special train metadata
|
||||
- アンパンマン列車の当日情報
|
||||
|
||||
URL自体にversionを含め、`Cache-Control: public, max-age=31536000, immutable` を付ける。更新時はbootstrapのversionだけ変える。
|
||||
|
||||
#### `GET /v2/train-context?train_ids=...`
|
||||
|
||||
対象列番だけについて以下を一括で返す。
|
||||
|
||||
- custom train metadata
|
||||
- operations
|
||||
- UnyoHub summary/entries
|
||||
- えれサイト summary/entries
|
||||
- position metadata
|
||||
|
||||
一覧画面ではviewport内の列番をbatch指定する。1列番ごとのN+1 fetchは禁止する。
|
||||
|
||||
### 3. 配列ではなく検索済みindexを返す
|
||||
|
||||
現在は端末側で以下を繰り返している。
|
||||
|
||||
- 1,851件のtrain-dataから `find(train_id)`
|
||||
- operation logs全件から列番をsplit/map/includes
|
||||
- UnyoHub/えれサイト全件から列番をfilter
|
||||
- diagram配列をobjectへ変換・sort
|
||||
|
||||
推奨response:
|
||||
|
||||
```json
|
||||
{
|
||||
"train_meta_by_id": {
|
||||
"1M": {}
|
||||
},
|
||||
"diagram_by_train_id": {
|
||||
"1M": "..."
|
||||
},
|
||||
"operations_by_train_id": {
|
||||
"1M": []
|
||||
},
|
||||
"source_summary_by_train_id": {
|
||||
"1M": {
|
||||
"unyohub": [],
|
||||
"elesite": []
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
これによりアプリ側の全件scan、index作成、同一データの複数表現を削減できる。
|
||||
|
||||
### 4. operation flagと本文を1 responseに統合
|
||||
|
||||
現在はn8n flag取得後、影響駅がある場合にGAS textを追加取得する。
|
||||
|
||||
BFFの `operation_summary` が以下を返せば1回で済む。
|
||||
|
||||
- badge text
|
||||
- is_information
|
||||
- affected areas
|
||||
- affected station IDs
|
||||
- display text
|
||||
- upstream updated_at
|
||||
- stale状態
|
||||
|
||||
### 5. positionsへ位置メタデータを結合
|
||||
|
||||
`PosNum + Line + StationName` で別n8nへ問い合わせているplatform/line/descriptionをpositionsへ結合する。
|
||||
|
||||
レスポンス肥大化が気になる場合は、重複値を `position_meta_by_key` にまとめる。
|
||||
|
||||
### 6. permission APIをquery tokenから分離
|
||||
|
||||
現在はExpo push tokenを `GET /check-permission?user_id=...` に入れている。
|
||||
|
||||
これはURL、proxy log、edge log、Sentry自動HTTP span等へ残りやすく、cacheもしにくい。以下のいずれかへ変更する。
|
||||
|
||||
- `Authorization` header
|
||||
- POST body
|
||||
- push tokenとは別のinstallation IDを発行
|
||||
|
||||
permissionは公開data APIと別cache policyにする。
|
||||
|
||||
---
|
||||
|
||||
## むしろ追加すべき要素
|
||||
|
||||
### P0: ETag / Cache-Control / conditional GET
|
||||
|
||||
推奨例:
|
||||
|
||||
| データ | Cache-Control案 |
|
||||
|---|---|
|
||||
| live positions | `private, max-age=5, stale-while-revalidate=30` |
|
||||
| operation summary/logs | `public, max-age=15, stale-while-revalidate=300` |
|
||||
| third-party summary | `public, max-age=60, stale-while-revalidate=600` |
|
||||
| versioned daily/station resource | `public, max-age=31536000, immutable` |
|
||||
| bootstrap manifest | `no-cache` + ETag |
|
||||
|
||||
`no-cache` は「保存禁止」ではなく再検証を要求する指定として使う。
|
||||
|
||||
### P0: server-side last-known-good
|
||||
|
||||
upstream障害時に全端末がn8n→GAS fallbackを実行するのではなく、BFFが1回だけfallbackし、全端末へ最後の成功データを返す。
|
||||
|
||||
レスポンスに以下を含める。
|
||||
|
||||
```json
|
||||
{
|
||||
"generated_at": "...",
|
||||
"source_updated_at": "...",
|
||||
"stale": true,
|
||||
"stale_age_seconds": 42,
|
||||
"source": "last_known_good"
|
||||
}
|
||||
```
|
||||
|
||||
表示継続できるデータは200 + stale metadataで返し、保持データすらない場合だけ503にする。
|
||||
|
||||
### P0: upstream collector
|
||||
|
||||
端末リクエストのたびにGAS/n8n/JR公式へ取りに行かず、scheduled worker等がupstreamを1回取得してcacheへ保存する。
|
||||
|
||||
```text
|
||||
upstream collector
|
||||
├─ JR公式/n8n/GASを所定間隔で取得
|
||||
├─ schema検証
|
||||
├─ normalize/index作成
|
||||
├─ last-good保存
|
||||
└─ version/cursor更新
|
||||
|
||||
mobile BFF
|
||||
└─ collector結果を低遅延で返す
|
||||
```
|
||||
|
||||
### P1: schema versionとruntime validation
|
||||
|
||||
各responseへ `schema_version` を付ける。collector側で期待schemaを検証し、HTML/error pageや壊れたJSONをcacheへ昇格させない。
|
||||
|
||||
### P1: データ鮮度・cache hitの観測
|
||||
|
||||
最低限、サーバー側で以下を記録する。
|
||||
|
||||
- endpoint
|
||||
- total duration
|
||||
- upstream duration
|
||||
- cache hit/miss/stale
|
||||
- upstream status
|
||||
- payload bytes
|
||||
- item count
|
||||
- source_updated_at / stale_age
|
||||
- conditional requestの304率
|
||||
- active client/version
|
||||
|
||||
追加header例:
|
||||
|
||||
```text
|
||||
X-Data-Age: 12
|
||||
X-Cache-Status: HIT
|
||||
X-Source: n8n
|
||||
X-Schema-Version: 2
|
||||
```
|
||||
|
||||
### P1: change cursor / delta
|
||||
|
||||
positionsやoperation logは全件再送ではなく、cursor以降の変更を返せるとよい。
|
||||
|
||||
```json
|
||||
{
|
||||
"cursor": "next-cursor",
|
||||
"upserts": [],
|
||||
"deletes": []
|
||||
}
|
||||
```
|
||||
|
||||
最初はETag + 304だけでも効果が大きい。deltaは第2段階でよい。
|
||||
|
||||
### P2: invalidation通知
|
||||
|
||||
daily resourceや運行情報が変わったときだけ、既存のpush基盤で「version changed」を通知し、アプリが次回foreground時に再検証する方式を検討できる。
|
||||
|
||||
常時WebSocket/SSEはbackground、再接続、電池消費の複雑性が増すため、最初の解決策にはしない。
|
||||
|
||||
---
|
||||
|
||||
## 推奨する責務分担
|
||||
|
||||
| 処理 | 現在 | 推奨 |
|
||||
|---|---|---|
|
||||
| upstream retry/fallback | 各端末 | BFF/collector |
|
||||
| stale cache | 一部memory/localStorage/AsyncStorage | BFF last-good + 端末persistent cache |
|
||||
| data join | RNとWebViewの双方 | collector |
|
||||
| train id index | 各component/各runtime | backend response |
|
||||
| operation area→station展開 | RN hardcode | BFF operation summary |
|
||||
| WebView用データ取得 | WebView自身 | RN取得結果をbridge注入 |
|
||||
| environment切替 | RNの一部のみ | bootstrap origin/configで統一 |
|
||||
| 更新確認 | 30秒全件GET | version/ETag/cursor |
|
||||
| optional source取得 | 複数hook + WebView | train-context batch |
|
||||
|
||||
---
|
||||
|
||||
## 実装優先順位
|
||||
|
||||
### Phase 0: アプリだけで止められる無駄
|
||||
|
||||
1. `getCurrentTrain()` のmount時二重実行を1回にする。
|
||||
2. WebView Phase 1/2後は30秒待ってからpollする。
|
||||
3. hidden WebView preloadとroot preloadを一方だけにする。
|
||||
4. 非表示positions WebViewのpollを停止する。
|
||||
5. UnyoHub/えれサイトhookを共有Providerへ統合する。
|
||||
6. timestamp cache busterを外す。
|
||||
7. native pollへsingle-flightを入れる。
|
||||
|
||||
この段階だけでも起動時と定常時の重複は大幅に減る。
|
||||
|
||||
### Phase 1: 既存backendをcache frontにする
|
||||
|
||||
1. `/train-data`, `/operation-logs`, positions, GAS系にserver-side cacheを導入。
|
||||
2. ETag/Cache-Control/304を追加。
|
||||
3. last-known-goodとfreshness metadataを追加。
|
||||
4. server-side timing/cache hitの観測を追加。
|
||||
5. static resourceをversioned immutable URLへ移行。
|
||||
|
||||
アプリのresponse schemaを大きく変えずに導入できる。
|
||||
|
||||
### Phase 2: BFF v2
|
||||
|
||||
1. `/v2/bootstrap`
|
||||
2. `/v2/live`
|
||||
3. versioned daily/station resource
|
||||
4. `/v2/train-context?train_ids=...`
|
||||
5. operation summary統合
|
||||
6. indexed response
|
||||
|
||||
### Phase 3: WebViewの通信所有権を廃止
|
||||
|
||||
React NativeがBFFから受け取ったsnapshot/deltaをWebViewへ注入する。既存のmock XHR interceptorがあるため、公式WebViewへ位置情報を渡す技術的な土台はすでに存在する。
|
||||
|
||||
---
|
||||
|
||||
## 期待効果
|
||||
|
||||
保守的に見ても以下を狙える。
|
||||
|
||||
- 主要3データの定常通信・JSON処理を、RN/WebView二重取得の解消だけで約50%削減。
|
||||
- unchanged時に304を使えば、さらに本文転送・JSON parse・state更新をほぼゼロにできる。
|
||||
- `train-data` とdaily diagramをversion変更時だけにすれば、30秒周期の約1.89MB展開処理を両runtimeから除去できる。
|
||||
- 起動時の約6MB主要JSON処理を、live bootstrap + cache済みversion resource中心へ置き換えられる。
|
||||
- GAS/n8n障害時の端末側retry stormを防止できる。
|
||||
- アプリ側は複数host、fallback、area展開、全件join、複数cacheを持たずに済む。
|
||||
|
||||
最終的な目標は「30秒ごとに全部取り直すアプリ」から、「変更通知された小さなsnapshot/deltaを1か所で受け取るアプリ」への移行である。
|
||||
|
||||
---
|
||||
|
||||
## 主な根拠箇所
|
||||
|
||||
- 全Provider mount: `App.tsx`
|
||||
- RN主要3データの30秒poll: `stateBox/useAllTrainDiagram.tsx`
|
||||
- positionsのmount時二重取得と15秒poll: `stateBox/useCurrentTrain.tsx`
|
||||
- operation flag→GAS text: `stateBox/useAreaInfo.tsx`
|
||||
- WebView主要API、cache、即時poll: `lib/webViewInjectjavascript.ts`
|
||||
- hidden preloadとroot preload: `Apps.tsx`
|
||||
- UnyoHub/えれサイトの独立hook: `stateBox/useUnyohub.tsx`, `stateBox/useElesite.tsx`
|
||||
- 位置ID補助N+1: `components/ActionSheetComponents/EachTrainInfo/TrainDataView.tsx`, `components/発車時刻表/LED_inside_Component/TrainPosition.tsx`
|
||||
- アンパンマンstatus再取得: `components/ActionSheetComponents/EachTrainInfoCore/trainIconStatus.tsx`
|
||||
- permission query: `stateBox/useTrainMenu.tsx`
|
||||
@@ -0,0 +1,522 @@
|
||||
# バックグラウンドりっかちゃん通知・Live Activity バックエンド連携計画(素案)
|
||||
|
||||
> ステータス: 相談用ドラフト
|
||||
> 作成日: 2026-07-19
|
||||
> 目的: n8n・Expo Push・APNs・ActivityKitを利用し、アプリが前面にいない状態でも列車追従アナウンスとDynamic Island更新を成立させる。
|
||||
|
||||
## 1. 結論
|
||||
|
||||
既存の通知システムは大部分を再利用できる。
|
||||
|
||||
- 通知対象の登録、購読リスト管理、列車位置の監視、送信判定はn8nを継続利用する。
|
||||
- 通常の表示通知は、まず既存のExpo Push経路を利用する。
|
||||
- Dynamic Island(Live Activity)のリモート更新だけは、ActivityKit専用Push Tokenを使い、n8nまたは専用APIからAPNsへ直接送信する。
|
||||
- 端末で動的生成したりっかちゃん音声をExpo Push経由で再生できるかは、先に実機PoCで確認する。
|
||||
- Expo経由で動的通知音が安定しない場合は、通常通知もAPNs直接送信へ切り替える。
|
||||
|
||||
想定する最終構成は次のとおり。
|
||||
|
||||
```text
|
||||
アプリ
|
||||
├─ ExpoPushToken ───────────────┐
|
||||
├─ ActivityKit Push Token ─────┤
|
||||
├─ 追従列車・運行日・有効期限 ─┤
|
||||
└─ 端末に準備済みの音声一覧 ──┤
|
||||
↓
|
||||
n8n / DB
|
||||
↑
|
||||
列車走行位置情報API
|
||||
│
|
||||
次駅変化・到着接近を判定
|
||||
│
|
||||
┌─────────────────┴─────────────────┐
|
||||
↓ ↓
|
||||
Expo Push Service APNs直接送信
|
||||
通常の表示・音声通知 Live Activity更新
|
||||
↓ ↓
|
||||
「次は、○○です。」 Dynamic Island更新
|
||||
```
|
||||
|
||||
## 2. 実現したいユーザー体験
|
||||
|
||||
### 2.1 列車追従モード
|
||||
|
||||
1. ユーザーがアプリで列車を選び、列車追従を開始する。
|
||||
2. 追従開始時に、経路上の駅について「次は、○○です。」の音声を端末内へ準備する。
|
||||
3. アプリは追従条件とPush Tokenをバックエンドへ登録する。
|
||||
4. アプリがバックグラウンドまたは終了状態でも、バックエンドが列車走行位置を監視する。
|
||||
5. 次駅が変化したとき、表示通知とりっかちゃん音声を配信する。
|
||||
6. 開始済みのLive Activityが存在する場合、Dynamic Islandも同じ状態へ更新する。
|
||||
7. 終着、日付変更、ユーザー操作、有効期限切れのいずれかで追従を終了する。
|
||||
|
||||
### 2.2 駅固定モード
|
||||
|
||||
駅固定モードも同じ購読基盤へ載せられるが、最初のリリースでは列車追従モードを優先する。
|
||||
|
||||
将来は以下のイベントを対象にできる。
|
||||
|
||||
- 対象駅への列車接近
|
||||
- 発車時刻または発車検知
|
||||
- 一定以上の遅延発生
|
||||
- 番線、行先、運休等の重要な変更
|
||||
|
||||
## 3. 「アプリを起動していない状態」の定義
|
||||
|
||||
状態によって実現方法が異なるため、仕様上は明確に区別する。
|
||||
|
||||
| アプリ状態 | 表示・音声Push通知 | 開始済みLive Activityの更新 | 新規Live Activity開始 |
|
||||
|---|---:|---:|---:|
|
||||
| フォアグラウンド | 可能 | 端末内更新・Push更新とも可能 | 可能 |
|
||||
| バックグラウンド | 可能 | APNs Pushで可能 | 別途検討 |
|
||||
| ユーザーがアプリを終了 | 原則可能 | Activityが存続中ならAPNs Pushで可能 | 初期版では対象外 |
|
||||
| 端末再起動後 | 通知許可等に依存 | 既存Activityの状態に依存 | 初期版では対象外 |
|
||||
|
||||
初期版の「アプリを起動していない」は、**追従登録とLive Activity開始を一度アプリ上で行った後、アプリがバックグラウンドまたは終了状態になった場合**を指す。
|
||||
|
||||
バックエンドが表示通知を送る方式では、通知到着時にアプリのJavaScriptを起動する必要はない。そのため、本機能だけを理由にiOSの `UIBackgroundModes` へ `audio` や `remote-notification` を追加しない。
|
||||
|
||||
## 4. 現在の実装と流用範囲
|
||||
|
||||
### 4.1 既に存在するもの
|
||||
|
||||
- `expo-notifications` によるExpo Push Token取得
|
||||
- n8nを介した通知対象リストとExpo Push一斉送信の運用
|
||||
- 列車追従・駅固定のLive Activityネイティブモジュール
|
||||
- `NSSupportsLiveActivities` と `NSSupportsLiveActivitiesFrequentUpdates`
|
||||
- Voicepeak APIによる駅名音声のWAV生成
|
||||
- WAVをiOSの `Library/Sounds` へ保存するネイティブ処理
|
||||
- 駅名から決定的な通知音ファイル名を作る処理
|
||||
- 端末位置方式と列車走行位置方式の設定切替
|
||||
|
||||
### 4.2 現在の制限
|
||||
|
||||
- Live Activityは `pushType: nil` で開始され、ActivityKit Push Tokenを取得していない。
|
||||
- 列車走行位置方式の次駅判定は、アプリのJavaScriptが動作して情報更新を受けている間しか安定して動かない。
|
||||
- 動的生成した `Library/Sounds` 内のWAVを、Expo Push Serviceがカスタム通知音として確実にAPNsへ転送するか未検証。
|
||||
- 通知登録に使うID、購読の有効期限、重複送信防止、Push Receipt処理の正式なデータモデルが未整備。
|
||||
|
||||
## 5. 配信経路の設計
|
||||
|
||||
### 5.1 通常通知
|
||||
|
||||
第一候補は既存経路を維持する。
|
||||
|
||||
```text
|
||||
n8n → Expo Push Service → APNs → iPhone
|
||||
```
|
||||
|
||||
送信例:
|
||||
|
||||
```json
|
||||
{
|
||||
"to": "ExponentPushToken[...]",
|
||||
"title": "列車追従・りっかちゃん",
|
||||
"body": "次は、坂出です。",
|
||||
"sound": "rikka-next-1a2b3c.wav",
|
||||
"priority": "high",
|
||||
"ttl": 60,
|
||||
"data": {
|
||||
"schemaVersion": 1,
|
||||
"type": "train-follow-announcement",
|
||||
"subscriptionId": "sub_xxx",
|
||||
"trainId": "123D",
|
||||
"serviceDate": "2026-07-19",
|
||||
"nextStation": "坂出",
|
||||
"eventId": "123D:2026-07-19:next:坂出"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
同じ駅名は全端末で同じファイル名にする。実際の音声内容は各端末がユーザーのVoicepeak設定で生成するため、サーバーは話者別の音声データを保持しなくてよい。
|
||||
|
||||
ただし、Pushを有効化する前に端末側で対象音声の保存完了を確認する。音声未準備の駅については、次のいずれかを仕様として選択する。
|
||||
|
||||
1. 通常の通知音へフォールバックする。
|
||||
2. 音声なしで表示通知だけ送る。
|
||||
3. 追従開始を失敗としてユーザーへ再試行を案内する。
|
||||
|
||||
初期案は **1の通常通知音フォールバック** とする。
|
||||
|
||||
### 5.2 Live Activity / Dynamic Island
|
||||
|
||||
ActivityKitのリモート更新はExpo Push Tokenではなく、Activity単位のPush Tokenを使用する。
|
||||
|
||||
```text
|
||||
n8nまたはPush送信用API → APNs HTTP/2 → ActivityKit → Dynamic Island
|
||||
```
|
||||
|
||||
必要なAPNsヘッダー:
|
||||
|
||||
```text
|
||||
apns-push-type: liveactivity
|
||||
apns-topic: <Bundle ID>.push-type.liveactivity
|
||||
apns-priority: 5 または 10
|
||||
```
|
||||
|
||||
更新例:
|
||||
|
||||
```json
|
||||
{
|
||||
"aps": {
|
||||
"timestamp": 1784453400,
|
||||
"event": "update",
|
||||
"stale-date": 1784453520,
|
||||
"content-state": {
|
||||
"currentStation": "丸亀~宇多津",
|
||||
"nextStation": "宇多津",
|
||||
"delayMinutes": 3,
|
||||
"scheduledArrival": "18:42",
|
||||
"updatedAt": 1784453400
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Live Activity終了時は `event: "end"` を送信し、最終表示内容とdismissal方針を定める。
|
||||
|
||||
### 5.3 Expo経由の動的音声が利用できない場合
|
||||
|
||||
通常通知もAPNs直接送信へ変更する。
|
||||
|
||||
```text
|
||||
n8nまたはPush送信用API
|
||||
├─ APNs alert push → 表示通知・Library/Sounds内の音声
|
||||
└─ APNs liveactivity push → Dynamic Island
|
||||
```
|
||||
|
||||
Appleの通知仕様では、通知音はアプリバンドルまたはアプリコンテナの `Library/Sounds` 内から指定できる。一方、Expoの公式なカスタムサウンド手順はビルド時設定を前提としているため、この分岐はPoC結果で決定する。
|
||||
|
||||
## 6. アプリからバックエンドへ登録する項目
|
||||
|
||||
### 6.1 追従購読
|
||||
|
||||
```json
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"subscriptionId": "sub_xxx",
|
||||
"installationId": "install_xxx",
|
||||
"mode": "trainFollow",
|
||||
"trainId": "123D",
|
||||
"serviceDate": "2026-07-19",
|
||||
"routeId": "yosan",
|
||||
"destination": "高松",
|
||||
"expoPushToken": "ExponentPushToken[...]",
|
||||
"activity": {
|
||||
"activityId": "activity_xxx",
|
||||
"pushToken": "activitykit_token_hex",
|
||||
"environment": "production"
|
||||
},
|
||||
"preparedSounds": {
|
||||
"宇多津": "rikka-next-xxxx.wav",
|
||||
"坂出": "rikka-next-yyyy.wav"
|
||||
},
|
||||
"createdAt": "2026-07-19T18:00:00Z",
|
||||
"expiresAt": "2026-07-19T23:30:00Z"
|
||||
}
|
||||
```
|
||||
|
||||
### 6.2 必須項目
|
||||
|
||||
| 項目 | 用途 |
|
||||
|---|---|
|
||||
| `subscriptionId` | 購読の更新・停止・冪等性確保 |
|
||||
| `installationId` | Expo TokenをユーザーIDとして扱わないための端末識別子 |
|
||||
| `mode` | 列車追従・駅固定等の判別 |
|
||||
| `trainId` | 監視対象列車 |
|
||||
| `serviceDate` | 同じ列車番号の翌日混同防止 |
|
||||
| `expoPushToken` | 通常通知の送信先 |
|
||||
| `activity.pushToken` | Live Activity更新の送信先 |
|
||||
| `preparedSounds` | 端末に存在する通知音名の確認 |
|
||||
| `expiresAt` | 孤立した購読の自動削除 |
|
||||
|
||||
`activity.pushToken` は更新される可能性があるため、アプリは `pushTokenUpdates` を監視し、変化のたびにバックエンドへ再登録する。
|
||||
|
||||
## 7. バックエンドの状態モデル
|
||||
|
||||
購読とは別に、列車ごとの監視状態を保持する。
|
||||
|
||||
```json
|
||||
{
|
||||
"trainKey": "2026-07-19:123D",
|
||||
"lastPosition": "丸亀~宇多津",
|
||||
"currentStation": "丸亀",
|
||||
"nextStation": "宇多津",
|
||||
"delayMinutes": 3,
|
||||
"lastSourceUpdatedAt": "2026-07-19T18:39:30Z",
|
||||
"lastProcessedAt": "2026-07-19T18:39:31Z",
|
||||
"lastEventId": "123D:2026-07-19:next:宇多津"
|
||||
}
|
||||
```
|
||||
|
||||
### 7.1 重複防止
|
||||
|
||||
通知判定は単なるポーリング回数ではなく、決定的な `eventId` で管理する。
|
||||
|
||||
```text
|
||||
<serviceDate>:<trainId>:<eventType>:<stationId>
|
||||
```
|
||||
|
||||
同一購読・同一 `eventId` の送信は一度だけとし、n8nの再実行やAPIの一時エラーによる重複アナウンスを防ぐ。
|
||||
|
||||
### 7.2 データ鮮度
|
||||
|
||||
列車位置情報が一定時間更新されていない場合、次駅変化を確定しない。
|
||||
|
||||
初期案:
|
||||
|
||||
- 位置情報の取得周期: 15~30秒
|
||||
- 情報の許容鮮度: 90秒
|
||||
- 同じ変化を2回連続で観測した場合に確定。ただし情報源がイベント時刻や連番を持つ場合は再検討する。
|
||||
- 終着または有効期限超過で監視終了
|
||||
|
||||
## 8. n8nワークフロー案
|
||||
|
||||
### Workflow A: 購読登録・更新
|
||||
|
||||
1. アプリから署名付きリクエストを受け取る。
|
||||
2. スキーマ、通知許可、運行日、有効期限を検証する。
|
||||
3. `subscriptionId` をキーにupsertする。
|
||||
4. 同じ端末・同じ列車の古い購読を無効化する。
|
||||
5. 登録結果とサーバー時刻を返す。
|
||||
|
||||
### Workflow B: 列車位置監視
|
||||
|
||||
1. 有効な購読を列車単位で集約する。
|
||||
2. 同じ列車の位置情報は一度だけ取得する。
|
||||
3. 前回状態と比較して、次駅・現在位置・遅延の変化を算出する。
|
||||
4. データ鮮度と連続観測条件を検証する。
|
||||
5. 新しい `eventId` をイベントキューへ登録する。
|
||||
|
||||
### Workflow C: 通常通知送信
|
||||
|
||||
1. イベントに該当する購読者を抽出する。
|
||||
2. `preparedSounds[nextStation]` の有無を確認する。
|
||||
3. 最大100件単位でExpo Pushへ送る。
|
||||
4. Expo Push Ticketを保存する。
|
||||
5. 後続処理でPush Receiptを取得する。
|
||||
6. `DeviceNotRegistered` のExpo Tokenを無効化する。
|
||||
7. 429・5xxは指数バックオフ付きで再試行する。
|
||||
|
||||
### Workflow D: Live Activity更新
|
||||
|
||||
1. ActivityKit Push Tokenを持つ購読だけ抽出する。
|
||||
2. APNs JWTを生成または再利用する。
|
||||
3. `liveactivity` 用ヘッダーと `content-state` を送る。
|
||||
4. APNs応答を保存する。
|
||||
5. 無効・期限切れTokenを無効化する。
|
||||
6. 通常更新は優先度5、次駅変化等の主要イベントは必要に応じて10とする。
|
||||
|
||||
### Workflow E: 購読終了・清掃
|
||||
|
||||
以下の条件で購読を終了する。
|
||||
|
||||
- ユーザーが追従停止を操作
|
||||
- 別列車へ追従対象を変更
|
||||
- 列車が終着
|
||||
- `expiresAt` 超過
|
||||
- Push Tokenが無効
|
||||
- 数時間にわたり列車データを取得できない
|
||||
|
||||
## 9. API素案
|
||||
|
||||
### `POST /v1/tracking-subscriptions`
|
||||
|
||||
追従開始。`subscriptionId` を指定した再送は冪等に処理する。
|
||||
|
||||
### `PATCH /v1/tracking-subscriptions/{subscriptionId}`
|
||||
|
||||
ActivityKit Push Token、Expo Push Token、準備済み音声一覧などを更新する。
|
||||
|
||||
### `DELETE /v1/tracking-subscriptions/{subscriptionId}`
|
||||
|
||||
追従停止。既存Live Activityをバックエンド側から終了させる必要がある場合は、削除前に `event: end` を送る。
|
||||
|
||||
### `POST /v1/tracking-subscriptions/{subscriptionId}/heartbeat`
|
||||
|
||||
初期版では必須にしない。将来、端末状態や購読継続確認が必要になった場合だけ追加する。
|
||||
|
||||
## 10. アプリ側の変更計画
|
||||
|
||||
### 10.1 ActivityKit対応
|
||||
|
||||
- `Activity.request(..., pushType: nil)` を `pushType: .token` へ変更する。
|
||||
- `activity.pushTokenUpdates` を監視する。
|
||||
- Activity IDとPush TokenをJSへ通知するExpo Module APIを追加する。
|
||||
- Token変更、Activity終了、追従解除をバックエンドへ反映する。
|
||||
- Live Activityの `ContentState` とAPNs `content-state` の型を完全一致させる。
|
||||
|
||||
### 10.2 追従登録
|
||||
|
||||
- 音声生成が完了した駅とファイル名を収集する。
|
||||
- Expo Push Token、ActivityKit Push Token、列車情報を購読APIへ登録する。
|
||||
- 登録中、登録済み、部分成功、失敗をUIで区別する。
|
||||
- 追従停止時は購読削除を送る。通信失敗時はローカルに停止要求を保持して再試行する。
|
||||
|
||||
### 10.3 通知処理
|
||||
|
||||
- 通知タップ時に対象列車画面へ遷移する。
|
||||
- `schemaVersion` と `type` を検証し、未知のPayloadを安全に無視する。
|
||||
- フォアグラウンド受信時にも二重音声再生しない。
|
||||
- 端末内通知音が欠損している場合の挙動を実機確認する。
|
||||
|
||||
## 11. APNs認証情報と運用
|
||||
|
||||
APNs直接送信には最低限、以下が必要になる。
|
||||
|
||||
- Apple DeveloperのAPNs Auth Key(`.p8`)
|
||||
- Key ID
|
||||
- Team ID
|
||||
- Bundle ID
|
||||
- development / production環境の識別
|
||||
|
||||
`.p8` と署名用秘密情報はアプリ、Git、n8nワークフロー定義へ直接埋め込まない。n8n Credentialsまたは専用のSecrets管理へ保存する。
|
||||
|
||||
n8nからAPNs HTTP/2とJWT処理を安定して扱えない場合、APNs送信だけを小さなCloudflare Worker、Lambda、Cloud Run等へ分離し、n8nはその内部APIを呼ぶ。
|
||||
|
||||
## 12. セキュリティ・プライバシー
|
||||
|
||||
- Expo Push Tokenを認証済みユーザーIDとして扱わない。
|
||||
- `installationId` と購読用の署名または短期トークンを導入する。
|
||||
- 登録APIをレート制限する。
|
||||
- 他人の `subscriptionId` を推測して更新・削除できないようにする。
|
||||
- Push Tokenをログ本文へそのまま出さず、必要なら末尾数文字のみ記録する。
|
||||
- 保存する情報は追従に必要な列車、運行日、通知Tokenに限定する。
|
||||
- 有効期限超過後は速やかに削除する。
|
||||
|
||||
## 13. 障害時の挙動
|
||||
|
||||
| 障害 | 推奨挙動 |
|
||||
|---|---|
|
||||
| 列車位置API停止 | 古い位置から通知せず、Live Activityをstale表示にする |
|
||||
| Expo Push一時障害 | 指数バックオフで再試行。ただし次駅通知のTTL超過後は破棄 |
|
||||
| APNs一時障害 | 短時間再試行し、次の状態更新で上書き可能にする |
|
||||
| 音声未準備 | 通常音または音なしの表示通知へフォールバック |
|
||||
| Activity Token無効 | Dynamic Island更新のみ停止し、通常通知は継続 |
|
||||
| Expo Token無効 | 通常通知を停止し、購読を無効化または端末再登録待ちにする |
|
||||
| 重複イベント | `eventId` と購読単位の送信履歴で抑止 |
|
||||
| 位置情報が逆行・飛躍 | 連続観測と路線順序検証で確定を保留 |
|
||||
|
||||
## 14. 段階的な実装計画
|
||||
|
||||
### Phase 0: 技術PoC
|
||||
|
||||
- [ ] 実機で端末の `Library/Sounds` に動的WAVを保存する。
|
||||
- [ ] n8nからExpo Pushの `sound` にそのファイル名を指定する。
|
||||
- [ ] アプリが前面、背面、終了状態の3条件で音声再生を確認する。
|
||||
- [ ] マナーモード、集中モード、Bluetooth、他アプリ音声再生中も確認する。
|
||||
- [ ] Expo Push TicketとReceiptを保存・確認する。
|
||||
- [ ] ActivityKit Push Tokenを取得する最小実装を作る。
|
||||
- [ ] APNsから1回だけLive Activity更新を送る。
|
||||
|
||||
**判定ゲート:**
|
||||
|
||||
- 動的WAVがExpo経由で安定再生する → 通常通知はExpoを継続。
|
||||
- 動的WAVが無音、デフォルト音、環境依存になる → 通常通知もAPNs直送へ変更。
|
||||
|
||||
### Phase 1: 列車追従MVP
|
||||
|
||||
- [ ] 列車追従購読APIを作成する。
|
||||
- [ ] 列車単位の共有ポーリングと次駅変化判定を作る。
|
||||
- [ ] `eventId` による重複防止を実装する。
|
||||
- [ ] 「次は、○○です。」通常Push通知を実装する。
|
||||
- [ ] 終着・停止・期限切れ処理を実装する。
|
||||
- [ ] n8n上で送信状況を確認できるログを用意する。
|
||||
|
||||
### Phase 2: Dynamic Island連携
|
||||
|
||||
- [ ] Live Activityを `pushType: .token` で開始する。
|
||||
- [ ] Token更新を購読APIへ同期する。
|
||||
- [ ] APNs Live Activity更新処理を実装する。
|
||||
- [ ] 次駅、現在位置、遅延、到着予定を同期する。
|
||||
- [ ] stale、終了、Token無効時の処理を実装する。
|
||||
|
||||
### Phase 3: 駅固定モードと運用品質
|
||||
|
||||
- [ ] 駅固定購読を同じデータモデルへ追加する。
|
||||
- [ ] 遅延・接近・発車イベントを追加する。
|
||||
- [ ] 監視、メトリクス、失敗通知を整備する。
|
||||
- [ ] 負荷試験とAPI障害試験を実施する。
|
||||
- [ ] 不要Tokenと期限切れ購読の自動清掃を実装する。
|
||||
|
||||
## 15. テスト項目
|
||||
|
||||
### 15.1 通知音
|
||||
|
||||
- 対象WAVあり / なし
|
||||
- アプリ前面 / 背面 / 終了
|
||||
- 通常モード / マナーモード / 集中モード
|
||||
- 端末スピーカー / Bluetooth / CarPlay相当環境
|
||||
- 音楽や動画再生中
|
||||
- 通知許可あり / サウンドのみ拒否 / 通知拒否
|
||||
|
||||
iOSのユーザー設定や集中モードをアプリ側から回避する設計にはしない。
|
||||
|
||||
### 15.2 列車位置判定
|
||||
|
||||
- 通常走行
|
||||
- 長時間停車
|
||||
- 遅延
|
||||
- 位置情報欠落
|
||||
- 位置の逆行または瞬間的な誤値
|
||||
- 途中駅通過
|
||||
- 列車番号重複と日付跨ぎ
|
||||
- 併結、分割、列車番号変更がデータ上存在する場合
|
||||
|
||||
### 15.3 PushとLive Activity
|
||||
|
||||
- Token更新
|
||||
- 無効Token
|
||||
- 二重送信
|
||||
- 順不同到着
|
||||
- 古いPayload到着
|
||||
- APNs 410等のエラー
|
||||
- Activityがユーザーによって終了された場合
|
||||
- 追従停止直後に送信イベントが競合した場合
|
||||
|
||||
## 16. App Review上の説明方針
|
||||
|
||||
本機能はバックグラウンドで継続的にオーディオ再生するものではない。列車位置判定はサーバー側で行い、利用者が明示的に登録した追従条件に対して、通常のユーザー通知として短い音声を再生する。
|
||||
|
||||
そのため、初期方針では `UIBackgroundModes = audio` を要求しない。Live ActivityはActivityKitとAPNsの正規手段で更新する。
|
||||
|
||||
Review Notesでは以下を簡潔に説明する。
|
||||
|
||||
- ユーザーが列車追従を明示的に開始・停止できること
|
||||
- 通知と音声を設定画面で無効化できること
|
||||
- 音声は通知到着時だけ短時間再生されること
|
||||
- バックグラウンドで常時音声処理を行わないこと
|
||||
- Dynamic IslandはActivityKit Pushで更新すること
|
||||
|
||||
## 17. 未決事項
|
||||
|
||||
別の設計レビューでは、特に以下を確認したい。
|
||||
|
||||
1. Expo Push経由で `Library/Sounds` の動的WAV指定が実運用上保証できるか。
|
||||
2. n8nからAPNs HTTP/2へ直接送るか、署名・再試行を担当する小規模Push APIを分離するか。
|
||||
3. 列車位置変化を「1回で確定」するか「2回連続観測で確定」するか。
|
||||
4. 次駅アナウンスの発火点を、区間進入時、前駅発車時、次駅接近時のどこに置くか。
|
||||
5. 音声準備に一部失敗した状態で追従開始を許可するか。
|
||||
6. 駅固定モードをMVPへ含めるか、列車追従の安定後に追加するか。
|
||||
7. APNs認証情報をn8nで保持するか、専用Push APIでのみ保持するか。
|
||||
8. Live Activityの開始を常にアプリ操作必須とするか、将来Push-to-startを検討するか。
|
||||
9. Voicepeak設定変更後、同じファイル名の音声をいつ再生成するか。
|
||||
10. 列車走行位置情報APIの利用条件、更新間隔、障害時保証をどこまで前提にできるか。
|
||||
|
||||
## 18. 推奨する初期判断
|
||||
|
||||
- MVPは列車追従モードだけに絞る。
|
||||
- n8nの既存購読リストとExpo一斉送信を維持する。
|
||||
- Phase 0の実機PoCを最優先し、動的音声の配信経路を先に確定する。
|
||||
- Dynamic IslandはExpo経由を試さず、最初からAPNs直接送信とする。
|
||||
- APNs送信処理は将来の再利用性と秘密鍵管理を考え、可能ならn8n外の小規模APIへ分離する。
|
||||
- アプリが閉じていても通知は成立させるが、初期版では追従開始そのものはアプリ操作を必須とする。
|
||||
- `UIBackgroundModes = audio` は復活させない。
|
||||
|
||||
## 19. 参考資料
|
||||
|
||||
- [Apple: Generating a remote notification](https://developer.apple.com/documentation/usernotifications/generating-a-remote-notification)
|
||||
- [Apple: Starting and updating Live Activities with ActivityKit push notifications](https://developer.apple.com/documentation/activitykit/starting-and-updating-live-activities-with-activitykit-push-notifications)
|
||||
- [Expo: Send notifications with the Expo Push Service](https://docs.expo.dev/push-notifications/sending-notifications/)
|
||||
- [Expo: Notifications SDK](https://docs.expo.dev/versions/latest/sdk/notifications/)
|
||||
- [既存のiOS Live Activity Push計画](./ios-live-activity-push-plan.md)
|
||||
- [既存のサウンド機能計画](./sound-feature-plan.md)
|
||||
@@ -0,0 +1,81 @@
|
||||
# 064d81d4 -> a959cf39 更新ログ(機能説明フォーカス版)
|
||||
|
||||
## この差分で何が良くなったか
|
||||
この更新では、大きな新機能追加よりも、既存機能を日常利用で安定して使えるようにする改善が中心です。
|
||||
|
||||
特に「外部連携の扱いやすさ」「画面遷移の安定性」「キーボード/アニメーション時の操作感」に効く変更がまとまって入っています。
|
||||
|
||||
---
|
||||
|
||||
## 1. 運用Hub(elesite)連携の運用性向上
|
||||
### 実装/更新された機能
|
||||
- elesite連携の権限ハンドリングを簡素化し、設定分岐を整理。
|
||||
- 列車ペアマッピングと貨物列車の車番処理を改善。
|
||||
- elesiteロゴ追加など、情報ソース表示の視認性を改善。
|
||||
- 投稿システム接続先を切り替えて検証できるデバッグ導線を追加。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 情報ソース連携時の挙動が安定し、設定後の迷いが減ります。
|
||||
- 表示データの整合性が上がり、参照時の信頼感が向上します。
|
||||
|
||||
## 2. ナビゲーション基盤の強化
|
||||
### 実装/更新された機能
|
||||
- stackAwareNavigate導入で、遷移時のスタック管理を改善。
|
||||
- ルート状態監視(onStateChange)を見直し、アクティブルート判定を精度向上。
|
||||
- StatusBar表示制御をフォーカス状態ベースに改善。
|
||||
- WebView内ナビゲーションの扱いを調整。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 画面遷移での予期しない戻り/重複遷移が起きにくくなります。
|
||||
- 画面表示の一貫性が上がり、操作中の違和感が減ります。
|
||||
|
||||
## 3. キーボード回避とActionSheet操作感の改善
|
||||
### 実装/更新された機能
|
||||
- キーボード回避を Animated.timing / spring ベースに移行。
|
||||
- SearchUnitBoxでanimatedOffsetを使った追従へ改善。
|
||||
- EachTrainInfo ActionSheetのスプリング破綻を修正。
|
||||
- 調整内容を技術ドキュメントとして記録。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 連続操作時でもUIの位置ずれが起きにくくなります。
|
||||
- シート表示や検索入力時の「引っかかり」が減り、操作が滑らかになります。
|
||||
|
||||
## 4. 列車情報画面の表示品質改善
|
||||
### 実装/更新された機能
|
||||
- HeaderTextのtodayOperation判定を改善し、不要な表示混入を抑制。
|
||||
- TrainDataViewの長押し条件を実データ基準へ調整。
|
||||
- ExGridViewの不要ズーム設定を除去。
|
||||
- ListViewItemの循環アニメーションを改善。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 列車情報の表示が実態に近づき、誤認しにくくなります。
|
||||
- 長押しや一覧切替の体験が自然になり、ストレスが減ります。
|
||||
|
||||
## 5. 設定・内部運用の整備
|
||||
### 実装/更新された機能
|
||||
- 内部バージョン表記を7.0.2へ更新。
|
||||
- 情報ソース設定まわりを拡張し、運用切替時の扱いを改善。
|
||||
- タブバーアニメーション/キーボード非表示設定の整理を実施。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 設定変更後の挙動がより予測しやすくなります。
|
||||
- 端末や利用状況の違いによる操作ブレが軽減されます。
|
||||
|
||||
## 6. ドキュメント整備(将来拡張と保守性)
|
||||
### 実装/更新された機能
|
||||
- チュートリアル機能の設計案を追加。
|
||||
- プライバシーポリシー関連ドキュメントを整備。
|
||||
- キーボード/ActionSheet調整の修正履歴を記録。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 直接見える機能ではありませんが、今後の改善や不具合修正が速くなり、結果として体験品質の向上につながります。
|
||||
|
||||
---
|
||||
|
||||
## まとめ
|
||||
この更新は、外部連携・画面遷移・入力時アニメーションなど、日常操作で「気になりやすい部分」を重点的に磨いた差分です。
|
||||
|
||||
新機能を増やすよりも、既存機能を安定して快適に使えるようにすることに重きを置いた内容になっています。
|
||||
|
||||
## 参照
|
||||
- コミット差分精査版: docs/changelog-064d81d-to-a959cf3.md
|
||||
@@ -0,0 +1,125 @@
|
||||
# コミット差分ログ(064d81d4 -> a959cf39)
|
||||
|
||||
## 対象範囲
|
||||
- From: `064d81d468f21db4318a55f8fad4c432745d2441`
|
||||
- To: `a959cf3973eb9635c9e61133d81de5c1f9719c18`
|
||||
- 集計メモ:
|
||||
- レンジ内コミット(merge含む): 31
|
||||
- 非mergeコミット: 22
|
||||
- 変更ファイル数: 44
|
||||
- 変更行数: +1566 / -305
|
||||
|
||||
## サマリー
|
||||
このレンジでは、運用Hub(elesite/投稿系)連携の実運用改善、キーボード回避とActionSheetのアニメーション安定化、ナビゲーションのスタック制御改善、設定画面とWebView周辺の挙動調整が中心に進められました。
|
||||
|
||||
機能追加は大規模というより、既存機能の「誤動作しにくさ」「切替時の安定性」「運用しやすさ」を高める改善が多い構成です。
|
||||
|
||||
---
|
||||
|
||||
## 1. 運用Hub/外部連携(elesite・投稿系)の改善
|
||||
- elesite連携の権限ハンドリングを簡素化し、設定/運用時の分岐を整理。
|
||||
- 列車ペアマッピングや貨物列車の車番処理を改善し、データ整合性を向上。
|
||||
- elesiteロゴ資産を追加し、情報ソース表示の視認性を改善。
|
||||
- 投稿システム接続先のデバッグ機能を追加し、環境切替の検証性を向上。
|
||||
|
||||
主なコミット:
|
||||
- `fac89f6` fix: simplify elesite permission handling and update version code to 7.0.2
|
||||
- `94eb84b` fix: update train pair mapping in BusAndTrainDataProvider
|
||||
- `ad5357c` 運用Hub情報の取得ロジックを改善し、貨物列車の車番処理を追加
|
||||
- `1b2ba08` feat: 投稿システム接続先のデバッグ機能を追加
|
||||
- `ff90841` Add new logo image for Elesite to relationLogo assets
|
||||
|
||||
## 2. 画面遷移・ナビゲーション基盤の安定化
|
||||
- `stackAwareNavigate` を導入し、遷移時のスタック管理を強化。
|
||||
- App状態遷移時のアクティブルート判定を改善し、ルーティング誤判定を抑制。
|
||||
- StatusBar表示ロジックを見直し、フォーカス状態を踏まえた表示制御に更新。
|
||||
- WebViewナビゲーション挙動を調整し、画面内遷移の扱いを改善。
|
||||
|
||||
主なコミット:
|
||||
- `5914646` stackAwareNavigate関数を導入し、遷移時のナビゲーションロジックを改善
|
||||
- `a54ef7c` スタック管理強化 + 設計メモ追加
|
||||
- `6b46c71` AppContainerのonStateChangeロジックを改善
|
||||
- `9e2abc9` StatusBarの表示ロジックを改善
|
||||
- `3ecb301` fix: update WebView navigation
|
||||
|
||||
## 3. キーボード回避・ActionSheetアニメーション改善
|
||||
- キーボード回避を `Animated.timing/spring` ベースへ移行し、切替時の位置ずれを緩和。
|
||||
- SearchUnitBoxで `animatedOffset` を利用したスムーズな追従に変更。
|
||||
- ActionSheet(EachTrainInfo)で発生していたスプリング破綻を修正。
|
||||
- 調整内容をドキュメント化し、再発時のトラブルシュート性を向上。
|
||||
|
||||
主なコミット:
|
||||
- `4017f82` fix: キーボード回避をAnimated.timing/springに移行
|
||||
- `36be780` fix(SearchUnitBox): use animatedOffset with Animated.View
|
||||
- `8b42644` fix: EachTrainInfo ActionSheetのスプリングアニメーション破綻を修正
|
||||
- `b87c6f8` docs: キーボードアニメーション調整に関するドキュメントを追加
|
||||
- `4809426` docs: ActionSheetアニメーション破綻の修正記録を追加
|
||||
|
||||
## 4. 列車情報表示・操作の品質改善
|
||||
- HeaderTextの `todayOperation` 判定を調整し、完了済み運用の混入を抑制。
|
||||
- TrainDataViewのロングプレス判定条件を `onLine` 依存から実データ依存へ改善。
|
||||
- ExGridViewの不要ズームスケール設定を除去し、スクロール挙動の安定性を向上。
|
||||
- ListViewItemの循環アニメーションを改善し、表示切替の自然さを向上。
|
||||
|
||||
主なコミット:
|
||||
- `5a1430d` fix(HeaderText): filter out completed operations
|
||||
- `07399f4` fix(HeaderText) + fix(TrainIconStatus)
|
||||
- `76a617c` fix(TrainDataView): onLongPress condition update
|
||||
- `a09ba45` fix(ExGridView): remove zoom scale properties
|
||||
- `94eb84b` fix: enhance ListViewItem cycling animation
|
||||
|
||||
## 5. 設定・内部運用の整備
|
||||
- 設定画面側の内部バージョン更新(7.0.2)を反映。
|
||||
- データソース設定画面を拡張し、運用切替時の扱いを改善。
|
||||
- タブバーアニメーション/キーボード関連の設定を整理し、UI挙動を安定化。
|
||||
|
||||
主なコミット:
|
||||
- `fac89f6` fix: update version code to 7.0.2
|
||||
- `374901c` fix: タブバーアニメーションとキーボード非表示設定を削除
|
||||
|
||||
## 6. ドキュメント拡充(運用・設計)
|
||||
- チュートリアル機能の設計案を追加。
|
||||
- プライバシーポリシー文書(本番/将来案)を追加。
|
||||
- アニメーション調整や修正履歴の技術ドキュメントを追加。
|
||||
|
||||
追加ドキュメント:
|
||||
- `docs/tutorial-feature-plan.md`
|
||||
- `docs/privacy-policy.md`
|
||||
- `docs/privacy-policy-future.md`
|
||||
- `docs/actionsheet-animation-fix.md`
|
||||
- `docs/keyboard-animation-tuning-2026-04-08.md`
|
||||
- `docs/keyboard-animation-tuning-2026-04-09.md`
|
||||
|
||||
---
|
||||
|
||||
## 変更リスクと確認ポイント
|
||||
- 画面遷移系:
|
||||
- stackAwareNavigate導入に伴い、既存deep link/戻る挙動との整合確認が必要。
|
||||
- キーボード/アニメーション系:
|
||||
- 端末ごとのキーボード表示速度差で再ズレが起きないか継続確認が必要。
|
||||
- 外部連携系:
|
||||
- elesite権限状態の境界ケース(未許可/再許可/切替直後)で表示崩れがないか要確認。
|
||||
|
||||
## 付録: 非mergeコミット一覧(22件)
|
||||
- `fac89f6` fix: simplify elesite permission handling and update version code to 7.0.2
|
||||
- `94eb84b` fix: enhance ListViewItem cycling animation and update train pair mapping in BusAndTrainDataProvider
|
||||
- `3ecb301` fix: update WebView navigation and adjust interval timing in CurrentTrainProvider
|
||||
- `5a1430d` fix(HeaderText): update todayOperation prop to filter out completed operations
|
||||
- `ff90841` Add new logo image for Elesite to relationLogo assets
|
||||
- `a09ba45` fix(ExGridView): remove zoom scale properties from Animated.ScrollView
|
||||
- `76a617c` fix(TrainDataView): update onLongPress condition to check currentTrainData instead of onLine
|
||||
- `07399f4` fix(HeaderText): update todayOperation to use allTodayOperation for accurate state filtering
|
||||
- `1b2ba08` feat: 投稿システム接続先のデバッグ機能を追加し、環境設定を管理できるようにした
|
||||
- `374901c` fix: タブバーのアニメーションとキーボード非表示設定を削除
|
||||
- `36be780` fix(SearchUnitBox): use animatedOffset with Animated.View for smooth keyboard avoidance
|
||||
- `b87c6f8` docs: キーボードアニメーション調整に関するドキュメントを追加
|
||||
- `4017f82` fix: キーボード回避をAnimated.timing/springに移行し、高速切替時の位置ずれとアニメーション不動を解消
|
||||
- `58ce5fa` feat: チュートリアル機能の設計案を追加し、ユーザーの初回体験を改善
|
||||
- `4809426` docs: ActionSheetアニメーション破綻の修正記録を追加
|
||||
- `8b42644` fix: EachTrainInfo ActionSheetのスプリングアニメーション破綻を修正
|
||||
- `5914646` stackAwareNavigate関数を導入し、遷移時のナビゲーションロジックを改善
|
||||
- `a54ef7c` ナビゲーションロジックを改善し、stackAwareNavigate関数を導入して遷移時のスタック管理を強化。プライバシーポリシーと設計メモを追加。
|
||||
- `6b46c71` AppContainerのonStateChangeロジックを改善し、アクティブなルートの状態を正確にチェックするように修正
|
||||
- `9e2abc9` StatusBarの表示ロジックを改善し、Appsコンポーネントにフォーカス状態を追加
|
||||
- `ad5357c` 運用Hub情報の取得ロジックを改善し、貨物列車の車番処理を追加
|
||||
- `045ed21` 噂機能のスタイル強化
|
||||
@@ -0,0 +1,82 @@
|
||||
# a959cf39 -> 0b349148 更新ログ(機能説明フォーカス版)
|
||||
|
||||
## この差分で何が良くなったか
|
||||
この更新では、列車位置を「その場で見る」だけでなく、「記録してあとから再生する」ための機能が大きく強化されました。
|
||||
|
||||
同時に、mockデータを使った検証導線やWebView側の安定性も改善され、実データが不安定な状況でも挙動確認や表示調整を進めやすくなっています。
|
||||
|
||||
---
|
||||
|
||||
## 1. 列車位置の記録・再生機能を追加
|
||||
### 実装/更新された機能
|
||||
- 列車位置の記録・再生機能を追加。
|
||||
- 再生タイムラインUIを実装し、再生・一時停止・シーク操作に対応。
|
||||
- 経過時間を表示するステータスバーを追加。
|
||||
- 再生中はkeep-awakeで画面が落ちにくいよう調整。
|
||||
- 再生開始時クラッシュや複数録画時の扱いを修正。
|
||||
- 録画一覧の保存・再生・削除を設定画面から扱えるようにした。
|
||||
- 再生は記録時の時間差を反映して自動進行し、ループ末尾では待機を入れるようにした。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 運行状況の変化をあとから振り返りやすくなります。
|
||||
- ある時点の列車位置を止めて確認できるため、検証や比較がしやすくなります。
|
||||
- 以前の録画形式が残っていても、継続して参照しやすくなります。
|
||||
|
||||
## 2. mock列車位置データでの検証がしやすくなった
|
||||
### 実装/更新された機能
|
||||
- WebViewへmock列車位置データを注入する仕組みを追加。
|
||||
- 設定画面に管理者向けのmock API切替を追加。
|
||||
- mock切替時にWebViewを再読み込みするよう改善。
|
||||
- app側の列車位置表示にもmockデータを反映するよう調整。
|
||||
- XHRインターセプタの初期化タイミングと互換性を改善。
|
||||
- 録画開始時はmockを自動でOFFにし、再生開始時は自動でONに切り替えるようにした。
|
||||
- WebView側では二重注入を避ける保護を入れ、mock適用の安定性を改善。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 実データに依存せず、特定状況の表示確認や再現テストを行いやすくなります。
|
||||
- 検証時に「一部だけ反映されない」状態が起きにくくなります。
|
||||
|
||||
## 3. WebViewの読み込み失敗時の扱いを改善
|
||||
### 実装/更新された機能
|
||||
- ローディング表示とエラー表示を追加。
|
||||
- 再読み込み導線を追加。
|
||||
- アプリのバックグラウンド復帰時のリマウント制御を調整。
|
||||
- 注入JavaScript側のヘッダー配色を見直し、見やすさを改善。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 読み込み失敗時に状況が分かりやすくなり、復旧操作もしやすくなります。
|
||||
- 復帰直後の表示崩れや古い状態の残留が起きにくくなります。
|
||||
|
||||
## 4. 列車情報の表示品質を改善
|
||||
### 実装/更新された機能
|
||||
- 編成情報表示用に、静的表示・フェード切替・アクティブ強調のチップUIを追加。
|
||||
- 列車番号の空白、メモ接尾辞、貨物列車記号を考慮した正規化処理を導入。
|
||||
- 番線表示用の `platformNum` をデータ構造へ追加。
|
||||
- 表示文字列やスタイル適用のタイミングを見直し、ちらつきや欠落を修正。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- 列車情報の見分けがしやすくなります。
|
||||
- データ照合が安定し、表示漏れや誤一致が起きにくくなります。
|
||||
|
||||
## 5. 設定・内部運用の整備
|
||||
### 実装/更新された機能
|
||||
- 内部バージョン表記を7.0.3へ更新。
|
||||
- 前バージョン差分ログをドキュメント化。
|
||||
- 検証用の列車データを更新。
|
||||
- 情報ソース設定画面を拡張し、外部データ連携の説明、録画管理、mock検証、投稿システム接続先の切替を一か所にまとめた。
|
||||
- 投稿システム接続先は、本番 / 実験 と リリース / ベータの切替を整理した。
|
||||
|
||||
### ユーザーにとっての効果
|
||||
- バージョン識別と運用確認がしやすくなります。
|
||||
- 今後の検証や保守時に、変更履歴を追いやすくなります。
|
||||
- 検証設定や接続先の切替が分かりやすくなり、試験時の操作ミスを減らしやすくなります。
|
||||
|
||||
---
|
||||
|
||||
## まとめ
|
||||
この更新は、列車位置を記録・再生して振り返るための新しい土台を追加しつつ、mock検証とWebView表示の安定性を同時に底上げした差分です。
|
||||
|
||||
日常利用の見た目改善だけでなく、再現確認や運用検証のしやすさまで含めて、一段階機能が広がった更新になっています。
|
||||
|
||||
## 参照
|
||||
- コミット差分精査版: docs/changelog-7.0.2-to-7.0.3.md
|
||||
@@ -0,0 +1,142 @@
|
||||
# コミット差分ログ(a959cf39 -> 0b349148)
|
||||
|
||||
## 対象範囲
|
||||
- From: `a959cf3973eb9635c9e61133d81de5c1f9719c18`
|
||||
- To: `0b349148d37802b6e86a09b7f34b718d622e92ca`
|
||||
- 集計メモ:
|
||||
- レンジ内コミット(merge含む): 29
|
||||
- 非mergeコミット: 27
|
||||
- 変更ファイル数: 50
|
||||
- 変更行数: +10785 / -185
|
||||
|
||||
## サマリー
|
||||
このレンジでは、列車位置の記録・再生機能の追加が中心です。
|
||||
|
||||
それを支える形で、mock列車位置データをWebViewへ注入するための検証基盤が大きく拡張され、あわせてWebViewの読み込み安定性、列車番号マッチング精度、表示コンポーネントの見やすさが改善されています。
|
||||
|
||||
前レンジが既存機能の安定化中心だったのに対して、このレンジは「記録して再生する」「mockで再現する」という検証・観測機能が大きく前進したのが特徴です。実装レベルでは、設定画面に録画管理や接続先切替UIが追加され、旧録画形式からの移行処理も入っています。
|
||||
|
||||
---
|
||||
|
||||
## 1. 列車位置の記録・再生機能を追加
|
||||
- 列車位置の記録と再生機能を新規追加。
|
||||
- 再生タイムラインUIを実装し、再生・一時停止・シーク操作に対応。
|
||||
- 経過時間表示とkeep-awakeを備えた `RecordingStatusBar` を追加。
|
||||
- 再生開始時クラッシュの修正と、複数録画データの取り扱いに対応。
|
||||
- 再生フレーム変更時にWebView上の列車表示が追従するよう改善。
|
||||
- 録画一覧の保存・削除・再生開始を設定画面から操作できるようにした。
|
||||
- 再生ループはスナップショット間の経過時間差を反映しつつ、通常時は最小3秒、ループ終端では15秒待機する制御を実装。
|
||||
- 旧単一録画フォーマットから複数録画フォーマットへの自動マイグレーション処理を追加。
|
||||
|
||||
主なコミット:
|
||||
- `37c08ad` feat: add train position record & playback feature
|
||||
- `8144e8a` feat: add playback timeline UI with pause/resume/seek controls
|
||||
- `3587f72` feat: add RecordingStatusBar with elapsed timer and keep-awake
|
||||
- `4f4d3ca` fix: crash on playback start + support multiple recordings
|
||||
- `d71cc37` fix: sync WebView train display when playback frame changes
|
||||
|
||||
## 2. mock列車位置データの注入基盤を強化
|
||||
- WebViewに対するXHRインターセプタを導入し、mock列車位置データの差し替えに対応。
|
||||
- 設定画面に管理者向けmock API切替を追加し、検証導線を整備。
|
||||
- 地図画面側の個別MOCKスイッチを整理し、設定側トグルに集約。
|
||||
- mock切替時にWebViewを再読み込みするよう改善し、反映漏れを抑制。
|
||||
- インターセプタ初期化タイミングを `injectedJavaScriptBeforeContentLoaded` へ移し、XHRフックの安定性を改善。
|
||||
- `setRequestHeader` と競合しないようXhr open処理を修正し、既存通信との互換性を改善。
|
||||
- app側の `currentTrain` にもmock列車位置を適用し、WebView外の表示も揃うよう調整。
|
||||
- 録画開始時はmockを自動OFF、録画再生時は自動ONに切り替える制御を追加。
|
||||
- XHRインターセプタに二重注入ガードを追加し、多重パッチによる不安定化を防止。
|
||||
|
||||
主なコミット:
|
||||
- `170fbf0` feat: add WebView XHR interceptor for mock train position injection
|
||||
- `71e1ad8` feat: add admin mock API toggle in settings and map screen switch
|
||||
- `4247318` fix: reload WebView on mock toggle and fix XHR callback timing bug
|
||||
- `59821a4` fix: rewrite XHR interceptor using prototype patching
|
||||
- `8321a47` fix: move XHR interceptor to injectedJavaScriptBeforeContentLoaded
|
||||
- `24f0c82` fix: call _origOpen even when intercepting to allow setRequestHeader
|
||||
- `a359568` refactor: remove map-screen MOCK switch; settings toggle controls mock directly
|
||||
- `92f4b37` feat: apply mock data to currentTrain (app-side train positions)
|
||||
|
||||
## 3. WebViewまわりの安定性と操作性を改善
|
||||
- `GeneralWebView` にローディング表示、エラー表示、再読み込み導線を追加。
|
||||
- `setReload` をグローバルへ公開し、外部からの再読み込み制御を改善。
|
||||
- `useWebViewRemount` に `backgroundThresholdMs` オプションを追加し、アプリ状態遷移時のリマウント制御を改善。
|
||||
- 注入JavaScript側のヘッダー色を見直し、視認性を改善。
|
||||
|
||||
主なコミット:
|
||||
- `4c1a315` fix: add loading and error handling in GeneralWebView component with reload functionality
|
||||
- `a8c785b` fix: expose setReload function to the global window object for accessibility
|
||||
- `b5eb830` fix: update useWebViewRemount to include backgroundThresholdMs option for better app state handling
|
||||
- `3554233` fix: update header colors in injected JavaScript for better visibility
|
||||
|
||||
## 4. 列車データの表示品質とマッチング精度を改善
|
||||
- 編成・車両情報の視認性向上のため、静的表示・フェード循環表示・アクティブ枠アニメ表示の3系統から成る `FormationChips` 系コンポーネントを追加。
|
||||
- train number の前後空白、メモ接尾辞、貨物列車の `レ` 記号を考慮した正規化処理を導入し、並び替え・抽出・照合の精度を改善。
|
||||
- `TrainDataSources` と `useUnyohub` で列車番号の比較ロジックを強化。
|
||||
- 貨物列車向けに 30xx / 90xx / 2桁番号の相互比較を行う補正ロジックを追加。
|
||||
- `platformNum` プロパティをデータ構造へ追加し、番線表示の精度を改善。
|
||||
- 表示文字列適用タイミングを見直し、observer反映直後のちらつきを軽減。
|
||||
- 非同期再描画やmock有効時に表示スタイルが欠落するケースを修正。
|
||||
|
||||
主なコミット:
|
||||
- `3a4e083` feat: add FormationChips, FadingSubCycler, and ActiveFormationChipsCycler components for enhanced train data visualization
|
||||
- `a9668e6` fix: trim train numbers in sorting and filtering logic for accurate matching
|
||||
- `45cc68a` fix: normalize train numbers by stripping suffixes in TrainDataSources and useUnyohub
|
||||
- `899c655` fix: add platformNum property to train data structures for improved display
|
||||
- `a809d28` fix: eliminate UX flash by calling setStrings() immediately in observer
|
||||
- `7566910` fix: re-apply Tokyo UX after async train re-renders
|
||||
- `2cf6b67` fix: Tokyo UX stripped when mock is active
|
||||
|
||||
## 5. バージョン更新と関連整備
|
||||
- 内部バージョン表記を7.0.3へ更新。
|
||||
- 前レンジの差分ログをドキュメントとして追加し、変更履歴の参照性を向上。
|
||||
- live disrupted data を含む `train.json` を更新し、検証データを最新化。
|
||||
- 情報ソース設定画面を拡張し、外部データソースの説明カード化、mock検証、録画管理、投稿システム接続先の系統/ UIバージョン切替を集約。
|
||||
- 接続先は 本番 / 実験 と リリース / ベータ の組み合わせで解決されるよう整理し、旧環境キーからの後方互換正規化も追加。
|
||||
|
||||
主なコミット:
|
||||
- `6ce2cad` fix: update version code to 7.0.3
|
||||
- `43f8095` feat: add changelog for version update from 064d81d4 to a959cf39, highlighting improvements in elesite integration, navigation stability, keyboard handling, and overall user experience
|
||||
- `1dcc25d` chore: update train.json with live disrupted data (2026-05-01 19:42)
|
||||
|
||||
---
|
||||
|
||||
## 変更リスクと確認ポイント
|
||||
- 記録/再生系:
|
||||
- 長時間記録データでタイムライン操作やシーク時の追従遅延、終端ループ待機が意図どおり動くか確認が必要。
|
||||
- mock注入系:
|
||||
- 実通信とmock通信の切替直後にキャッシュや古いXHRフックが残らないか、録画開始時OFF / 再生開始時ONの自動切替も含めて継続確認が必要。
|
||||
- WebView系:
|
||||
- 読み込み失敗後の再試行導線が端末差や回線差で安定して動くか確認が必要。
|
||||
- 表示整合性:
|
||||
- 列車番号正規化により、例外的な命名規則や貨物列車番号が意図せず同一扱いされないか確認が必要。
|
||||
- 設定/運用系:
|
||||
- 投稿システム接続先の切替で、実験系と本番系の URL 解決や旧設定値の移行が破綻しないか確認が必要。
|
||||
|
||||
## 付録: 非mergeコミット一覧(27件)
|
||||
- `6ce2cad` fix: update version code to 7.0.3
|
||||
- `3554233` fix: update header colors in injected JavaScript for better visibility
|
||||
- `d71cc37` fix: sync WebView train display when playback frame changes
|
||||
- `3587f72` feat: add RecordingStatusBar with elapsed timer and keep-awake
|
||||
- `4f4d3ca` fix: crash on playback start + support multiple recordings
|
||||
- `8144e8a` feat: add playback timeline UI with pause/resume/seek controls
|
||||
- `37c08ad` feat: add train position record & playback feature
|
||||
- `b5eb830` fix: update useWebViewRemount to include backgroundThresholdMs option for better app state handling
|
||||
- `92f4b37` feat: apply mock data to currentTrain (app-side train positions)
|
||||
- `a359568` refactor: remove map-screen MOCK switch; settings toggle controls mock directly
|
||||
- `a809d28` fix: eliminate UX flash by calling setStrings() immediately in observer
|
||||
- `7566910` fix: re-apply Tokyo UX after async train re-renders
|
||||
- `2cf6b67` fix: Tokyo UX stripped when mock is active
|
||||
- `1dcc25d` chore: update train.json with live disrupted data (2026-05-01 19:42)
|
||||
- `24f0c82` fix: call _origOpen even when intercepting to allow setRequestHeader
|
||||
- `8321a47` fix: move XHR interceptor to injectedJavaScriptBeforeContentLoaded
|
||||
- `59821a4` fix: rewrite XHR interceptor using prototype patching
|
||||
- `4247318` fix: reload WebView on mock toggle and fix XHR callback timing bug
|
||||
- `71e1ad8` feat: add admin mock API toggle in settings and map screen switch
|
||||
- `170fbf0` feat: add WebView XHR interceptor for mock train position injection
|
||||
- `899c655` fix: add platformNum property to train data structures for improved display
|
||||
- `4c1a315` fix: add loading and error handling in GeneralWebView component with reload functionality
|
||||
- `a8c785b` fix: expose setReload function to the global window object for accessibility
|
||||
- `a9668e6` fix: trim train numbers in sorting and filtering logic for accurate matching
|
||||
- `3a4e083` feat: add FormationChips, FadingSubCycler, and ActiveFormationChipsCycler components for enhanced train data visualization
|
||||
- `45cc68a` fix: normalize train numbers by stripping suffixes in TrainDataSources and useUnyohub
|
||||
- `43f8095` feat: add changelog for version update from 064d81d4 to a959cf39, highlighting improvements in elesite integration, navigation stability, keyboard handling, and overall user experience
|
||||
@@ -0,0 +1,384 @@
|
||||
# JR四国非公式アプリ データ取得経路マップ
|
||||
|
||||
作成日: 2026-07-07
|
||||
|
||||
## 目的
|
||||
|
||||
Sentryで観測している `endpoint=positions / operation_info / train_operation / timetable` が、実際にどのURL、hook、画面、バックエンド、外部取得元に対応するかを整理する。
|
||||
|
||||
この文書は調査結果のみ。既存コードの変更案は含めるが、実装変更は行っていない。
|
||||
|
||||
## 対象範囲
|
||||
|
||||
- React Native / Expo アプリ側の `fetch`, `observedFetchJson`, `observedFetchText`
|
||||
- WebViewに注入しているJavaScript内の `fetch`
|
||||
- WebView内の公式サイトXHR、およびmock XHR interceptor
|
||||
- `lib/mockApi`
|
||||
- `stateBox` 配下のfetch
|
||||
- n8n webhook
|
||||
- Google Apps Script fallback
|
||||
- `jr-shikoku-backend-api-v1.haruk.in`
|
||||
- `jr-shikoku-backend-mock-api-v1.haruk.in`
|
||||
- `jr-shikoku-api-data-storage.haruk.in`
|
||||
- JR四国公式走行位置 `https://train.jr-shikoku.co.jp/sp.html`
|
||||
- JR四国公式運行情報 `https://www.jr-shikoku.co.jp/info/`
|
||||
- 鉄道運用Hub / えれサイトの集約JSON
|
||||
|
||||
## Sentry観測対象の取得一覧
|
||||
|
||||
| 論理endpoint | 呼び出し元ファイル | 関数/hook | 実URL/host | path | root_tab/screen | 取得タイミング | 更新間隔 | timeout | retry | cache | fallback | Sentry tag endpoint | 備考 |
|
||||
|---|---|---|---|---|---|---|---|---:|---|---|---|---|---|
|
||||
| positions current mock | `lib/mockApi/positionMasters.ts` | `fetchMockTrainPositions` | `jr-shikoku-backend-mock-api-v1.haruk.in` | `/train-positions/current` | positions / startup provider | mock API有効時、`useCurrentTrain` と `useTrainMenu` から呼ばれる | 15秒 | 8000ms | 最大1回 | module memory last-good | 前回成功データを返す | `positions_current` / source=`mock_api` / user_visible=`true` / preload=`false` / fetch_priority=`high` | Sentryでtimeout確認済みの主対象。バックエンド側計測が必要。 |
|
||||
| positions master mock | `lib/mockApi/positionMasters.ts` | `fetchPositionMasters` | `jr-shikoku-backend-mock-api-v1.haruk.in` | `/position-masters` | positions / settings-dependent | mock API有効化時、または起動時にmock有効なら取得 | 基本1回 | 8000ms | 最大1回 | module memory `_cache` | なし | `positions_master` / source=`mock_api` / user_visible=`false` / preload=`true` / fetch_priority=`medium` | PosNum+LineからPos文字列を補完。頻度は低い。 |
|
||||
| positions n8n | `stateBox/useCurrentTrain.tsx` | `getCurrentTrain` | `n8n.haruk.in` | `/webhook/c501550c-7d1b-4e50-927b-4429fe18931a` | positions | 起動時、mock切替時、interval | 15秒 | 8000ms | 最大1回 | なし | Google Apps Script fallback | `positions_current` / source=`n8n` / user_visible=`true` / preload=`false` / fetch_priority=`high` | mock API無効時の主経路。成功時は録画snapshotにも使う。 |
|
||||
| positions GAS fallback | `stateBox/useCurrentTrain.tsx` | `getCurrentTrain` catch内 | `script.google.com` | `/macros/s/AKfyc.../exec` | positions | n8n走行位置取得失敗時のみ | n8n失敗時のみ | 8000ms | 最大1回 | 既存データとmerge | 前回表示データ維持 | `positions_gas_fallback` / source=`gas` / user_visible=`true` / preload=`false` / fetch_priority=`high` | Direction等が欠けるため既存データとmerge。 |
|
||||
| timetable today | `stateBox/useAllTrainDiagram.tsx` | `getTrainDiagram` | `jr-shikoku-api-data-storage.haruk.in` | `/tmp/diagram-today.json` または `/tmp/diagram-today-beta.json` | provider全体 / timetable consumers | provider mount直後 | 30秒、background継続指定あり。ただしobservedFetch側はbackground開始を抑制 | 15000ms | 最大1回 | AsyncStorage `ALL_TRAIN_DIAGRAM` | cache失敗時はalert | `timetable_today` / source=`static_storage` / user_visible=`false` / preload=`true` / fetch_priority=`medium` | ダイヤ・発車標・列車詳細で広く使用。 |
|
||||
| train operation data | `stateBox/useAllTrainDiagram.tsx` | `getCustomTrainData` | `jr-shikoku-backend-api-v1.haruk.in` または beta | `/train-data` | provider全体 / train detail / diagram | provider mount直後 | 30秒、background継続指定あり。ただしobservedFetch側はbackground開始を抑制 | 15000ms | 最大1回 | なし | 失敗は握りつぶし | `train_operation_data` / source=`backend_api` / user_visible=`false` / preload=`true` / fetch_priority=`medium` | 約1MB級。WebView内でも別途取得される。 |
|
||||
| operation logs | `stateBox/useAllTrainDiagram.tsx` | `getTodayOperation` | `jr-shikoku-backend-api-v1.haruk.in` または beta | `/operation-logs` | provider全体 / topMenu / train detail | provider mount直後 | 30秒、background継続指定あり。ただしobservedFetch側はbackground開始を抑制 | 15000ms | 最大1回 | なし | 失敗は握りつぶし | `operation_logs` / source=`backend_api` / user_visible=`false` / preload=`true` / fetch_priority=`medium` | 列車別運行ログ。WebView内でも別途取得される。 |
|
||||
| operation flag | `stateBox/useAreaInfo.tsx` | `getAreaData` | `n8n.haruk.in` | `/webhook/jr-shikoku-trainfo-flag` | topMenu / information / provider全体 | mount後、InteractionManager後に1200ms遅延 | 60秒 | 10000ms | 最大1回 | なし | 失敗は握りつぶし | `operation_info_flag` / source=`n8n` / user_visible=`true` / preload=`true` / fetch_priority=`medium` | topMenuのバッジ・対象エリア判定。 |
|
||||
| operation text GAS | `stateBox/useAreaInfo.tsx` | `fetchAreaDescription` | `script.google.com` | `/macros/s/AKfycbz80.../exec` | topMenu / information | operation flagで対象駅ありの場合だけ800ms遅延 | flag結果依存 | 15000ms | なし | なし | 失敗は握りつぶし | `operation_info_text` / source=`gas` / user_visible=`true` / preload=`false` / fetch_priority=`medium` | 第1回観測でtimeout。現在は通常時の実行を抑制。 |
|
||||
|
||||
## WebView内の取得一覧
|
||||
|
||||
| 論理endpoint | 呼び出し元ファイル | 関数/hook | 実URL/host | path | root_tab/screen | 取得タイミング | 更新間隔 | timeout | retry | cache | fallback | Sentry tag endpoint | 備考 |
|
||||
|---|---|---|---|---|---|---|---|---:|---|---|---|---|---|
|
||||
| positions official page | `components/Apps/WebView.tsx` | `AppsWebView` | `train.jr-shikoku.co.jp` | `/sp.html` | positions | 走行位置root初回activate時 | WebView lifecycle依存 | WebView標準 | WebView標準 | WebView page cache / OS依存 | remount watchdog | 未計測 | RN SentryではWebView navigation breadcrumbのみ。 |
|
||||
| positions official XHR live | JR四国公式ページ内 | 公式サイトXHR | `train.jr-shikoku.co.jp` | `/g?arg1=train&arg2=train` | positions WebView | 公式ページロード後、公式サイト側ポーリング | 公式サイト実装依存。概ね数秒単位 | 公式サイト/ブラウザ依存 | 不明 | 公式サイト/ブラウザ依存 | mock interceptor可能 | 未計測 / 候補 `positions_webview` | RN wrapperを通らない。現状Sentryで通信詳細が見えない。 |
|
||||
| positions official XHR static | JR四国公式ページ内 | 公式サイトXHR | `train.jr-shikoku.co.jp` | `/g?arg1=lang...`, `/g?arg1=station...`, etc | positions WebView | 公式ページロード時 | 基本初回 | 公式サイト/ブラウザ依存 | 不明 | 公式サイト/ブラウザ依存 | mock static intercept optional | 未計測 | `lib/mockApi/webviewXhrInterceptor.ts` に一覧コメントあり。 |
|
||||
| positions WebView injected train-data | `lib/webViewInjectjavascript.ts` | `startPolling/DatalistUpdate` | `jr-shikoku-backend-api-v1.haruk.in` | `/train-data` | positions WebView | Phase 2後、polling開始 | 30秒 | なし | なし | WebView localStorage 1日 | 失敗は無視 | 未計測 / RN側は `train_operation` | RN側Providerと重複取得。WebView内なのでRN Sentryにspanなし。 |
|
||||
| positions WebView injected operation-logs | `lib/webViewInjectjavascript.ts` | `operationListUpdate` | `jr-shikoku-backend-api-v1.haruk.in` | `/operation-logs` | positions WebView | Phase 1、Phase 3 polling、visibility復帰 | 30秒 | なし | なし | WebView localStorage 1日 | 失敗は無視 | 未計測 / RN側は `operation_info` | RN側Providerと重複取得。 |
|
||||
| positions WebView injected diagram | `lib/webViewInjectjavascript.ts` | `TrainDiagramData2Update` | `jr-shikoku-api-data-storage.haruk.in` | `/tmp/diagram-today.json` | positions WebView | Phase 2、polling | 30秒 | なし | なし | WebView localStorage 1時間 | 失敗は無視 | 未計測 / RN側は `timetable` | RN側Providerと重複取得。環境切替URLが注入optionにあるが、現コード内fetch文字列は定数参照。 |
|
||||
| positions WebView injected station-list | `lib/webViewInjectjavascript.ts` | Phase 1 | `n8n.haruk.in` | `/webhook/jr-shikoku-station-list` | positions WebView | WebView注入script起動時 | 初回中心 | なし | なし | WebView localStorage 1週間 | 失敗は無視 | 未計測 / 候補 `station_info` | 走行位置WebView表示の補助データ。 |
|
||||
| positions WebView injected problems | `lib/webViewInjectjavascript.ts` | `getProblemsData` | `n8n.haruk.in` | `/webhook/jrshikoku-position-problems` | positions WebView | Phase 1、polling、visibility復帰 | 30秒 | なし | なし | WebView localStorage 1分 | 失敗は無視 | 未計測 / 候補 `positions_problem` | 位置情報問題データ。 |
|
||||
| positions WebView unyohub | `lib/webViewInjectjavascript.ts` | `unyohubDataUpdate` | `jr-shikoku-api-data-storage.haruk.in` | `/thirdparty/unyohub-unyo.json` | positions WebView | 設定ON時、Phase 3 | 30秒 | なし | なし | WebView localStorage 1時間 | 失敗はconsole | 未計測 / 候補 `thirdparty_unyohub` | 鉄道運用Hub由来の集約JSON。 |
|
||||
| positions WebView elesite | `lib/webViewInjectjavascript.ts` | `elesiteDataUpdate` | `jr-shikoku-api-data-storage.haruk.in` | `/thirdparty/elesite-unyo.json` | positions WebView | 設定ON時、Phase 3 | 30秒 | なし | なし | WebView localStorage 1時間 | 失敗はconsole | 未計測 / 候補 `thirdparty_elesite` | えれサイト由来の集約JSON。 |
|
||||
| operation official page | `ndView.tsx` | operation WebView | `www.jr-shikoku.co.jp` | `/info/` | information | 運行情報root初回activate時 | WebView lifecycle依存 | WebView標準 | WebView標準 | OS/WebView依存 | remount watchdog | 未計測 | injected scriptでページ内容を加工し、画像生成結果をpostMessage。 |
|
||||
| operation hidden preload | `Apps.tsx` | `HiddenStartupPreloadWebViews` | `www.jr-shikoku.co.jp` | `/info/` | startup hidden preload | 起動時preload条件成立時 | 1回 | WebView標準 | なし | OS/WebView依存 | なし | 未計測 | Sentry breadcrumb/contextのみ。 |
|
||||
| positions hidden preload | `Apps.tsx` | `HiddenStartupPreloadWebViews` | `train.jr-shikoku.co.jp` | `/` | startup hidden preload | 起動時preload条件成立時 | 1回 | WebView標準 | なし | OS/WebView依存 | なし | 未計測 | 走行位置WebViewの事前ウォームアップ。 |
|
||||
|
||||
## Sentry endpoint対象外だが存在するRN fetch
|
||||
|
||||
| 用途 | 呼び出し元ファイル | 実URL/host | path | タイミング | 更新間隔 | cache | 備考 |
|
||||
|---|---|---|---|---|---|---|---|
|
||||
| update権限 / 外部データ利用権限 | `stateBox/useTrainMenu.tsx` | `jr-shikoku-backend-api-v1.haruk.in` または beta | `/check-permission?user_id=...` | push token取得後 | token/backend変更時 | なし | Sentry未計測。queryにuser_idあり。 |
|
||||
| バス・列車データ | `stateBox/useBusAndTrainData.tsx` | `script.google.com` | GAS | mount時、AsyncStorage miss時 | 基本1回 | AsyncStorage `BUS_AND_TRAIN` | Sentry未計測。 |
|
||||
| train pair data | `stateBox/useBusAndTrainData.tsx` | `script.google.com` | GAS | mount時 | 基本1回 | なし | Sentry未計測。 |
|
||||
| 遅延速報EX | `stateBox/useTrainDelayData.tsx` | `script.google.com` | GAS | `loadingDelayData`変化時 | 手動/状態依存 | なし | Sentry未計測。Android widgetにも同URLあり。 |
|
||||
| 特急列車情報 | `components/Menu/SpecialTrainInfoBox.tsx` | `n8n.haruk.in` | `/webhook/sptrainfo` | component mount | 1回 | なし | Sentry未計測。 |
|
||||
| 位置ID補助情報 GET | `components/発車時刻表/LED_inside_Component/TrainPosition.tsx`, `components/ActionSheetComponents/EachTrainInfo/TrainDataView.tsx` | `n8n.haruk.in` | `/webhook/JR-shikoku-PosID-v3?PosId=...` | 列車詳細/LED表示時 | 表示対象変更ごと | なし | Sentry未計測。UI細部表示用。 |
|
||||
| 位置ID補助情報 POST/DELETE | `TrainPositionDataPush.tsx`, `TrainPositionDataDelete.tsx` | `n8n.haruk.in` | `/webhook/JR-shikoku-PosID-v3` | ユーザー投稿/削除要求 | 操作時 | なし | Sentry未計測。mutating request。 |
|
||||
| 通知設定登録 | `components/Settings/NotificationSettings.tsx` | `n8n.haruk.in` | `/webhook/jr-shikoku-notification-configurations` | 設定保存操作時 | 操作時 | AsyncStorageに設定保存 | Sentry未計測。tokenを送る。 |
|
||||
| unyohub RN hook | `stateBox/useUnyohub.tsx` | `jr-shikoku-api-data-storage.haruk.in` | `/thirdparty/unyohub-unyo.json` | 設定ON時 | 10分 | AsyncStorage | WebView内でも別取得あり。 |
|
||||
| elesite RN hook | `stateBox/useElesite.tsx` | `jr-shikoku-api-data-storage.haruk.in` | `/thirdparty/elesite-unyo.json` | 設定ON時 | 10分 | AsyncStorage | WebView内でも別取得あり。 |
|
||||
| 駅住所LOD | `components/駅名表/AddressText.tsx` | station別 `jslodApi` | `.json` | 駅名標表示時 | 表示対象変更ごと | なし | 外部LOD。Sentry未計測。 |
|
||||
| Anpanman列車状態 | `components/ActionSheetComponents/EachTrainInfoCore/trainIconStatus.tsx` | `n8n.haruk.in` | `/webhook/{anpanmanApiPath}?trainNum=...` | 対象列車詳細表示時 | 対象変更ごと | なし | Sentry未計測。 |
|
||||
| Android operation widget | `components/AndroidWidget/InfoWidget.tsx` | `script.google.com` | operation info GAS | widget更新時 | widget runtime依存 | なし | RN画面外。 |
|
||||
| Android delay widget | `components/AndroidWidget/TraInfoEXWidget.tsx` | `script.google.com` | delay GAS | widget更新時 | widget runtime依存 | なし | RN画面外。 |
|
||||
| GeneralWebView recording import | `GeneralWebView.tsx` | arbitrary / blob / resolvedUri内 | download URL | 録画importリンク操作時 | 操作時 | なし | 任意URL由来。Sentry endpoint化すべきではない。 |
|
||||
|
||||
## endpoint別依存関係
|
||||
|
||||
### positions
|
||||
|
||||
```text
|
||||
positions screen
|
||||
├─ RN provider: useCurrentTrain
|
||||
│ ├─ mock ON: jr-shikoku-backend-mock-api-v1 /train-positions/current
|
||||
│ │ └─ fallback: module memory last-good cache
|
||||
│ └─ mock OFF: n8n /webhook/c501550c...
|
||||
│ └─ fallback: Google Apps Script positions fallback
|
||||
│ └─ fallback: currentTrain previous state if present
|
||||
├─ RN provider: useTrainMenu
|
||||
│ ├─ mock ON: /position-masters
|
||||
│ └─ mock ON: /train-positions/current, then inject to WebView mock XHR
|
||||
└─ WebView: train.jr-shikoku.co.jp/sp.html
|
||||
├─ official XHR /g?arg1=train&arg2=train
|
||||
├─ official XHR static /g?... station/lang/etc
|
||||
└─ injected enhancement fetches backend/storage/n8n auxiliary data
|
||||
```
|
||||
|
||||
表示対象:
|
||||
- 走行位置画面
|
||||
- 列車詳細ActionSheet
|
||||
- 発車標/LED系
|
||||
- fixed position box
|
||||
|
||||
現Sentry tag:
|
||||
- `endpoint=positions`
|
||||
- WebView公式XHRは未計測。候補は `positions_webview`。
|
||||
|
||||
### operation_info
|
||||
|
||||
```text
|
||||
topMenu / information / train detail
|
||||
├─ useAreaInfo
|
||||
│ ├─ n8n /webhook/jr-shikoku-trainfo-flag
|
||||
│ └─ if active area exists: Google Apps Script operation text
|
||||
├─ useAllTrainDiagram
|
||||
│ └─ jr-shikoku-backend-api-v1 /operation-logs
|
||||
├─ information WebView
|
||||
│ └─ www.jr-shikoku.co.jp/info/ official page
|
||||
│ └─ injected script parses/captures page and postMessage to RN
|
||||
└─ widgets / delay providers
|
||||
├─ operation info GAS
|
||||
└─ delay GAS
|
||||
```
|
||||
|
||||
表示対象:
|
||||
- topMenuバッジ・運行情報カード
|
||||
- informationタブ
|
||||
- 列車詳細内の運行ログ表示
|
||||
- Android widgets
|
||||
|
||||
現Sentry tag:
|
||||
- `endpoint=operation_info`
|
||||
- WebView公式ページは未計測。
|
||||
|
||||
### train_operation
|
||||
|
||||
```text
|
||||
train detail / diagram / WebView enhancement
|
||||
├─ RN: useAllTrainDiagram -> backend /train-data
|
||||
└─ WebView injected JS -> backend /train-data
|
||||
└─ localStorage cache 1 day
|
||||
```
|
||||
|
||||
表示対象:
|
||||
- 列車詳細
|
||||
- ダイヤ/発車標
|
||||
- 走行位置WebViewの列車アイコン・編成/運用装飾
|
||||
|
||||
現Sentry tag:
|
||||
- RN fetch: `endpoint=train_operation`
|
||||
- WebView fetch: 未計測
|
||||
|
||||
### timetable
|
||||
|
||||
```text
|
||||
timetable / station diagram / train detail
|
||||
├─ RN: useAllTrainDiagram -> data-storage /tmp/diagram-today.json
|
||||
│ └─ fallback: AsyncStorage ALL_TRAIN_DIAGRAM
|
||||
└─ WebView injected JS -> data-storage /tmp/diagram-today.json
|
||||
└─ localStorage cache 1 hour
|
||||
```
|
||||
|
||||
表示対象:
|
||||
- 時刻表
|
||||
- 発車標
|
||||
- 列車詳細停車駅/通過駅
|
||||
- 走行位置WebView内の補助表示
|
||||
|
||||
現Sentry tag:
|
||||
- RN fetch: `endpoint=timetable`
|
||||
- WebView fetch: 未計測
|
||||
|
||||
## 画面別fetch一覧
|
||||
|
||||
### アプリ起動直後
|
||||
|
||||
Providerがmountされるため、現在の構成では表示タブに関係なく以下が走り得る。
|
||||
|
||||
| 取得 | 起動時挙動 | 備考 |
|
||||
|---|---|---|
|
||||
| `useCurrentTrain.getCurrentTrain` | 即時1回、その後15秒interval | positions。mock ON/OFFで経路が変わる。 |
|
||||
| `useAllTrainDiagram.getTrainDiagram` | 即時1回、その後30秒interval | timetable。AsyncStorage fallbackあり。 |
|
||||
| `useAllTrainDiagram.getCustomTrainData` | 即時1回、その後30秒interval | train_operation。 |
|
||||
| `useAllTrainDiagram.getTodayOperation` | 即時1回、その後30秒interval | operation_info。 |
|
||||
| `useAreaInfo.getAreaData` | InteractionManager後 + 1200ms遅延。その後60秒interval | operation_info flag。対象ありならGAS textも800ms遅延。 |
|
||||
| `useTrainMenu.check-permission` | push token取得後 | Sentry未計測。 |
|
||||
| hidden preload WebViews | preload条件成立時 | positions公式/operation公式を不可視WebViewでロード。 |
|
||||
|
||||
### topMenu表示中
|
||||
|
||||
| 取得 | 発生源 | 備考 |
|
||||
|---|---|---|
|
||||
| positions RN polling | `useCurrentTrain` provider | 表示タブに関係なく継続。ただしbackgroundではinterval停止。 |
|
||||
| timetable / train_operation / operation_logs | `useAllTrainDiagram` provider | 表示タブに関係なく30秒ごと。 |
|
||||
| operation flag / text | `useAreaInfo` | topMenu表示内容に直結。 |
|
||||
| special train info | `SpecialTrainInfoBox` | 該当Sheet表示時のみ。 |
|
||||
|
||||
### positions表示中
|
||||
|
||||
| 取得 | 発生源 | 備考 |
|
||||
|---|---|---|
|
||||
| positions RN polling | `useCurrentTrain` | 15秒。画面表示に必須。 |
|
||||
| train.jr-shikoku公式WebView | `AppsWebView` | 公式XHRはRN Sentry不可視。 |
|
||||
| WebView injected train-data / operation-logs / diagram / station-list / problems | `webViewInjectjavascript` | RN providerと重複取得あり。WebView localStorage cacheあり。 |
|
||||
| unyohub / elesite | WebView injected JS、またはRN hooks | 設定ON時のみ。 |
|
||||
|
||||
### information表示中
|
||||
|
||||
| 取得 | 発生源 | 備考 |
|
||||
|---|---|---|
|
||||
| JR四国公式運行情報WebView | `ndView.tsx` | `https://www.jr-shikoku.co.jp/info/`。RN Sentryではpage load breadcrumb中心。 |
|
||||
| operation flag/text | `useAreaInfo` | バッジ/本文補助。 |
|
||||
| operation logs | `useAllTrainDiagram` | 列車別運行ログ。 |
|
||||
|
||||
### バックグラウンド復帰時
|
||||
|
||||
| 取得 | 発生源 | 備考 |
|
||||
|---|---|---|
|
||||
| `useInterval` | AppState active復帰時に即時実行 | userStoppedでなければ即時fetch。observedFetch側はbackground開始を抑制。 |
|
||||
| positions WebView | `useWebViewRemount` / WebView lifecycle | iOSはunfocused時watchdog pause設定あり。 |
|
||||
| WebView injected `refreshAllData` | document visibilitychange/pageshow | WebView内で train-data / operation-logs / position-problems を再取得。RN Sentry不可視。 |
|
||||
| GeneralWebView | background 10秒超でremount | 汎用WebViewのみ。 |
|
||||
|
||||
## 起動時/タブ切替時fetchタイムライン
|
||||
|
||||
```text
|
||||
T+0ms app providers mount
|
||||
├─ useCurrentTrain -> positions current fetch
|
||||
├─ useAllTrainDiagram -> timetable fetch
|
||||
├─ useAllTrainDiagram -> train_operation fetch
|
||||
├─ useAllTrainDiagram -> operation_logs fetch
|
||||
└─ useTrainMenu -> settings/env load, maybe check-permission after token
|
||||
|
||||
T+after interactions + 1200ms
|
||||
└─ useAreaInfo -> operation_info_flag
|
||||
└─ if active area exists: +800ms -> operation_info_text GAS
|
||||
|
||||
TopMenu first screen
|
||||
└─ no page-specific heavy WebView, but provider fetches above continue
|
||||
|
||||
positions first activation
|
||||
├─ AppsWebView loads train.jr-shikoku.co.jp/sp.html
|
||||
├─ official site starts /g?... XHRs
|
||||
├─ injected JS Phase 0: WebView localStorage cache read
|
||||
├─ injected JS Phase 1: station-list, operation-logs, position-problems
|
||||
├─ injected JS Phase 2: train-data, diagram-today
|
||||
└─ injected JS Phase 3: 30s polling, optional unyohub/elesite
|
||||
|
||||
information first activation
|
||||
├─ ndView WebView loads www.jr-shikoku.co.jp/info/
|
||||
└─ injected script parses/captures page and postMessage to RN when user capture actions occur
|
||||
|
||||
Tab switch back to positions/information
|
||||
├─ root component is kept after activation
|
||||
├─ WebView retention depends on current navigation/root gating and OS WebView process
|
||||
└─ provider-level RN fetches generally continue independent of active tab
|
||||
```
|
||||
|
||||
## 危険度・制御方針
|
||||
|
||||
### High priority
|
||||
|
||||
| 取得 | 分類理由 | 推奨方針 |
|
||||
|---|---|---|
|
||||
| `/train-positions/current` | 表示中timeoutがユーザー体感に直結。Sentryで実測済み。 | server-side duration/upstream/cacheログ、backend last-known-good、app persistent stale cache。 |
|
||||
| `useCurrentTrain` n8n positions | mock OFF時の主経路。走行位置画面に必須。 | stale cache導入、失敗時UI全体error回避、endpoint細分化。 |
|
||||
| JR公式WebView `/g?arg1=train&arg2=train` | 走行位置WebViewの本体だがRN Sentry不可視。 | WebView postMessage計測、またはRN側 proxy/cache化を検討。 |
|
||||
| `/operation-logs` | WebView/RNで重複、列車詳細表示に影響。 | backend span/cache hit/miss、WebView側計測。 |
|
||||
| `/train-data` | 大きいレスポンス、RN/WebViewで重複。 | stale cache、conditional fetch、WebView/RN共有設計。 |
|
||||
|
||||
### Medium priority
|
||||
|
||||
| 取得 | 分類理由 | 推奨方針 |
|
||||
|---|---|---|
|
||||
| `diagram-today.json` | 広範囲で使うがAsyncStorage fallbackあり。 | stale cache明示、WebView側との重複削減。 |
|
||||
| `operation_info_flag` | topMenuバッジ/運行情報表示に影響。 | endpoint細分化、失敗時は前回状態維持。 |
|
||||
| `operation_info_text` GAS | 遅延/timeout履歴あり。必須ではない詳細本文。 | preloadではなく遅延維持、stale cache、cellular抑制候補。 |
|
||||
| station-list / position-problems WebView | 表示補助。WebView内でのみ見えにくい。 | WebView breadcrumb/postMessage計測。 |
|
||||
| unyohub / elesite | 設定ON時のみだがWebView内は30秒polling。 | cellular抑制、10分程度へ間引き、Sentry breadcrumb。 |
|
||||
|
||||
### Low priority
|
||||
|
||||
| 取得 | 分類理由 | 推奨方針 |
|
||||
|---|---|---|
|
||||
| bus/train GAS | 初回またはcache miss中心。 | observedFetch化は後回し。 |
|
||||
| train pair GAS | 補助データ。 | cache導入候補。 |
|
||||
| special train info | Sheet表示時のみ。 | 失敗UIだけ整備。 |
|
||||
| notification config | ユーザー操作時のみ。 | mutationとして個別エラーハンドリング。 |
|
||||
| station LOD address | 駅名標詳細のみ。 | 失敗しても無表示でよい。 |
|
||||
| Anpanman status | 装飾表示。 | 失敗してもUI全体に影響させない。 |
|
||||
|
||||
## stale cacheを入れるべき取得
|
||||
|
||||
| 優先度 | 取得 | 理由 | 推奨cache |
|
||||
|---|---|---|---|
|
||||
| High | `/train-positions/current` | 走行位置表示が直接壊れる | backend last-known-good + app persistent cache。TTL 30-120秒。 |
|
||||
| High | n8n positions | mock OFF時の主経路 | app persistent last-good。TTL 30-120秒。 |
|
||||
| High | JR公式WebView train XHR | WebView表示本体 | 公式XHRをRN/proxy化できるならstale。難しければWebView localStorage/postMessage。 |
|
||||
| Medium | `/operation-logs` | 列車詳細/運行情報補助 | backend/app cache。TTL 1-5分。 |
|
||||
| Medium | `/train-data` | 大容量かつ重複取得 | app/WebView共有cache。TTL 1日でも許容しやすい。 |
|
||||
| Medium | `diagram-today.json` | 既にAsyncStorage fallbackあり | 既存cacheをstale表示として明示。TTL 1日。 |
|
||||
| Medium | `operation_info_flag` | バッジ/エリア判定 | 前回状態維持。TTL 1-5分。 |
|
||||
| Medium | `operation_info_text` | GAS遅延に弱い | 前回本文保持。TTL 5-30分。 |
|
||||
| Low | unyohub / elesite | 設定ON時の補助 | 既存AsyncStorage/WebView localStorageを活用。TTL 10-60分。 |
|
||||
|
||||
## バックエンド側に計測を入れるべきAPI
|
||||
|
||||
| API | host | 理由 | 必要な計測 |
|
||||
|---|---|---|---|
|
||||
| `/train-positions/current` | `jr-shikoku-backend-mock-api-v1.haruk.in` | Sentryでforeground timeout確認済み。 | handler duration, upstream duration, cache hit/miss, stale served, status, bytes, upstream error kind。 |
|
||||
| `/position-masters` | `jr-shikoku-backend-mock-api-v1.haruk.in` | mock経路の基礎データ。頻度低いが失敗時mock表示品質に影響。 | handler duration, cache hit/miss, db/storage duration。 |
|
||||
| `/train-data` | `jr-shikoku-backend-api-v1.haruk.in` | 大容量・RN/WebView重複取得。 | handler duration, data source duration, response bytes, compression, cache status。 |
|
||||
| `/operation-logs` | `jr-shikoku-backend-api-v1.haruk.in` | operation_infoとしてRN/WebView重複取得。 | handler duration, query/upstream duration, cache status, filtered count。 |
|
||||
| `/check-permission` | `jr-shikoku-backend-api-v1.haruk.in` | user_id queryあり、失敗しても表示は続くが権限UIに影響。 | duration, auth/lookup duration, no PII logging。 |
|
||||
| `diagram-today.json` publish pipeline | `jr-shikoku-api-data-storage.haruk.in` | 静的配信だが生成元障害は広範囲影響。 | CDN/storage access log, generation timestamp, object age, size。 |
|
||||
| `thirdparty/unyohub-unyo.json` | `jr-shikoku-api-data-storage.haruk.in` | 外部由来の集約結果。 | generation timestamp, upstream scrape duration, source error count。 |
|
||||
| `thirdparty/elesite-unyo.json` | `jr-shikoku-api-data-storage.haruk.in` | 外部由来の集約結果。 | generation timestamp, upstream scrape duration, source error count。 |
|
||||
|
||||
## Sentry endpoint tag改善案
|
||||
|
||||
RN側observedFetchについては、4分類から以下の低カーディナリティな論理endpointへ細分化済み。`area=data_fetch`, `result`, `root_tab`, `status` は維持し、`source`, `user_visible`, `preload`, `fetch_priority` を追加した。
|
||||
|
||||
### 現在のRN側endpoint分類
|
||||
|
||||
低カーディナリティを維持するため、URL単位ではなく論理単位で増やす。
|
||||
|
||||
| 旧endpoint | 現endpoint | 対象 |
|
||||
|---|---|---|
|
||||
| `positions` | `positions_current` | 現在位置本体。n8n current / mock currentを含めるかは要検討。 |
|
||||
| `positions` | `positions_master` | `/position-masters`。 |
|
||||
| `positions` | `positions_gas_fallback` | Google Apps Script fallback。 |
|
||||
| 未計測 | `positions_webview` | JR公式WebView XHR / postMessage計測。 |
|
||||
| `operation_info` | `operation_info_flag` | n8n flag。 |
|
||||
| `operation_info` | `operation_info_text` | Google Apps Script text。 |
|
||||
| `operation_info` | `operation_logs` | backend `/operation-logs`。 |
|
||||
| `train_operation` | `train_operation_data` | backend `/train-data`。 |
|
||||
| `timetable` | `timetable_today` | `diagram-today.json`。 |
|
||||
| 未計測 | `thirdparty_unyohub` | unyohub集約JSON。 |
|
||||
| 未計測 | `thirdparty_elesite` | elesite集約JSON。 |
|
||||
|
||||
### 追加tag
|
||||
|
||||
- `source=rn_fetch|mock_api|n8n|gas|backend_api|static_storage|webview_fetch`
|
||||
- `user_visible=true|false`
|
||||
- `preload=true|false`
|
||||
- `fetch_priority=high|medium|low`
|
||||
|
||||
### 注意
|
||||
|
||||
- `endpoint` tagにURL全文やID入りpathは入れない。
|
||||
- `urlHost` と `urlPathTemplate` はcontextに維持する。
|
||||
- `positions_current` をn8n/mock/GASで分けすぎるとissue数は追いやすいが、全体のpositions失敗率は見にくくなる。`source` tagまたはcontextで `mock_api / n8n / gas` を分ける案も有効。
|
||||
|
||||
## 変更案の優先順位
|
||||
|
||||
### High
|
||||
|
||||
1. `positions_current` のendpoint細分化、または `source=mock_api|n8n|gas` 追加。
|
||||
2. WebView公式XHR `/g?arg1=train&arg2=train` のpostMessage計測。
|
||||
3. backend mock API `/train-positions/current` にserver-side span/cache/upstream durationを追加。
|
||||
4. positionsのpersistent stale cache。
|
||||
|
||||
### Medium
|
||||
|
||||
1. `operation_info` を `operation_info_flag / operation_info_text / operation_logs` に分離。
|
||||
2. WebView injected JS fetchの軽量postMessage計測。
|
||||
3. `/train-data` と `diagram-today.json` のRN/WebView重複取得を整理。
|
||||
4. unyohub/elesiteのWebView polling間隔を30秒から設定/TTLベースへ見直し。
|
||||
|
||||
### Low
|
||||
|
||||
1. LED/駅詳細/通知/Widget系の直接fetchをobservedFetch化。
|
||||
2. 任意URLを扱うGeneralWebView importはSentry endpoint化せず、操作エラーとして別分類。
|
||||
3. station LOD address fetchの失敗をUI非表示に統一。
|
||||
|
||||
## 現時点の結論
|
||||
|
||||
- Sentryで見えている `positions` のtimeoutは、RN側のmock currentまたはn8n/GAS経路のどれかに紐づく。今回観測された `urlHost=jr-shikoku-backend-mock-api-v1.haruk.in`, `urlPathTemplate=/train-positions/current` はmock currentで確定。
|
||||
- 走行位置画面ではRN provider fetchとWebView公式XHR、さらにWebView injected fetchが並行して走る。見えているSentry spanはRN provider側だけで、WebView内の公式取得は不可視。
|
||||
- `operation_info` はflag、GAS text、backend operation logs、公式WebViewの4系統が混在しているため、細分化した方が原因追跡しやすい。
|
||||
- `train_operation` と `timetable` はRNとWebViewで重複取得している。ユーザー体感の安定化には、stale cacheと重複削減が効きやすい。
|
||||
- バックエンド側で最優先に計測すべきは `/train-positions/current`。次点で `/train-data` と `/operation-logs`。
|
||||
@@ -0,0 +1,277 @@
|
||||
# 通信計測ロガー実装報告 2026-07-07
|
||||
|
||||
## 目的
|
||||
|
||||
走行位置・運行情報・時刻表まわりの RN 側データ取得について、Sentry 上で endpoint 別の成功/失敗、HTTP status、通信時間、レスポンスサイズ、JSON 期待時の HTML 返却、JSON parse 失敗、timeout を追えるようにした。
|
||||
|
||||
今回の実装は低リスクな第1段階として、WebView 内 fetch と stale cache の実装は対象外にした。既存のバックグラウンド WebView 保持・タブ保持挙動には触れていない。
|
||||
|
||||
## 実装内容
|
||||
|
||||
### 追加した共通実装
|
||||
|
||||
- `lib/observability/network/types.ts`
|
||||
- `lib/observability/network/endpoints.ts`
|
||||
- `lib/observability/network/networkError.ts`
|
||||
- `lib/observability/network/sentryNetwork.ts`
|
||||
- `lib/observability/network/observedFetch.ts`
|
||||
|
||||
主な API:
|
||||
|
||||
```ts
|
||||
observedFetchJson<T>(url, options)
|
||||
observedFetchText(url, options)
|
||||
```
|
||||
|
||||
記録する分類:
|
||||
|
||||
- `success`
|
||||
- `slow_success`
|
||||
- `timeout`
|
||||
- `network_error`
|
||||
- `http_error`
|
||||
- `non_json_response` / Sentry tag result は `non_json`
|
||||
- `json_parse_error` / Sentry tag result は `parse_error`
|
||||
- `empty_response`
|
||||
- `unknown`
|
||||
|
||||
### Sentry 設定
|
||||
|
||||
`App.tsx` の `Sentry.init` に以下を追加した。
|
||||
|
||||
- `tracesSampleRate: __DEV__ ? 1.0 : 0.05`
|
||||
- `beforeSend` で `contexts.data_fetch.responseHead` を最大300文字に制限
|
||||
|
||||
既存の Replay / Feedback / Logs 設定は維持した。
|
||||
|
||||
### 計測対象にした RN fetch
|
||||
|
||||
#### 走行位置
|
||||
|
||||
- `stateBox/useCurrentTrain.tsx`
|
||||
- n8n の走行位置 webhook
|
||||
- Google Apps Script fallback
|
||||
- `lib/mockApi/positionMasters.ts`
|
||||
- mock position masters
|
||||
- mock train positions current
|
||||
|
||||
endpoint tag: `positions`
|
||||
|
||||
#### 運行情報
|
||||
|
||||
- `stateBox/useAllTrainDiagram.tsx`
|
||||
- `/operation-logs`
|
||||
- `stateBox/useAreaInfo.tsx`
|
||||
- 運行情報本文 text
|
||||
- `jr-shikoku-trainfo-flag`
|
||||
|
||||
endpoint tag: `operation_info`
|
||||
|
||||
#### 運用・時刻表系
|
||||
|
||||
- `stateBox/useAllTrainDiagram.tsx`
|
||||
- `/train-data`
|
||||
- `diagram-today.json`
|
||||
|
||||
endpoint tag:
|
||||
|
||||
- `/train-data`: `train_operation`
|
||||
- `diagram-today.json`: `timetable`
|
||||
|
||||
## Sentry に入る情報
|
||||
|
||||
### tags
|
||||
|
||||
- `area=data_fetch`
|
||||
- `endpoint=positions|operation_info|train_operation|timetable`
|
||||
- `result=success|slow_success|timeout|network_error|http_error|non_json|parse_error|empty_response|unknown`
|
||||
- `root_tab=positions|topMenu|information|unknown`
|
||||
- `platform=android|ios`
|
||||
- `source=rn_fetch`
|
||||
- `status=200` など、HTTP response がある場合のみ
|
||||
|
||||
`root_tab` は呼び出し側で明示指定しない場合、`rootNavigationRef` の active root route から補完する。
|
||||
|
||||
### contexts.data_fetch
|
||||
|
||||
- `endpoint`
|
||||
- `method`
|
||||
- `status`
|
||||
- `ok`
|
||||
- `durationMs`
|
||||
- `timeoutMs`
|
||||
- `bytes`
|
||||
- `contentType`
|
||||
- `responseHead` 失敗時中心、最大300文字
|
||||
- `retryCount`
|
||||
- `urlHost`
|
||||
- `urlPathTemplate`
|
||||
- `appState`
|
||||
|
||||
URL 全文や query parameter は送らず、host と path template のみを送る方針にした。
|
||||
|
||||
## 挙動仕様
|
||||
|
||||
- timeout は wrapper 内の `AbortController` で実装。
|
||||
- `retry: true` の GET 系取得のみ、最大1回 retry。
|
||||
- retry 対象は `timeout`, `network_error`, HTTP `502/503/504`。
|
||||
- `non_json_response`, `json_parse_error`, `empty_response`, HTTP `4xx` は retry しない。
|
||||
- 成功は Issue 化しない。breadcrumb と span にのみ記録。
|
||||
- `slow_success` の captureMessage は第1段階では無効化した。breadcrumb/span には残る。
|
||||
- JSON endpoint は HTTP 200 だけでは success とせず、JSON parse 成功後に success 記録する。
|
||||
|
||||
## 未実装・次段階
|
||||
|
||||
- WebView 内 fetch の計測 hook は未実装。
|
||||
- stale cache fallback の共通化は未実装。
|
||||
- connection type の取得は未実装。必要なら `@react-native-community/netinfo` 等の導入可否を確認する。
|
||||
- Sentry metrics は未実装。今回は span / breadcrumb / warning/error event に限定。
|
||||
- slow success の warning event 化は無効。Sentry ノイズを見てから sample rate を上げる。
|
||||
|
||||
## 実機テスト観点
|
||||
|
||||
### 通常系
|
||||
|
||||
1. アプリを起動する。
|
||||
2. トップメニューを表示する。
|
||||
3. 走行位置タブを開く。
|
||||
4. 運行情報タブを開く。
|
||||
5. しばらく放置して 30 秒 interval の再取得を待つ。
|
||||
|
||||
期待:
|
||||
|
||||
- UI 挙動が従来と変わらない。
|
||||
- Sentry の event / span / breadcrumb に `area:data_fetch` が見える。
|
||||
- `endpoint:positions`, `endpoint:operation_info`, `endpoint:train_operation`, `endpoint:timetable` で絞れる。
|
||||
|
||||
### 失敗系
|
||||
|
||||
1. 機内モード、または通信不安定状態で起動する。
|
||||
2. 走行位置・運行情報を開く。
|
||||
|
||||
期待:
|
||||
|
||||
- `result:timeout` または `result:network_error` が Sentry に warning として出る。
|
||||
- `contexts.data_fetch.durationMs`, `timeoutMs`, `endpoint`, `root_tab` が入る。
|
||||
- 既存 UI の fallback / error 表示が大きく変わらない。
|
||||
|
||||
### non_json / parse_error
|
||||
|
||||
実機で一時的に endpoint を HTML 返却 URL に向ける場合のみ確認。通常の配信ビルドでは無理に発生させない。
|
||||
|
||||
期待:
|
||||
|
||||
- HTML 返却は `result:non_json` / `kind:non_json_response`。
|
||||
- JSON parse 失敗は `result:parse_error` / `kind:json_parse_error`。
|
||||
- `responseHead` は最大300文字。
|
||||
|
||||
## Sentry 確認クエリ
|
||||
|
||||
```text
|
||||
area:data_fetch
|
||||
area:data_fetch endpoint:positions
|
||||
area:data_fetch endpoint:operation_info
|
||||
area:data_fetch result:timeout
|
||||
area:data_fetch result:network_error
|
||||
area:data_fetch result:non_json
|
||||
area:data_fetch result:parse_error
|
||||
area:data_fetch platform:android
|
||||
area:data_fetch platform:ios
|
||||
area:data_fetch source:rn_fetch
|
||||
```
|
||||
|
||||
Performance / spans 側では `op:http.client`、span name `fetch positions` などで確認する。
|
||||
|
||||
## 検証状況
|
||||
|
||||
- `git diff --check` は対象ファイルで通過。
|
||||
- `npx tsc --noEmit` は失敗するが、今回追加した network observability 由来の TypeScript エラーは出ていない。
|
||||
- 残っている主な既存エラー:
|
||||
- `Apps.tsx` の `event.preventDefault` 型
|
||||
- `expo-live-activity` 型解決
|
||||
- `components/trainMenu.web.tsx` の web 側型エラー
|
||||
- `lib/felicaStationMap.ts` の重複 object key
|
||||
|
||||
## 2026-07-07 第1回観測後の追加修正
|
||||
|
||||
第1回観測で `operation_info` の `script.google.com` が timeout したため、以下を追加修正した。
|
||||
|
||||
- timeout 時の Sentry primary error が `AbortError` に寄らないよう、timeout では `ObservedFetchError("Network request timed out")` を primary として `captureException` する。timeout 時は元の AbortError を `cause` に入れない。
|
||||
- `root_tab` が `unknown` になりにくいよう、`rootNavigationRef` から現在 route を取れない場合は `lastObservedRootRouteRef` を fallback にする。
|
||||
- `Apps.tsx` の root navigation state 更新時に、最後に観測した root route を `lastObservedRootRouteRef` に保存する。
|
||||
- `operation_info` の Google Apps Script text 取得は通常時に必ず走らせず、n8n の flag 取得で対象エリアがある場合だけ遅延実行する。
|
||||
- 起動直後や `topMenu` 表示中の負荷を避けるため、初回 `operation_info` flag 取得は `InteractionManager.runAfterInteractions` と `setTimeout` で遅延する。
|
||||
- 自作 span は `name` / `description` ともに `fetch <endpoint>` に統一した。実 URL が出る自動 HTTP span は Sentry SDK 側の自動計測として許容する。
|
||||
|
||||
この変更により、通常時の `script.google.com` text 取得は発生しにくくなり、運行情報対象駅がある場合のみ補助テキストとして取得される。
|
||||
|
||||
## 注意
|
||||
|
||||
今回の変更は観測基盤の第1段階であり、通信失敗時の UI 改善や stale cache 表示は含まない。実機で `area:data_fetch` のイベント量とノイズを確認してから、WebView fetch 計測と stale fallback を次段階で検討する。
|
||||
|
||||
|
||||
## 第2回観測対応: positions timeout / background noise / huge span
|
||||
|
||||
Sentry観測で、foreground / positions表示中 / online / wifi の状態で `endpoint=positions` が timeout していた。
|
||||
対象は `jr-shikoku-backend-mock-api-v1.haruk.in/train-positions/current`。
|
||||
観測値は `durationMs ~= 8028ms`, `timeoutMs = 8000`, `retryCount = 1` で、これはユーザー体感に直結する取得失敗として扱う。
|
||||
|
||||
### 実装したアプリ側対策
|
||||
|
||||
- `observedFetch` のtimeoutを `AbortController` 依存だけでなく `Promise.race` に変更した。
|
||||
- React Native側のfetch abortが即時rejectしない場合でも、自作Sentry spanはtimeout時点で終了する。
|
||||
- `operation_info` の29分級spanは、この経路が主因候補。
|
||||
- retry前にruntime状態を再確認するようにした。
|
||||
- `AppState.currentState === "background"` ならretryしない。
|
||||
- `navigator.onLine === false` が取れる環境ではoffline時もretryしない。
|
||||
- background/offline由来の取得抑制は `aborted` breadcrumb に留め、Issue化しない。
|
||||
- fetch失敗後にruntimeがbackground/offlineなら `captureException` しない。
|
||||
- `positions` のmock API取得にアプリ内last-good cacheを追加した。
|
||||
- `/train-positions/current` がtimeout/network errorになっても、前回成功データがあればそれを返す。
|
||||
- stale cache利用時は `fetch:stale_cache` breadcrumb を残す。
|
||||
- 走行位置画面側でも、前回表示データがある場合は取得失敗で `currentTrainLoading=error` に落とさず `success` を維持する。
|
||||
- `operation_info` の遅延fetch timerをcleanupするようにした。
|
||||
- `InteractionManager.runAfterInteractions` 後の `setTimeout` がProvider破棄後に残る経路を潰した。
|
||||
- Google Apps Script詳細取得の遅延timerも多重起動時に前回timerをclearする。
|
||||
|
||||
### このリポジトリで実装できなかったバックエンド側項目
|
||||
|
||||
このリポジトリ内を検索したが、`/train-positions/current` のサーバー実装は含まれていない。
|
||||
見つかったのはフロント側の呼び出し元 `lib/mockApi/positionMasters.ts` のみ。
|
||||
そのため、以下はバックエンド側リポジトリで実装が必要。
|
||||
|
||||
- `/train-positions/current` handler全体のserver-side duration log
|
||||
- Sentry transaction/span
|
||||
- upstream JR四国取得duration
|
||||
- cache hit/miss
|
||||
- stale/last-known-good cache返却
|
||||
- upstream timeout時に200 + stale payloadを返すか、少なくとも短時間で明示的なfallback responseを返す設計
|
||||
|
||||
### 外部APIの簡易計測
|
||||
|
||||
2026-07-07時点で手元から直接 `curl` 計測した結果:
|
||||
|
||||
```
|
||||
http_code=200
|
||||
time_total=1.449047
|
||||
time_connect=0.358893
|
||||
time_starttransfer=1.448716
|
||||
size_download=4887
|
||||
```
|
||||
|
||||
この1回の計測では8秒遅延は再現していない。
|
||||
Sentry上のtimeoutは一過性の上流遅延、バックエンド側のcache miss、または該当時刻の外部取得詰まりを疑う。
|
||||
|
||||
### 次にSentryで見るポイント
|
||||
|
||||
- `area:data_fetch endpoint:positions result:timeout` がIssue化されるのは foreground / online のみになっているか。
|
||||
- timeout後に `fetch:stale_cache` breadcrumb が付くか。
|
||||
- `operation_info` のspan durationが15秒timeout近辺で止まり、29分級spanが再発しないか。
|
||||
- background中の `network_error` がIssue化されずbreadcrumbに留まるか。
|
||||
|
||||
### 残課題
|
||||
|
||||
- offline判定は現時点では `navigator.onLine` が取れる環境に限定される。
|
||||
React Nativeで確実に判定するなら `@react-native-community/netinfo` などの導入が必要。
|
||||
- last-good cacheはアプリプロセス内メモリのみ。アプリ再起動後もstale表示したい場合は永続cacheが必要。
|
||||
- 根本対策はバックエンド側で `/train-positions/current` のlast-known-good cacheを返すこと。
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,40 @@
|
||||
# operation-info `areaInfo` 観察メモ
|
||||
|
||||
更新日: 2026-07-30
|
||||
|
||||
## 方針
|
||||
|
||||
`latest.json` の `compatibility.areaInfo` は、現時点で値域をアプリ側から
|
||||
過度に固定しない。実際の運行情報発生時・正常復帰時・公式ページ変更時のデータを
|
||||
観察し、確認できた挙動に合わせて順次型定義と判定処理を調整する。
|
||||
|
||||
当面は次の方針を維持する。
|
||||
|
||||
- 路線要素の `status` は `boolean` として扱う。
|
||||
- `area === "genelic"` の `status` は公式HTML由来の文字列として扱う。
|
||||
- 未知の `area` は無理に駅IDへ変換せず、安全に読み飛ばす。
|
||||
- `OperationInfoAreaState.status` は、観察が進むまで `boolean | string` を維持する。
|
||||
- automation側・アプリ側の値域を推測だけで狭めない。
|
||||
|
||||
## 現時点で確認できている値
|
||||
|
||||
- 公開中の正常時JSON: 路線は `false`、`genelic` は `"nodelay"`。
|
||||
- automation側の異常時fixture: 影響路線は `true`、`genelic` は `"delay"`。
|
||||
- automation側の正常時fixtureには、`genelic` が `"normal"` になる入力もある。
|
||||
- automationは `genelic.status` を正規化せず、公式HTMLのclass文字列を格納する。
|
||||
|
||||
## 観察項目
|
||||
|
||||
実データで運行情報が発生・更新・解除された際は、次を確認する。
|
||||
|
||||
1. `status` と `compatibility.hasOperationInfo` が一致するか。
|
||||
2. `operationInfoText` が空でないとき、影響路線の `status` がどうなるか。
|
||||
3. 予告・参考情報など、本文はあるが影響路線がないケースが存在するか。
|
||||
4. `genelic.status` に `"nodelay"` / `"delay"` 以外の値が現れるか。
|
||||
5. 既知10路線以外の `area` が追加されるか。
|
||||
6. 正常復帰時に、本文・路線フラグ・`genelic.status` が同じ更新で切り替わるか。
|
||||
|
||||
観察時は最低限、`fetchedAt`、`contentHash`、`stateHash` と
|
||||
`compatibility` 全体を記録する。個別事例が集まった段階で、
|
||||
`hasOperationInfo` を中心とした判定への整理、discriminated union化、
|
||||
runtime validation追加を再検討する。
|
||||
@@ -0,0 +1,58 @@
|
||||
# 保存した運用録画のファイルインポート/エクスポート方針
|
||||
|
||||
## 目的
|
||||
|
||||
保存した走行位置録画を、クリップボードだけでなくファイルとして受け渡しできるようにする。
|
||||
録画データを JSON として書き出し、同じ JSON を選択して取り込める構成にする。
|
||||
|
||||
## 導入済みの必須ライブラリ
|
||||
|
||||
- `expo-file-system`: 録画 JSON を一時ファイルまたは Documents 配下へ書き出し、インポート時に選択済みファイルを読み込む。
|
||||
- `expo-document-picker`: ユーザーに録画 JSON ファイルを選ばせる。読み込み直後に扱いやすくするため、実装時は `copyToCacheDirectory: true` を使う。
|
||||
|
||||
既存の `expo-sharing` は単一ファイルの共有 fallback として残す。`react-native-share` は複数画像や複数ファイルの同時共有、共有先ごとの制御が必要なケースで使う。既存の `expo-clipboard` はコピペ export/import の fallback として残す。
|
||||
|
||||
## 実装済み
|
||||
|
||||
- 録画1件と全件の JSON envelope 書き出し。
|
||||
- `react-native-share` によるネイティブ共有/保存。
|
||||
- Web では `Blob` と `download` による JSON ダウンロード。
|
||||
- `expo-document-picker` と `expo-file-system` による JSON 読み込み。
|
||||
- 既存保存形式と同じ検証処理を通したインポート。
|
||||
- 録画本体は `Paths.document/train-recordings` 配下の JSON ファイルへ保存し、AsyncStorage/SQLite には軽量な一覧メタだけ保存する。
|
||||
- 旧SQLite保存の録画本体は、起動時/インポート時にファイルへ移行して旧キーを削除する。
|
||||
|
||||
## 想定する実装方針
|
||||
|
||||
### ネイティブ
|
||||
|
||||
1. 録画データを version 付き envelope JSON に変換する。
|
||||
2. `expo-file-system` で `cacheDirectory` に `.json` ファイルを書き出す。
|
||||
3. 単一 JSON は `expo-sharing` または `react-native-share` で共有する。
|
||||
4. 複数画像や複数ファイルを同時共有する場合は `react-native-share` の `urls` を使う。
|
||||
5. インポートは `expo-document-picker` で JSON を選択する。
|
||||
6. 選択したファイルを `expo-file-system` で読み込み、既存の検証処理を通して保存する。
|
||||
|
||||
### Web
|
||||
|
||||
Web ではローカル file URI の `expo-sharing` が使えないため、`Blob` と `URL.createObjectURL` による download を別実装にする。
|
||||
インポートはブラウザの file input 相当で読み込む方針にする。
|
||||
|
||||
|
||||
## 正式採用する共有ライブラリ
|
||||
|
||||
- `react-native-share`: 複数画像や複数ファイルを同時共有するために正式採用する。Expo config plugin は options 付きで登録し、初期状態では `ios` と `android` の query 追加を空配列にしている。特定アプリ向けの `shareSingle` や `isPackageInstalled` が必要になった時点で、対象アプリの scheme/package を追加する。
|
||||
- `enableBase64ShareAndroid`: 初期状態では `false`。ファイル URI 共有を基本にするため、Android の legacy storage permission を増やさない。base64 共有が必要になった場合だけ有効化する。
|
||||
|
||||
## 今回インストールしない候補
|
||||
|
||||
- `pako` または `fflate`: 録画 JSON が大きくなったときの gzip/deflate 圧縮候補。まずは plain JSON で運用し、共有できないサイズになった時点で入れる。
|
||||
- `expo-file-system` config plugin options: iOS の Files アプリからアプリ Documents を直接見せたい場合に `enableFileSharing` と `supportsOpeningDocumentsInPlace` を検討する。現時点では共有シートと DocumentPicker で足りる。
|
||||
- `expo-sharing` の共有受け取り設定: 他アプリから「このアプリで開く」導線を作る候補。まずはアプリ内のインポートボタンから選択する方式にする。
|
||||
- `react-native-blob-util`: 大容量/バックグラウンド/Android Storage Access Framework の細かい制御が必要になった場合の候補。Expo managed workflow では導入コストが上がるため、現時点では使わない。
|
||||
|
||||
## 参考
|
||||
|
||||
- https://docs.expo.dev/versions/latest/sdk/filesystem/
|
||||
- https://docs.expo.dev/versions/latest/sdk/document-picker/
|
||||
- https://docs.expo.dev/versions/latest/sdk/sharing/
|
||||
@@ -0,0 +1,372 @@
|
||||
# Sentry Crash 調査履歴
|
||||
|
||||
## 目的
|
||||
このメモは、現在追っているクラッシュ調査の経緯を ChatGPT 側で再考察しやすい形に整理したもの。
|
||||
|
||||
## 現象
|
||||
- `top menu` を表示した後、タブ切り替えや回転をきっかけにクラッシュする。
|
||||
- Android / iOS の両方で再現した。
|
||||
- 既存の `lazy` / `detachInactiveScreens` は必須前提として扱う。
|
||||
- 走行位置、運行情報、トップメニューの各画面で WebView / ネイティブ View のマウントが絡んでいる。
|
||||
|
||||
## 最初の主要シグナル
|
||||
- Sentry の主エラーは `RetryableMountingLayerException: Unable to find viewState for tag ...`
|
||||
- 典型的には Fabric / New Architecture のネイティブ UI ツリー更新失敗を示していた。
|
||||
- つまり JavaScript の例外というより、View の mount / unmount タイミング競合を疑うべき状態だった。
|
||||
|
||||
## 試した方向性の履歴
|
||||
|
||||
### 1. 遷移タイミングをずらす
|
||||
- `navigate` / `replace` / `reset` の直後に落ちるケースを疑い、遷移を一拍遅らせる案を検討した。
|
||||
- ただし症状は完全には止まらず、遷移先だけの問題ではなかった。
|
||||
|
||||
### 2. ライフサイクル依存の自動解放を抑える
|
||||
- iOS でブラウザや WebView がタブ切り替え時に開放される問題があり、`lazyload` を外す方向は破綻した。
|
||||
- そのため、WebView を「常時破棄しない」方向を維持する必要があった。
|
||||
|
||||
### 3. Sentry の観測点を増やす
|
||||
- 画面ごとに breadcrumb と context を追加した。
|
||||
- 追加した主な観測点:
|
||||
- `Apps.tsx`
|
||||
- `Top.tsx`
|
||||
- `components/Apps.tsx`
|
||||
- `components/Apps/WebView.tsx`
|
||||
- `MenuPage.tsx`
|
||||
- `ndView.tsx`
|
||||
- `lib/useWebViewRemount.ts`
|
||||
- これで「どの画面がいつ active になったか」「WebView がいつ remount されたか」を追えるようにした。
|
||||
|
||||
## 重要な発見
|
||||
|
||||
### 発見 1: 走行位置画面の WebView が、非表示なのに active 扱いになる
|
||||
- Sentry のイベントで、`root_tab = topMenu` なのに `positions_screen.activatedScreen = true` や `positions_webview.currentUrl = https://train.jr-shikoku.co.jp/sp.html` が見えていた。
|
||||
- Replay 上はトップメニューだけに見えても、内部 state は走行位置側が先に活性化していた。
|
||||
- これは「見た目では隠れているが、React Navigation / Fabric 的には既に mount されている」可能性を示した。
|
||||
|
||||
### 発見 2: `useIsFocused()` を初期 render の active 判定に使うのが危険
|
||||
- `useIsFocused()` 由来の初期状態が、ナビゲータ初期化直後に想定外の `true` を返す経路があった。
|
||||
- その結果、`positions` 側の root / stack / screen / webview が早すぎるタイミングで活性化した。
|
||||
- これが Fabric の mount 競合を起こしている可能性が高い。
|
||||
|
||||
### 発見 3: `positions` の gate を 1 枚かませても足りなかった
|
||||
- `DeferredPositionsRoot` を追加して root 側を遅延させたが、それでも crash は残った。
|
||||
- つまり root だけではなく、stack / screen / WebView 側にも同じ「初期 focused 扱い」の問題が潜んでいた。
|
||||
|
||||
## 反復した修正
|
||||
|
||||
### 実施した instrumentation
|
||||
- root navigation の state 変化を breadcrumb に残すようにした。
|
||||
- `positions_stack` / `positions_screen` / `positions_webview` / `operation_screen` などの context を追加した。
|
||||
- WebView remount の理由も記録するようにした。
|
||||
|
||||
### 実施した防御
|
||||
- 画面遷移時の WebView remount を観測しやすくした。
|
||||
- Android の回転時やバックグラウンド遷移時に何が起きるか追えるようにした。
|
||||
|
||||
## 現在の仮説
|
||||
- 根本原因は React Navigation そのものではなく、初期 render 時の `focused` 判定を前提にした activation が早すぎること。
|
||||
- その結果、非表示の `positions` ツリーが先に active になり、Fabric が mount state を失う。
|
||||
- 画面遷移先の問題というより、「起動直後の数タイミングで走行位置を経由したタブ遷移が入ると壊れる」挙動に近い。
|
||||
|
||||
## upstream issue 調査メモ
|
||||
- `software-mansion/react-native-reanimated#9785`
|
||||
- `open`
|
||||
- Android + Fabric + React Navigation stack animation 有効時に `SurfaceMountingManager` で crash。
|
||||
- Android だけ stack animation を `none` にすると止まる、という回避策まで一致している。
|
||||
- `software-mansion/react-native-reanimated#6908`
|
||||
- `closed`
|
||||
- Android Fabric で `entering/exiting animations` 使用時に大量 crash。
|
||||
- 本文中に `RetryableMountingLayerException: Unable to find viewState for tag ... Surface stopped: false` があり、Sentry の症状にかなり近い。
|
||||
- `software-mansion/react-native-reanimated#9636`
|
||||
- `closed`
|
||||
- `NativeProxy.preserveMountedTags` が Fabric の view preallocation 中に `Unable to find view for tag ... Surface stopped: false` で落ちる。
|
||||
- 重い native view が同期イベントを投げると crash しやすいという話で、WebView / map 系にも連想が効く。
|
||||
- `software-mansion/react-native-reanimated#8344`
|
||||
- `open`
|
||||
- multi-surface で `LayoutAnimationsProxy` が surface aware でない、という報告。
|
||||
- 直接 Android の同一事象ではないが、「surface をまたぐ animation / mount transaction が壊れる」という意味で構造が近い。
|
||||
|
||||
## 現時点での対策方針
|
||||
- Android の React Navigation stack animation は無効化する。
|
||||
- Android の Reanimated `entering/exiting/layout` は、実際に使っている箇所から順に止めて再現率を下げる。
|
||||
- 現在 repo 内で確認できた該当箇所は `components/Menu/Carousel/CarouselBox.tsx` の `FadeIn/FadeOut`。
|
||||
|
||||
## 直近の修正
|
||||
- `Apps.tsx`
|
||||
- `DeferredPositionsRoot` の activation 初期値を `false` に変更。
|
||||
- `Top.tsx`
|
||||
- positions stack の activation 初期値を `false` に変更。
|
||||
- `components/Apps.tsx`
|
||||
- positions screen / WebView の activation 初期値を `false` に変更。
|
||||
- `ndView.tsx`
|
||||
- operation WebView の activation 初期値を `false` に変更。
|
||||
|
||||
## 直近の OTA
|
||||
- branch: `gmarket`
|
||||
- message: `initialize tab activation gates from false`
|
||||
- update group ID: `82552333-cb5e-455f-ac58-65ada37f7acd`
|
||||
- Android update ID: `019f2133-c3e6-7050-911c-49052b6b17a1`
|
||||
- iOS update ID: `019f2133-c3e6-79b9-9776-88fd55ff72b8`
|
||||
- commit: `cf3995fcbe34366b32b09ee1cfb6b27a7e42982c`
|
||||
|
||||
## いま ChatGPT に見てほしい論点
|
||||
1. 初期 focused 判定を `false` にしても crash が続くなら、次はどの画面の mount ordering を疑うべきか。
|
||||
2. `positions` ツリーのどこまでが本当に先に active になるのかを、Sentry context と replay でどう切り分けるか。
|
||||
3. Fabric / New Architecture の mount race として扱うべきか、React Navigation の state propagation 問題として扱うべきか。
|
||||
|
||||
## 参考ファイル
|
||||
- [Apps.tsx](/home/ubuntu/jrshikoku/Apps.tsx)
|
||||
- [Top.tsx](/home/ubuntu/jrshikoku/Top.tsx)
|
||||
- [components/Apps.tsx](/home/ubuntu/jrshikoku/components/Apps.tsx)
|
||||
- [components/Apps/WebView.tsx](/home/ubuntu/jrshikoku/components/Apps/WebView.tsx)
|
||||
- [ndView.tsx](/home/ubuntu/jrshikoku/ndView.tsx)
|
||||
- [lib/useWebViewRemount.ts](/home/ubuntu/jrshikoku/lib/useWebViewRemount.ts)
|
||||
|
||||
|
||||
## 現在の安定化パッチの意味
|
||||
- 最新の `gmarket` 配信では、クラッシュ回避のために非表示タブの重い native view をかなり積極的に止めている。
|
||||
- その結果、クラッシュは減った一方で、以下の UX 劣化が意図的に入っている。
|
||||
- 走行位置 / 運行情報の WebView がタブ離脱後に再初期化されやすい
|
||||
- タブ間で状態保持されず、開き直しに見える
|
||||
- 動的ルーティングやバックグラウンド継続性が弱くなっている
|
||||
- トップメニューの重い要素は遷移直後に即 mount されない
|
||||
|
||||
## 現在の安定基準点
|
||||
- `gmarket` で配信済みの `topMenu` heavy mount 遅延パッチでは、少なくとも直近の再現テストでクラッシュ頻度は大きく下がっている。
|
||||
- したがって、ここを一旦「クラッシュしにくい基準点」として扱い、以降は UX を壊している防御を一つずつ戻していく方針が妥当。
|
||||
- この時点で重要なのは「全部戻す」ことではなく、「どの防御を戻すとクラッシュが再発するか」を Sentry で切り分けること。
|
||||
|
||||
## UX 劣化の主因になっている防御
|
||||
- `components/Apps.tsx`
|
||||
- `positions` の WebView を blur 時に teardown / deactivate している。
|
||||
- `Apps.tsx` / `Top.tsx` / `lib/rootNavigation.ts`
|
||||
- `positions` タブ離脱時に root / stack 側も落とす寄りの制御を入れている。
|
||||
- `ndView.tsx`
|
||||
- `information` の WebView も blur 中は deactivate している。
|
||||
- `menu.tsx`
|
||||
- `topMenu` の `MapView` / `CarouselBox` / `LED_vision` を Android で遅延 mount している。
|
||||
|
||||
## ここから戻す優先順位
|
||||
1. `positions` の blur 時 WebView teardown を部分的に戻す
|
||||
- 対象: `components/Apps.tsx`
|
||||
- 理由: 走行位置の開き直し、状態喪失、バックグラウンド継続切断に最も効いているため。
|
||||
2. `positions` の tab blur 時 stack / root teardown を緩める
|
||||
- 対象: `Apps.tsx`, `Top.tsx`, `lib/rootNavigation.ts`
|
||||
- 理由: タブ間データ共有、動的ルーティング、navigation state 維持の破綻に直結しているため。
|
||||
3. `information` の blur 時 WebView teardown を戻す
|
||||
- 対象: `ndView.tsx`
|
||||
- 理由: 運行情報の開き直しや iOS 側の裏ブラウザ保持に関係するため。
|
||||
4. `topMenu` の heavy mount 遅延を必要最小限まで縮める
|
||||
- 対象: `menu.tsx`
|
||||
- 理由: 初回表示のもたつき改善には効くが、状態維持より優先度は下。
|
||||
5. 最終的に teardown をやめて pause ベースに置き換える
|
||||
- 対象: `components/Apps.tsx`, `ndView.tsx` など
|
||||
- 理由: 安定性を維持しながら UX を戻す本命だが、切り分け後にやるべき段階。
|
||||
|
||||
## 次の実施方針
|
||||
- まず `positions` を中心に戻す。
|
||||
- 1 回の変更で戻す範囲は狭くし、再現したらその差分だけを Sentry で見る。
|
||||
- つまり今後の作業は「クラッシュ回避策の全撤廃」ではなく、「UX を壊している要素を優先順に切り戻し、再発ラインを特定する」ことが目的。
|
||||
|
||||
|
||||
## 2026-07-03 時点の基準点
|
||||
|
||||
### 現在の評価
|
||||
- 起動直後の `positions -> topMenu` / `positions -> information` で高頻度に落ちていた主クラッシュは、現時点ではかなり再現率が下がっている。
|
||||
- 少なくとも直近の観測では、以前の `RetryableMountingLayerException` 系の大崩れは前面には出ていない。
|
||||
- そのため、この時点は「主問題をかなり抑え込めた基準点」として保存する価値がある。
|
||||
|
||||
### この時点で残っている別系統の問題
|
||||
- `JR-SHIKOKU-UNOFFICIAL-APPS-S`
|
||||
- `Error: Unsupported top level event type "topUserLocationChange" dispatched`
|
||||
- `root_tab = positions`
|
||||
- `level = fatal`
|
||||
- `ReactFabric-prod` 起点
|
||||
- これは、今回の `topMenu / information / hidden prewarm` 系の問題とは別系統とみなす。
|
||||
- つまり、この時点での主クラッシュ対策の評価をする際は、この issue は切り離して考える。
|
||||
|
||||
### この時点での差分の分類
|
||||
|
||||
#### A. 主クラッシュ抑止のコア差分
|
||||
以下は、現時点の安定化に本質的に効いている可能性が高く、安易に戻さない。
|
||||
|
||||
- `Apps.tsx`
|
||||
- `DeferredPositionsRoot`
|
||||
- `hasVisitedPositions`
|
||||
- startup delayed prewarm
|
||||
- `detachInactiveScreens={false}`
|
||||
- root tab の `positionsLifecycleRef` 連携
|
||||
- `Top.tsx`
|
||||
- `positions stack` の background prewarm
|
||||
- stack activation gate
|
||||
- `components/Apps.tsx`
|
||||
- `positions screen` / `WebView` の activation gate
|
||||
- `hasStableWebViewSession`
|
||||
- blur 時 preserve
|
||||
- unstable session 中の tab exit guard
|
||||
- `components/Apps/WebView.tsx`
|
||||
- WebView 初回安定化通知
|
||||
- message / load / process termination の監視強化
|
||||
- `lib/rootNavigation.ts`
|
||||
- `positionsLifecycleRef`
|
||||
- `lib/useWebViewRemount.ts`
|
||||
- remount reason 付きの共通制御
|
||||
|
||||
#### B. 補助的な安定化差分
|
||||
以下は、主因とは言い切れないが、再現率低下に寄与している可能性がある。
|
||||
|
||||
- `menu.tsx`
|
||||
- top menu heavy content の delayed activation
|
||||
- Android で `MapView` や重い要素をすぐ mount しない制御
|
||||
- `ndView.tsx`
|
||||
- operation WebView の delayed activation
|
||||
- operation 側 remount / parse / settings load の観測
|
||||
- `lib/stackOption.ts`
|
||||
- Android で push animation を切る変更
|
||||
- `components/Settings/settings.tsx`
|
||||
- settings stack へ共通 animation option を適用
|
||||
|
||||
#### C. 観測専用で後から削れる差分
|
||||
以下は、挙動改善というより Sentry で成功/失敗比較を行うための記録であり、安定化の評価が済めば削減可能。
|
||||
|
||||
- `Apps.tsx` の `nav.root` / `nav.tab` / `positions.root` breadcrumb と context の大半
|
||||
- `Top.tsx` の `positions.stack` breadcrumb / context
|
||||
- `components/Apps.tsx` の `positions.screen` breadcrumb / context
|
||||
- `components/Apps/WebView.tsx` の `positions.webview` breadcrumb / context
|
||||
- `MenuPage.tsx` の `topMenu.screen` breadcrumb / context
|
||||
- `menu.tsx` の `top_menu_runtime` breadcrumb / context
|
||||
- `ndView.tsx` の `operation.screen` / `operation.settings` / `operation.webview` breadcrumb / context
|
||||
- `components/Menu/Carousel/CarouselBox.tsx` の `menu.carousel` breadcrumb
|
||||
|
||||
### この時点での重要な判断
|
||||
- 今の差分は広いが、全部が同じ重みではない。
|
||||
- まず守るべきなのは `positions` の activation / preserve / unstable guard 周辺であり、ここが今回の基礎。
|
||||
- 一方、Sentry breadcrumb の大半は観測用なので、安定化判断後にかなり整理できる。
|
||||
- `CarouselBox.tsx` は特に「Android fallback ロジック」と「breadcrumb」の両方が混ざっているため、後で整理する際は分離して扱う。
|
||||
|
||||
### 今後の戻し方の基準
|
||||
- 戻すときは、まず観測用差分からではなく、`UX を壊しているがコアではない差分` を対象にする。
|
||||
- つまり順番としては:
|
||||
1. 観測を維持したまま補助差分を少し戻す
|
||||
2. 再発しないことを確認する
|
||||
3. 最後に breadcrumb / context を掃除する
|
||||
- コア差分を先に剥がすと、再び「どこで壊れたか分からない状態」に戻るので避ける。
|
||||
|
||||
### この時点の結論
|
||||
- `positions` の hidden / delayed activation と lifecycle guard 群は、今回の主クラッシュ対策の核として維持する。
|
||||
- `topMenu` / `operation` / `carousel` 周辺の差分は、主因ではなく補助あるいは観測の可能性があるため、今後の整理対象にできる。
|
||||
- 新たに見つかった `topUserLocationChange` は別問題であり、この基準点の評価には混ぜない。
|
||||
|
||||
## 2026-07-04 iOS WebView 保持問題の解決メモ
|
||||
|
||||
### 解決した現象
|
||||
- iOS で `トップメニュー -> 走行位置 -> トップメニュー -> 走行位置` と遷移すると、走行位置 WebView が毎回開き直る問題。
|
||||
- iOS で `トップメニュー -> 運行情報 -> トップメニュー -> 運行情報` と遷移すると、運行情報 WebView が毎回開き直る問題。
|
||||
- ユーザー確認により、最新 `gmarket` OTA で iOS の上記挙動は完全に解消した。
|
||||
|
||||
### 解決に効いた差分
|
||||
- `App.tsx`
|
||||
- iOS のみ `react-native-screens` の最適化を起動時に無効化した。
|
||||
- `enableFreeze(false)`
|
||||
- `enableScreens(false)`
|
||||
- この結果、タブ切替時に native screen 最適化層が WebView を実質的に破棄・再生成する経路を避けられた。
|
||||
- したがって、iOS の WebView 保持問題については、現時点では `react-native-screens` / freeze / native screen detach 周辺が主因だったと扱う。
|
||||
|
||||
### 解決時点の OTA
|
||||
- branch: `gmarket`
|
||||
- message: `gmarket ios screens webview retention test`
|
||||
- update group ID: `8aec430f-eb6d-4017-af74-c2ae7dee7fd4`
|
||||
- Android update ID: `019f2dfb-69f6-72ab-8cdd-a3d1b9f4df8d`
|
||||
- iOS update ID: `019f2dfb-69f6-75dd-956b-435a73519a54`
|
||||
- commit: `6cea1ed4e86e30f356a7a1b5fc289f9fe1f9b5f5`
|
||||
|
||||
### この解決の扱い
|
||||
- iOS では `react-native-screens` を無効化したため、画面保持は戻った。
|
||||
- 一方で、screen 最適化を切ったことによる副作用は今後確認が必要。
|
||||
- iOS の画面遷移アニメーションが重くならないか。
|
||||
- トップメニューや設定画面のスクロールが再び重くならないか。
|
||||
- スタック画面が増えた状態でメモリ使用量が過剰にならないか。
|
||||
- ただし、今回のユーザー確認では iOS の走行位置・運行情報 WebView 保持は解決済みとして扱う。
|
||||
|
||||
|
||||
## 2026-07-04 以降に残る検証項目
|
||||
|
||||
### 優先度 高: Android のタブ切替クラッシュが再発していないか
|
||||
- iOS 向けの `enableScreens(false)` は `Platform.OS === "ios"` 限定なので、Android の挙動は直接変えていない。
|
||||
- これまで Android では、走行位置の読み込み中にトップメニュー・運行情報へタブ切替すると `RetryableMountingLayerException` 系のクラッシュが再発していた。
|
||||
- 確認手順:
|
||||
- Android で起動直後に走行位置を開く。
|
||||
- ページ読み込みが終わる前にトップメニューへ切り替える。
|
||||
- 同じく、ページ読み込みが終わる前に運行情報へ切り替える。
|
||||
- それぞれ複数回繰り返し、Sentry に新規 fatal が出るかを見る。
|
||||
- 判定:
|
||||
- fatal が出なければ、Android の現行 guard は維持。
|
||||
- fatal が出るなら、Sentry breadcrumb で `positions.root` / `positions.stack` / `positions.screen` / `positions.webview` のどこまで進んだかを確認する。
|
||||
|
||||
### 優先度 高: iOS の解決差分の副作用確認
|
||||
- iOS で screen 最適化を無効化したため、UX とメモリの確認が必要。
|
||||
- 確認手順:
|
||||
- 走行位置、トップメニュー、運行情報、設定画面を長時間行き来する。
|
||||
- 設定画面やトップメニューの縦スクロールが重くならないか確認する。
|
||||
- 運行情報の横画面表示、縦横切替、戻しを複数回試す。
|
||||
- バックグラウンド復帰後に走行位置・運行情報が保持されるか確認する。
|
||||
- 判定:
|
||||
- 体感劣化が軽微なら、iOS の `enableScreens(false)` は維持。
|
||||
- 明確な重さが出るなら、iOS だけ root tab 周辺を JS view ベースにしつつ、stack 側の screen 最適化だけ戻す案を検討する。
|
||||
|
||||
### 優先度 中: Android で `react-native-reanimated-carousel` を戻せるか
|
||||
- 過去に Android のカクつき・クラッシュ対策として carousel 周辺を弱めた。
|
||||
- ユーザー要望として、Android では `reanimated-carousel` をできれば使いたい。
|
||||
- 確認手順:
|
||||
- 現行の Android 安定性を先に確認する。
|
||||
- その後、carousel を段階的に戻す。
|
||||
- 戻す場合も Reanimated の `entering` / `exiting` / `layout` アニメーションとは分離して検証する。
|
||||
- 判定:
|
||||
- carousel 復帰で crash が出なければ採用。
|
||||
- `RetryableMountingLayerException` が戻るなら、Android では carousel 本体または Reanimated layout animation を避ける。
|
||||
|
||||
### 優先度 中: Android / iOS の Sentry ノイズ整理
|
||||
- 現在は切り分けのため breadcrumb / context が多い。
|
||||
- 安定化判断後は、Sentry に残すものと削るものを分ける。
|
||||
- 残す候補:
|
||||
- root tab 遷移
|
||||
- WebView remount reason
|
||||
- process termination
|
||||
- fatal 直前の active tab / orientation
|
||||
- 削る候補:
|
||||
- 通常 focus / blur の過剰な breadcrumb
|
||||
- loadStart / loadEnd の頻繁な記録
|
||||
- 一時的な activation gate の詳細 context
|
||||
|
||||
### 優先度 中: `topUserLocationChange` 系 fatal の別問題調査
|
||||
- 以前確認した `JR-SHIKOKU-UNOFFICIAL-APPS-S` は今回の WebView 保持問題とは別系統として扱う。
|
||||
- `Unsupported top level event type "topUserLocationChange" dispatched`
|
||||
- `root_tab = positions`
|
||||
- ReactFabric 起点。
|
||||
- 確認手順:
|
||||
- 位置情報取得中、走行位置表示中、タブ切替中のどのタイミングで出るか Sentry で再確認する。
|
||||
- `useUserPosition` / MapView / location watcher 周辺を優先して見る。
|
||||
|
||||
### 優先度 低: トップメニュー指定起動時のバックグラウンド preload
|
||||
- 過去の課題として、トップメニュー指定で起動した場合に走行位置・運行情報がバックグラウンドで読み込まれない問題が残っている。
|
||||
- iOS の WebView 保持が戻ったため、再度評価する価値がある。
|
||||
- 確認手順:
|
||||
- `topMenu` 初期起動。
|
||||
- 走行位置を開く前に、走行位置 WebView の prewarm が開始しているか Sentry context で見る。
|
||||
- 運行情報も同様に hidden prewarm されるか見る。
|
||||
- ただし、Android の起動直後クラッシュ再発リスクがあるため、優先度は低め。
|
||||
|
||||
### 優先度 低: 過去の回避策の整理
|
||||
- iOS WebView 保持は `enableScreens(false)` で解決したため、それ以前に入れた一部の回避策は不要になった可能性がある。
|
||||
- ただし Android のクラッシュ抑止にはまだ必要な可能性があるため、削除は Android 安定確認後に行う。
|
||||
- 整理候補:
|
||||
- `components/Apps/WebView.tsx` の iOS ping watchdog の必要性。
|
||||
- `lib/useWebViewRemount.ts` の blur grace window の必要性。
|
||||
- `Apps.tsx` の `PositionsTabScreen` 固定化の必要性。
|
||||
- `ndView.tsx` の operation WebView delayed activation の必要性。
|
||||
|
||||
### 次の実務順
|
||||
1. Android で走行位置読み込み中のタブ切替クラッシュが残っているか確認する。
|
||||
2. iOS で `enableScreens(false)` の副作用を確認する。
|
||||
3. Android が安定している場合のみ、`reanimated-carousel` 復帰検証に進む。
|
||||
4. 安定確認後、Sentry breadcrumb と暫定回避策を整理する。
|
||||
@@ -0,0 +1,525 @@
|
||||
# Sentry観測ログ整理メモ
|
||||
|
||||
作成日: 2026-07-07
|
||||
|
||||
対象配信:
|
||||
|
||||
- EAS channel: `gmarket`
|
||||
- Update group ID: `8fd66cda-2f4a-40e2-937f-7de8e62c72ec`
|
||||
- Runtime version: `exposdk:55.0.0`
|
||||
- Message: `gmarket app lifecycle crash sentinel`
|
||||
|
||||
## 目的
|
||||
|
||||
このメモは、現在のアプリがSentryへ送るはずのログ情報を、機能別に整理する。
|
||||
|
||||
今後、データ通信エラー、WebView白化、Sentryにfatal crashとして出ない体感クラッシュが発生したときに、どのSentry情報を見ればよいかを明確にする。
|
||||
|
||||
## 全体像
|
||||
|
||||
現在Sentryで観測できる主な系統は次の5つ。
|
||||
|
||||
| 系統 | 主な機能 | Sentry上の見え方 | 目的 |
|
||||
|---|---|---|---|
|
||||
| 通信計測 | RN側fetch wrapper | `area=data_fetch` のIssue、breadcrumb、span | endpoint別の失敗、timeout、HTTP status、JSON parse失敗を追う |
|
||||
| アプリライフサイクル | crash sentinel | `app.previous_session_unexpected_exit` | fatal crashとして出ない突然終了を次回起動で検知する |
|
||||
| root navigation | タブ遷移、root状態 | `root_navigation` context、`nav.root`/`nav.tab` breadcrumb | どのタブ、どの遷移直後に問題が起きたかを追う |
|
||||
| WebView状態 | 走行位置、運行情報、hidden preload | `active_webviews` context、各WebView breadcrumb | クラッシュ/白化直前にどのWebViewが生きていたかを見る |
|
||||
| 画面ゲート/プリロード | positions/information lazy activation | `positions_root_gate` / `operation_root_gate` context、root breadcrumb | preloadや初回activationのタイミング問題を追う |
|
||||
|
||||
## 1. 通信計測 data_fetch
|
||||
|
||||
実装場所:
|
||||
|
||||
- `lib/observability/network/observedFetch.ts`
|
||||
- `lib/observability/network/sentryNetwork.ts`
|
||||
- `lib/observability/network/endpoints.ts`
|
||||
- `lib/observability/network/types.ts`
|
||||
|
||||
### 何をしているか
|
||||
|
||||
RN側の通信を `observedFetchJson` / `observedFetchText` 経由にして、endpointごとに次を記録する。
|
||||
|
||||
- fetch開始 breadcrumb
|
||||
- 成功/失敗 breadcrumb
|
||||
- `http.client` span
|
||||
- 失敗時の `captureException`
|
||||
- timeout時の primary error: `ObservedFetchError("Network request timed out")`
|
||||
- JSON期待時のHTML返却検知
|
||||
- JSON parse失敗検知
|
||||
- retry回数
|
||||
- appState / online状態
|
||||
- URL全文ではなく host + path template
|
||||
|
||||
### Sentry tags
|
||||
|
||||
通信系Issueには主に次のtagが付く。
|
||||
|
||||
| tag | 値 | 用途 |
|
||||
|---|---|---|
|
||||
| `area` | `data_fetch` | 通信計測イベントの絞り込み |
|
||||
| `endpoint` | 低カーディナリティendpoint名 | どの論理取得か |
|
||||
| `result` | `timeout`, `network_error`, `http_error`, `non_json`, `parse_error`, `empty_response`, `success`, `slow_success`, `aborted` | 結果分類 |
|
||||
| `root_tab` | `positions`, `topMenu`, `information`, `unknown` | 発生時のroot tab |
|
||||
| `platform` | `ios`, `android` | OS差分 |
|
||||
| `source` | `rn_fetch`, `mock_api`, `n8n`, `gas`, `backend_api`, `static_storage`, `webview_fetch` | 取得元分類 |
|
||||
| `user_visible` | `true` / `false` | ユーザー体感に直結する取得か |
|
||||
| `preload` | `true` / `false` | preload扱いか |
|
||||
| `fetch_priority` | `high`, `medium`, `low` | 優先度 |
|
||||
| `status` | HTTP status文字列 | HTTP系の絞り込み |
|
||||
|
||||
### Sentry context: `data_fetch`
|
||||
|
||||
| context field | 内容 |
|
||||
|---|---|
|
||||
| `kind` | 失敗分類。captureException時に付く |
|
||||
| `endpoint` | 論理endpoint |
|
||||
| `method` | 現状ほぼ `GET` |
|
||||
| `status` | HTTP status |
|
||||
| `ok` | response.ok |
|
||||
| `durationMs` | 通信 + body read時間 |
|
||||
| `timeoutMs` | endpointごとのtimeout |
|
||||
| `bytes` | response body推定サイズ |
|
||||
| `contentType` | response content-type |
|
||||
| `responseHead` | 失敗時のみ最大300文字 |
|
||||
| `retryCount` | `0` または `1` |
|
||||
| `urlHost` | hostのみ |
|
||||
| `urlPathTemplate` | path templateのみ |
|
||||
| `appState` | `active`, `background`, `inactive` など |
|
||||
| `online` | `navigator.onLine` が取れた場合のオンライン状態 |
|
||||
|
||||
### breadcrumb
|
||||
|
||||
| category | message | level | 意味 |
|
||||
|---|---|---|---|
|
||||
| `data_fetch` | `fetch:start` | `info` | fetch開始 |
|
||||
| `data_fetch` | `fetch:success` | `info` | 成功 |
|
||||
| `data_fetch` | `fetch:slow_success` | `warning` | slowMs超過。ただしIssue化は現在無効 |
|
||||
| `data_fetch` | `fetch:timeout` | `error` | timeout |
|
||||
| `data_fetch` | `fetch:network_error` | `error` | fetch reject |
|
||||
| `data_fetch` | `fetch:http_error` | `error` | HTTP 4xx/5xx |
|
||||
| `data_fetch` | `fetch:non_json_response` | `error` | JSON期待だがJSONに見えない |
|
||||
| `data_fetch` | `fetch:json_parse_error` | `error` | JSON.parse失敗 |
|
||||
| `data_fetch` | `fetch:empty_response` | `error` | 空レスポンス |
|
||||
| `data_fetch` | `fetch:aborted` | `info` | background/offlineで開始抑制。Issue化しない |
|
||||
|
||||
### span
|
||||
|
||||
`Sentry.startSpan` が使える環境では次のspanを出す。
|
||||
|
||||
| field | 値 |
|
||||
|---|---|
|
||||
| `op` | `http.client` |
|
||||
| `name` | `fetch <endpoint>` |
|
||||
| `description` | `fetch <endpoint>` |
|
||||
| `app.area` | `data_fetch` |
|
||||
| `app.endpoint` | endpoint名 |
|
||||
| `app.root_tab` | root tab |
|
||||
| `http.method` | method |
|
||||
| `server.address` | URL host |
|
||||
|
||||
注意:
|
||||
|
||||
- 自作span名には実URLを入れない。
|
||||
- Sentry SDKの自動HTTP spanに実URLが出る可能性はある。
|
||||
|
||||
### Issue化ルール
|
||||
|
||||
| 結果 | Issue化 | level | 備考 |
|
||||
|---|---|---|---|
|
||||
| success | しない | breadcrumb/spanのみ | 正常系ノイズ防止 |
|
||||
| slow_success | 現在しない | warning予定 | `SLOW_SUCCESS_SAMPLE_RATE = 0` |
|
||||
| timeout | する | warning | `ObservedFetchError("Network request timed out")` |
|
||||
| network_error | active/onlineならする | warning | background/offline由来は抑制 |
|
||||
| http_error | する | warning | status付き |
|
||||
| non_json_response | する | warning | HTML返却調査用にresponseHead |
|
||||
| json_parse_error | する | error | 実装/データ形式不一致の疑い |
|
||||
| empty_response | する | warning | 空body |
|
||||
| aborted | しない | breadcrumbのみ | background/offline開始抑制 |
|
||||
|
||||
## 2. 現在の通信endpoint一覧
|
||||
|
||||
| endpoint | source | 機能 | 画面/利用箇所 | URL host/path | timeout | retry | user_visible | preload | priority |
|
||||
|---|---|---|---|---|---:|---|---|---|---|
|
||||
| `positions_current` | `n8n` | 現在走行位置 | 走行位置、列車詳細、発車標系 | `n8n.haruk.in` `/webhook/c501550c-7d1b-4e50-927b-4429fe18931a` | 8000ms | 最大1回 | true | false | high |
|
||||
| `positions_current` | `mock_api` | mock現在走行位置 | mock有効時の走行位置 | `jr-shikoku-backend-mock-api-v1.haruk.in` `/train-positions/current` | 8000ms | 最大1回 | true | false | high |
|
||||
| `positions_master` | `mock_api` | mock位置マスタ | mock有効時の補完データ | `jr-shikoku-backend-mock-api-v1.haruk.in` `/position-masters` | 8000ms | 最大1回 | false | true | medium |
|
||||
| `positions_gas_fallback` | `gas` | 走行位置fallback | n8n失敗時のみ | `script.google.com` GAS `/exec` | 8000ms | 最大1回 | true | false | high |
|
||||
| `operation_info_flag` | `n8n` | 運行情報フラグ/対象エリア | topMenu、information、badge | `n8n.haruk.in` `/webhook/jr-shikoku-trainfo-flag` | 10000ms | 最大1回 | true | true | medium |
|
||||
| `operation_info_text` | `gas` | 運行情報本文補助 | operation flagで対象ありの場合のみ | `script.google.com` GAS `/exec` | 15000ms | なし | true | false | medium |
|
||||
| `operation_logs` | `backend_api` | 列車別運行ログ | provider全体、列車詳細、WebView補助と重複 | `jr-shikoku-backend-api-v1.haruk.in` `/operation-logs` | 15000ms | 最大1回 | false | true | medium |
|
||||
| `train_operation_data` | `backend_api` | 編成/運用系データ | provider全体、列車詳細、走行位置WebView補助と重複 | `jr-shikoku-backend-api-v1.haruk.in` `/train-data` | 15000ms | 最大1回 | false | true | medium |
|
||||
| `timetable_today` | `static_storage` | 当日ダイヤJSON | provider全体、時刻表/発車標/列車詳細 | `jr-shikoku-api-data-storage.haruk.in` `/tmp/diagram-today.json` | 15000ms | 最大1回 | false | true | medium |
|
||||
|
||||
## 3. アプリライフサイクル crash sentinel
|
||||
|
||||
実装場所:
|
||||
|
||||
- `lib/observability/appLifecycleCrashSentinel.ts`
|
||||
- `App.tsx`
|
||||
- `Apps.tsx`
|
||||
- `components/Apps/WebView.tsx`
|
||||
- `ndView.tsx`
|
||||
|
||||
### 何をしているか
|
||||
|
||||
Sentryに `fatal`, `handled:false`, `event.type:crash` として出ない「ユーザー体感上の完全クラッシュ」を、次回起動時に検出する。
|
||||
|
||||
AsyncStorageに以下を保存する。
|
||||
|
||||
- `app_session_active=true`
|
||||
- `normal_background`
|
||||
- `sessionStartedAt`
|
||||
- `lastHeartbeatAt`
|
||||
- `lastKnownAppState`
|
||||
- `lastRootTab`
|
||||
- `previousRootNavigation`
|
||||
- `activeWebViews`
|
||||
- `nativeScreensMode`
|
||||
|
||||
稼働中は7秒ごとに `lastHeartbeatAt` を更新する。
|
||||
|
||||
AppStateが `background` になったら `normal_background=true` を記録する。
|
||||
|
||||
次回起動時、前回sessionが次を満たす場合だけ `app.previous_session_unexpected_exit` を送る。
|
||||
|
||||
- `app_session_active=true`
|
||||
- `normal_background=false`
|
||||
- `lastHeartbeatAt` が直近120秒以内
|
||||
- sessionが5秒以上続いていた
|
||||
- 同じ `sessionStartedAt` で未報告
|
||||
|
||||
### Sentry event
|
||||
|
||||
| event | level | 目的 |
|
||||
|---|---|---|
|
||||
| `app.previous_session_unexpected_exit` | warning | fatal crashとして出ない突然終了を補足 |
|
||||
|
||||
### tags
|
||||
|
||||
| tag | 内容 |
|
||||
|---|---|
|
||||
| `area=app_lifecycle` | lifecycle系の絞り込み |
|
||||
| `result=unexpected_exit` | 前回session異常終了 |
|
||||
| `platform` | `ios` / `android` |
|
||||
| `root_tab` | 起動時に把握できる現在root tab |
|
||||
| `last_root_tab` | 前回session最後のroot tab |
|
||||
| `native_screens_mode` | `screens-disabled` or `default` |
|
||||
|
||||
### context: `app_lifecycle`
|
||||
|
||||
| field | 内容 |
|
||||
|---|---|
|
||||
| `lastHeartbeatAt` | 前回session最後のheartbeat |
|
||||
| `sessionStartedAt` | 前回session開始時刻 |
|
||||
| `previousRootNavigation` | 前回最後に観測したroot/nested navigation |
|
||||
| `lastKnownAppState` | 前回最後のAppState |
|
||||
| `activeWebViews` | 前回最後にactive扱いだったWebView名 |
|
||||
| `memory` | `performance.memory` があればJS heap情報。RNではnullの可能性あり |
|
||||
| `expoUpdate` | `update_id`, `updateId`, `channel`, `runtimeVersion`, `createdAt`, `isEmbeddedLaunch` |
|
||||
| `normalBackground` | 前回正常background遷移したか |
|
||||
| `heartbeatAgeMs` | 現在から見た前回heartbeatの古さ |
|
||||
|
||||
### 関連context
|
||||
|
||||
| context | 内容 |
|
||||
|---|---|
|
||||
| `app_lifecycle_sentinel` | 現sessionの開始、heartbeat、appState、activeWebViews、expoUpdate |
|
||||
| `active_webviews` | 現在active扱いのWebView名一覧 |
|
||||
|
||||
### activeWebViews名
|
||||
|
||||
| name | 意味 |
|
||||
|---|---|
|
||||
| `positions_main` | 走行位置タブ本体のWebView |
|
||||
| `operation_info_main` | 運行情報タブ本体のWebView |
|
||||
| `startup_hidden_positions` | 起動時hidden preloadの走行位置WebView |
|
||||
| `startup_hidden_operation` | 起動時hidden preloadの運行情報WebView |
|
||||
|
||||
## 4. root navigation / tab操作ログ
|
||||
|
||||
実装場所:
|
||||
|
||||
- `Apps.tsx`
|
||||
- `lib/rootNavigation.ts`
|
||||
|
||||
### Sentry context: `root_navigation`
|
||||
|
||||
| field | 内容 |
|
||||
|---|---|
|
||||
| `rootIndex` | root tab index |
|
||||
| `rootRoute` | `positions`, `topMenu`, `information` |
|
||||
| `nestedIndex` | nested stack index |
|
||||
| `nestedRoute` | nested route名 |
|
||||
| `hasExtra` | 追加画面/stackが開いているか |
|
||||
| `source` | `ready` or `change` |
|
||||
| `operationOrientation` | `landscape` or `portrait` |
|
||||
| `hasVisitedPositions` | positions rootをactivate済みか |
|
||||
| `hasVisitedInformation` | information rootをactivate済みか |
|
||||
|
||||
### tags
|
||||
|
||||
| tag | 内容 |
|
||||
|---|---|
|
||||
| `root_tab` | 最後に観測したroot tab |
|
||||
| `native_screens_mode` | iOSは `screens-disabled`、Androidは `default` |
|
||||
|
||||
### breadcrumb
|
||||
|
||||
| category | message | 意味 |
|
||||
|---|---|---|
|
||||
| `runtime.flags` | `runtime navigation flags applied` | native screens/freeze設定 |
|
||||
| `nav.root` | `navigation ready` | NavigationContainer ready |
|
||||
| `nav.root` | `root state initialized` | 初期root state |
|
||||
| `nav.root` | `root state change` | root state変化 |
|
||||
| `nav.tab` | `root tabPress` | タブ押下 |
|
||||
| `nav.tab` | `root tabPress intercepted for unstable positions` | 不安定な走行位置離脱を検知 |
|
||||
| `nav.tab` | `root tabPress blocked while positions unstable` | 不安定な走行位置離脱をブロック |
|
||||
| `nav.tab` | `root tab focus` | root tab focus |
|
||||
| `nav.tab` | `root tab blur` | root tab blur |
|
||||
| `nav.tab` | `root tab state` | tab state event |
|
||||
|
||||
## 5. root gate / preloadログ
|
||||
|
||||
実装場所:
|
||||
|
||||
- `Apps.tsx`
|
||||
|
||||
### context
|
||||
|
||||
| context | 内容 |
|
||||
|---|---|
|
||||
| `positions_root_gate` | `focused`, `activated`, `shouldActivate` |
|
||||
| `operation_root_gate` | `focused`, `activated`, `shouldActivate` |
|
||||
| `startup_hidden_preload` | hidden preloadのshould/loaded状態 |
|
||||
|
||||
### breadcrumb
|
||||
|
||||
| category | message | 意味 |
|
||||
|---|---|---|
|
||||
| `positions.root` | `positions startup prewarm scheduled` | topMenu起動中にpositions prewarm予約 |
|
||||
| `positions.root` | `positions startup prewarm activated` | positions prewarm実行 |
|
||||
| `positions.root` | `positions root activation` | positions root初回activate |
|
||||
| `positions.root` | `positions root tabPress activation` | positionsタブ押下でactivate |
|
||||
| `positions.root` | `positions root focus activation` | positions focusでactivate |
|
||||
| `positions.root` | `positions root blur preserved` | blur後も保持 |
|
||||
| `positions.root` | `positions root exit blocked while session unstable` | 不安定セッションからの離脱ブロック |
|
||||
| `operation.root` | `operation startup prewarm scheduled` | information prewarm予約 |
|
||||
| `operation.root` | `operation startup prewarm activated` | information prewarm実行 |
|
||||
| `operation.root` | `operation root activation` | operation root初回activate |
|
||||
| `operation.root` | `operation root tabPress activation` | informationタブ押下でactivate |
|
||||
| `operation.root` | `operation root focus activation` | information focusでactivate |
|
||||
| `operation.root` | `operation root blur preserved` | blur後も保持 |
|
||||
| `startup.preload` | `positions hidden preload loadStart/loadEnd/error` | hidden positions WebViewのロード状態 |
|
||||
| `startup.preload` | `operation hidden preload loadStart/loadEnd/error` | hidden operation WebViewのロード状態 |
|
||||
|
||||
## 6. 走行位置WebViewログ
|
||||
|
||||
実装場所:
|
||||
|
||||
- `components/Apps/WebView.tsx`
|
||||
- `lib/useWebViewRemount.ts`
|
||||
|
||||
### context: `positions_webview`
|
||||
|
||||
| field | 内容 |
|
||||
|---|---|
|
||||
| `focused` | screen focus状態 |
|
||||
| `landscape` | 横画面か |
|
||||
| `mockApi` | mock API有効か |
|
||||
| `remountKey` | WebView remount key |
|
||||
| `currentUrl` | WebView現在URL。取れていない場合null |
|
||||
|
||||
### breadcrumb category: `positions.webview`
|
||||
|
||||
| message | 意味 |
|
||||
|---|---|
|
||||
| `webview focused` / `webview blurred` | focus変化 |
|
||||
| `webview pending initial inject resumed on focus` | focus復帰時に保留injectを実行 |
|
||||
| `webview remount key` | remount key変化 |
|
||||
| `webview remount requested` | WebView watchdog等でremount要求 |
|
||||
| `webview cleanup start` | unmount/cleanup開始 |
|
||||
| `webview unmounted` | unmount完了 |
|
||||
|
||||
注意:
|
||||
|
||||
- 公式サイト内XHR `/g?arg1=train&arg2=train` はRN側fetch wrapperを通らないため、現状 `data_fetch` には出ない。
|
||||
- WebView内部の公式通信や injected JS fetch は、現時点ではbreadcrumb/postMessage中心で、通信詳細は未計測。
|
||||
|
||||
## 7. 運行情報WebViewログ
|
||||
|
||||
実装場所:
|
||||
|
||||
- `ndView.tsx`
|
||||
- `lib/useWebViewRemount.ts`
|
||||
|
||||
### context: `operation_screen`
|
||||
|
||||
| field | 内容 |
|
||||
|---|---|
|
||||
| `focused` | information画面focus |
|
||||
| `orientation` | `portrait` / `landscape` |
|
||||
| `landscapeMode` | 運行情報横画面モード有効か |
|
||||
| `captureEnabled` | 画像切り出し有効か |
|
||||
| `activatedWebView` | WebView activate済みか |
|
||||
| `layoutWidth` / `layoutHeight` | root layout |
|
||||
| `contentTop` | safe area反映後top |
|
||||
| `signageSafeLeft` / `signageSafeRight` | 横画面safe area |
|
||||
| `remountKey` | WebView remount key |
|
||||
|
||||
### breadcrumb
|
||||
|
||||
| category | message | 意味 |
|
||||
|---|---|---|
|
||||
| `operation.screen` | `operation screen mounted/unmounted` | 画面mount状態 |
|
||||
| `operation.screen` | `operation focused/blurred` | focus変化 |
|
||||
| `operation.screen` | `operation layout` | layout/orientation変化 |
|
||||
| `operation.screen` | `operation webview activation scheduled` | WebView activate予約 |
|
||||
| `operation.screen` | `operation webview activated` | WebView activate実行 |
|
||||
| `operation.screen` | `operation appState` | AppState変化 |
|
||||
| `operation.settings` | `operation settings load scheduled/success/failed` | 運行情報設定の読込 |
|
||||
| `operation.webview` | `operation remount requested` | watchdog等のremount要求 |
|
||||
| `operation.webview` | `operation remount after background resume` | background復帰後remount |
|
||||
| `operation.webview` | `operation resume preserved existing webview` | background復帰後WebView保持 |
|
||||
| `operation.webview` | `operation script scheduled/injected` | injected script投入 |
|
||||
| `operation.webview` | `operation render process gone` | Android WebView render process gone |
|
||||
| `operation.webview` | `operation content process terminated` | iOS WebView content process termination |
|
||||
| `operation.webview` | `operation webview loadStart/loadEnd/error` | WebView load状態 |
|
||||
| `operation.webview` | `operation capture message received` | WebViewから画像切り出しmessage |
|
||||
| `operation.webview` | `operation message parse failed` | postMessage parse失敗 |
|
||||
|
||||
## 8. 調査時の優先クエリ
|
||||
|
||||
### 通信エラー全体
|
||||
|
||||
```text
|
||||
area:data_fetch
|
||||
```
|
||||
|
||||
### 走行位置の体感不具合
|
||||
|
||||
```text
|
||||
area:data_fetch endpoint:positions_current
|
||||
```
|
||||
|
||||
見る項目:
|
||||
|
||||
- `source`
|
||||
- `result`
|
||||
- `durationMs`
|
||||
- `timeoutMs`
|
||||
- `retryCount`
|
||||
- `root_tab`
|
||||
- `appState`
|
||||
- `online`
|
||||
- `urlHost`
|
||||
- `urlPathTemplate`
|
||||
|
||||
### GAS運行情報timeout
|
||||
|
||||
```text
|
||||
area:data_fetch endpoint:operation_info_text result:timeout
|
||||
```
|
||||
|
||||
見る項目:
|
||||
|
||||
- `durationMs`
|
||||
- `retryCount`
|
||||
- `root_tab`
|
||||
- `user_visible`
|
||||
- `preload`
|
||||
- `appState`
|
||||
|
||||
### background/offlineノイズ
|
||||
|
||||
```text
|
||||
area:data_fetch result:aborted
|
||||
```
|
||||
|
||||
原則Issue化されない。breadcrumbで確認する。
|
||||
|
||||
### JSONではなくHTMLが返ったケース
|
||||
|
||||
```text
|
||||
area:data_fetch result:non_json
|
||||
```
|
||||
|
||||
見る項目:
|
||||
|
||||
- `contentType`
|
||||
- `responseHead`
|
||||
- `status`
|
||||
- `urlHost`
|
||||
- `urlPathTemplate`
|
||||
|
||||
### Sentryにfatal crashが出ない体感クラッシュ
|
||||
|
||||
```text
|
||||
area:app_lifecycle result:unexpected_exit
|
||||
```
|
||||
|
||||
見る項目:
|
||||
|
||||
- `last_root_tab`
|
||||
- `app_lifecycle.lastHeartbeatAt`
|
||||
- `app_lifecycle.previousRootNavigation`
|
||||
- `app_lifecycle.lastKnownAppState`
|
||||
- `app_lifecycle.activeWebViews`
|
||||
- `app_lifecycle.expoUpdate.update_id`
|
||||
- `native_screens_mode`
|
||||
|
||||
### WebView白化/終了疑い
|
||||
|
||||
```text
|
||||
operation.webview
|
||||
positions.webview
|
||||
```
|
||||
|
||||
breadcrumbで見る。
|
||||
|
||||
関連context:
|
||||
|
||||
- `positions_webview`
|
||||
- `operation_screen`
|
||||
- `active_webviews`
|
||||
- `app_lifecycle`
|
||||
|
||||
## 9. 機能別に何が分かるか
|
||||
|
||||
| 機能 | Sentryで分かること | まだ分からないこと |
|
||||
|---|---|---|
|
||||
| RN走行位置取得 | n8n/mock/GASのどれが失敗したか、timeout/HTTP/parse、duration、retry | 上流サーバー内部の処理時間。backend側計測が必要 |
|
||||
| RN運行情報取得 | flag/GAS text/operation logsのどれが失敗したか | 公式WebViewページ内部の通信詳細 |
|
||||
| ダイヤ/運用取得 | static storage/backend APIの失敗、遅延、サイズ | WebView内の重複fetch詳細 |
|
||||
| WebView保持 | focus/blur、remount、process gone、content termination、activeWebViews | WebView内fetchのstatus/durationは未計測 |
|
||||
| タブ切替 | tabPress/focus/blur、root state、root_tab | native側のFabric mount詳細 |
|
||||
| 体感クラッシュ | 次回起動時に前回sessionの突然終了をwarning化 | OS killとnative crashの厳密な区別 |
|
||||
|
||||
## 10. 現時点の注意点
|
||||
|
||||
- 成功通信はIssue化しない。breadcrumb/spanで見る。
|
||||
- `slow_success` のIssue送信は現在 `SLOW_SUCCESS_SAMPLE_RATE = 0` のため無効。
|
||||
- background/offline由来の通信失敗はIssue化を抑制している。
|
||||
- URL全文はtagに入れない。host/path templateのみcontextに入る。
|
||||
- response body全文は送らない。`responseHead` は最大300文字。
|
||||
- WebView内の公式XHRや injected JS fetch は、RN `observedFetch` を通らないため通信詳細が見えない。
|
||||
- `app.previous_session_unexpected_exit` は「前回sessionが直近heartbeatのまま正常backgroundなしで消えた」ことを示す。Sentry native crashそのものではない。
|
||||
|
||||
## 11. 次に増やすとよい計測
|
||||
|
||||
優先度 high:
|
||||
|
||||
- WebView内fetchのpostMessage計測。
|
||||
- 特に `positions_webview` と公式XHR `/g?arg1=train&arg2=train`。
|
||||
- backend mock API `/train-positions/current` のサーバー側duration、cache hit/miss、upstream duration。
|
||||
|
||||
優先度 medium:
|
||||
|
||||
- `useBusAndTrainData`, `useTrainDelayData`, `SpecialTrainInfoBox` など未計測RN fetchのobservedFetch化。
|
||||
- `operation.webview` のpostMessageにページ状態 summary を追加。
|
||||
- `activeWebViews` に `GeneralWebView` も必要に応じて追加。
|
||||
|
||||
優先度 low:
|
||||
|
||||
- slow success samplingを `0.01` から再開し、十分落ち着いたら調整。
|
||||
- cellular/connection type取得。現状は `navigator.onLine` 程度。
|
||||
@@ -0,0 +1,232 @@
|
||||
# アプリ向けVoicepeak公開音声生成エンドポイントの追加依頼
|
||||
|
||||
## 概要
|
||||
|
||||
JR四国非公式アプリでは、駅の発車標データなどをもとに「りっかちゃん」の案内原稿を生成し、Voicepeak APIから取得した音声を再生しています。
|
||||
|
||||
現在は、利用者がアプリの設定画面で以下を入力する構成です。
|
||||
|
||||
- Voicepeak APIのベースURL
|
||||
- Bearerトークン
|
||||
- 話者名
|
||||
|
||||
機能が実用段階に入ってきたため、一般利用者によるAPI設定を廃止し、アプリから直接利用できる公開エンドポイントを用意したいと考えています。
|
||||
|
||||
共通BearerトークンをアプリやEAS Updateへ組み込むと、アプリバンドルから抽出できてしまいます。そのため、既存の管理用APIは認証付きのまま維持し、制限されたアプリ専用エンドポイントを認証なしで追加する方針です。
|
||||
|
||||
## 希望する構成
|
||||
|
||||
同じVoicepeakサーバー内で、用途別に2つのエンドポイントを提供します。
|
||||
|
||||
```text
|
||||
JR四国非公式アプリ
|
||||
│
|
||||
│ 認証なし
|
||||
▼
|
||||
POST /v1/public/speech
|
||||
│
|
||||
│ りっかちゃん固定・入力制限・レート制限・キャッシュ
|
||||
▼
|
||||
Voicepeak音声生成処理
|
||||
|
||||
管理・開発ツール
|
||||
│
|
||||
│ Bearer認証
|
||||
▼
|
||||
POST /v1/speech
|
||||
│
|
||||
│ 既存機能を維持
|
||||
▼
|
||||
Voicepeak音声生成処理
|
||||
```
|
||||
|
||||
サーバーを2台に分ける意図ではありません。既存サーバー内に公開用の入口を追加し、管理用APIと権限・機能を分離する想定です。
|
||||
|
||||
## エンドポイント案
|
||||
|
||||
### アプリ向け
|
||||
|
||||
```http
|
||||
POST /v1/public/speech
|
||||
Content-Type: application/json
|
||||
```
|
||||
|
||||
認証は要求しません。
|
||||
|
||||
リクエスト例:
|
||||
|
||||
```json
|
||||
{
|
||||
"text": "次の、2番線に参ります列車は、12時34分発、特急しおかぜ、岡山行きです。",
|
||||
"format": "mp3"
|
||||
}
|
||||
```
|
||||
|
||||
レスポンス:
|
||||
|
||||
- 成功時は音声バイナリを返す
|
||||
- `format: "mp3"`の場合は`Content-Type: audio/mpeg`
|
||||
- `format: "wav"`の場合は`Content-Type: audio/wav`
|
||||
|
||||
話者はリクエストから指定させず、サーバー側で「りっかちゃん」に固定することを希望します。
|
||||
|
||||
後方互換性の都合で`speaker`を受け取る場合も、公開エンドポイントでは値を無視するか、許可されたりっかちゃんの識別子以外を拒否してください。
|
||||
|
||||
### 管理・開発向け
|
||||
|
||||
```http
|
||||
POST /v1/speech
|
||||
Authorization: Bearer <secret>
|
||||
Content-Type: application/json
|
||||
```
|
||||
|
||||
こちらは現在の仕様とBearer認証を維持します。話者変更など、公開APIに不要な機能は管理用APIだけで提供します。
|
||||
|
||||
## 公開エンドポイントに必要な制限
|
||||
|
||||
### 必須
|
||||
|
||||
- 原稿は空文字を拒否する
|
||||
- 原稿は最大140文字とする
|
||||
- リクエスト本文全体のサイズ上限を設ける
|
||||
- 利用可能な形式を`mp3`と`wav`に限定する
|
||||
- 話者をりっかちゃんに固定する
|
||||
- Voicepeakプロセスへの同時実行数を制限する
|
||||
- 上限を超えた生成要求はサーバー内キューで順番に処理する
|
||||
- IPなどを利用したレート制限を設ける
|
||||
- タイムアウトを設定する
|
||||
- 管理用APIや管理画面は公開APIから到達できないようにする
|
||||
- 制限値は環境変数などで変更可能にする
|
||||
|
||||
### 推奨
|
||||
|
||||
- 同一原稿の生成結果をキャッシュする
|
||||
- キャッシュキーに正規化後の原稿、形式、話者、音声モデルのバージョンを含める
|
||||
- キャッシュの最大容量と有効期限を設定する
|
||||
- リクエスト数、成功数、失敗数、生成時間、キュー待ち時間を計測する
|
||||
- 公開APIだけを即時停止できる緊急停止スイッチを設ける
|
||||
- 異常なアクセス元を一時的に遮断できるようにする
|
||||
|
||||
## 文字数の数え方
|
||||
|
||||
アプリ側では、半角カタカナをNFKC正規化して全角へ変換したあと、135文字以内になるように原稿を分割しています。140文字ぎりぎりではなく、5文字分の余裕を設けています。
|
||||
|
||||
サーバー側で以下を明文化してもらえると助かります。
|
||||
|
||||
- 正規化前と正規化後のどちらで140文字を判定するか
|
||||
- Unicodeコードポイント、UTF-16コード単位、UTF-8バイト数のどれを「文字数」とするか
|
||||
- 改行や空白を文字数へ含めるか
|
||||
|
||||
アプリとの不一致を防ぐため、サーバー側でもNFKC正規化後の文字列を判定対象にする案を希望します。
|
||||
|
||||
## 現在確認している並列生成上の懸念
|
||||
|
||||
長い案内は、アプリ側で複数の135文字以内の原稿へ分割します。現在のアプリ実装では、再生前にすべての音声を取得するため、分割されたリクエストを同時送信する場合があります。
|
||||
|
||||
事前案内だけ再生されない現象があり、Voicepeakサーバーが複数の音声生成を同時に受けた際、その一部を拒否している可能性を調査しています。
|
||||
|
||||
公開エンドポイントでは、複数リクエストを受けてもVoicepeakプロセスへ安全に直列化できるキューを希望します。
|
||||
|
||||
確認したい項目:
|
||||
|
||||
- 現在のサーバーが同時生成を何件まで処理できるか
|
||||
- 同時実行上限を超えた場合の現在の挙動
|
||||
- 待機させる場合の最大キュー長
|
||||
- キュー満杯時に返すHTTPステータス
|
||||
- クライアント側で推奨される再試行方法
|
||||
|
||||
アプリ側も必要に応じて、分割音声を1件ずつ順番に取得する方式へ変更できます。
|
||||
|
||||
## エラーレスポンス案
|
||||
|
||||
エラー時は、アプリのデバッグログで原因を識別できるJSONレスポンスを希望します。
|
||||
|
||||
```json
|
||||
{
|
||||
"error": {
|
||||
"code": "RATE_LIMITED",
|
||||
"message": "Too many speech generation requests",
|
||||
"retryAfterSeconds": 10,
|
||||
"requestId": "..."
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
ステータスコード案:
|
||||
|
||||
| ステータス | 用途 |
|
||||
|---|---|
|
||||
| `400` | JSON形式、必須項目、形式指定などが不正 |
|
||||
| `413` | リクエスト本文が大きすぎる |
|
||||
| `422` | 原稿が空、または140文字を超えている |
|
||||
| `429` | レート制限、または一時的な生成上限 |
|
||||
| `500` | サーバー内部エラー |
|
||||
| `503` | Voicepeak停止中、キュー満杯、メンテナンス中 |
|
||||
|
||||
`429`または`503`の場合は、可能であれば`Retry-After`ヘッダーも返してください。
|
||||
|
||||
## ログとプライバシー
|
||||
|
||||
原稿には駅名、列車名、時刻、行き先、運行状況などが含まれます。通常は個人情報を含みませんが、自由入力値が混入する可能性を完全には排除できません。
|
||||
|
||||
サーバーログでは以下を推奨します。
|
||||
|
||||
- Authorizationヘッダーや管理用シークレットを絶対に記録しない
|
||||
- 原稿本文を保存する場合は保持期間を決める
|
||||
- 通常の計測は原稿ハッシュ、文字数、生成時間、結果だけでも行えるようにする
|
||||
- リクエストごとに追跡用`requestId`を発行する
|
||||
|
||||
アプリ側にはVoicepeakデバッグログ機能を追加済みです。
|
||||
|
||||
- 送信原稿
|
||||
- 文字数
|
||||
- 分割番号
|
||||
- HTTPステータス
|
||||
- 処理時間
|
||||
- 応答サイズ
|
||||
- エラー内容
|
||||
- OSとRuntime Version
|
||||
|
||||
を端末内へ最大7日間保存できます。APIトークンは記録していません。
|
||||
|
||||
## アプリ側の移行予定
|
||||
|
||||
公開エンドポイントの準備完了後、JR四国非公式アプリ側で以下を変更します。
|
||||
|
||||
1. 音声生成先を`/v1/public/speech`へ変更
|
||||
2. `Authorization`ヘッダーを送信しない
|
||||
3. Voicepeak API URL入力欄を削除
|
||||
4. APIトークン入力欄を削除
|
||||
5. 話者名入力欄を削除
|
||||
6. 既存端末に保存されたAPIトークンを削除
|
||||
7. 音声案内の有効・無効設定は維持
|
||||
8. Voicepeakデバッグログ機能は維持
|
||||
9. 必要に応じて分割音声の取得を直列化
|
||||
|
||||
公開エンドポイントのパスが確定するまでは、現在の認証付き`/v1/speech`を継続利用します。
|
||||
|
||||
## 受け入れ条件
|
||||
|
||||
- 認証なしで`POST /v1/public/speech`からりっかちゃんの音声を取得できる
|
||||
- 管理用`POST /v1/speech`は引き続きBearer認証が必要
|
||||
- 公開APIから話者を変更できない
|
||||
- 140文字以内の日本語原稿をMP3とWAVで生成できる
|
||||
- 141文字以上の原稿が明確なエラーで拒否される
|
||||
- 不正な形式指定が拒否される
|
||||
- 複数リクエストが到着してもVoicepeakプロセスが競合しない
|
||||
- レート制限時にクライアントが判別可能なエラーを返す
|
||||
- 管理用シークレットがレスポンスやログへ露出しない
|
||||
- 公開APIだけを停止できる
|
||||
|
||||
## Voicepeak開発側へ確認したい事項
|
||||
|
||||
1. 公開エンドポイントを同一サーバーへ追加できるか
|
||||
2. `/v1/public/speech`というパスで問題ないか
|
||||
3. 公開APIで利用する正式な話者識別子
|
||||
4. 140文字制限の具体的な判定方法
|
||||
5. MP3とWAVの両方を公開APIで許可できるか
|
||||
6. 現在の同時生成制限と、サーバーキューの実装可否
|
||||
7. 適切なレート制限値
|
||||
8. キャッシュの実装可否
|
||||
9. エラー形式と`requestId`の付与可否
|
||||
10. 公開予定日と、アプリ側が切り替えてよいタイミング
|
||||
@@ -0,0 +1,153 @@
|
||||
# X投稿向け運行情報画像セット:実装指示書
|
||||
|
||||
## 依頼
|
||||
|
||||
`ndView.tsx` に、X(旧Twitter)へ複数画像で投稿することを前提とした運行情報画像セット生成機能を実装してください。
|
||||
|
||||
既存の「この項目を切り出す」「この小見出しを切り出す」「表示中の運行情報をすべて切り出す」「項目ごとに複数画像で共有」は残し、新たに「X投稿向け画像を作成」を追加します。
|
||||
|
||||
実装まで行い、型チェックと生成処理の確認をしてください。調査・提案だけで終了しないでください。
|
||||
|
||||
## ユーザー体験
|
||||
|
||||
新しいボタンを押すと、次の順番で最大4枚のPNGを生成し、既存の複数ファイル共有処理へ渡します。
|
||||
|
||||
1. 1枚目:運行状況の表紙(路線図+短い要約)
|
||||
2. 2枚目以降:表示中の運行情報の詳細
|
||||
|
||||
Xで1枚目と2枚目が横並びに表示されたときに自然につながって見える構成にします。ただし、各画像は単体表示されても意味が通じる必要があります。画像の境界をまたいで文章や必須情報を配置しないでください。
|
||||
|
||||
## 出力仕様
|
||||
|
||||
- 各画像は `1080 x 1440 px`(3:4)の固定サイズ
|
||||
- PNG
|
||||
- 画像数は1〜4枚。運行情報が存在する通常ケースでは表紙+詳細で2〜4枚
|
||||
- ファイル名は投稿順を明確にする
|
||||
- `operation-info-x-01-map-<timestamp>.png`
|
||||
- `operation-info-x-02-detail-<timestamp>.png`
|
||||
- 以下同様
|
||||
- ネイティブ側へ送る `batchIndex` はゼロ始まりの表示順と一致させる
|
||||
- 既存の `Share.open({ urls })` に渡る配列順を維持する
|
||||
- 画像生成途中で1枚でも失敗した場合、不完全なセットを共有せず既存形式のエラーを返す
|
||||
|
||||
## 1枚目:表紙
|
||||
|
||||
必須要素:
|
||||
|
||||
- `JR四国 列車運行情報` のタイトル
|
||||
- 現在表示中の状態を示す短い要約
|
||||
- 四国の路線図
|
||||
- 更新日時(取得できる最新のもの)
|
||||
- 詳細ページがある場合は `詳細は次の画像へ →`
|
||||
- 非公式アプリによる生成画像であり、最新情報はJR四国公式を確認する旨
|
||||
- ページ番号(例:`1/4`)
|
||||
|
||||
路線図は既存の `buildMapImage()` と `img/map/*` を再利用します。現在ページ上で有効になっている路線レイヤーを反映してください。既存挙動を壊さない範囲で、影響路線を目立たせ、影響のない部分を弱められるなら実装してください。状態と路線の対応を正確に判定できない場合は、誤った色分けを推測せず、現在表示されているレイヤー表現を使用してください。
|
||||
|
||||
表紙は路線図を主役にし、要約文が長い場合も地図を極端に小さくしないでください。要約は路線名・状態を中心に短く整形し、詳細本文を表紙へ詰め込みません。
|
||||
|
||||
## 2枚目以降:詳細ページ
|
||||
|
||||
必須要素:
|
||||
|
||||
- 路線・項目タイトル
|
||||
- サブタイトル/状態
|
||||
- 更新日時
|
||||
- 小見出しと本文
|
||||
- ページ番号
|
||||
- 非公式画像の注意書き
|
||||
|
||||
既存の `getOperationItems()`、`parseDetailBlocks()`、`splitCaptureBlocksIntoSections()` のデータ構造を再利用します。
|
||||
|
||||
詳細は「1項目=必ず1画像」ではなく、固定高のページへ順に組版してください。
|
||||
|
||||
- 1件が短ければ、同じページに次の項目も配置してよい
|
||||
- 1件が長ければ、ブロックまたは小見出し単位で次ページへ送る
|
||||
- 小見出しだけをページ末尾に残さない
|
||||
- 本文を文字単位で不自然に分断するより、小見出し単位の改ページを優先する
|
||||
- 4枚を超える場合は、詳細3ページへ読みやすく収める
|
||||
- それでも収まらない場合は、文字を極端に縮小したり内容を黙って欠落させたりしない
|
||||
|
||||
4枚で収まらないケースについては、実装上安全な扱いを選び、コードコメントと完了報告で明示してください。推奨は、最小可読サイズを守ったうえで4枚では収まらないことをユーザーへ知らせ、既存の項目別共有を案内することです。
|
||||
|
||||
## レイアウト規則
|
||||
|
||||
- 背景は白を基本とし、既存のJR四国風配色(`#0099CB` など)を継承
|
||||
- 左右80px程度をX側のクロップに備えた安全領域とする
|
||||
- 必須情報は端へ寄せない
|
||||
- 全ページでヘッダー、ページ番号、フッターの位置を統一
|
||||
- 本文の可読性を優先し、既存画像と同程度の文字サイズを維持
|
||||
- 1枚目右側の矢印などで2枚目への視線誘導を作ってよいが、その装飾が切れても意味が失われないようにする
|
||||
- 角丸や画像間の隙間はX側が付けるため、画像自体には外周の角丸を焼き込まない
|
||||
|
||||
## 既存コードの入口
|
||||
|
||||
主な対象は `ndView.tsx` です。
|
||||
|
||||
- `buildOperationPageScript()`:WebViewへ注入する生成処理
|
||||
- `buildMapImage()`:路線図Canvas合成
|
||||
- `appendCaptureItemLayout()` / `drawCaptureLayout()`:既存組版・描画
|
||||
- `getOperationItems()`:表示中の運行情報抽出
|
||||
- `installPageCaptureButton()`:共有ボタン追加
|
||||
- `renderAllItemsToSeparateImages()`:既存バッチ送信の参考
|
||||
- `saveOperationCaptureBatchItem()`:ネイティブ側で順番どおりにファイルを集約
|
||||
- `shareOperationCaptureFiles()`:単一/複数ファイル共有
|
||||
|
||||
必要ならX投稿向けのレイアウト計算・描画関数を独立させてください。既存の可変幅・可変高画像生成ロジックへ多数の条件分岐を足すより、データ抽出と基本描画だけ共有する構成を優先します。
|
||||
|
||||
## 実装上の制約
|
||||
|
||||
- 既存の切り出し/共有機能を壊さない
|
||||
- 横画面サイネージモードでは、従来どおりキャプチャボタンを表示しない
|
||||
- iOS・Android双方で動く既存のWebViewメッセージ方式を維持
|
||||
- 新しい依存パッケージは原則追加しない
|
||||
- WebView内で利用できない新しいJavaScript構文を安易に導入しない
|
||||
- 生成中の二重タップで複数バッチが競合しないよう考慮する
|
||||
- ユーザーの既存変更があるファイルを勝手に巻き戻さない
|
||||
- `scripts/generate-operation-info-userscript.mjs` が `ndView.tsx` の注入コードを元に生成物を作るため、必要なら生成物も更新する。ただし生成物を直接手編集しない
|
||||
|
||||
## UI文言
|
||||
|
||||
新規ボタン:
|
||||
|
||||
`X投稿向け画像を作成`
|
||||
|
||||
生成・共有に失敗した場合は、既存の「切り出し失敗」系ダイアログとトーンをそろえます。4枚へ収まらない場合は、理由と代替手段が分かる日本語を表示してください。
|
||||
|
||||
## 完了条件
|
||||
|
||||
- 新規ボタンから表紙+詳細画像が正しい順番で共有される
|
||||
- 全画像が厳密に1080×1440
|
||||
- 1件、2件、3件、4件以上、長文1件のレイアウトを確認している
|
||||
- 長文がCanvas外へはみ出さない
|
||||
- 空のタイトル、サブタイトル、更新日時でも壊れない
|
||||
- 地図画像のロード失敗時も白紙画像を共有せず、明確に失敗扱いまたは安全なフォールバックになる
|
||||
- 既存4種類の切り出し操作が維持される
|
||||
- TypeScript型チェックが通る
|
||||
- `git diff --check` が通る
|
||||
|
||||
## 検証
|
||||
|
||||
最低限、次を実行してください。
|
||||
|
||||
```bash
|
||||
npx tsc --noEmit
|
||||
git diff --check
|
||||
```
|
||||
|
||||
注入スクリプトを変更した場合は、リポジトリ既存の生成手順も確認します。
|
||||
|
||||
```bash
|
||||
node scripts/generate-operation-info-userscript.mjs
|
||||
```
|
||||
|
||||
可能なら、Canvas描画を開発用に呼び出せる小さなテスト入口または純粋なページ分割関数を用意し、上記の件数・長文パターンを検証してください。本番UIへデバッグ操作を残さないでください。
|
||||
|
||||
## 完了報告に含めるもの
|
||||
|
||||
- 変更したファイル
|
||||
- 表紙・詳細ページの分割ルール
|
||||
- 4枚で収まらない場合の扱い
|
||||
- 実行した検証と結果
|
||||
- 端末で確認が必要な残件
|
||||
|
||||
@@ -47,6 +47,12 @@
|
||||
},
|
||||
"production7.0": {
|
||||
"channel": "familymart"
|
||||
},
|
||||
"beta7.1": {
|
||||
"channel": "gmarket"
|
||||
},
|
||||
"production7.1": {
|
||||
"channel": "geekbuying"
|
||||
}
|
||||
},
|
||||
"submit": {
|
||||
|
||||
@@ -45,6 +45,7 @@ export type CustomTrainData = {
|
||||
type: trainTypeID;
|
||||
train_name: string;
|
||||
train_info_img: string;
|
||||
train_info_img_hub?: string | null;
|
||||
train_info_url: string;
|
||||
infogram: string;
|
||||
via_data: string;
|
||||
@@ -71,6 +72,9 @@ export type CustomTrainData = {
|
||||
isThrough: boolean;
|
||||
platformNum: string | null;
|
||||
se?: string;
|
||||
isOrigin?: boolean;
|
||||
arrivalTime?: string;
|
||||
departureTime?: string;
|
||||
};
|
||||
|
||||
export type StationProps = {
|
||||
@@ -88,6 +92,9 @@ export type CustomTrainData = {
|
||||
lng: number;
|
||||
isSpot?: boolean;
|
||||
};
|
||||
|
||||
export type OriginalStationList = Record<string, StationProps[]>;
|
||||
|
||||
export type OperationLogs = {
|
||||
id: number;
|
||||
operation_id?: string;
|
||||
@@ -96,6 +103,8 @@ export type OperationLogs = {
|
||||
unit_ids?: string[];
|
||||
vehicle_img: string;
|
||||
vehicle_img_right: string;
|
||||
vehicle_img_hub?: string | null;
|
||||
vehicle_img_right_hub?: string | null;
|
||||
vehicle_info_url: string;
|
||||
related_train_ids?: string[];
|
||||
state: number | null;
|
||||
|
||||
@@ -0,0 +1,176 @@
|
||||
import {
|
||||
hasNotificationSound,
|
||||
saveNotificationSound,
|
||||
scheduleLocationAnnouncements,
|
||||
type LocationAnnouncement,
|
||||
} from "expo-live-activity";
|
||||
import {
|
||||
hasVoicepeakConfiguration,
|
||||
loadVoicepeakSettings,
|
||||
requestVoicepeakSpeechBytes,
|
||||
} from "@/lib/voicepeak";
|
||||
import { encodeBase64 } from "@/lib/voicepeakAudioSource";
|
||||
import * as Notifications from "expo-notifications";
|
||||
|
||||
export type BackgroundRikkaTriggerSource =
|
||||
| "deviceLocation"
|
||||
| "trainPosition";
|
||||
|
||||
export const DEFAULT_BACKGROUND_RIKKA_TRIGGER_SOURCE: BackgroundRikkaTriggerSource =
|
||||
"deviceLocation";
|
||||
|
||||
export type BackgroundRikkaStation = {
|
||||
identifier: string;
|
||||
stationName: string;
|
||||
latitude: number;
|
||||
longitude: number;
|
||||
};
|
||||
|
||||
export type BackgroundRikkaPreparationResult = {
|
||||
scheduled: number;
|
||||
failedStations: string[];
|
||||
};
|
||||
|
||||
const MAX_LOCATION_ANNOUNCEMENTS = 20;
|
||||
const PREPARE_CONCURRENCY = 3;
|
||||
const DEFAULT_APPROACH_RADIUS_METERS = 800;
|
||||
|
||||
const notificationSoundFileName = (stationName: string) => {
|
||||
let hash = 2166136261;
|
||||
for (let index = 0; index < stationName.length; index++) {
|
||||
hash ^= stationName.charCodeAt(index);
|
||||
hash = Math.imul(hash, 16777619);
|
||||
}
|
||||
return `rikka-next-${(hash >>> 0).toString(36)}.wav`;
|
||||
};
|
||||
|
||||
const ensureNotificationSound = async (
|
||||
stationName: string,
|
||||
signal?: AbortSignal
|
||||
) => {
|
||||
const settings = await loadVoicepeakSettings();
|
||||
if (!hasVoicepeakConfiguration(settings)) {
|
||||
throw new Error("Voicepeak configuration is required");
|
||||
}
|
||||
|
||||
const soundFileName = notificationSoundFileName(stationName);
|
||||
if (!hasNotificationSound(soundFileName)) {
|
||||
const audioBytes = await requestVoicepeakSpeechBytes({
|
||||
text: `次は、${stationName}です。`,
|
||||
settings,
|
||||
signal,
|
||||
format: "wav",
|
||||
});
|
||||
await saveNotificationSound(soundFileName, encodeBase64(audioBytes));
|
||||
}
|
||||
return soundFileName;
|
||||
};
|
||||
|
||||
export const sendTrainPositionRikkaAnnouncement = async ({
|
||||
stationName,
|
||||
trainId,
|
||||
signal,
|
||||
}: {
|
||||
stationName: string;
|
||||
trainId: string;
|
||||
signal?: AbortSignal;
|
||||
}) => {
|
||||
const soundFileName = await ensureNotificationSound(stationName, signal);
|
||||
if (signal?.aborted) return;
|
||||
|
||||
await Notifications.scheduleNotificationAsync({
|
||||
content: {
|
||||
title: "列車追従・りっかちゃん",
|
||||
body: `次は、${stationName}です。`,
|
||||
sound: soundFileName,
|
||||
data: {
|
||||
type: "train-follow-announcement",
|
||||
stationName,
|
||||
trainId,
|
||||
source: "trainPosition",
|
||||
},
|
||||
},
|
||||
trigger: null,
|
||||
});
|
||||
};
|
||||
|
||||
export const prepareBackgroundRikkaAnnouncements = async ({
|
||||
trackingId,
|
||||
stations,
|
||||
signal,
|
||||
}: {
|
||||
trackingId: string;
|
||||
stations: BackgroundRikkaStation[];
|
||||
signal?: AbortSignal;
|
||||
}): Promise<BackgroundRikkaPreparationResult> => {
|
||||
const deduplicated = stations
|
||||
.filter(
|
||||
(station) =>
|
||||
station.stationName &&
|
||||
Number.isFinite(station.latitude) &&
|
||||
Number.isFinite(station.longitude)
|
||||
)
|
||||
.filter(
|
||||
(station, index, array) =>
|
||||
array.findIndex((candidate) => candidate.identifier === station.identifier) ===
|
||||
index
|
||||
)
|
||||
.slice(0, MAX_LOCATION_ANNOUNCEMENTS);
|
||||
|
||||
const prepared: Array<LocationAnnouncement | null> = new Array(
|
||||
deduplicated.length
|
||||
).fill(null);
|
||||
const failedStations: string[] = [];
|
||||
let cursor = 0;
|
||||
|
||||
const prepareNext = async () => {
|
||||
while (cursor < deduplicated.length) {
|
||||
const index = cursor++;
|
||||
const station = deduplicated[index];
|
||||
if (signal?.aborted) return;
|
||||
|
||||
const soundFileName = notificationSoundFileName(station.stationName);
|
||||
try {
|
||||
await ensureNotificationSound(station.stationName, signal);
|
||||
|
||||
prepared[index] = {
|
||||
identifier: station.identifier,
|
||||
stationName: station.stationName,
|
||||
latitude: station.latitude,
|
||||
longitude: station.longitude,
|
||||
radiusMeters: DEFAULT_APPROACH_RADIUS_METERS,
|
||||
soundFileName,
|
||||
};
|
||||
} catch (error) {
|
||||
if (!signal?.aborted) {
|
||||
failedStations.push(station.stationName);
|
||||
console.warn(
|
||||
`[BackgroundRikka] Failed to prepare ${station.stationName}`,
|
||||
error
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
await Promise.all(
|
||||
Array.from(
|
||||
{ length: Math.min(PREPARE_CONCURRENCY, deduplicated.length) },
|
||||
prepareNext
|
||||
)
|
||||
);
|
||||
|
||||
if (signal?.aborted) {
|
||||
return { scheduled: 0, failedStations };
|
||||
}
|
||||
|
||||
const announcements = prepared.filter(
|
||||
(announcement): announcement is LocationAnnouncement => announcement != null
|
||||
);
|
||||
const scheduled =
|
||||
announcements.length > 0
|
||||
? await scheduleLocationAnnouncements(trackingId, announcements)
|
||||
: 0;
|
||||
|
||||
return { scheduled, failedStations };
|
||||
};
|
||||
@@ -0,0 +1,277 @@
|
||||
import dosan from "@/assets/originData/dosan";
|
||||
import dosan2 from "@/assets/originData/dosan2";
|
||||
import koutoku from "@/assets/originData/koutoku";
|
||||
import naruto from "@/assets/originData/naruto";
|
||||
import seto from "@/assets/originData/seto";
|
||||
import tokushima from "@/assets/originData/tokushima";
|
||||
import trainList from "@/assets/originData/trainList";
|
||||
import uwajima from "@/assets/originData/uwajima";
|
||||
import uwajima2 from "@/assets/originData/uwajima2";
|
||||
import yosan from "@/assets/originData/yosan";
|
||||
import type { ElesiteData } from "@/types/unyohub";
|
||||
|
||||
type HeadingDirection = "left" | "right";
|
||||
|
||||
export type ElesiteLineGroup = {
|
||||
key: string;
|
||||
lineCode: string | null;
|
||||
lineLabel: string | null;
|
||||
leftStation: string | null;
|
||||
rightStation: string | null;
|
||||
timetableUrl: string | null;
|
||||
lastReportedAt: string | null;
|
||||
entries: ElesiteData[];
|
||||
formations: string[];
|
||||
formationText: string | null;
|
||||
hasFormations: boolean;
|
||||
};
|
||||
|
||||
// マリンライナー(3xxxM)用: JR西日本区間の駅は originData にないのでここで定義
|
||||
const MARINE_STATION_SEQUENCE = [
|
||||
"岡山", "大元", "備前西市", "妹尾", "早島", "茶屋町", "植松", "木見", "上の町",
|
||||
"児島", "坂出", "鴨川", "国分", "端岡", "鬼無", "高松",
|
||||
];
|
||||
|
||||
const STATION_SEQUENCES: string[][] = [
|
||||
...[yosan, uwajima, uwajima2, dosan, dosan2, koutoku, tokushima, naruto, seto].map(
|
||||
(stations) => stations.map((station) => station.Station_JP),
|
||||
),
|
||||
MARINE_STATION_SEQUENCE,
|
||||
];
|
||||
|
||||
const uniqueNonEmpty = (values: Array<string | null | undefined>): string[] => {
|
||||
const seen = new Set<string>();
|
||||
|
||||
return values.filter((value): value is string => {
|
||||
const normalized = value?.trim();
|
||||
if (!normalized || seen.has(normalized)) return false;
|
||||
seen.add(normalized);
|
||||
return true;
|
||||
});
|
||||
};
|
||||
|
||||
const getElesiteQueryParam = (url: string, key: string): string | null => {
|
||||
if (!url) return null;
|
||||
|
||||
const escapedKey = key.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||
const match = url.match(new RegExp(`[?&]${escapedKey}=([^&#]+)`));
|
||||
if (!match) return null;
|
||||
|
||||
try {
|
||||
return decodeURIComponent(match[1].replace(/\+/g, " "));
|
||||
} catch {
|
||||
return match[1];
|
||||
}
|
||||
};
|
||||
|
||||
const getElesiteMatchedTrain = (
|
||||
entry: ElesiteData,
|
||||
trainNumber: string,
|
||||
) =>
|
||||
entry.trains?.find(
|
||||
(train) => train.train_number.trim() === trainNumber.trim(),
|
||||
);
|
||||
|
||||
const getElesiteLineMeta = (
|
||||
entry: ElesiteData,
|
||||
trainNumber: string,
|
||||
): Omit<ElesiteLineGroup, "entries" | "formations" | "formationText" | "hasFormations" | "lastReportedAt"> => {
|
||||
const matchedTrain = getElesiteMatchedTrain(entry, trainNumber);
|
||||
const timetableUrl = matchedTrain?.timetable_url?.trim() || null;
|
||||
const lineCode = timetableUrl
|
||||
? getElesiteQueryParam(timetableUrl, "rosen_code")
|
||||
: null;
|
||||
const lineLabel = timetableUrl
|
||||
? getElesiteQueryParam(timetableUrl, "rosen_name")
|
||||
: null;
|
||||
const leftStation = entry.formation_config?.left_station?.trim() || null;
|
||||
const rightStation = entry.formation_config?.right_station?.trim() || null;
|
||||
const fallbackKey = [lineLabel, leftStation, rightStation]
|
||||
.filter(Boolean)
|
||||
.join("::") || "unknown";
|
||||
|
||||
return {
|
||||
key: lineCode || fallbackKey,
|
||||
lineCode,
|
||||
lineLabel,
|
||||
leftStation,
|
||||
rightStation,
|
||||
timetableUrl,
|
||||
};
|
||||
};
|
||||
|
||||
const getElesiteEntryFormations = (entry: ElesiteData): string[] =>
|
||||
uniqueNonEmpty(entry.formation_config?.units?.map((unit) => unit.formation) ?? []);
|
||||
|
||||
const getRouteEndpoints = (
|
||||
trainNumber: string,
|
||||
): { firstStation: string; lastStation: string } | null => {
|
||||
const diagram = trainList[trainNumber.trim()];
|
||||
if (!diagram) return null;
|
||||
|
||||
const stations = diagram
|
||||
.split("#")
|
||||
.map((stop) => stop.split(",")[0]?.trim())
|
||||
.filter((station): station is string => !!station);
|
||||
|
||||
if (stations.length < 2) return null;
|
||||
|
||||
return {
|
||||
firstStation: stations[0],
|
||||
lastStation: stations[stations.length - 1],
|
||||
};
|
||||
};
|
||||
|
||||
const getMatchingStationSequence = (
|
||||
leftStation: string,
|
||||
rightStation: string,
|
||||
firstStation: string,
|
||||
lastStation: string,
|
||||
): string[] | null =>
|
||||
STATION_SEQUENCES.find(
|
||||
(sequence) =>
|
||||
sequence.includes(leftStation) &&
|
||||
sequence.includes(rightStation) &&
|
||||
sequence.includes(firstStation) &&
|
||||
sequence.includes(lastStation),
|
||||
) ??
|
||||
STATION_SEQUENCES.find(
|
||||
(sequence) =>
|
||||
sequence.includes(leftStation) && sequence.includes(rightStation),
|
||||
) ??
|
||||
null;
|
||||
|
||||
export const inferElesiteHeadingDirection = (
|
||||
entry: ElesiteData,
|
||||
trainNumber: string,
|
||||
): HeadingDirection | null => {
|
||||
const matchedTrain = entry.trains?.find(
|
||||
(train) => train.train_number.trim() === trainNumber.trim(),
|
||||
);
|
||||
const headingTo = matchedTrain?.nav?.heading_to;
|
||||
|
||||
if (headingTo === "left" || headingTo === "right") {
|
||||
return headingTo;
|
||||
}
|
||||
|
||||
const route = getRouteEndpoints(trainNumber);
|
||||
if (!route) return null;
|
||||
|
||||
const leftStation = entry.formation_config?.left_station;
|
||||
const rightStation = entry.formation_config?.right_station;
|
||||
if (!leftStation || !rightStation) return null;
|
||||
|
||||
const sequence = getMatchingStationSequence(
|
||||
leftStation,
|
||||
rightStation,
|
||||
route.firstStation,
|
||||
route.lastStation,
|
||||
);
|
||||
if (!sequence) return null;
|
||||
|
||||
const firstIndex = sequence.indexOf(route.firstStation);
|
||||
const lastIndex = sequence.indexOf(route.lastStation);
|
||||
const leftIndex = sequence.indexOf(leftStation);
|
||||
const rightIndex = sequence.indexOf(rightStation);
|
||||
if ([firstIndex, lastIndex, leftIndex, rightIndex].some((index) => index < 0)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const trainDelta = lastIndex - firstIndex;
|
||||
const formationDelta = rightIndex - leftIndex;
|
||||
if (trainDelta === 0 || formationDelta === 0) return null;
|
||||
|
||||
return Math.sign(trainDelta) === Math.sign(formationDelta)
|
||||
? "right"
|
||||
: "left";
|
||||
};
|
||||
|
||||
export const getElesiteLeftSideRank = (
|
||||
entry: ElesiteData,
|
||||
trainNumber: string,
|
||||
): number => {
|
||||
const matchedTrain = entry.trains?.find(
|
||||
(train) => train.train_number.trim() === trainNumber.trim(),
|
||||
);
|
||||
if (!matchedTrain?.nav) return 2;
|
||||
|
||||
const headingDirection = inferElesiteHeadingDirection(entry, trainNumber);
|
||||
if (!headingDirection) {
|
||||
const isLeftSide =
|
||||
(matchedTrain.nav.heading_to === "left") ===
|
||||
(matchedTrain.nav.is_leading === true);
|
||||
return isLeftSide ? 0 : 1;
|
||||
}
|
||||
|
||||
const isLeftSide =
|
||||
(headingDirection === "left") === (matchedTrain.nav.is_leading === true);
|
||||
|
||||
return isLeftSide ? 0 : 1;
|
||||
};
|
||||
|
||||
export const sortElesiteEntriesByTrainNumber = (
|
||||
entries: ElesiteData[],
|
||||
trainNumber: string,
|
||||
): ElesiteData[] =>
|
||||
[...entries].sort(
|
||||
(a, b) =>
|
||||
getElesiteLeftSideRank(a, trainNumber) -
|
||||
getElesiteLeftSideRank(b, trainNumber),
|
||||
);
|
||||
|
||||
export const buildElesiteLineGroups = (
|
||||
entries: ElesiteData[],
|
||||
trainNumber: string,
|
||||
): ElesiteLineGroup[] => {
|
||||
const groups = new Map<string, ElesiteData[]>();
|
||||
const lineOrder: string[] = [];
|
||||
|
||||
for (const entry of entries) {
|
||||
const key = getElesiteLineMeta(entry, trainNumber).key;
|
||||
if (!groups.has(key)) {
|
||||
groups.set(key, []);
|
||||
lineOrder.push(key);
|
||||
}
|
||||
groups.get(key)?.push(entry);
|
||||
}
|
||||
|
||||
return lineOrder.map((key) => {
|
||||
const groupedEntries = groups.get(key) ?? [];
|
||||
const sortedEntries = sortElesiteEntriesByTrainNumber(groupedEntries, trainNumber);
|
||||
const lineMetas = sortedEntries.map((entry) => getElesiteLineMeta(entry, trainNumber));
|
||||
const formations = uniqueNonEmpty(
|
||||
sortedEntries.flatMap((entry) => getElesiteEntryFormations(entry)),
|
||||
);
|
||||
|
||||
return {
|
||||
key,
|
||||
lineCode: lineMetas.map((meta) => meta.lineCode).find(Boolean) ?? null,
|
||||
lineLabel: lineMetas.map((meta) => meta.lineLabel).find(Boolean) ?? null,
|
||||
leftStation: lineMetas.map((meta) => meta.leftStation).find(Boolean) ?? null,
|
||||
rightStation: lineMetas.map((meta) => meta.rightStation).find(Boolean) ?? null,
|
||||
timetableUrl:
|
||||
lineMetas.map((meta) => meta.timetableUrl).find(Boolean) ?? null,
|
||||
lastReportedAt:
|
||||
sortedEntries
|
||||
.map((entry) => entry.report_info?.last_reported_at)
|
||||
.filter((value): value is string => !!value)
|
||||
.sort()
|
||||
.at(-1) ?? null,
|
||||
entries: sortedEntries,
|
||||
formations,
|
||||
formationText: formations.length > 0 ? formations.join("+") : null,
|
||||
hasFormations: formations.length > 0,
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
export const getElesiteSummaryByTrainNumber = (
|
||||
entries: ElesiteData[],
|
||||
trainNumber: string,
|
||||
): string | null => {
|
||||
const lineGroups = buildElesiteLineGroups(entries, trainNumber).filter(
|
||||
(group) => group.hasFormations,
|
||||
);
|
||||
|
||||
return lineGroups[0]?.formationText ?? null;
|
||||
};
|
||||
+2
-39
@@ -2,6 +2,8 @@
|
||||
// Source: https://github.com/micolous/metrodroid (GPL-3.0)
|
||||
// Keys: stationId = ((areaCode)<<16) | ((lineCode)<<8) | stationCode
|
||||
// areaCode = data[15] >> 6 (from FeliCa history block byte 15)
|
||||
// The source contains historical duplicate IDs; this map intentionally keeps the last
|
||||
// record for each ID to preserve the original object last-record-wins lookup.
|
||||
|
||||
interface FelicaStationEntry { s: string; l: string; c: string }
|
||||
|
||||
@@ -61,7 +63,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x000147: { s: '清水', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x000149: { s: '草薙', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x00014b: { s: '東静岡', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x00014b: { s: '東静岡', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x00014c: { s: '静岡', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x00014e: { s: '安倍川', l: '東海道本', c: '東海旅客鉄道' },
|
||||
0x00014f: { s: '用宗', l: '東海道本', c: '東海旅客鉄道' },
|
||||
@@ -267,7 +268,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x000271: { s: '太子堂', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000272: { s: '長町', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000273: { s: '仙台', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000273: { s: '仙台', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000275: { s: '東仙台', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000276: { s: '岩切', l: '東北本', c: '東日本旅客鉄道' },
|
||||
0x000277: { s: '陸前山王', l: '東北本', c: '東日本旅客鉄道' },
|
||||
@@ -665,9 +665,7 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00062c: { s: '大野城', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x00062d: { s: '水城', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x00062e: { s: '都府楼南', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x00062f: { s: '二日市', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x00062f: { s: '都府楼南', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x000630: { s: '二日市', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x000630: { s: '天拝山', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x000631: { s: '天拝山', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
0x000632: { s: '原田', l: '鹿児島本', c: '九州旅客鉄道' },
|
||||
@@ -725,7 +723,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00071a: { s: '三毛門', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x00071b: { s: '吉富', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x00071c: { s: '中津', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x000728: { s: '中津', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x000728: { s: '宇佐', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x00072a: { s: '西屋敷', l: '日豊本', c: '九州旅客鉄道' },
|
||||
0x00073b: { s: '別府', l: '日豊本', c: '九州旅客鉄道' },
|
||||
@@ -1113,9 +1110,7 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00104c: { s: '高野川', l: '予讃', c: '四国旅客鉄道' },
|
||||
0x001058: { s: '五郎', l: '予讃', c: '四国旅客鉄道' },
|
||||
0x001059: { s: '伊予大洲', l: '予讃', c: '四国旅客鉄道' },
|
||||
0x001081: { s: '御免', l: 'ごめんなはり', c: '土佐くろしお鉄道' },
|
||||
0x001081: { s: '後免', l: '阿佐', c: '土佐くろしお鉄道' },
|
||||
0x001083: { s: '後免町', l: '阿佐', c: '土佐くろしお鉄道' },
|
||||
0x001083: { s: '御免町', l: 'ごめんなはり', c: '土佐くろしお鉄道' },
|
||||
0x001102: { s: '金蔵寺', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x001103: { s: '善通寺', l: '土讃', c: '四国旅客鉄道' },
|
||||
@@ -1123,7 +1118,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00110c: { s: '佃', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x00110d: { s: '阿波池田', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x001113: { s: '大歩危', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x001124: { s: '御免', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x001124: { s: '後免', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x00112a: { s: '高知', l: '土讃', c: '四国旅客鉄道' },
|
||||
0x00112b: { s: '入明', l: '土讃', c: '四国旅客鉄道' },
|
||||
@@ -1649,7 +1643,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x002984: { s: '岩手和井内', l: '岩泉', c: '東日本旅客鉄道' },
|
||||
0x002986: { s: '押角', l: '岩泉', c: '東日本旅客鉄道' },
|
||||
0x002a0c: { s: '新川崎', l: '横須賀', c: '東日本旅客鉄道' },
|
||||
0x002a0d: { s: '武蔵小杉', l: '横須賀', c: '東日本旅客鉄道' },
|
||||
0x002a0d: { s: '新川崎', l: '横須賀', c: '東日本旅客鉄道' },
|
||||
0x002a0e: { s: '西大井', l: '横須賀', c: '東日本旅客鉄道' },
|
||||
0x002a15: { s: '新日本橋', l: '総武本', c: '東日本旅客鉄道' },
|
||||
@@ -1671,7 +1664,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x002ada: { s: '登別', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002ae0: { s: '白老', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002ae3: { s: '錦岡', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002ae3: { s: '錦岡', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002ae5: { s: '糸井', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002ae9: { s: '苫小牧', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
0x002aeb: { s: '沼ノ端', l: '室蘭本', c: '北海道旅客鉄道' },
|
||||
@@ -2281,7 +2273,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00524a: { s: '三角', l: '三角', c: '九州旅客鉄道' },
|
||||
0x005318: { s: '太田部', l: '小海', c: '東日本旅客鉄道' },
|
||||
0x005319: { s: '中込', l: '小海', c: '東日本旅客鉄道' },
|
||||
0x00531a: { s: '滑津', l: '小海', c: '東日本旅客鉄道' },
|
||||
0x00531a: { s: '中込', l: '小海', c: '東日本旅客鉄道' },
|
||||
0x00531b: { s: '北中込', l: '小海', c: '東日本旅客鉄道' },
|
||||
0x00531c: { s: '岩村田', l: '小海', c: '東日本旅客鉄道' },
|
||||
@@ -2291,7 +2282,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x005352: { s: '人吉', l: '肥薩', c: '九州旅客鉄道' },
|
||||
0x00540c: { s: '戸狩野沢温泉', l: '飯山', c: '東日本旅客鉄道' },
|
||||
0x005415: { s: '森宮野原', l: '飯山', c: '東日本旅客鉄道' },
|
||||
0x005415: { s: '森宮野原', l: '飯山', c: '東日本旅客鉄道' },
|
||||
0x00541f: { s: '十日町', l: '飯山', c: '東日本旅客鉄道' },
|
||||
0x005420: { s: '魚沼中条', l: '飯山', c: '東日本旅客鉄道' },
|
||||
0x005515: { s: '吉田', l: '越後', c: '東日本旅客鉄道' },
|
||||
@@ -2715,7 +2705,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x007403: { s: '播磨高岡', l: '姫新', c: '西日本旅客鉄道' },
|
||||
0x007404: { s: '余部', l: '姫新', c: '西日本旅客鉄道' },
|
||||
0x007407: { s: '本竜野', l: '姫新', c: '西日本旅客鉄道' },
|
||||
0x007408: { s: '東觜崎', l: '姫新線', c: '西日本旅客鉄道' },
|
||||
0x007408: { s: '東觜崎', l: '姫新', c: '西日本旅客鉄道' },
|
||||
0x007409: { s: '播磨新宮', l: '姫新', c: '西日本旅客鉄道' },
|
||||
0x007410: { s: '佐用', l: '姫新', c: '西日本旅客鉄道' },
|
||||
@@ -3453,7 +3442,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00c708: { s: '京王多摩センター', l: '相模原', c: '京王電鉄' },
|
||||
0x00c709: { s: '京王堀之内', l: '相模原', c: '京王電鉄' },
|
||||
0x00c70a: { s: '南大沢', l: '相模原', c: '京王電鉄' },
|
||||
0x00c70a: { s: '南大沢', l: '相模原', c: '京王電鉄' },
|
||||
0x00c70b: { s: '多摩境', l: '相模原', c: '京王電鉄' },
|
||||
0x00c70c: { s: '橋本', l: '相模原', c: '京王電鉄' },
|
||||
0x00c801: { s: '北野', l: '高尾', c: '京王電鉄' },
|
||||
@@ -3596,7 +3584,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00d403: { s: '新高島', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d405: { s: 'みなとみらい', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d407: { s: '馬車道', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d409: { s: '日本大通', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d409: { s: '日本大通り', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d40b: { s: '元町・中華街', l: 'みなとみらい', c: '横浜高速鉄道' },
|
||||
0x00d501: { s: '泉岳寺', l: '本', c: '京浜急行電鉄' },
|
||||
@@ -3654,14 +3641,8 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00d603: { s: '大鳥居', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d604: { s: '穴守稲荷', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d605: { s: '天空橋', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d606: { s: '国際ターミナル駅(仮称)', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d606: { s: '羽田空港国際線ターミナル', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d607: { s: '羽田空港', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d607: { s: '羽田空港', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d607: { s: '羽田空港', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d607: { s: '羽田空港国内線ターミナル', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d607: { s: '羽田空港', l: '空港', c: '京浜急行' },
|
||||
0x00d607: { s: '羽田空港', l: '空港', c: '京浜急行電鉄' },
|
||||
0x00d701: { s: '京急川崎', l: '大師', c: '京浜急行電鉄' },
|
||||
0x00d702: { s: '港町', l: '大師', c: '京浜急行電鉄' },
|
||||
0x00d703: { s: '鈴木町', l: '大師', c: '京浜急行電鉄' },
|
||||
@@ -4111,7 +4092,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x00fa07: { s: '整備場', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa08: { s: '羽田', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa09: { s: '天空橋', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa0a: { s: '国際線ターミナルビル', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa0a: { s: '羽田空港国際線ビル', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa0b: { s: '新整備場', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
0x00fa0c: { s: '羽田空港第1ビル', l: '東京モノレール羽田', c: '東京モノレール' },
|
||||
@@ -4823,7 +4803,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02933e: { s: '元町', l: '本', c: '阪神電気鉄道' },
|
||||
0x029401: { s: '大阪難波', l: '阪神なんば', c: '阪神電気鉄道' },
|
||||
0x029403: { s: '桜川', l: '阪神なんば', c: '阪神電気鉄道' },
|
||||
0x029404: { s: '桜川', l: '阪神なんば', c: '阪神電気鉄道' },
|
||||
0x029404: { s: 'ドーム前', l: '阪神なんば', c: '阪神電気鉄道' },
|
||||
0x029405: { s: '九条', l: '阪神なんば', c: '阪神電気鉄道' },
|
||||
0x029407: { s: '西九条', l: '西大阪', c: '阪神電気鉄道' },
|
||||
@@ -5122,12 +5101,9 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02c54e: { s: '鳥羽街道', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c550: { s: '東福寺', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c552: { s: '七条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c554: { s: '五条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c554: { s: '清水五条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c556: { s: '祇園四条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c556: { s: '四条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c558: { s: '三条', l: '京阪本', c: '京阪電気鉄道' },
|
||||
0x02c55a: { s: '丸太町', l: '鴨東', c: '京阪電気鉄道' },
|
||||
0x02c55a: { s: '神宮丸太町', l: '鴨東', c: '京阪電気鉄道' },
|
||||
0x02c55c: { s: '出町柳', l: '鴨東', c: '京阪電気鉄道' },
|
||||
0x02c5c2: { s: '八幡市', l: '京阪鋼索', c: '京阪電気鉄道' },
|
||||
@@ -5336,12 +5312,8 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02e603: { s: '近鉄新庄', l: '御所', c: '近畿日本鉄道' },
|
||||
0x02e604: { s: '忍海', l: '御所', c: '近畿日本鉄道' },
|
||||
0x02e605: { s: '近鉄御所', l: '御所', c: '近畿日本鉄道' },
|
||||
0x02e701: { s: '近鉄難波', l: '難波', c: '近畿日本鉄道' },
|
||||
0x02e701: { s: '大阪難波', l: '難波', c: '近畿日本鉄道' },
|
||||
0x02e701: { s: '大阪難波', l: '難波', c: '近畿日本鉄道' },
|
||||
0x02e702: { s: '近鉄日本橋', l: '難波', c: '近畿日本鉄道' },
|
||||
0x02e703: { s: '上本町', l: '大阪', c: '近畿日本鉄道' },
|
||||
0x02e703: { s: '大阪上本町', l: '大阪', c: '近畿日本鉄道' },
|
||||
0x02e703: { s: '大阪上本町', l: '大阪', c: '近畿日本鉄道' },
|
||||
0x02e704: { s: '鶴橋', l: '大阪', c: '近畿日本鉄道' },
|
||||
0x02e706: { s: '今里', l: '大阪', c: '近畿日本鉄道' },
|
||||
@@ -5495,7 +5467,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02ef16: { s: '桑名', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef17: { s: '益生', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef19: { s: '伊勢朝日', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef1b: { s: '富洲原', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef1b: { s: '川越富洲原', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef1d: { s: '近鉄富田', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef1f: { s: '霞ヶ浦', l: '名古屋', c: '近畿日本鉄道' },
|
||||
@@ -5512,7 +5483,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02ef2c: { s: '伊勢若松', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef2e: { s: '千代崎', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef30: { s: '白子', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef30: { s: '白子', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef31: { s: '鼓ヶ浦', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef33: { s: '磯山', l: '名古屋', c: '近畿日本鉄道' },
|
||||
0x02ef35: { s: '千里', l: '名古屋', c: '近畿日本鉄道' },
|
||||
@@ -5573,7 +5543,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02f303: { s: '馬道 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f304: { s: '西別所 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f305: { s: '蓮花寺 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f305: { s: '蓮花寺 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f306: { s: '在良 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f307: { s: '坂井橋 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
0x02f30b: { s: '六把野 廃止', l: '北勢', c: '近畿日本鉄道' },
|
||||
@@ -5629,15 +5598,12 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x02ffb7: { s: '貿易センター', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffb9: { s: 'ポートターミナル', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffbb: { s: '中公園', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffbd: { s: '市民病院前', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffbd: { s: 'みなとじま', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffbf: { s: '市民広場', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc1: { s: '南公園', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc3: { s: '中埠頭', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc5: { s: '北埠頭', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc7: { s: '先端医療センター前', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc7: { s: '医療センター', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc9: { s: '京コンピュータ前', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffc9: { s: 'ポートアイランド南', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x02ffcb: { s: '神戸空港', l: 'ポートアイランド', c: '神戸新交通' },
|
||||
0x032841: { s: '川西', l: '錦川清流', c: '錦川鉄道' },
|
||||
@@ -5722,7 +5688,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x03be19: { s: '城北', l: 'アストラムライン', c: '広島高速交通' },
|
||||
0x03be1d: { s: '白島', l: 'アストラムライン', c: '広島高速交通' },
|
||||
0x03be1f: { s: '牛田', l: 'アストラムライン', c: '広島高速交通' },
|
||||
0x03be21: { s: '不動院前', l: 'アストラムライン', c: '広島' },
|
||||
0x03be21: { s: '不動院前', l: 'アストラムライン', c: '広島高速交通' },
|
||||
0x03be23: { s: '祇園新橋北', l: 'アストラムライン', c: '広島高速交通' },
|
||||
0x03be25: { s: '西原', l: 'アストラムライン', c: '広島高速交通' },
|
||||
@@ -5832,7 +5797,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x03d64d: { s: '西鉄千早', l: '貝塚', c: '西日本鉄道' },
|
||||
0x03d64f: { s: '名島', l: '貝塚', c: '西日本鉄道' },
|
||||
0x03d651: { s: '貝塚', l: '貝塚', c: '西日本鉄道' },
|
||||
0x03d765: { s: '西鉄福岡(天神)', l: '天神大牟田線', c: '西日本鉄道' },
|
||||
0x03d765: { s: '西鉄福岡(天神)', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d767: { s: '薬院', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d769: { s: '西鉄平尾', l: '天神大牟田', c: '西日本鉄道' },
|
||||
@@ -5846,7 +5810,6 @@ export const FELICA_STATION_MAP: Record<number, FelicaStationEntry> = {
|
||||
0x03d777: { s: '下大利', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d779: { s: '都府楼前', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d77b: { s: '西鉄二日市', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d77c: { s: '二日市南', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d77c: { s: '紫', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d77d: { s: '朝倉街道', l: '天神大牟田', c: '西日本鉄道' },
|
||||
0x03d77f: { s: '桜台', l: '天神大牟田', c: '西日本鉄道' },
|
||||
|
||||
+14
-49
@@ -1,53 +1,18 @@
|
||||
import { trainTypeID } from "@/lib/CommonTypes";
|
||||
import {
|
||||
getTrainType,
|
||||
type TrainTypeFontFamily,
|
||||
} from "@/lib/getTrainType";
|
||||
|
||||
type types = (
|
||||
type: trainTypeID,
|
||||
id: string,
|
||||
) => [string, TrainTypeFontFamily | undefined, boolean];
|
||||
|
||||
type types = (types: trainTypeID, id: string) => [string, boolean, boolean];
|
||||
export const getStringConfig: types = (type, id) => {
|
||||
switch (type) {
|
||||
case "Normal":
|
||||
return ["普通", true, false];
|
||||
case "OneMan":
|
||||
return ["普通", true, true];
|
||||
case "Rapid":
|
||||
return ["快速", true, false];
|
||||
case "OneManRapid":
|
||||
return ["快速", true, true];
|
||||
case "LTDEXP":
|
||||
return ["特急", true, false];
|
||||
case "NightLTDEXP":
|
||||
return ["特急", true, false];
|
||||
case "SPCL":
|
||||
return ["臨時", true, false];
|
||||
case "SPCL_Normal":
|
||||
return ["臨時", true, false];
|
||||
case "SPCL_Rapid":
|
||||
return ["臨時快速", true, false];
|
||||
case "SPCL_EXP":
|
||||
return ["臨時特急", true, false];
|
||||
case "Party":
|
||||
return ["団体臨時", true, false];
|
||||
case "Freight":
|
||||
return ["貨物", false, false];
|
||||
case "Forwarding":
|
||||
return ["回送", false, false];
|
||||
case "Trial":
|
||||
return ["試運転", false, false];
|
||||
case "Construction":
|
||||
return ["工事", false, false];
|
||||
case "FreightForwarding":
|
||||
return ["単機回送", false, false];
|
||||
case "Other":
|
||||
switch (true) {
|
||||
case !!id.includes("T"):
|
||||
return ["単機回送", false, false];
|
||||
case !!id.includes("R"):
|
||||
case !!id.includes("E"):
|
||||
case !!id.includes("L"):
|
||||
case !!id.includes("A"):
|
||||
case !!id.includes("B"):
|
||||
return ["回送", false, false];
|
||||
case !!id.includes("H"):
|
||||
return ["試運転", false, false];
|
||||
}
|
||||
return ["", false, false];
|
||||
}
|
||||
const { shortName, fontFamily, isOneMan } = getTrainType({ type, id });
|
||||
const typeString =
|
||||
type === "Other" && shortName === "その他" ? "" : shortName;
|
||||
|
||||
return [typeString, fontFamily, isOneMan];
|
||||
};
|
||||
|
||||
+24
-23
@@ -22,13 +22,14 @@ type trainTypeString =
|
||||
| "普通列車(ワンマン)"
|
||||
| "臨時快速"
|
||||
| "臨時特急"
|
||||
| "団体臨時"
|
||||
| "団体"
|
||||
| "貨物"
|
||||
| "回送"
|
||||
| "単機回送"
|
||||
| "試運転"
|
||||
| "工事"
|
||||
| "その他";
|
||||
export type TrainTypeFontFamily = "JR-Nishi" | "JR-WEST-PLUS";
|
||||
type trainTypeDataString = "rapid" | "express" | "normal" | "notService";
|
||||
type getTrainType = (e: {
|
||||
type: trainTypeID;
|
||||
@@ -38,7 +39,7 @@ type getTrainType = (e: {
|
||||
color: colorString;
|
||||
name: trainTypeString;
|
||||
shortName: string;
|
||||
fontAvailable: boolean;
|
||||
fontFamily: TrainTypeFontFamily | undefined;
|
||||
isOneMan: boolean;
|
||||
data: trainTypeDataString;
|
||||
};
|
||||
@@ -49,7 +50,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#333333ff" : "white",
|
||||
name: "普通列車",
|
||||
shortName: "普通",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
@@ -58,7 +59,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#333333ff" : "white",
|
||||
name: "普通列車(ワンマン)",
|
||||
shortName: "普通",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: true,
|
||||
data: "normal",
|
||||
};
|
||||
@@ -67,7 +68,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#00a0bdff" : "aqua",
|
||||
name: "快速",
|
||||
shortName: "快速",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "rapid",
|
||||
};
|
||||
@@ -76,7 +77,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#00a0bdff" : "aqua",
|
||||
name: "快速",
|
||||
shortName: "快速",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: true,
|
||||
data: "rapid",
|
||||
};
|
||||
@@ -85,7 +86,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#ee424dff",
|
||||
name: "特急",
|
||||
shortName: "特急",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "express",
|
||||
};
|
||||
@@ -94,7 +95,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#e000b0ff" : "pink",
|
||||
name: "寝台特急",
|
||||
shortName: "特急",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "express",
|
||||
};
|
||||
@@ -104,7 +105,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#297bff",
|
||||
name: "臨時",
|
||||
shortName: "臨時",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
@@ -113,7 +114,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#297bff",
|
||||
name: "臨時快速",
|
||||
shortName: "臨時快速",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
@@ -122,16 +123,16 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#297bff",
|
||||
name: "臨時特急",
|
||||
shortName: "臨時特急",
|
||||
fontAvailable: true,
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
case "Party":
|
||||
return {
|
||||
color: "#ff7300ff",
|
||||
name: "団体臨時",
|
||||
shortName: "団体臨時",
|
||||
fontAvailable: true,
|
||||
name: "団体",
|
||||
shortName: "団体",
|
||||
fontFamily: "JR-Nishi",
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
@@ -140,7 +141,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#007488ff",
|
||||
name: "貨物",
|
||||
shortName: "貨物",
|
||||
fontAvailable: false,
|
||||
fontFamily: undefined,
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -149,7 +150,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "回送",
|
||||
shortName: "回送",
|
||||
fontAvailable: false,
|
||||
fontFamily: "JR-WEST-PLUS",
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -158,7 +159,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "試運転",
|
||||
shortName: "試運転",
|
||||
fontAvailable: false,
|
||||
fontFamily: "JR-WEST-PLUS",
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -167,7 +168,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "工事",
|
||||
shortName: "工事",
|
||||
fontAvailable: false,
|
||||
fontFamily: undefined,
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -176,7 +177,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "単機回送",
|
||||
shortName: "単機回送",
|
||||
fontAvailable: false,
|
||||
fontFamily: undefined,
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -189,7 +190,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "単機回送",
|
||||
shortName: "単機回送",
|
||||
fontAvailable: false,
|
||||
fontFamily: undefined,
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -202,7 +203,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "回送",
|
||||
shortName: "回送",
|
||||
fontAvailable: false,
|
||||
fontFamily: "JR-WEST-PLUS",
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -211,7 +212,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: "#5f5f5fff",
|
||||
name: "試運転",
|
||||
shortName: "試運転",
|
||||
fontAvailable: false,
|
||||
fontFamily: "JR-WEST-PLUS",
|
||||
isOneMan: false,
|
||||
data: "notService",
|
||||
};
|
||||
@@ -221,7 +222,7 @@ export const getTrainType: getTrainType = ({ type, id, whiteMode }) => {
|
||||
color: whiteMode ? "#333333ff" : "white",
|
||||
name: "その他",
|
||||
shortName: "その他",
|
||||
fontAvailable: false,
|
||||
fontFamily: undefined,
|
||||
isOneMan: false,
|
||||
data: "normal",
|
||||
};
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
export type IconDisplayMode = "default" | "original" | "hub";
|
||||
|
||||
export const normalizeIconDisplayMode = (
|
||||
value: unknown,
|
||||
): IconDisplayMode => {
|
||||
if (value === "hub") return "hub";
|
||||
if (value === "default" || value === "false" || value === false) {
|
||||
return "default";
|
||||
}
|
||||
return "original";
|
||||
};
|
||||
|
||||
export const isHubIconDisplayMode = (value: unknown): boolean =>
|
||||
normalizeIconDisplayMode(value) === "hub";
|
||||
|
||||
export const usesCustomTrainIcons = (value: unknown): boolean =>
|
||||
normalizeIconDisplayMode(value) !== "default";
|
||||
@@ -1,27 +1,42 @@
|
||||
export const BACKEND_API_BASE_URLS = {
|
||||
production: "https://jr-shikoku-backend-api-v1.haruk.in",
|
||||
experimental: "https://jr-shikoku-backend-api-v1-beta.haruk.in",
|
||||
} as const;
|
||||
|
||||
export const JR_DATA_SYSTEM_ENVS = {
|
||||
production: {
|
||||
label: "本番",
|
||||
caption: "現在の本番環境",
|
||||
baseUrl: "https://jr-shikoku-data-system.pages.dev",
|
||||
production_release: {
|
||||
label: "本番 / リリース",
|
||||
caption: "一般公開向け運用",
|
||||
baseUrl: "https://shikoku-railinfo.haruk.in",
|
||||
track: "production",
|
||||
uiVariant: "release",
|
||||
backendApiBaseUrl: BACKEND_API_BASE_URLS.production,
|
||||
},
|
||||
// chatgpt: {
|
||||
// label: "ChatGPT",
|
||||
// caption: "experiment-ux-refactoring-co-3crz",
|
||||
// baseUrl:
|
||||
// "https://experiment-ux-refactoring-co-3crz.jr-shikoku-data-system.pages.dev",
|
||||
// },
|
||||
claude: {
|
||||
label: "Claude",
|
||||
caption: "experiment-ux-refactoring-co-6cw7",
|
||||
baseUrl:
|
||||
"https://experiment-ux-refactoring-co-6cw7.jr-shikoku-data-system.pages.dev",
|
||||
production_beta: {
|
||||
label: "本番 / ベータ",
|
||||
caption: "UI検証向け運用",
|
||||
baseUrl: "https://nightly.shikoku-railinfo.haruk.in",
|
||||
track: "production",
|
||||
uiVariant: "beta",
|
||||
backendApiBaseUrl: BACKEND_API_BASE_URLS.production,
|
||||
},
|
||||
experimental: {
|
||||
label: "実験 / 実験場",
|
||||
caption: "毎日リセットされる実験環境",
|
||||
baseUrl: "https://experimental.shikoku-railinfo.haruk.in",
|
||||
track: "experimental",
|
||||
uiVariant: "release",
|
||||
backendApiBaseUrl: BACKEND_API_BASE_URLS.experimental,
|
||||
},
|
||||
} as const;
|
||||
|
||||
export type JrDataSystemEnvironmentKey = keyof typeof JR_DATA_SYSTEM_ENVS;
|
||||
|
||||
export const DEFAULT_JR_DATA_SYSTEM_ENV: JrDataSystemEnvironmentKey =
|
||||
"production";
|
||||
"production_release";
|
||||
|
||||
export type JrDataSystemTrack = "production" | "experimental";
|
||||
export type JrDataSystemUiVariant = "release" | "beta";
|
||||
|
||||
export const JR_DATA_SYSTEM_ENV_OPTIONS = (
|
||||
Object.entries(JR_DATA_SYSTEM_ENVS) as [
|
||||
@@ -36,12 +51,63 @@ export const JR_DATA_SYSTEM_ENV_OPTIONS = (
|
||||
export const normalizeJrDataSystemEnvironment = (
|
||||
value: unknown,
|
||||
): JrDataSystemEnvironmentKey => {
|
||||
// Backward compatibility for legacy keys.
|
||||
if (value === "production") return "production_release";
|
||||
if (value === "chatgpt" || value === "claude") return "production_beta";
|
||||
|
||||
if (typeof value === "string" && value in JR_DATA_SYSTEM_ENVS) {
|
||||
return value as JrDataSystemEnvironmentKey;
|
||||
}
|
||||
return DEFAULT_JR_DATA_SYSTEM_ENV;
|
||||
};
|
||||
|
||||
export const resolveJrDataSystemEnvironment = (
|
||||
track: JrDataSystemTrack,
|
||||
uiVariant: JrDataSystemUiVariant,
|
||||
): JrDataSystemEnvironmentKey => {
|
||||
if (track === "experimental") {
|
||||
return "experimental";
|
||||
}
|
||||
return uiVariant === "beta" ? "production_beta" : "production_release";
|
||||
};
|
||||
|
||||
export const getJrDataSystemTrack = (
|
||||
environment: unknown,
|
||||
): JrDataSystemTrack => {
|
||||
const envKey = normalizeJrDataSystemEnvironment(environment);
|
||||
return JR_DATA_SYSTEM_ENVS[envKey].track;
|
||||
};
|
||||
|
||||
export const getJrDataSystemUiVariant = (
|
||||
environment: unknown,
|
||||
): JrDataSystemUiVariant => {
|
||||
const envKey = normalizeJrDataSystemEnvironment(environment);
|
||||
return JR_DATA_SYSTEM_ENVS[envKey].uiVariant;
|
||||
};
|
||||
|
||||
export const getBackendApiBaseUrl = (environment: unknown): string => {
|
||||
const envKey = normalizeJrDataSystemEnvironment(environment);
|
||||
return JR_DATA_SYSTEM_ENVS[envKey].backendApiBaseUrl;
|
||||
};
|
||||
|
||||
export const getDiagramTodayUrl = (environment: unknown): string => {
|
||||
const envKey = normalizeJrDataSystemEnvironment(environment);
|
||||
return JR_DATA_SYSTEM_ENVS[envKey].track === "experimental"
|
||||
? "https://jr-shikoku-api-data-storage.haruk.in/tmp/diagram-today-beta.json"
|
||||
: "https://jr-shikoku-api-data-storage.haruk.in/tmp/diagram-today.json";
|
||||
};
|
||||
|
||||
export const rewriteBackendApiUrl = (url: string, environment: unknown): string => {
|
||||
if (typeof url !== "string" || url.length === 0) return url;
|
||||
const target = getBackendApiBaseUrl(environment);
|
||||
for (const base of Object.values(BACKEND_API_BASE_URLS)) {
|
||||
if (url.startsWith(base)) {
|
||||
return url.replace(base, target);
|
||||
}
|
||||
}
|
||||
return url;
|
||||
};
|
||||
|
||||
export const rewriteJrDataSystemUrl = (
|
||||
uri: string,
|
||||
environment: unknown,
|
||||
@@ -51,14 +117,20 @@ export const rewriteJrDataSystemUrl = (
|
||||
}
|
||||
|
||||
const envKey = normalizeJrDataSystemEnvironment(environment);
|
||||
if (envKey === DEFAULT_JR_DATA_SYSTEM_ENV) {
|
||||
return uri;
|
||||
}
|
||||
|
||||
const productionBaseUrl = JR_DATA_SYSTEM_ENVS.production.baseUrl;
|
||||
const targetBaseUrl = JR_DATA_SYSTEM_ENVS[envKey].baseUrl;
|
||||
|
||||
return uri.startsWith(productionBaseUrl)
|
||||
? uri.replace(productionBaseUrl, targetBaseUrl)
|
||||
: uri;
|
||||
const knownBaseUrls = [
|
||||
"https://jr-shikoku-data-system.pages.dev",
|
||||
JR_DATA_SYSTEM_ENVS.production_release.baseUrl,
|
||||
JR_DATA_SYSTEM_ENVS.production_beta.baseUrl,
|
||||
JR_DATA_SYSTEM_ENVS.experimental.baseUrl,
|
||||
];
|
||||
|
||||
for (const baseUrl of knownBaseUrls) {
|
||||
if (uri.startsWith(baseUrl)) {
|
||||
return uri.replace(baseUrl, targetBaseUrl);
|
||||
}
|
||||
}
|
||||
|
||||
return uri;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
import { STORAGE_KEYS } from "@/constants";
|
||||
import { AS } from "@/storageControl";
|
||||
|
||||
const LEGACY_VOICEPEAK_STORAGE_KEYS = [
|
||||
STORAGE_KEYS.VOICEPEAK_BASE_URL,
|
||||
STORAGE_KEYS.VOICEPEAK_API_TOKEN,
|
||||
STORAGE_KEYS.VOICEPEAK_SPEAKER,
|
||||
"voicepeakSpeed",
|
||||
"voicepeakPitch",
|
||||
"voicepeakPause",
|
||||
"voicepeakVolume",
|
||||
"voicepeakHightension",
|
||||
"voicepeakNarration",
|
||||
"voicepeakParameters",
|
||||
"voicepeakParams",
|
||||
"voicepeakEmotions",
|
||||
"voicepeakEmotion",
|
||||
] as const;
|
||||
|
||||
/**
|
||||
* 公開APIへの移行後は、端末へ管理用APIの設定を保持しない。
|
||||
* removeItemは対象が存在しない場合も安全なため、起動ごとに実行できる。
|
||||
*/
|
||||
export const migrateLegacyVoicepeakSettings = async () => {
|
||||
await Promise.all(
|
||||
LEGACY_VOICEPEAK_STORAGE_KEYS.map((key) =>
|
||||
AS.removeItem(key).catch(() => undefined)
|
||||
)
|
||||
);
|
||||
};
|
||||
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* Mock API index
|
||||
*
|
||||
* Re-exports the XHR interceptor generator and pre-loaded sample data
|
||||
* captured from the official JR Shikoku train position site.
|
||||
*
|
||||
* Usage example:
|
||||
* import { MOCK_TRAIN_POSITIONS } from '@/lib/mockApi';
|
||||
* const { setMockApiEnabled, setMockTrainPositions } = useTrainMenu();
|
||||
*
|
||||
* // Enable mock mode with sample data
|
||||
* setMockTrainPositions(MOCK_TRAIN_POSITIONS);
|
||||
* setMockApiEnabled(true);
|
||||
*/
|
||||
|
||||
export { generateXhrInterceptorJs, MockApiConfig, TrainEntry } from './webviewXhrInterceptor';
|
||||
export { PositionMaster, PositionLookup, fetchPositionMasters, fetchMockTrainPositions, buildPosLookup, lookupPos } from './positionMasters';
|
||||
|
||||
// Pre-captured sample train position data from the official site
|
||||
import trainJson from './mockData/train.json';
|
||||
export const MOCK_TRAIN_POSITIONS = trainJson.filter(
|
||||
(entry): entry is import('./webviewXhrInterceptor').TrainEntry =>
|
||||
'TrainNum' in entry,
|
||||
);
|
||||
@@ -0,0 +1,592 @@
|
||||
[
|
||||
{
|
||||
"BetweenStation": "高松~鬼無",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "香西",
|
||||
"StationNumber": "Y01",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kozai.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "端岡~鴨川",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "国分",
|
||||
"StationNumber": "Y04",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kokubu.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "讃岐府中",
|
||||
"StationNumber": "Y05",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-fuchu.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "鴨川~坂出",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "八十場",
|
||||
"StationNumber": "Y07",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yasoba.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "丸亀~多度津",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "讃岐塩屋",
|
||||
"StationNumber": "Y11",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-shioya.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "詫間~高瀬",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "みの",
|
||||
"StationNumber": "Y15",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/mino.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "高瀬~本山",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "比地大",
|
||||
"StationNumber": "Y17",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hijidai.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予寒川~伊予土居",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "赤星",
|
||||
"StationNumber": "Y25",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/akaboshi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "石鎚山~伊予小松",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "伊予氷見",
|
||||
"StationNumber": "Y33",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-himi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予小松~壬生川",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "玉之江",
|
||||
"StationNumber": "Y35",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tamanoe.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予北条~粟井",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "柳原",
|
||||
"StationNumber": "Y49",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yanagihara.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "粟井~堀江",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "光洋台",
|
||||
"StationNumber": "Y51",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/koyodai.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "高松~栗林",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "昭和町",
|
||||
"StationNumber": "T27",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/showacho.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "栗林公園北口",
|
||||
"StationNumber": "T26",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ritsurinkoen-kitaguchi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "栗林~屋島",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "木太町",
|
||||
"StationNumber": "T24",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kitacho.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "屋島~八栗口",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "古高松南",
|
||||
"StationNumber": "T22",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/furutakamatsu-minami.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "八栗口~志度",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "讃岐牟礼",
|
||||
"StationNumber": "T20",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-mure.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "造田~讃岐津田",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "神前",
|
||||
"StationNumber": "T16",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kanzaki.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "板野~板東",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "阿波川端",
|
||||
"StationNumber": "T06",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-kawabata.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "北伊予~伊予市",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "南伊予",
|
||||
"StationNumber": "U02-1",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/minami-iyo.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "伊予横田",
|
||||
"StationNumber": "U03",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-yokota.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "鳥ノ木",
|
||||
"StationNumber": "U04",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/torinoki.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "向井原~伊予中山",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "伊予大平",
|
||||
"StationNumber": "U07",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-ohira.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "内子~新谷",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "五十崎",
|
||||
"StationNumber": "U11",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ikazaki.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "喜多山",
|
||||
"StationNumber": "U12",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kitayama.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予大洲~伊予平野",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "西大洲",
|
||||
"StationNumber": "U15",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nishi-ozu.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予石城~卯之町",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "上宇和",
|
||||
"StationNumber": "U21",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kami-uwa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予吉田~北宇和島",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "高光",
|
||||
"StationNumber": "U26",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takamitsu.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "向井原~伊予上灘",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "高野川",
|
||||
"StationNumber": "S07",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/konokawa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予上灘~伊予長浜",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "下灘",
|
||||
"StationNumber": "S09",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shimonada.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "串",
|
||||
"StationNumber": "S10",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kushi.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "喜多灘",
|
||||
"StationNumber": "S11",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kitanada.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予長浜~伊予白滝",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "伊予出石",
|
||||
"StationNumber": "S13",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-izushi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊予白滝~伊予大洲",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "八多喜",
|
||||
"StationNumber": "S15",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hataki.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "春賀",
|
||||
"StationNumber": "S16",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/haruka.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "五郎",
|
||||
"StationNumber": "S17",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/goro.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "塩入~讃岐財田",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "黒川",
|
||||
"StationNumber": "D17",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kurokawa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "三縄~阿波川口",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "祖谷口",
|
||||
"StationNumber": "D24",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyaguchi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "大田口~大杉",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "土佐穴内",
|
||||
"StationNumber": "D31",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-ananai.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "土佐北川~繁藤",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "角茂谷",
|
||||
"StationNumber": "D34",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kakumodani.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "土佐山田~後免",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "山田西町",
|
||||
"StationNumber": "D38",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yamadanishimachi.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "土佐長岡",
|
||||
"StationNumber": "D39",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-nagaoka.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "土佐大津~土佐一宮",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "布師田",
|
||||
"StationNumber": "D42",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nunoshida.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "高知~旭",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "入明",
|
||||
"StationNumber": "K01",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iriake.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "円行寺口",
|
||||
"StationNumber": "K02",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/engyojiguchi.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "旭~朝倉",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "高知商業前",
|
||||
"StationNumber": "K04",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kochi-shogyomae.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "朝倉~伊野",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "枝川",
|
||||
"StationNumber": "K06",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/edagawa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "伊野~日下",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "波川",
|
||||
"StationNumber": "K08",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hakawa.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "小村神社前",
|
||||
"StationNumber": "K08-1",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/omurajinjamae.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "日下~土佐加茂",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "岡花",
|
||||
"StationNumber": "K10",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/okabana.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "佐川~斗賀野",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "襟野々",
|
||||
"StationNumber": "K14",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/erinono.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "多ノ郷~須崎",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "大間",
|
||||
"StationNumber": "K18",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/oma.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "須崎~土佐久礼",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "土佐新荘",
|
||||
"StationNumber": "K20",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-shinjo.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "安和",
|
||||
"StationNumber": "K21",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "影野~窪川",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "六反地",
|
||||
"StationNumber": "K24",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/rokutanji.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "仁井田",
|
||||
"StationNumber": "K25",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/niida.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "蔵本~府中",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "鮎喰",
|
||||
"StationNumber": "B03",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/akui.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "石井~牛島",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "下浦",
|
||||
"StationNumber": "B06",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shimoura.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "牛島~鴨島",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "麻植塚",
|
||||
"StationNumber": "B08",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/oezuka.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "鴨島~阿波川島",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "西麻植",
|
||||
"StationNumber": "B10",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nishi-oe.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "山瀬~川田",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "阿波山川",
|
||||
"StationNumber": "B14",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-yamakawa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "貞光~江口",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "阿波半田",
|
||||
"StationNumber": "B19",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-handa.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "江口~阿波加茂",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "三加茂",
|
||||
"StationNumber": "B21",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/mikamo.pdf"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"BetweenStation": "鳴門~池谷",
|
||||
"Datas": [
|
||||
{
|
||||
"StationName": "撫養",
|
||||
"StationNumber": "N09",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/muya.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "金比羅前",
|
||||
"StationNumber": "N08",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kompiramae.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "教会前",
|
||||
"StationNumber": "N07",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kyokaimae.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "立道",
|
||||
"StationNumber": "N06",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tatsumichi.pdf"
|
||||
},
|
||||
{
|
||||
"StationName": "阿波大谷",
|
||||
"StationNumber": "N05",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-otani.pdf"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,74 @@
|
||||
[
|
||||
{
|
||||
"StartStationName": "坂出",
|
||||
"EndStationName": "宇多津",
|
||||
"LineName": "seto",
|
||||
"Point": "Up",
|
||||
"Half": "F-End",
|
||||
"DispPos": "seto_0_児島"
|
||||
},
|
||||
{
|
||||
"StartStationName": "多度津",
|
||||
"EndStationName": "海岸寺",
|
||||
"LineName": "dosan",
|
||||
"Point": "Down",
|
||||
"Half": "Start",
|
||||
"DispPos": "dosan_0_多度津"
|
||||
},
|
||||
{
|
||||
"StartStationName": "向井原",
|
||||
"EndStationName": "伊予中山",
|
||||
"LineName": "uwajima2",
|
||||
"Point": "Up",
|
||||
"Half": "Start",
|
||||
"DispPos": "uwajima2_0_向井原"
|
||||
},
|
||||
{
|
||||
"StartStationName": "新谷",
|
||||
"EndStationName": "伊予大洲",
|
||||
"LineName": "uwajima2",
|
||||
"Point": "Up",
|
||||
"Half": "End",
|
||||
"DispPos": "uwajima2_3_伊予大洲"
|
||||
},
|
||||
{
|
||||
"StartStationName": "箸蔵",
|
||||
"EndStationName": "佃",
|
||||
"LineName": "tokushima",
|
||||
"Point": "Down",
|
||||
"Half": "End",
|
||||
"DispPos": "tokushima_16_佃"
|
||||
},
|
||||
{
|
||||
"StartStationName": "吉成",
|
||||
"EndStationName": "佐古",
|
||||
"LineName": "tokushima",
|
||||
"Point": "Up",
|
||||
"Half": "End",
|
||||
"DispPos": "tokushima_0_徳島"
|
||||
},
|
||||
{
|
||||
"StartStationName": "佐古",
|
||||
"EndStationName": "蔵本",
|
||||
"LineName": "koutoku",
|
||||
"Point": "Up",
|
||||
"Half": "Start",
|
||||
"DispPos": "koutoku_19_佐古"
|
||||
},
|
||||
{
|
||||
"StartStationName": "辻",
|
||||
"EndStationName": "佃",
|
||||
"LineName": "dosan",
|
||||
"Point": "Up",
|
||||
"Half": "End",
|
||||
"DispPos": "dosan_7_佃"
|
||||
},
|
||||
{
|
||||
"StartStationName": "板東",
|
||||
"EndStationName": "池谷",
|
||||
"LineName": "naruto",
|
||||
"Point": "Down",
|
||||
"Half": "End",
|
||||
"DispPos": "naruto_0_鳴門"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,10 @@
|
||||
[
|
||||
{
|
||||
"TrainNum": "1219M",
|
||||
"String": "※土曜・休日は多度津-琴平間運休"
|
||||
},
|
||||
{
|
||||
"TrainNum": "5223M",
|
||||
"String": "※休日は高松-多度津間運休"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,20 @@
|
||||
[
|
||||
"70",
|
||||
"71",
|
||||
"73",
|
||||
"74",
|
||||
"75",
|
||||
"76",
|
||||
"3070",
|
||||
"3071",
|
||||
"3072",
|
||||
"3073",
|
||||
"3076",
|
||||
"3077",
|
||||
"3078",
|
||||
"3079",
|
||||
"8070",
|
||||
"8071",
|
||||
"8072",
|
||||
"8077"
|
||||
]
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,32 @@
|
||||
[
|
||||
{
|
||||
"Line": "tokushimaa",
|
||||
"Datas": [
|
||||
{
|
||||
"Name": "徳島",
|
||||
"Color": "koutoku"
|
||||
},
|
||||
{
|
||||
"Name": "徳島~佐古",
|
||||
"Color": "koutoku"
|
||||
},
|
||||
{
|
||||
"Name": "佃~阿波池田",
|
||||
"Color": "dosan"
|
||||
},
|
||||
{
|
||||
"Name": "阿波池田",
|
||||
"Color": "dosan"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Line": "setoa",
|
||||
"Datas": [
|
||||
{
|
||||
"Name": "児島",
|
||||
"Color": "other"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,80 @@
|
||||
[
|
||||
{
|
||||
"LineName": "yosan",
|
||||
"Position": "end",
|
||||
"OtherLineName": "uwajima",
|
||||
"DispPos": "uwajima_0_松山"
|
||||
},
|
||||
{
|
||||
"LineName": "yosan",
|
||||
"Position": "start",
|
||||
"OtherLineName": "koutoku",
|
||||
"DispPos": "koutoku_0_高松"
|
||||
},
|
||||
{
|
||||
"LineName": "uwajima",
|
||||
"Position": "start",
|
||||
"OtherLineName": "yosan",
|
||||
"DispPos": "yosan_42_松山"
|
||||
},
|
||||
{
|
||||
"LineName": "uwajima2",
|
||||
"Position": "start",
|
||||
"OtherLineName": "uwajima",
|
||||
"DispPos": "uwajima_3_向井原"
|
||||
},
|
||||
{
|
||||
"LineName": "uwajima2",
|
||||
"Position": "end",
|
||||
"OtherLineName": "uwajima",
|
||||
"DispPos": "uwajima_8_伊予大洲"
|
||||
},
|
||||
{
|
||||
"LineName": "seto",
|
||||
"Position": "end",
|
||||
"OtherLineName": "yosan",
|
||||
"DispPos": "yosan_3_坂出"
|
||||
},
|
||||
{
|
||||
"LineName": "dosan",
|
||||
"Position": "start",
|
||||
"OtherLineName": "yosan",
|
||||
"DispPos": "yosan_6_多度津"
|
||||
},
|
||||
{
|
||||
"LineName": "dosan",
|
||||
"Position": "end",
|
||||
"OtherLineName": "dosan2",
|
||||
"DispPos": "dosan2_0_高知"
|
||||
},
|
||||
{
|
||||
"LineName": "tokushima",
|
||||
"Position": "start",
|
||||
"OtherLineName": "koutoku",
|
||||
"DispPos": "koutoku_20_徳島"
|
||||
},
|
||||
{
|
||||
"LineName": "koutoku",
|
||||
"Position": "start",
|
||||
"OtherLineName": "yosan",
|
||||
"DispPos": "yosan_0_高松"
|
||||
},
|
||||
{
|
||||
"LineName": "dosan2",
|
||||
"Position": "start",
|
||||
"OtherLineName": "dosan",
|
||||
"DispPos": "dosan_25_高知"
|
||||
},
|
||||
{
|
||||
"LineName": "tokushima",
|
||||
"Position": "end",
|
||||
"OtherLineName": "dosan",
|
||||
"DispPos": "dosan_8_阿波池田"
|
||||
},
|
||||
{
|
||||
"LineName": "naruto",
|
||||
"Position": "end",
|
||||
"OtherLineName": "koutoku",
|
||||
"DispPos": "koutoku_16_池谷"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,7 @@
|
||||
[
|
||||
"伊予灘ものがたり",
|
||||
"千年ものがたり",
|
||||
"アンパンマントロッコ",
|
||||
"夜明けのものがたり",
|
||||
"藍よしのがわトロッコ"
|
||||
]
|
||||
@@ -0,0 +1,272 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "多度津",
|
||||
"Station_EN": "Tadotsu",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "D12",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tadotsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.271088,133.756735",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/tadotsu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "金蔵寺",
|
||||
"Station_EN": "Konzōji",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "D13",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/konzoji.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.247861,133.777594",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "善通寺",
|
||||
"Station_EN": "Zentsūji",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "D14",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/zentsuji.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.229958,133.789141",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/zentsuji/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "琴平",
|
||||
"Station_EN": "Kotohira",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "D15",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kotohira.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.191903,133.821295",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kotohira/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "塩入",
|
||||
"Station_EN": "Shioiri",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "D16",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shioiri.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.156034,133.849974",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "讃岐財田",
|
||||
"Station_EN": "Sanuki-Saida",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "D18",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-saida.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.117586,133.814181",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "坪尻",
|
||||
"Station_EN": "Tsubojiri",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "D19",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tsubojiri.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.054035,133.823675",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "箸蔵",
|
||||
"Station_EN": "Hashikura",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "D20",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hashikura.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.040343,133.848761",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "佃",
|
||||
"Station_EN": "Tsukuda",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "D21",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tsukuda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.032458,133.857363",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波池田",
|
||||
"Station_EN": "Awa-Ikeda",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "D22",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-ikeda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.027177,133.804619",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/awaikeda/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "三縄",
|
||||
"Station_EN": "Minawa",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "D23",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/minawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.006837,133.787427",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波川口",
|
||||
"Station_EN": "Awa-Kawaguchi",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "D25",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-kawaguchi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.963705,133.754617",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "小歩危",
|
||||
"Station_EN": "Koboke",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "D26",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/koboke.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.923338,133.758747",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "大歩危",
|
||||
"Station_EN": "Ōboke",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "D27",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/oboke.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.876483,133.767298",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/oboke/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐岩原",
|
||||
"Station_EN": "Tosa-Iwahara",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "D28",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-iwahara.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.822635,133.788204",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "豊永",
|
||||
"Station_EN": "Toyonaga",
|
||||
"MyStation": "14",
|
||||
"StationNumber": "D29",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/toyonaga.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.796841,133.759716",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "大田口",
|
||||
"Station_EN": "Ōtaguchi",
|
||||
"MyStation": "15",
|
||||
"StationNumber": "D30",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/otaguchi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.785517,133.726602",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "大杉",
|
||||
"Station_EN": "Ōsugi",
|
||||
"MyStation": "16",
|
||||
"StationNumber": "D32",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/osugi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.760938,133.664483",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐北川",
|
||||
"Station_EN": "Tosa-Kitagawa",
|
||||
"MyStation": "17",
|
||||
"StationNumber": "D33",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-kitagawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.714781,133.686312",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "繁藤",
|
||||
"Station_EN": "Shigetō",
|
||||
"MyStation": "18",
|
||||
"StationNumber": "D35",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shigeto.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.680386,133.6902",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "新改",
|
||||
"Station_EN": "Shingai",
|
||||
"MyStation": "19",
|
||||
"StationNumber": "D36",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shingai.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.649629,133.695788",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐山田",
|
||||
"Station_EN": "Tosa-Yamada",
|
||||
"MyStation": "20",
|
||||
"StationNumber": "D37",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-yamada.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.607099,133.684992",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/tosayamada/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "後免",
|
||||
"Station_EN": "Gomen",
|
||||
"MyStation": "21",
|
||||
"StationNumber": "D40",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/gomen.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.579234,133.645357",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/gomen/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐大津",
|
||||
"Station_EN": "Tosa-Ōtsu",
|
||||
"MyStation": "22",
|
||||
"StationNumber": "D41",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-otsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.576384,133.611446",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐一宮",
|
||||
"Station_EN": "Tosa-Ikku",
|
||||
"MyStation": "23",
|
||||
"StationNumber": "D43",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-ikku.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.579247,133.576891",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "薊野",
|
||||
"Station_EN": "Azōno",
|
||||
"MyStation": "24",
|
||||
"StationNumber": "D44",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/azono.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.578616,133.560692",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "高知",
|
||||
"Station_EN": "Kōchi",
|
||||
"MyStation": "25",
|
||||
"StationNumber": "D45",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kochi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.566525,133.543638",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kochi/"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,152 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "高知",
|
||||
"Station_EN": "Kōchi",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "K00",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kochi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.566525,133.543638",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kochi/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "旭",
|
||||
"Station_EN": "Asahi",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "K03",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/asahi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.558853,133.508817",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "朝倉",
|
||||
"Station_EN": "Asakura",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "K05",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/asakura.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.551389,133.485354",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/asakura/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊野",
|
||||
"Station_EN": "Ino",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "K07",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ino.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.547505,133.430131",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "日下",
|
||||
"Station_EN": "Kusaka",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "K09",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kusaka.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.53338,133.371236",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐加茂",
|
||||
"Station_EN": "Tosa-Kamo",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "K11",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-kamo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.523569,133.321135",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "西佐川",
|
||||
"Station_EN": "Nishi-Sakawa",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "K12",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nishi-sakawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.512623,133.286508",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "佐川",
|
||||
"Station_EN": "Sakawa",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "K13",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sakawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.500105,133.292438",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/sakawa/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "斗賀野",
|
||||
"Station_EN": "Togano",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "K15",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/togano.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.475415,133.286372",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "吾桑",
|
||||
"Station_EN": "Asō",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "K16",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/aso.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.430181,133.295638",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "多ノ郷",
|
||||
"Station_EN": "Ōnogō",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "K17",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/onogo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.410727,133.294630",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "須崎",
|
||||
"Station_EN": "Susaki",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "K19",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/susaki.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.392624,133.293189",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/susaki/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "土佐久礼",
|
||||
"Station_EN": "Tosa-Kure",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "K22",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tosa-kure.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.329028,133.226483",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "影野",
|
||||
"Station_EN": "Kageno",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "K23",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kageno.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.275882,133.17358",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "窪川",
|
||||
"Station_EN": "Kubokawa",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "K26",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kubokawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.212436,133.13716",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kubokawa/"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,222 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "高松",
|
||||
"Station_EN": "Takamatsu",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "T28",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takamatsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.350682,134.046938",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/takamatsu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "栗林",
|
||||
"Station_EN": "Ritsurin",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "T25",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ritsurin.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.332203,134.053588",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/ritsurin/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "屋島",
|
||||
"Station_EN": "Yashima",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "T23",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yashima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.336655,134.109102",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/yashima/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "八栗口",
|
||||
"Station_EN": "Yakuriguchi",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "T21",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yakuriguchi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.339097,134.136488",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "志度",
|
||||
"Station_EN": "Shido",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "T19",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shido.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.321624,134.1728",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/shido/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "オレンジタウン",
|
||||
"Station_EN": "Orange-Town",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "T18",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/orange-town.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.301827,134.180946",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "造田",
|
||||
"Station_EN": "Zōda",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "T17",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/zoda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.282822,134.185946",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "讃岐津田",
|
||||
"Station_EN": "Sanuki-Tsuda",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "T15",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-tsuda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.288442,134.248154",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "鶴羽",
|
||||
"Station_EN": "Tsuruwa",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "T14",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tsuruwa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.280008,134.273842",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "丹生",
|
||||
"Station_EN": "Nibu",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "T13",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nibu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.254508,134.301487",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "三本松",
|
||||
"Station_EN": "Sambommatsu",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "T12",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sambommatsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.251538,134.334473",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/sanbonmatsu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "讃岐白鳥",
|
||||
"Station_EN": "Sanuki-Shirotori",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "T11",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-shirotori.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.243642,134.366203",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "引田",
|
||||
"Station_EN": "Hiketa",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "T10",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hiketa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.224467,134.402083",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "讃岐相生",
|
||||
"Station_EN": "Sanuki-Aioi",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "T09",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sanuki-aioi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.211994,134.424534",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波大宮",
|
||||
"Station_EN": "Awa-Ōmiya",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "T08",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-omiya.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.17859,134.448947",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "板野",
|
||||
"Station_EN": "Itano",
|
||||
"MyStation": "14",
|
||||
"StationNumber": "T07",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/itano.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.142193,134.46597",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/itano/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "板東",
|
||||
"Station_EN": "Bandō",
|
||||
"MyStation": "15",
|
||||
"StationNumber": "T05",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/bando.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.155432,134.506866",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "池谷",
|
||||
"Station_EN": "Ikenotani",
|
||||
"MyStation": "16",
|
||||
"StationNumber": "T04",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ikenotani.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.15293,134.528905",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "勝瑞",
|
||||
"Station_EN": "Shōzui",
|
||||
"MyStation": "17",
|
||||
"StationNumber": "T03",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shozui.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.128644,134.528267",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "吉成",
|
||||
"Station_EN": "Yoshinari",
|
||||
"MyStation": "18",
|
||||
"StationNumber": "T02",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yoshinari.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.118511,134.530745",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "佐古",
|
||||
"Station_EN": "Sako",
|
||||
"MyStation": "19",
|
||||
"StationNumber": "T01",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sako.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.080616,134.538576",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "徳島",
|
||||
"Station_EN": "Tokushima",
|
||||
"MyStation": "20",
|
||||
"StationNumber": "T00",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tokushima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.074642,134.550764",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/tokushima/"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "鳴門",
|
||||
"Station_EN": "Naruto",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "N10",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/naruto.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.17925,134.608536",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/naruto/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "池谷",
|
||||
"Station_EN": "Ikenotani",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "N04",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ikenotani.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.15293,134.528905",
|
||||
"JrHpUrl": ""
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,192 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "徳島",
|
||||
"Station_EN": "Tokushima",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "T00",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tokushima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.074642,134.550764",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/tokushima/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "佐古",
|
||||
"Station_EN": "Sako",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "B01",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sako.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.080616,134.538576",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "蔵本",
|
||||
"Station_EN": "Kuramoto",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "B02",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kuramoto.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.079332,134.518705",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "府中",
|
||||
"Station_EN": "Kō",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "B04",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ko.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.074134,134.482939",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "石井",
|
||||
"Station_EN": "Ishii",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "B05",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ishii.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.070188,134.444343",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "牛島",
|
||||
"Station_EN": "Ushinoshima",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "B07",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ushinoshima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.076709,134.397553",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "鴨島",
|
||||
"Station_EN": "Kamojima",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "B09",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kamojima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.073615,134.356559",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kamojima/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波川島",
|
||||
"Station_EN": "Awa-Kawashima",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "B11",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-kawashima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.061857,134.320768",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "学",
|
||||
"Station_EN": "Gaku",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "B12",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/gaku.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.057766,134.286411",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "山瀬",
|
||||
"Station_EN": "Yamase",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "B13",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yamase.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.060226,134.256297",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "川田",
|
||||
"Station_EN": "Kawata",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "B15",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kawata.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.061533,134.204329",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "穴吹",
|
||||
"Station_EN": "Anabuki",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "B16",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/anabuki.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.05615,134.163064",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/anabuki/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "小島",
|
||||
"Station_EN": "Oshima",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "B17",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/oshima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.050665,134.106521",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "貞光",
|
||||
"Station_EN": "Sadamitsu",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "B18",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sadamitsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.039354,134.058774",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "江口",
|
||||
"Station_EN": "Eguchi",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "B20",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/eguchi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.037364,133.973229",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波加茂",
|
||||
"Station_EN": "Awa-Kamo",
|
||||
"MyStation": "14",
|
||||
"StationNumber": "B22",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-kamo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.037063,133.926505",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "辻",
|
||||
"Station_EN": "Tsuji",
|
||||
"MyStation": "15",
|
||||
"StationNumber": "B23",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tsuji.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.028992,133.873234",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "佃",
|
||||
"Station_EN": "Tsukuda",
|
||||
"MyStation": "16",
|
||||
"StationNumber": "B24",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tsukuda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.032458,133.857363",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "阿波池田",
|
||||
"Station_EN": "Awa-Ikeda",
|
||||
"MyStation": "17",
|
||||
"StationNumber": "B25",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awa-ikeda.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.027177,133.804619",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/awaikeda/"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,212 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "松山",
|
||||
"Station_EN": "Matsuyama",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "U00",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/matsuyama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.84039,132.75139",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/matsuyama/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "市坪",
|
||||
"Station_EN": "Ichitsubo",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "U01",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ichitsubo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.809441,132.749325",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "北伊予",
|
||||
"Station_EN": "Kita-Iyo",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "U02",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kita-iyo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.787699,132.748963",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予市",
|
||||
"Station_EN": "Iyoshi",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "U05",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyoshi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.755352,132.702327",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "向井原",
|
||||
"Station_EN": "Mukaibara",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "U06",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/mukaibara.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.736043,132.695825",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予中山",
|
||||
"Station_EN": "Iyo-Nakayama",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "U08",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-nakayama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.649292,132.711857",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予立川",
|
||||
"Station_EN": "Iyo-Tachikawa",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "U09",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-tachikawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.601197,132.677898",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "内子",
|
||||
"Station_EN": "Uchiko",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "U10",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/uchiko.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.549461,132.646304",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/uchiko/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "新谷",
|
||||
"Station_EN": "Niiya",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "U13",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/niiya.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.534106,132.59904",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予大洲",
|
||||
"Station_EN": "Iyo-Ōzu",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "U14",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-ozu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.518495,132.544878",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/iyozu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予平野",
|
||||
"Station_EN": "Iyo-Hirano",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "U16",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-hirano.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.495827,132.518108",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "千丈",
|
||||
"Station_EN": "Senjō",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "U17",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/senjo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.465646,132.457416",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "八幡浜",
|
||||
"Station_EN": "Yawatahama",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "U18",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/yawatahama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.458146,132.436002",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/yawatahama/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "双岩",
|
||||
"Station_EN": "Futaiwa",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "U19",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/futaiwa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.424669,132.457934",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予石城",
|
||||
"Station_EN": "Iyo-Iwaki",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "U20",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-iwaki.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.391413,132.473259",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "卯之町",
|
||||
"Station_EN": "Unomachi",
|
||||
"MyStation": "14",
|
||||
"StationNumber": "U22",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/unomachi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.363175,132.509959",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/unomachi/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "下宇和",
|
||||
"Station_EN": "Shimo-Uwa",
|
||||
"MyStation": "15",
|
||||
"StationNumber": "U23",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/shimo-uwa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.349786,132.531172",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "立間",
|
||||
"Station_EN": "Tachima",
|
||||
"MyStation": "16",
|
||||
"StationNumber": "U24",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tachima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.296721,132.539509",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予吉田",
|
||||
"Station_EN": "Iyo-Yoshida",
|
||||
"MyStation": "17",
|
||||
"StationNumber": "U25",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-yoshida.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.273287,132.544098",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "北宇和島",
|
||||
"Station_EN": "Kita-Uwajima",
|
||||
"MyStation": "18",
|
||||
"StationNumber": "U27",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kita-uwajima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.238636,132.569909",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "宇和島",
|
||||
"Station_EN": "Uwajima",
|
||||
"MyStation": "19",
|
||||
"StationNumber": "U28",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/uwajima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.225793,132.567498",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/uwajima/"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,442 @@
|
||||
[
|
||||
{
|
||||
"Station_JP": "高松",
|
||||
"Station_EN": "Takamatsu",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "Y00",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takamatsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.350682,134.046938",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/takamatsu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "鬼無",
|
||||
"Station_EN": "Kinashi",
|
||||
"MyStation": "0",
|
||||
"StationNumber": "Y02",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kinashi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.325494,133.993861",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "端岡",
|
||||
"Station_EN": "Hashioka",
|
||||
"MyStation": "1",
|
||||
"StationNumber": "Y03",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hashioka.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.305027,133.967643",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "鴨川",
|
||||
"Station_EN": "Kamogawa",
|
||||
"MyStation": "2",
|
||||
"StationNumber": "Y06",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kamogawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.306877,133.905229",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "坂出",
|
||||
"Station_EN": "Sakaide",
|
||||
"MyStation": "3",
|
||||
"StationNumber": "Y08",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sakaide.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.313222,133.856325",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/sakaide/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "宇多津",
|
||||
"Station_EN": "Utazu",
|
||||
"MyStation": "4",
|
||||
"StationNumber": "Y09",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/utazu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.306379,133.813784",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/utazu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "丸亀",
|
||||
"Station_EN": "Marugame",
|
||||
"MyStation": "5",
|
||||
"StationNumber": "Y10",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/marugame.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.292006,133.793175",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/marugame/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "多度津",
|
||||
"Station_EN": "Tadotsu",
|
||||
"MyStation": "6",
|
||||
"StationNumber": "Y12",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/tadotsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.271088,133.756735",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/tadotsu/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "海岸寺",
|
||||
"Station_EN": "Kaiganji",
|
||||
"MyStation": "7",
|
||||
"StationNumber": "Y13",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kaiganji.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.253932,133.729307",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "詫間",
|
||||
"Station_EN": "Takuma",
|
||||
"MyStation": "8",
|
||||
"StationNumber": "Y14",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takuma.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.220826,133.692737",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/takuma/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "高瀬",
|
||||
"Station_EN": "Takase",
|
||||
"MyStation": "9",
|
||||
"StationNumber": "Y16",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takase.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.184083,133.711397",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "本山",
|
||||
"Station_EN": "Motoyama",
|
||||
"MyStation": "10",
|
||||
"StationNumber": "Y18",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/motoyama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.146075,133.686473",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "観音寺",
|
||||
"Station_EN": "Kan-onji",
|
||||
"MyStation": "11",
|
||||
"StationNumber": "Y19",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kan-onji.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.124478,133.655709",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kanonji/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "豊浜",
|
||||
"Station_EN": "Toyohama",
|
||||
"MyStation": "12",
|
||||
"StationNumber": "Y20",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/toyohama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.079775,133.644206",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "箕浦",
|
||||
"Station_EN": "Minoura",
|
||||
"MyStation": "13",
|
||||
"StationNumber": "Y21",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/minoura.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.048043,133.618998",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "川之江",
|
||||
"Station_EN": "Kawanoe",
|
||||
"MyStation": "14",
|
||||
"StationNumber": "Y22",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kawanoe.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.014209,133.575856",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/kawanoe/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予三島",
|
||||
"Station_EN": "Iyo-Mishima",
|
||||
"MyStation": "15",
|
||||
"StationNumber": "Y23",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-mishima.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.979583,133.541984",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/iyomishima/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予寒川",
|
||||
"Station_EN": "Iyo-Sangawa",
|
||||
"MyStation": "16",
|
||||
"StationNumber": "Y24",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-sangawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.967803,133.500153",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予土居",
|
||||
"Station_EN": "Iyo-Doi",
|
||||
"MyStation": "17",
|
||||
"StationNumber": "Y26",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-doi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.959024,133.428294",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "関川",
|
||||
"Station_EN": "Sekigawa",
|
||||
"MyStation": "18",
|
||||
"StationNumber": "Y27",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/sekigawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.955777,133.392567",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "多喜浜",
|
||||
"Station_EN": "Takihama",
|
||||
"MyStation": "19",
|
||||
"StationNumber": "Y28",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/takihama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.970564,133.32415",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "新居浜",
|
||||
"Station_EN": "Niihama",
|
||||
"MyStation": "20",
|
||||
"StationNumber": "Y29",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/niihama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.947996,133.294341",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/niihama/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "中萩",
|
||||
"Station_EN": "Nakahagi",
|
||||
"MyStation": "21",
|
||||
"StationNumber": "Y30",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nakahagi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.926168,133.253391",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予西条",
|
||||
"Station_EN": "Iyo-Saijo",
|
||||
"MyStation": "22",
|
||||
"StationNumber": "Y31",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-saijo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.912492,133.187578",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/iyosaijo/index.html"
|
||||
},
|
||||
{
|
||||
"Station_JP": "石鎚山",
|
||||
"Station_EN": "Ishizuchiyama",
|
||||
"MyStation": "23",
|
||||
"StationNumber": "Y32",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/ishizuchiyama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.895746,133.157257",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予小松",
|
||||
"Station_EN": "Iyo-Komatsu",
|
||||
"MyStation": "24",
|
||||
"StationNumber": "Y34",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-komatsu.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.897567,133.116717",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "壬生川",
|
||||
"Station_EN": "Nyūgawa",
|
||||
"MyStation": "25",
|
||||
"StationNumber": "Y36",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/nyugawa.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.929851,133.08552",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/nyugawa/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予三芳",
|
||||
"Station_EN": "Iyo-Miyoshi",
|
||||
"MyStation": "26",
|
||||
"StationNumber": "Y37",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-miyoshi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.954251,133.06422",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予桜井",
|
||||
"Station_EN": "Iyo-Sakurai",
|
||||
"MyStation": "27",
|
||||
"StationNumber": "Y38",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-sakurai.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.012073,133.03593",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予富田",
|
||||
"Station_EN": "Iyo-Tomita",
|
||||
"MyStation": "28",
|
||||
"StationNumber": "Y39",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-tomita.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.036447,133.008989",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "今治",
|
||||
"Station_EN": "Imabari",
|
||||
"MyStation": "29",
|
||||
"StationNumber": "Y40",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/imabari.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.064167,132.993655",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/imabari/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "波止浜",
|
||||
"Station_EN": "Hashihama",
|
||||
"MyStation": "30",
|
||||
"StationNumber": "Y41",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/hashihama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.098067,132.968786",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "波方",
|
||||
"Station_EN": "Namikata",
|
||||
"MyStation": "31",
|
||||
"StationNumber": "Y42",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/namikata.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.095134,132.941888",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "大西",
|
||||
"Station_EN": "Ōnishi",
|
||||
"MyStation": "32",
|
||||
"StationNumber": "Y43",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/onishi.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.066125,132.929367",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予亀岡",
|
||||
"Station_EN": "Iyo-kameoka",
|
||||
"MyStation": "33",
|
||||
"StationNumber": "Y44",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-kameoka.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.053886,132.874104",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "菊間",
|
||||
"Station_EN": "Kikuma",
|
||||
"MyStation": "34",
|
||||
"StationNumber": "Y45",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/kikuma.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.033421,132.840883",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "浅海",
|
||||
"Station_EN": "Asanami",
|
||||
"MyStation": "35",
|
||||
"StationNumber": "Y46",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/asanami.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/34.010028,132.802691",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "大浦",
|
||||
"Station_EN": "Ōura",
|
||||
"MyStation": "36",
|
||||
"StationNumber": "Y47",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/oura.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.999461,132.77555",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予北条",
|
||||
"Station_EN": "Iyo-Hōjō",
|
||||
"MyStation": "37",
|
||||
"StationNumber": "Y48",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-hojo.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.972595,132.775097",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/iyohojo/"
|
||||
},
|
||||
{
|
||||
"Station_JP": "粟井",
|
||||
"Station_EN": "Awai",
|
||||
"MyStation": "38",
|
||||
"StationNumber": "Y50",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/awai.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.942729,132.77044",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "堀江",
|
||||
"Station_EN": "Horie",
|
||||
"MyStation": "39",
|
||||
"StationNumber": "Y52",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/horie.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.905558,132.753212",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "伊予和気",
|
||||
"Station_EN": "Iyo-Wake",
|
||||
"MyStation": "40",
|
||||
"StationNumber": "Y53",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/iyo-wake.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.889798,132.740708",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "三津浜",
|
||||
"Station_EN": "Mitsuhama",
|
||||
"MyStation": "41",
|
||||
"StationNumber": "Y54",
|
||||
"DispNum": "2",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/mitsuhama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.861165,132.728612",
|
||||
"JrHpUrl": ""
|
||||
},
|
||||
{
|
||||
"Station_JP": "松山",
|
||||
"Station_EN": "Matsuyama",
|
||||
"MyStation": "42",
|
||||
"StationNumber": "Y55",
|
||||
"DispNum": "3",
|
||||
"StationTimeTable": "http://www.jr-shikoku.co.jp/01_trainbus/jikoku/pdf/matsuyama.pdf",
|
||||
"StationMap": "https://www.google.co.jp/maps/place/33.84039,132.75139",
|
||||
"JrHpUrl": "http://www.jr-shikoku.co.jp/01_trainbus/kakueki/matsuyama/"
|
||||
}
|
||||
]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user