diff --git a/src/screens/Library/AllMyPlaylist.web.js b/src/screens/Library/AllMyPlaylist.web.js
index 0b79139..2c9bbe5 100644
--- a/src/screens/Library/AllMyPlaylist.web.js
+++ b/src/screens/Library/AllMyPlaylist.web.js
@@ -1,6 +1,6 @@
import { BlurView } from "expo-blur";
import React, { useState } from "react";
-import { Image, Platform, Pressable, Text, View } from "react-native";
+import { Image, Pressable, Text, View } from "react-native";
import { SheetManager } from "react-native-actions-sheet";
import { background, icons } from "../../assets";
import MoreMenu from "../../components/MoreMenu";
@@ -16,9 +16,12 @@ import { FONT_FAMILY } from "../../styles/Fonts";
import { size } from "../../styles/Style";
import MusicCard from "./components/MusicCard";
-const AllMyPlaylist = () => {
+const AllMyPlaylist = ({ route }) => {
+ const { playListId } = route?.params || {};
const { userPlaylists = [] } = useUser();
- const [selectedPlaylistId, setSelectedPlaylistId] = useState(null);
+ const [selectedPlaylistId, setSelectedPlaylistId] = useState(
+ playListId || null
+ );
const { data: playlist } = useDataFromRef({
ref: selectedPlaylistId ? playlistsRef.doc(selectedPlaylistId) : null,
simpleRef: true,
@@ -67,46 +70,106 @@ const AllMyPlaylist = () => {
flex: 1,
padding: 10,
borderRadius: 12,
+ backgroundColor: Palette.ultraLightWhite,
+ ...Style.defaultBorder,
}}
>
-
- {(Array.isArray(userPlaylists) ? userPlaylists : []).map((item) => (
- setSelectedPlaylistId(item?.id)}
+
+
+ {(Array.isArray(userPlaylists) ? userPlaylists : []).map(
+ (item) => {
+ const isSelected = selectedPlaylistId === item?.id;
+
+ return (
+ setSelectedPlaylistId(item?.id)}
+ >
+
+
+
+ {item?.name || "Sans nom"}
+
+
+
+
+
+
+
+ );
+ }
+ )}
+
+
+ SheetManager.show("Playlist", {
+ payload: { startAtCreate: true },
+ })
+ }
+ >
+
-
-
+
-
- {item?.name || "Sans nom"}
-
-
-
-
-
-
-
- ))}
+ Ajouter une playlist
+
+
+
+
+
diff --git a/src/screens/Library/components/MyPlaylist.js b/src/screens/Library/components/MyPlaylist.js
index 48769a8..b8f25c3 100644
--- a/src/screens/Library/components/MyPlaylist.js
+++ b/src/screens/Library/components/MyPlaylist.js
@@ -1,20 +1,21 @@
-import { View, Text, Pressable, Image, Platform } from "react-native";
-import React from "react";
-import CardContainer from "./CardContainer";
import { BlurView } from "expo-blur";
+import React from "react";
+import { Image, Platform, Pressable, Text, View } from "react-native";
import { icons } from "../../../assets";
-import Style, { size } from "../../../styles/Style";
+import useLayoutType from "../../../hooks/useLayoutType";
+import { Routes } from "../../../navigation";
+import { navigate } from "../../../navigation/NavigationService";
+import { useUser } from "../../../providers/UserDataProvider";
import { Palette } from "../../../styles";
import { FONT_FAMILY } from "../../../styles/Fonts";
-import { navigate } from "../../../navigation/NavigationService";
-import { Routes } from "../../../navigation";
-import { useUser } from "../../../providers/UserDataProvider";
-
+import Style, { size } from "../../../styles/Style";
+import CardContainer from "./CardContainer";
const MyPlaylist = () => {
const { userPlaylists = [] } = useUser();
const playlists = Array.isArray(userPlaylists)
? userPlaylists.slice(0, 2)
: [];
+ const { isWeb } = useLayoutType();
return (
{
- navigate(Routes.PlaylistDetails, { playlistId: item.id })
- }
+ onPress={() => {
+ console.log("isWeb", isWeb);
+ if (isWeb) {
+ navigate(Routes.AllMyPlaylist, { playListId: item.id });
+ } else {
+ navigate(Routes.PlaylistDetails, { playlistId: item.id });
+ }
+ }}
>