-
-
- озвучка
-
-
плеер
+ <>
+ {voiceoverInfo && sourcesInfo && episodeInfo ? (
+
+
+
+
+
+ {voiceoverInfo &&
+ voiceoverInfo.types.map((item) => {
+ return (
+
+ );
+ })}
+
+
+ {sourcesInfo &&
+ sourcesInfo.sources.map((item) => {
+ return (
+
+ );
+ })}
+
+
+
+
+ ) : (
+
-
- {voiceoverInfo &&
- voiceoverInfo.types.map((item) => {
- return (
-
- );
- })}
-
-
- {sourcesInfo &&
- sourcesInfo.sources.map((item) => {
- return (
-
- );
- })}
-
-
-
-
+ )}
+ >
);
};
diff --git a/frontend/app/release/[id]/page.js b/frontend/app/release/[id]/page.js
index ed22591..4c9d4ea 100644
--- a/frontend/app/release/[id]/page.js
+++ b/frontend/app/release/[id]/page.js
@@ -1,51 +1,11 @@
"use client";
-import { useEffect, useState } from "react";
-import { getData } from "@/app/api/api-utils";
-import { endpoints } from "@/app/api/config";
-import { useUserStore } from "@/app/store/user-store";
-import { useSettingsStore } from "@/app/store/settings-store";
-
import { ReleasePlayer } from "@/app/components/Release/ReleasePlayer";
+import { ReleaseInfo } from "@/app/components/Release/ReleaseInfo";
export default function Release(props) {
- const userStore = useUserStore();
- const settingsStore = useSettingsStore();
- const [releaseInfo, setReleaseInfo] = useState();
-
- useEffect(() => {
- async function _fetchInfo() {
- const release = await getData(`${endpoints.release}/${props.id}`);
- setReleaseInfo(release);
- }
- if (props.params.id) {
- _fetchInfo();
- }
- // eslint-disable-next-line react-hooks/exhaustive-deps
- }, []);
-
return (
<>
- {/*
-
-
-

-
-
-
-
Title
-
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
- eiusmod tempor incididunt ut labore et dolore magna aliqua.
-
-
-
-
-
- */}
-
>
);