forked from Ninjalama/streamyfin_mirror
Compare commits
15 Commits
refactor/p
...
refactor/b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6752888bb0 | ||
|
|
b73a33b05b | ||
|
|
e3baa2f58b | ||
|
|
ef7fbc985f | ||
|
|
381c6701f2 | ||
|
|
71da79ee6a | ||
|
|
5cff323871 | ||
|
|
39b7c66d34 | ||
|
|
0a098bf26e | ||
|
|
f6cb90e5dc | ||
|
|
b878e93dec | ||
|
|
66cd36a899 | ||
|
|
91b926e6c2 | ||
|
|
d4cc7499c0 | ||
|
|
6012f8c8d2 |
4
app.json
4
app.json
@@ -2,7 +2,7 @@
|
|||||||
"expo": {
|
"expo": {
|
||||||
"name": "Streamyfin",
|
"name": "Streamyfin",
|
||||||
"slug": "streamyfin",
|
"slug": "streamyfin",
|
||||||
"version": "0.17.0",
|
"version": "0.18.0",
|
||||||
"orientation": "default",
|
"orientation": "default",
|
||||||
"icon": "./assets/images/icon.png",
|
"icon": "./assets/images/icon.png",
|
||||||
"scheme": "streamyfin",
|
"scheme": "streamyfin",
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
},
|
},
|
||||||
"android": {
|
"android": {
|
||||||
"jsEngine": "hermes",
|
"jsEngine": "hermes",
|
||||||
"versionCode": 43,
|
"versionCode": 46,
|
||||||
"adaptiveIcon": {
|
"adaptiveIcon": {
|
||||||
"foregroundImage": "./assets/images/adaptive_icon.png"
|
"foregroundImage": "./assets/images/adaptive_icon.png"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Chromecast } from "@/components/Chromecast";
|
|||||||
import { HeaderBackButton } from "@/components/common/HeaderBackButton";
|
import { HeaderBackButton } from "@/components/common/HeaderBackButton";
|
||||||
import { nestedTabPageScreenOptions } from "@/components/stacks/NestedTabPageStack";
|
import { nestedTabPageScreenOptions } from "@/components/stacks/NestedTabPageStack";
|
||||||
import { useDownload } from "@/providers/DownloadProvider";
|
import { useDownload } from "@/providers/DownloadProvider";
|
||||||
import { Feather } from "@expo/vector-icons";
|
import { Feather, Ionicons } from "@expo/vector-icons";
|
||||||
import { Stack, useRouter } from "expo-router";
|
import { Stack, useRouter } from "expo-router";
|
||||||
import { Platform, TouchableOpacity, View } from "react-native";
|
import { Platform, TouchableOpacity, View } from "react-native";
|
||||||
|
|
||||||
@@ -45,6 +45,18 @@ export default function IndexLayout() {
|
|||||||
name="settings"
|
name="settings"
|
||||||
options={{
|
options={{
|
||||||
title: "Settings",
|
title: "Settings",
|
||||||
|
headerRight: () => (
|
||||||
|
<View className="">
|
||||||
|
<Ionicons
|
||||||
|
name="file-tray-full-outline"
|
||||||
|
size={22}
|
||||||
|
color="white"
|
||||||
|
onPress={() => {
|
||||||
|
router.push("/logs");
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
),
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
{Object.entries(nestedTabPageScreenOptions).map(([name, options]) => (
|
{Object.entries(nestedTabPageScreenOptions).map(([name, options]) => (
|
||||||
|
|||||||
@@ -264,6 +264,7 @@ export default function index() {
|
|||||||
fields: ["MediaSourceCount"],
|
fields: ["MediaSourceCount"],
|
||||||
limit: 20,
|
limit: 20,
|
||||||
enableImageTypes: ["Primary", "Backdrop", "Thumb"],
|
enableImageTypes: ["Primary", "Backdrop", "Thumb"],
|
||||||
|
enableResumable: false,
|
||||||
})
|
})
|
||||||
).data.Items || [],
|
).data.Items || [],
|
||||||
type: "ScrollingCollectionList",
|
type: "ScrollingCollectionList",
|
||||||
|
|||||||
@@ -20,12 +20,6 @@ export default function settings() {
|
|||||||
const [api] = useAtom(apiAtom);
|
const [api] = useAtom(apiAtom);
|
||||||
const [user] = useAtom(userAtom);
|
const [user] = useAtom(userAtom);
|
||||||
|
|
||||||
const { data: logs } = useQuery({
|
|
||||||
queryKey: ["logs"],
|
|
||||||
queryFn: async () => readFromLog(),
|
|
||||||
refetchInterval: 1000,
|
|
||||||
});
|
|
||||||
|
|
||||||
const insets = useSafeAreaInsets();
|
const insets = useSafeAreaInsets();
|
||||||
|
|
||||||
const openQuickConnectAuthCodeInput = () => {
|
const openQuickConnectAuthCodeInput = () => {
|
||||||
@@ -129,28 +123,6 @@ export default function settings() {
|
|||||||
</Button>
|
</Button>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<View>
|
|
||||||
<Text className="font-bold text-lg mb-2">Logs</Text>
|
|
||||||
<View className="flex flex-col space-y-2">
|
|
||||||
{logs?.map((log, index) => (
|
|
||||||
<View key={index} className="bg-neutral-900 rounded-xl p-3">
|
|
||||||
<Text
|
|
||||||
className={`
|
|
||||||
mb-1
|
|
||||||
${log.level === "INFO" && "text-blue-500"}
|
|
||||||
${log.level === "ERROR" && "text-red-500"}
|
|
||||||
`}
|
|
||||||
>
|
|
||||||
{log.level}
|
|
||||||
</Text>
|
|
||||||
<Text className="text-xs">{log.message}</Text>
|
|
||||||
</View>
|
|
||||||
))}
|
|
||||||
{logs?.length === 0 && (
|
|
||||||
<Text className="opacity-50">No logs available</Text>
|
|
||||||
)}
|
|
||||||
</View>
|
|
||||||
</View>
|
|
||||||
</View>
|
</View>
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -32,7 +32,6 @@ import {
|
|||||||
tagsFilterAtom,
|
tagsFilterAtom,
|
||||||
yearFilterAtom,
|
yearFilterAtom,
|
||||||
} from "@/utils/atoms/filters";
|
} from "@/utils/atoms/filters";
|
||||||
import { orientationAtom } from "@/utils/atoms/orientation";
|
|
||||||
import {
|
import {
|
||||||
BaseItemDto,
|
BaseItemDto,
|
||||||
BaseItemDtoQueryResult,
|
BaseItemDtoQueryResult,
|
||||||
@@ -44,6 +43,7 @@ import {
|
|||||||
} from "@jellyfin/sdk/lib/utils/api";
|
} from "@jellyfin/sdk/lib/utils/api";
|
||||||
import { FlashList } from "@shopify/flash-list";
|
import { FlashList } from "@shopify/flash-list";
|
||||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||||
|
import { useOrientation } from "@/hooks/useOrientation";
|
||||||
|
|
||||||
const MemoizedTouchableItemRouter = React.memo(TouchableItemRouter);
|
const MemoizedTouchableItemRouter = React.memo(TouchableItemRouter);
|
||||||
|
|
||||||
@@ -60,12 +60,13 @@ const Page = () => {
|
|||||||
const [selectedTags, setSelectedTags] = useAtom(tagsFilterAtom);
|
const [selectedTags, setSelectedTags] = useAtom(tagsFilterAtom);
|
||||||
const [sortBy, _setSortBy] = useAtom(sortByAtom);
|
const [sortBy, _setSortBy] = useAtom(sortByAtom);
|
||||||
const [sortOrder, _setSortOrder] = useAtom(sortOrderAtom);
|
const [sortOrder, _setSortOrder] = useAtom(sortOrderAtom);
|
||||||
const [orientation] = useAtom(orientationAtom);
|
|
||||||
const [sortByPreference, setSortByPreference] = useAtom(sortByPreferenceAtom);
|
const [sortByPreference, setSortByPreference] = useAtom(sortByPreferenceAtom);
|
||||||
const [sortOrderPreference, setOderByPreference] = useAtom(
|
const [sortOrderPreference, setOderByPreference] = useAtom(
|
||||||
sortOrderPreferenceAtom
|
sortOrderPreferenceAtom
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const { orientation } = useOrientation();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const sop = getSortOrderPreference(libraryId, sortOrderPreference);
|
const sop = getSortOrderPreference(libraryId, sortOrderPreference);
|
||||||
if (sop) {
|
if (sop) {
|
||||||
@@ -106,11 +107,12 @@ const Page = () => {
|
|||||||
[libraryId, sortOrderPreference]
|
[libraryId, sortOrderPreference]
|
||||||
);
|
);
|
||||||
|
|
||||||
const getNumberOfColumns = useCallback(() => {
|
const nrOfCols = useMemo(() => {
|
||||||
if (orientation === ScreenOrientation.Orientation.PORTRAIT_UP) return 3;
|
if (screenWidth < 300) return 2;
|
||||||
if (screenWidth < 600) return 5;
|
if (screenWidth < 500) return 3;
|
||||||
if (screenWidth < 960) return 6;
|
if (screenWidth < 800) return 5;
|
||||||
if (screenWidth < 1280) return 7;
|
if (screenWidth < 1000) return 6;
|
||||||
|
if (screenWidth < 1500) return 7;
|
||||||
return 6;
|
return 6;
|
||||||
}, [screenWidth, orientation]);
|
}, [screenWidth, orientation]);
|
||||||
|
|
||||||
@@ -219,7 +221,7 @@ const Page = () => {
|
|||||||
|
|
||||||
const renderItem = useCallback(
|
const renderItem = useCallback(
|
||||||
({ item, index }: { item: BaseItemDto; index: number }) => (
|
({ item, index }: { item: BaseItemDto; index: number }) => (
|
||||||
<MemoizedTouchableItemRouter
|
<TouchableItemRouter
|
||||||
key={item.Id}
|
key={item.Id}
|
||||||
style={{
|
style={{
|
||||||
width: "100%",
|
width: "100%",
|
||||||
@@ -230,10 +232,10 @@ const Page = () => {
|
|||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
alignSelf:
|
alignSelf:
|
||||||
orientation === ScreenOrientation.Orientation.PORTRAIT_UP
|
orientation === ScreenOrientation.OrientationLock.PORTRAIT_UP
|
||||||
? index % 3 === 0
|
? index % nrOfCols === 0
|
||||||
? "flex-end"
|
? "flex-end"
|
||||||
: (index + 1) % 3 === 0
|
: (index + 1) % nrOfCols === 0
|
||||||
? "flex-start"
|
? "flex-start"
|
||||||
: "center"
|
: "center"
|
||||||
: "center",
|
: "center",
|
||||||
@@ -244,7 +246,7 @@ const Page = () => {
|
|||||||
<ItemPoster item={item} />
|
<ItemPoster item={item} />
|
||||||
<ItemCardText item={item} />
|
<ItemCardText item={item} />
|
||||||
</View>
|
</View>
|
||||||
</MemoizedTouchableItemRouter>
|
</TouchableItemRouter>
|
||||||
),
|
),
|
||||||
[orientation]
|
[orientation]
|
||||||
);
|
);
|
||||||
@@ -429,6 +431,7 @@ const Page = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<FlashList
|
<FlashList
|
||||||
|
key={orientation}
|
||||||
ListEmptyComponent={
|
ListEmptyComponent={
|
||||||
<View className="flex flex-col items-center justify-center h-full">
|
<View className="flex flex-col items-center justify-center h-full">
|
||||||
<Text className="font-bold text-xl text-neutral-500">No results</Text>
|
<Text className="font-bold text-xl text-neutral-500">No results</Text>
|
||||||
@@ -437,10 +440,10 @@ const Page = () => {
|
|||||||
contentInsetAdjustmentBehavior="automatic"
|
contentInsetAdjustmentBehavior="automatic"
|
||||||
data={flatData}
|
data={flatData}
|
||||||
renderItem={renderItem}
|
renderItem={renderItem}
|
||||||
extraData={orientation}
|
extraData={[orientation, nrOfCols]}
|
||||||
keyExtractor={keyExtractor}
|
keyExtractor={keyExtractor}
|
||||||
estimatedItemSize={244}
|
estimatedItemSize={244}
|
||||||
numColumns={getNumberOfColumns()}
|
numColumns={nrOfCols}
|
||||||
onEndReached={() => {
|
onEndReached={() => {
|
||||||
if (hasNextPage) {
|
if (hasNextPage) {
|
||||||
fetchNextPage();
|
fetchNextPage();
|
||||||
|
|||||||
@@ -22,11 +22,9 @@ import { Dimensions, Pressable, StatusBar, View } from "react-native";
|
|||||||
import { useSharedValue } from "react-native-reanimated";
|
import { useSharedValue } from "react-native-reanimated";
|
||||||
import Video, {
|
import Video, {
|
||||||
OnProgressData,
|
OnProgressData,
|
||||||
VideoRef,
|
|
||||||
SelectedTrack,
|
|
||||||
SelectedTrackType,
|
SelectedTrackType,
|
||||||
|
VideoRef,
|
||||||
} from "react-native-video";
|
} from "react-native-video";
|
||||||
import { WithDefault } from "react-native/Libraries/Types/CodegenTypes";
|
|
||||||
|
|
||||||
export default function page() {
|
export default function page() {
|
||||||
const { playSettings, playUrl, playSessionId } = usePlaySettings();
|
const { playSettings, playUrl, playSessionId } = usePlaySettings();
|
||||||
@@ -216,18 +214,28 @@ export default function page() {
|
|||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
style={{
|
style={{
|
||||||
|
flex: 1,
|
||||||
|
flexDirection: "column",
|
||||||
|
justifyContent: "center",
|
||||||
|
alignItems: "center",
|
||||||
width: screenDimensions.width,
|
width: screenDimensions.width,
|
||||||
height: screenDimensions.height,
|
height: screenDimensions.height,
|
||||||
position: "relative",
|
position: "relative",
|
||||||
}}
|
}}
|
||||||
className="flex flex-col items-center justify-center"
|
|
||||||
>
|
>
|
||||||
<StatusBar hidden />
|
<StatusBar hidden />
|
||||||
<Pressable
|
<Pressable
|
||||||
onPress={() => {
|
onPress={() => {
|
||||||
setShowControls(!showControls);
|
setShowControls(!showControls);
|
||||||
}}
|
}}
|
||||||
className="absolute z-0 h-full w-full"
|
style={{
|
||||||
|
position: "absolute",
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
width: screenDimensions.width,
|
||||||
|
height: screenDimensions.height,
|
||||||
|
zIndex: 0,
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<Video
|
<Video
|
||||||
ref={videoRef}
|
ref={videoRef}
|
||||||
|
|||||||
@@ -345,6 +345,13 @@ function Layout() {
|
|||||||
animation: "fade",
|
animation: "fade",
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
<Stack.Screen
|
||||||
|
name="logs"
|
||||||
|
options={{
|
||||||
|
presentation: "modal",
|
||||||
|
title: "Logs",
|
||||||
|
}}
|
||||||
|
/>
|
||||||
<Stack.Screen
|
<Stack.Screen
|
||||||
name="(auth)/play-offline-video"
|
name="(auth)/play-offline-video"
|
||||||
options={{
|
options={{
|
||||||
|
|||||||
160
app/login.tsx
160
app/login.tsx
@@ -2,10 +2,12 @@ import { Button } from "@/components/Button";
|
|||||||
import { Input } from "@/components/common/Input";
|
import { Input } from "@/components/common/Input";
|
||||||
import { Text } from "@/components/common/Text";
|
import { Text } from "@/components/common/Text";
|
||||||
import { apiAtom, useJellyfin } from "@/providers/JellyfinProvider";
|
import { apiAtom, useJellyfin } from "@/providers/JellyfinProvider";
|
||||||
|
import { writeToLog } from "@/utils/log";
|
||||||
import { Ionicons } from "@expo/vector-icons";
|
import { Ionicons } from "@expo/vector-icons";
|
||||||
import { PublicSystemInfo } from "@jellyfin/sdk/lib/generated-client";
|
import { PublicSystemInfo } from "@jellyfin/sdk/lib/generated-client";
|
||||||
import { getSystemApi } from "@jellyfin/sdk/lib/utils/api";
|
import { getSystemApi } from "@jellyfin/sdk/lib/utils/api";
|
||||||
import { useLocalSearchParams } from "expo-router";
|
import { Image } from "expo-image";
|
||||||
|
import { useLocalSearchParams, useRouter } from "expo-router";
|
||||||
import { useAtom } from "jotai";
|
import { useAtom } from "jotai";
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
import {
|
import {
|
||||||
@@ -26,6 +28,7 @@ const Login: React.FC = () => {
|
|||||||
const { setServer, login, removeServer, initiateQuickConnect } =
|
const { setServer, login, removeServer, initiateQuickConnect } =
|
||||||
useJellyfin();
|
useJellyfin();
|
||||||
const [api] = useAtom(apiAtom);
|
const [api] = useAtom(apiAtom);
|
||||||
|
const router = useRouter();
|
||||||
const params = useLocalSearchParams();
|
const params = useLocalSearchParams();
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -71,7 +74,17 @@ const Login: React.FC = () => {
|
|||||||
try {
|
try {
|
||||||
const result = CredentialsSchema.safeParse(credentials);
|
const result = CredentialsSchema.safeParse(credentials);
|
||||||
if (result.success) {
|
if (result.success) {
|
||||||
await login(credentials.username, credentials.password);
|
try {
|
||||||
|
await login(credentials.username, credentials.password);
|
||||||
|
} catch (loginError) {
|
||||||
|
if (loginError instanceof Error) {
|
||||||
|
setError(loginError.message);
|
||||||
|
} else {
|
||||||
|
setError("An unexpected error occurred during login");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setError("Invalid credentials format");
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error instanceof Error) {
|
if (error instanceof Error) {
|
||||||
@@ -104,37 +117,72 @@ const Login: React.FC = () => {
|
|||||||
async function checkUrl(url: string) {
|
async function checkUrl(url: string) {
|
||||||
url = url.endsWith("/") ? url.slice(0, -1) : url;
|
url = url.endsWith("/") ? url.slice(0, -1) : url;
|
||||||
setLoadingServerCheck(true);
|
setLoadingServerCheck(true);
|
||||||
|
writeToLog("INFO", `Checking URL: ${url}`);
|
||||||
|
|
||||||
const protocols = ["https://", "http://"];
|
const timeout = 5000; // 5 seconds timeout
|
||||||
const timeout = 2000; // 2 seconds timeout for long 404 responses
|
const controller = new AbortController();
|
||||||
|
const timeoutId = setTimeout(() => controller.abort(), timeout);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
for (const protocol of protocols) {
|
// Try HTTPS first
|
||||||
const controller = new AbortController();
|
const httpsUrl = `https://${url}/System/Info/Public`;
|
||||||
const timeoutId = setTimeout(() => controller.abort(), timeout);
|
try {
|
||||||
|
const response = await fetch(httpsUrl, {
|
||||||
try {
|
mode: "cors",
|
||||||
const response = await fetch(`${protocol}${url}/System/Info/Public`, {
|
signal: controller.signal,
|
||||||
mode: "cors",
|
});
|
||||||
signal: controller.signal,
|
if (response.ok) {
|
||||||
});
|
const data = (await response.json()) as PublicSystemInfo;
|
||||||
clearTimeout(timeoutId);
|
setServerName(data.ServerName || "");
|
||||||
if (response.ok) {
|
return `https://${url}`;
|
||||||
const data = (await response.json()) as PublicSystemInfo;
|
} else {
|
||||||
setServerName(data.ServerName || "");
|
writeToLog(
|
||||||
return `${protocol}${url}`;
|
"WARN",
|
||||||
}
|
`HTTPS connection failed with status: ${response.status}`
|
||||||
} catch (e) {
|
);
|
||||||
const error = e as Error;
|
|
||||||
if (error.name === "AbortError") {
|
|
||||||
console.log(`Request to ${protocol}${url} timed out`);
|
|
||||||
} else {
|
|
||||||
console.error(`Error checking ${protocol}${url}:`, error);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
} catch (e) {
|
||||||
|
writeToLog("WARN", "HTTPS connection failed - trying HTTP", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If HTTPS didn't work, try HTTP
|
||||||
|
const httpUrl = `http://${url}/System/Info/Public`;
|
||||||
|
try {
|
||||||
|
const response = await fetch(httpUrl, {
|
||||||
|
mode: "cors",
|
||||||
|
signal: controller.signal,
|
||||||
|
});
|
||||||
|
writeToLog("INFO", `HTTP response status: ${response.status}`);
|
||||||
|
if (response.ok) {
|
||||||
|
const data = (await response.json()) as PublicSystemInfo;
|
||||||
|
setServerName(data.ServerName || "");
|
||||||
|
return `http://${url}`;
|
||||||
|
} else {
|
||||||
|
writeToLog(
|
||||||
|
"WARN",
|
||||||
|
`HTTP connection failed with status: ${response.status}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
writeToLog("ERROR", "HTTP connection failed", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If neither worked, return undefined
|
||||||
|
writeToLog(
|
||||||
|
"ERROR",
|
||||||
|
`Failed to connect to ${url} using both HTTPS and HTTP`
|
||||||
|
);
|
||||||
|
return undefined;
|
||||||
|
} catch (e) {
|
||||||
|
const error = e as Error;
|
||||||
|
if (error.name === "AbortError") {
|
||||||
|
writeToLog("ERROR", `Request to ${url} timed out`, error);
|
||||||
|
} else {
|
||||||
|
writeToLog("ERROR", `Unexpected error checking ${url}`, error);
|
||||||
}
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
} finally {
|
} finally {
|
||||||
|
clearTimeout(timeoutId);
|
||||||
setLoadingServerCheck(false);
|
setLoadingServerCheck(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -195,16 +243,28 @@ const Login: React.FC = () => {
|
|||||||
behavior={Platform.OS === "ios" ? "padding" : "height"}
|
behavior={Platform.OS === "ios" ? "padding" : "height"}
|
||||||
style={{ flex: 1, height: "100%" }}
|
style={{ flex: 1, height: "100%" }}
|
||||||
>
|
>
|
||||||
<View className="flex flex-col justify-between px-4 h-full gap-y-2">
|
<View className="flex flex-col w-full h-full relative items-center justify-center">
|
||||||
<View></View>
|
<View className="absolute top-4 right-4">
|
||||||
<View>
|
<Ionicons
|
||||||
|
name="file-tray-full-outline"
|
||||||
|
size={22}
|
||||||
|
color="white"
|
||||||
|
onPress={() => {
|
||||||
|
router.push("/logs");
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
|
<View className="px-4 -mt-20">
|
||||||
<View className="mb-4">
|
<View className="mb-4">
|
||||||
<Text className="text-3xl font-bold mb-1">
|
<Text className="text-3xl font-bold mb-1">
|
||||||
{serverName || "Streamyfin"}
|
{serverName || "Streamyfin"}
|
||||||
</Text>
|
</Text>
|
||||||
<Text className="text-neutral-500 mb-2">
|
<View className="bg-neutral-900 rounded-xl p-4 mb-2 flex flex-row items-center justify-between">
|
||||||
Server: {api.basePath}
|
<Text className="">URL</Text>
|
||||||
</Text>
|
<Text numberOfLines={1} className="shrink">
|
||||||
|
{api.basePath}
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
<Button
|
<Button
|
||||||
color="black"
|
color="black"
|
||||||
onPress={() => {
|
onPress={() => {
|
||||||
@@ -261,11 +321,11 @@ const Login: React.FC = () => {
|
|||||||
<Text className="text-red-600 mb-2">{error}</Text>
|
<Text className="text-red-600 mb-2">{error}</Text>
|
||||||
</View>
|
</View>
|
||||||
|
|
||||||
<View className="mt-auto mb-2">
|
<View className="absolute bottom-0 left-0 w-full px-4 mb-2">
|
||||||
<Button
|
<Button
|
||||||
color="black"
|
color="black"
|
||||||
onPress={handleQuickConnect}
|
onPress={handleQuickConnect}
|
||||||
className="mb-2"
|
className="w-full mb-2"
|
||||||
>
|
>
|
||||||
Use Quick Connect
|
Use Quick Connect
|
||||||
</Button>
|
</Button>
|
||||||
@@ -285,9 +345,17 @@ const Login: React.FC = () => {
|
|||||||
behavior={Platform.OS === "ios" ? "padding" : "height"}
|
behavior={Platform.OS === "ios" ? "padding" : "height"}
|
||||||
style={{ flex: 1 }}
|
style={{ flex: 1 }}
|
||||||
>
|
>
|
||||||
<View className="flex flex-col px-4 justify-between h-full">
|
<View className="flex flex-col h-full relative items-center justify-center w-full">
|
||||||
<View></View>
|
<View className="flex flex-col gap-y-2 px-4 w-full -mt-36">
|
||||||
<View className="flex flex-col gap-y-2">
|
<Image
|
||||||
|
style={{
|
||||||
|
width: 100,
|
||||||
|
height: 100,
|
||||||
|
marginLeft: -23,
|
||||||
|
marginBottom: -20,
|
||||||
|
}}
|
||||||
|
source={require("@/assets/images/StreamyFinFinal.png")}
|
||||||
|
/>
|
||||||
<Text className="text-3xl font-bold">Streamyfin</Text>
|
<Text className="text-3xl font-bold">Streamyfin</Text>
|
||||||
<Text className="text-neutral-500">
|
<Text className="text-neutral-500">
|
||||||
Connect to your Jellyfin server
|
Connect to your Jellyfin server
|
||||||
@@ -303,14 +371,16 @@ const Login: React.FC = () => {
|
|||||||
maxLength={500}
|
maxLength={500}
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
<Button
|
<View className="mb-2 absolute bottom-0 left-0 w-full px-4">
|
||||||
loading={loadingServerCheck}
|
<Button
|
||||||
disabled={loadingServerCheck}
|
loading={loadingServerCheck}
|
||||||
onPress={async () => await handleConnect(serverURL)}
|
disabled={loadingServerCheck}
|
||||||
className="mb-2"
|
onPress={async () => await handleConnect(serverURL)}
|
||||||
>
|
className="w-full grow"
|
||||||
Connect
|
>
|
||||||
</Button>
|
Connect
|
||||||
|
</Button>
|
||||||
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</KeyboardAvoidingView>
|
</KeyboardAvoidingView>
|
||||||
</SafeAreaView>
|
</SafeAreaView>
|
||||||
|
|||||||
58
app/logs.tsx
Normal file
58
app/logs.tsx
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
import { Text } from "@/components/common/Text";
|
||||||
|
import { readFromLog } from "@/utils/log";
|
||||||
|
import { useQuery } from "@tanstack/react-query";
|
||||||
|
import { ScrollView, View } from "react-native";
|
||||||
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||||
|
|
||||||
|
const Logs: React.FC = () => {
|
||||||
|
const { data: logs } = useQuery({
|
||||||
|
queryKey: ["logs"],
|
||||||
|
queryFn: async () => (await readFromLog()).reverse(),
|
||||||
|
refetchOnReconnect: true,
|
||||||
|
refetchOnWindowFocus: true,
|
||||||
|
refetchOnMount: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const insets = useSafeAreaInsets();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ScrollView
|
||||||
|
className="flex-1 p-4"
|
||||||
|
contentContainerStyle={{ gap: 10, paddingBottom: insets.top }}
|
||||||
|
>
|
||||||
|
<View className="flex flex-col">
|
||||||
|
{logs?.map((log, index) => (
|
||||||
|
<View key={index} className="border-b-neutral-800 border py-3">
|
||||||
|
<View className="flex flex-row justify-between items-center mb-2">
|
||||||
|
<Text
|
||||||
|
className={`
|
||||||
|
text-xs
|
||||||
|
${log.level === "INFO" && "text-blue-500"}
|
||||||
|
${log.level === "ERROR" && "text-red-500"}
|
||||||
|
`}
|
||||||
|
>
|
||||||
|
{log.level}
|
||||||
|
</Text>
|
||||||
|
<Text className="text-xs text-neutral-500">
|
||||||
|
{new Date(log.timestamp).toLocaleString()}
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
|
<Text uiTextView selectable className="text-xs mb-1">
|
||||||
|
{log.message}
|
||||||
|
</Text>
|
||||||
|
{log.data && (
|
||||||
|
<Text uiTextView selectable className="text-xs">
|
||||||
|
{log.data}
|
||||||
|
</Text>
|
||||||
|
)}
|
||||||
|
</View>
|
||||||
|
))}
|
||||||
|
{logs?.length === 0 && (
|
||||||
|
<Text className="opacity-50">No logs available</Text>
|
||||||
|
)}
|
||||||
|
</View>
|
||||||
|
</ScrollView>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Logs;
|
||||||
BIN
assets/images/StreamyFinFinal.png
Normal file
BIN
assets/images/StreamyFinFinal.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 231 KiB |
@@ -26,7 +26,7 @@ import { useFocusEffect, useNavigation } from "expo-router";
|
|||||||
import * as ScreenOrientation from "expo-screen-orientation";
|
import * as ScreenOrientation from "expo-screen-orientation";
|
||||||
import { useAtom } from "jotai";
|
import { useAtom } from "jotai";
|
||||||
import React, { useCallback, useEffect, useMemo, useState } from "react";
|
import React, { useCallback, useEffect, useMemo, useState } from "react";
|
||||||
import { View } from "react-native";
|
import { Alert, View } from "react-native";
|
||||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||||
import { Chromecast } from "./Chromecast";
|
import { Chromecast } from "./Chromecast";
|
||||||
import { ItemHeader } from "./ItemHeader";
|
import { ItemHeader } from "./ItemHeader";
|
||||||
@@ -59,6 +59,11 @@ export const ItemContent: React.FC<{ item: BaseItemDto }> = React.memo(
|
|||||||
audioIndex,
|
audioIndex,
|
||||||
subtitleIndex,
|
subtitleIndex,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!mediaSource) {
|
||||||
|
Alert.alert("Error", "No media source found for this item.");
|
||||||
|
navigation.goBack();
|
||||||
|
}
|
||||||
}, [item, settings])
|
}, [item, settings])
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -21,10 +21,10 @@ export const ListItem: React.FC<PropsWithChildren<Props>> = ({
|
|||||||
className="flex flex-row items-center justify-between bg-neutral-900 p-4"
|
className="flex flex-row items-center justify-between bg-neutral-900 p-4"
|
||||||
{...props}
|
{...props}
|
||||||
>
|
>
|
||||||
<View className="flex flex-col">
|
<View className="flex flex-col overflow-visible">
|
||||||
<Text className="font-bold ">{title}</Text>
|
<Text className="font-bold ">{title}</Text>
|
||||||
{subTitle && (
|
{subTitle && (
|
||||||
<Text className="text-xs" selectable>
|
<Text uiTextView selectable className="text-xs">
|
||||||
{subTitle}
|
{subTitle}
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -24,14 +24,14 @@ export const HeaderBackButton: React.FC<Props> = ({
|
|||||||
|
|
||||||
if (background === "transparent" && Platform.OS !== "android")
|
if (background === "transparent" && Platform.OS !== "android")
|
||||||
return (
|
return (
|
||||||
<BlurView
|
<TouchableOpacity
|
||||||
{...props}
|
onPress={() => router.back()}
|
||||||
intensity={100}
|
{...touchableOpacityProps}
|
||||||
className="overflow-hidden rounded-full p-2"
|
|
||||||
>
|
>
|
||||||
<TouchableOpacity
|
<BlurView
|
||||||
onPress={() => router.back()}
|
{...props}
|
||||||
{...touchableOpacityProps}
|
intensity={100}
|
||||||
|
className="overflow-hidden rounded-full p-2"
|
||||||
>
|
>
|
||||||
<Ionicons
|
<Ionicons
|
||||||
className="drop-shadow-2xl"
|
className="drop-shadow-2xl"
|
||||||
@@ -39,8 +39,8 @@ export const HeaderBackButton: React.FC<Props> = ({
|
|||||||
size={24}
|
size={24}
|
||||||
color="white"
|
color="white"
|
||||||
/>
|
/>
|
||||||
</TouchableOpacity>
|
</BlurView>
|
||||||
</BlurView>
|
</TouchableOpacity>
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -10,9 +10,9 @@ export function Input(props: TextInputProps) {
|
|||||||
className="p-4 border border-neutral-800 rounded-xl bg-neutral-900"
|
className="p-4 border border-neutral-800 rounded-xl bg-neutral-900"
|
||||||
allowFontScaling={false}
|
allowFontScaling={false}
|
||||||
style={[{ color: "white" }, style]}
|
style={[{ color: "white" }, style]}
|
||||||
{...otherProps}
|
|
||||||
placeholderTextColor={"#9CA3AF"}
|
placeholderTextColor={"#9CA3AF"}
|
||||||
clearButtonMode="while-editing"
|
clearButtonMode="while-editing"
|
||||||
|
{...otherProps}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { TextProps } from "react-native";
|
import { TextProps } from "react-native";
|
||||||
import { Text as DefaultText } from "react-native";
|
import { UITextView } from "react-native-uitextview";
|
||||||
export function Text(props: TextProps) {
|
|
||||||
|
export function Text(
|
||||||
|
props: TextProps & {
|
||||||
|
uiTextView?: boolean;
|
||||||
|
}
|
||||||
|
) {
|
||||||
const { style, ...otherProps } = props;
|
const { style, ...otherProps } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DefaultText
|
<UITextView
|
||||||
allowFontScaling={false}
|
allowFontScaling={false}
|
||||||
style={[{ color: "white" }, style]}
|
style={[{ color: "white" }, style]}
|
||||||
{...otherProps}
|
{...otherProps}
|
||||||
|
|||||||
@@ -9,10 +9,10 @@ interface Props extends ViewProps {
|
|||||||
export const MoviesTitleHeader: React.FC<Props> = ({ item, ...props }) => {
|
export const MoviesTitleHeader: React.FC<Props> = ({ item, ...props }) => {
|
||||||
return (
|
return (
|
||||||
<View {...props}>
|
<View {...props}>
|
||||||
<Text className=" font-bold text-2xl mb-1" selectable>
|
<Text uiTextView selectable className="font-bold text-2xl mb-1">
|
||||||
{item?.Name}
|
{item?.Name}
|
||||||
</Text>
|
</Text>
|
||||||
<Text className=" opacity-50">{item?.ProductionYear}</Text>
|
<Text className="opacity-50">{item?.ProductionYear}</Text>
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ export const EpisodeTitleHeader: React.FC<Props> = ({ item, ...props }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View {...props}>
|
<View {...props}>
|
||||||
<Text className="font-bold text-2xl" selectable>
|
<Text uiTextView className="font-bold text-2xl" selectable>
|
||||||
{item?.Name}
|
{item?.Name}
|
||||||
</Text>
|
</Text>
|
||||||
<View className="flex flex-row items-center mb-1">
|
<View className="flex flex-row items-center mb-1">
|
||||||
|
|||||||
@@ -123,17 +123,6 @@ export const Controls: React.FC<Props> = ({
|
|||||||
|
|
||||||
const wasPlayingRef = useRef(false);
|
const wasPlayingRef = useRef(false);
|
||||||
|
|
||||||
const updateTimes = useCallback(
|
|
||||||
(currentProgress: number, maxValue: number) => {
|
|
||||||
const current = ticksToSeconds(currentProgress);
|
|
||||||
const remaining = ticksToSeconds(maxValue - currentProgress);
|
|
||||||
|
|
||||||
setCurrentTime(current);
|
|
||||||
setRemainingTime(remaining);
|
|
||||||
},
|
|
||||||
[]
|
|
||||||
);
|
|
||||||
|
|
||||||
const { showSkipButton, skipIntro } = useIntroSkipper(
|
const { showSkipButton, skipIntro } = useIntroSkipper(
|
||||||
item.Id,
|
item.Id,
|
||||||
currentTime,
|
currentTime,
|
||||||
@@ -180,6 +169,23 @@ export const Controls: React.FC<Props> = ({
|
|||||||
router.replace("/play-video");
|
router.replace("/play-video");
|
||||||
}, [nextItem, settings]);
|
}, [nextItem, settings]);
|
||||||
|
|
||||||
|
const updateTimes = useCallback(
|
||||||
|
(currentProgress: number, maxValue: number) => {
|
||||||
|
const current = ticksToSeconds(currentProgress);
|
||||||
|
const remaining = ticksToSeconds(maxValue - currentProgress);
|
||||||
|
|
||||||
|
setCurrentTime(current);
|
||||||
|
setRemainingTime(remaining);
|
||||||
|
|
||||||
|
if (currentProgress === maxValue) {
|
||||||
|
setShowControls(true);
|
||||||
|
// Automatically play the next item if it exists
|
||||||
|
goToNextItem();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[goToNextItem]
|
||||||
|
);
|
||||||
|
|
||||||
useAnimatedReaction(
|
useAnimatedReaction(
|
||||||
() => ({
|
() => ({
|
||||||
progress: progress.value,
|
progress: progress.value,
|
||||||
|
|||||||
4
eas.json
4
eas.json
@@ -22,13 +22,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"production": {
|
"production": {
|
||||||
"channel": "0.17.0",
|
"channel": "0.18.0",
|
||||||
"android": {
|
"android": {
|
||||||
"image": "latest"
|
"image": "latest"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"production-apk": {
|
"production-apk": {
|
||||||
"channel": "0.17.0",
|
"channel": "0.18.0",
|
||||||
"android": {
|
"android": {
|
||||||
"buildType": "apk",
|
"buildType": "apk",
|
||||||
"image": "latest"
|
"image": "latest"
|
||||||
|
|||||||
@@ -82,6 +82,7 @@
|
|||||||
"react-native-screens": "3.31.1",
|
"react-native-screens": "3.31.1",
|
||||||
"react-native-svg": "15.2.0",
|
"react-native-svg": "15.2.0",
|
||||||
"react-native-tab-view": "^3.5.2",
|
"react-native-tab-view": "^3.5.2",
|
||||||
|
"react-native-uitextview": "^1.4.0",
|
||||||
"react-native-url-polyfill": "^2.0.0",
|
"react-native-url-polyfill": "^2.0.0",
|
||||||
"react-native-uuid": "^2.0.2",
|
"react-native-uuid": "^2.0.2",
|
||||||
"react-native-video": "^6.6.4",
|
"react-native-video": "^6.6.4",
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { useInterval } from "@/hooks/useInterval";
|
import { useInterval } from "@/hooks/useInterval";
|
||||||
|
import { writeToLog } from "@/utils/log";
|
||||||
import { Api, Jellyfin } from "@jellyfin/sdk";
|
import { Api, Jellyfin } from "@jellyfin/sdk";
|
||||||
import { UserDto } from "@jellyfin/sdk/lib/generated-client/models";
|
import { UserDto } from "@jellyfin/sdk/lib/generated-client/models";
|
||||||
import { getUserApi } from "@jellyfin/sdk/lib/utils/api";
|
import { getUserApi } from "@jellyfin/sdk/lib/utils/api";
|
||||||
@@ -52,7 +53,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
|
|||||||
setJellyfin(
|
setJellyfin(
|
||||||
() =>
|
() =>
|
||||||
new Jellyfin({
|
new Jellyfin({
|
||||||
clientInfo: { name: "Streamyfin", version: "0.17.0" },
|
clientInfo: { name: "Streamyfin", version: "0.18.0" },
|
||||||
deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id },
|
deviceInfo: { name: Platform.OS === "ios" ? "iOS" : "Android", id },
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
@@ -86,7 +87,7 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
|
|||||||
return {
|
return {
|
||||||
authorization: `MediaBrowser Client="Streamyfin", Device=${
|
authorization: `MediaBrowser Client="Streamyfin", Device=${
|
||||||
Platform.OS === "android" ? "Android" : "iOS"
|
Platform.OS === "android" ? "Android" : "iOS"
|
||||||
}, DeviceId="${deviceId}", Version="0.17.0"`,
|
}, DeviceId="${deviceId}", Version="0.18.0"`,
|
||||||
};
|
};
|
||||||
}, [deviceId]);
|
}, [deviceId]);
|
||||||
|
|
||||||
@@ -212,20 +213,35 @@ export const JellyfinProvider: React.FC<{ children: ReactNode }> = ({
|
|||||||
if (axios.isAxiosError(error)) {
|
if (axios.isAxiosError(error)) {
|
||||||
switch (error.response?.status) {
|
switch (error.response?.status) {
|
||||||
case 401:
|
case 401:
|
||||||
|
writeToLog("ERROR", "Invalid username or password");
|
||||||
throw new Error("Invalid username or password");
|
throw new Error("Invalid username or password");
|
||||||
case 403:
|
case 403:
|
||||||
|
writeToLog("ERROR", "User does not have permission to log in");
|
||||||
throw new Error("User does not have permission to log in");
|
throw new Error("User does not have permission to log in");
|
||||||
case 408:
|
case 408:
|
||||||
|
writeToLog(
|
||||||
|
"WARN",
|
||||||
|
"Server is taking too long to respond, try again later"
|
||||||
|
);
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"Server is taking too long to respond, try again later"
|
"Server is taking too long to respond, try again later"
|
||||||
);
|
);
|
||||||
case 429:
|
case 429:
|
||||||
|
writeToLog(
|
||||||
|
"WARN",
|
||||||
|
"Server received too many requests, try again later"
|
||||||
|
);
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"Server received too many requests, try again later"
|
"Server received too many requests, try again later"
|
||||||
);
|
);
|
||||||
case 500:
|
case 500:
|
||||||
|
writeToLog("ERROR", "There is a server error");
|
||||||
throw new Error("There is a server error");
|
throw new Error("There is a server error");
|
||||||
default:
|
default:
|
||||||
|
writeToLog(
|
||||||
|
"ERROR",
|
||||||
|
"An unexpected error occurred. Did you enter the server URL correctly?"
|
||||||
|
);
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"An unexpected error occurred. Did you enter the server URL correctly?"
|
"An unexpected error occurred. Did you enter the server URL correctly?"
|
||||||
);
|
);
|
||||||
@@ -312,6 +328,9 @@ function useProtectedRoute(user: UserDto | null, loading = false) {
|
|||||||
if (loading) return;
|
if (loading) return;
|
||||||
|
|
||||||
const inAuthGroup = segments[0] === "(auth)";
|
const inAuthGroup = segments[0] === "(auth)";
|
||||||
|
const inLogs = segments[0] === "logs";
|
||||||
|
|
||||||
|
if (inLogs) return;
|
||||||
|
|
||||||
if (!user?.Id && inAuthGroup) {
|
if (!user?.Id && inAuthGroup) {
|
||||||
router.replace("/login");
|
router.replace("/login");
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import { Settings } from "../atoms/settings";
|
|||||||
interface PlaySettings {
|
interface PlaySettings {
|
||||||
item: BaseItemDto;
|
item: BaseItemDto;
|
||||||
bitrate: (typeof BITRATES)[0];
|
bitrate: (typeof BITRATES)[0];
|
||||||
mediaSource: MediaSourceInfo | undefined;
|
mediaSource?: MediaSourceInfo | null;
|
||||||
audioIndex?: number | null;
|
audioIndex?: number | null;
|
||||||
subtitleIndex?: number | null;
|
subtitleIndex?: number | null;
|
||||||
}
|
}
|
||||||
@@ -29,9 +29,8 @@ export function getDefaultPlaySettings(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 1. Get first media source
|
// 1. Get first media source
|
||||||
const mediaSource = item.MediaSources?.[0];
|
|
||||||
|
|
||||||
if (!mediaSource) throw new Error("No media source found");
|
const mediaSource = item.MediaSources?.[0];
|
||||||
|
|
||||||
// 2. Get default or preferred audio
|
// 2. Get default or preferred audio
|
||||||
const defaultAudioIndex = mediaSource?.DefaultAudioStreamIndex;
|
const defaultAudioIndex = mediaSource?.DefaultAudioStreamIndex;
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ export const writeToLog = async (
|
|||||||
const logs: LogEntry[] = currentLogs ? JSON.parse(currentLogs) : [];
|
const logs: LogEntry[] = currentLogs ? JSON.parse(currentLogs) : [];
|
||||||
logs.push(newEntry);
|
logs.push(newEntry);
|
||||||
|
|
||||||
const maxLogs = 100;
|
const maxLogs = 1000;
|
||||||
const recentLogs = logs.slice(Math.max(logs.length - maxLogs, 0));
|
const recentLogs = logs.slice(Math.max(logs.length - maxLogs, 0));
|
||||||
|
|
||||||
await AsyncStorage.setItem("logs", JSON.stringify(recentLogs));
|
await AsyncStorage.setItem("logs", JSON.stringify(recentLogs));
|
||||||
|
|||||||
Reference in New Issue
Block a user