mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
Compare commits
12 commits
68a7117a97
...
6cc9cdaa9e
Author | SHA1 | Date | |
---|---|---|---|
6cc9cdaa9e | |||
442a046043 | |||
29ae447636 | |||
141cb9a1ce | |||
7df11a467a | |||
491f9b48b5 | |||
329448c9fc | |||
8daab3b3c1 | |||
4aa48f589b | |||
c4c422904e | |||
cbdcfedb9b | |||
8cf1bb534d |
46 changed files with 1300 additions and 877 deletions
|
@ -1,7 +1,3 @@
|
||||||
{
|
{
|
||||||
"extends": ["next/core-web-vitals", "prettier"],
|
"extends": ["next/core-web-vitals"]
|
||||||
"rules": {
|
|
||||||
"prettier/prettier": "error"
|
|
||||||
},
|
|
||||||
"plugins": ["prettier"]
|
|
||||||
}
|
}
|
||||||
|
|
2
.flowbite-react/.gitignore
vendored
Normal file
2
.flowbite-react/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
class-list.json
|
||||||
|
pid
|
9
.flowbite-react/config.json
Normal file
9
.flowbite-react/config.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://unpkg.com/flowbite-react/schema.json",
|
||||||
|
"components": [],
|
||||||
|
"dark": true,
|
||||||
|
"prefix": "",
|
||||||
|
"path": "src/components",
|
||||||
|
"tsx": true,
|
||||||
|
"rsc": true
|
||||||
|
}
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -59,3 +59,5 @@ videos/*
|
||||||
!videos/*.js
|
!videos/*.js
|
||||||
!videos/*.ts
|
!videos/*.ts
|
||||||
public/_next-video
|
public/_next-video
|
||||||
|
|
||||||
|
API-Trace/*
|
12
app/App.tsx
12
app/App.tsx
|
@ -4,7 +4,7 @@ import { usePreferencesStore } from "./store/preferences";
|
||||||
import { Navbar } from "./components/Navbar/NavbarUpdate";
|
import { Navbar } from "./components/Navbar/NavbarUpdate";
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { Button, Modal } from "flowbite-react";
|
import { Button, Modal, ModalBody, ModalFooter, ModalHeader } from "flowbite-react";
|
||||||
import { Spinner } from "./components/Spinner/Spinner";
|
import { Spinner } from "./components/Spinner/Spinner";
|
||||||
import { ChangelogModal } from "#/components/ChangelogModal/ChangelogModal";
|
import { ChangelogModal } from "#/components/ChangelogModal/ChangelogModal";
|
||||||
import PlausibleProvider from "next-plausible";
|
import PlausibleProvider from "next-plausible";
|
||||||
|
@ -80,8 +80,8 @@ export const App = (props) => {
|
||||||
show={preferencesStore.params.isFirstLaunch}
|
show={preferencesStore.params.isFirstLaunch}
|
||||||
onClose={() => preferencesStore.setParams({ isFirstLaunch: false })}
|
onClose={() => preferencesStore.setParams({ isFirstLaunch: false })}
|
||||||
>
|
>
|
||||||
<Modal.Header>Внимание</Modal.Header>
|
<ModalHeader>Внимание</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<p>
|
<p>
|
||||||
Данный сайт не связан с разработчиками приложения Anixart, это
|
Данный сайт не связан с разработчиками приложения Anixart, это
|
||||||
неофициальная имплементация веб клиента для этого приложения.
|
неофициальная имплементация веб клиента для этого приложения.
|
||||||
|
@ -94,15 +94,15 @@ export const App = (props) => {
|
||||||
На сайте могут присутствовать ошибки и не доработки, а так-же
|
На сайте могут присутствовать ошибки и не доработки, а так-же
|
||||||
отсутствующий функционал.
|
отсутствующий функционал.
|
||||||
</p>
|
</p>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<Button
|
<Button
|
||||||
color={"blue"}
|
color={"blue"}
|
||||||
onClick={() => preferencesStore.setParams({ isFirstLaunch: false })}
|
onClick={() => preferencesStore.setParams({ isFirstLaunch: false })}
|
||||||
>
|
>
|
||||||
Принимаю
|
Принимаю
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
{preferencesStore.flags.enableAnalytics && (
|
{preferencesStore.flags.enableAnalytics && (
|
||||||
<PlausibleProvider
|
<PlausibleProvider
|
||||||
|
|
|
@ -18,6 +18,7 @@ export const ENDPOINTS = {
|
||||||
bookmark: `${API_PREFIX}/profile/list`,
|
bookmark: `${API_PREFIX}/profile/list`,
|
||||||
history: `${API_PREFIX}/history`,
|
history: `${API_PREFIX}/history`,
|
||||||
favorite: `${API_PREFIX}/favorite`,
|
favorite: `${API_PREFIX}/favorite`,
|
||||||
|
blocklist: `${API_PREFIX}/profile/blocklist`,
|
||||||
settings: {
|
settings: {
|
||||||
my: `${API_PREFIX}/profile/preference/my`,
|
my: `${API_PREFIX}/profile/preference/my`,
|
||||||
login: {
|
login: {
|
||||||
|
|
|
@ -212,9 +212,9 @@ export function unixToDate(
|
||||||
" " +
|
" " +
|
||||||
date.getFullYear() +
|
date.getFullYear() +
|
||||||
", " +
|
", " +
|
||||||
date.getHours() +
|
`${date.getHours()}`.padStart(2, "0") +
|
||||||
":" +
|
":" +
|
||||||
date.getMinutes()
|
`${date.getMinutes()}`.padStart(2, "0")
|
||||||
);
|
);
|
||||||
if (type === "dayMonth")
|
if (type === "dayMonth")
|
||||||
return date.getDate() + " " + months[date.getMonth()];
|
return date.getDate() + " " + months[date.getMonth()];
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Modal, Accordion } from "flowbite-react";
|
import {
|
||||||
|
Accordion,
|
||||||
|
AccordionContent,
|
||||||
|
AccordionPanel,
|
||||||
|
AccordionTitle,
|
||||||
|
Modal,
|
||||||
|
ModalBody,
|
||||||
|
ModalHeader,
|
||||||
|
} from "flowbite-react";
|
||||||
import Markdown from "markdown-to-jsx";
|
import Markdown from "markdown-to-jsx";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import Styles from "./ChangelogModal.module.css";
|
import Styles from "./ChangelogModal.module.css";
|
||||||
|
@ -37,8 +45,8 @@ export const ChangelogModal = (props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal show={props.isOpen} onClose={() => props.setIsOpen(false)}>
|
<Modal show={props.isOpen} onClose={() => props.setIsOpen(false)}>
|
||||||
<Modal.Header>Список изменений v{props.version}</Modal.Header>
|
<ModalHeader>Список изменений v{props.version}</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<Markdown className={Styles.markdown}>
|
<Markdown className={Styles.markdown}>
|
||||||
{currentVersionChangelog}
|
{currentVersionChangelog}
|
||||||
</Markdown>
|
</Markdown>
|
||||||
|
@ -46,8 +54,8 @@ export const ChangelogModal = (props: {
|
||||||
{props.previousVersions.length > 0 &&
|
{props.previousVersions.length > 0 &&
|
||||||
props.previousVersions.map((version) => {
|
props.previousVersions.map((version) => {
|
||||||
return (
|
return (
|
||||||
<Accordion.Panel key={version}>
|
<AccordionPanel key={version}>
|
||||||
<Accordion.Title
|
<AccordionTitle
|
||||||
onClickCapture={(e) => {
|
onClickCapture={(e) => {
|
||||||
if (!previousVersionsChangelog.hasOwnProperty(version)) {
|
if (!previousVersionsChangelog.hasOwnProperty(version)) {
|
||||||
_fetchVersionChangelog(version).then((data) => {
|
_fetchVersionChangelog(version).then((data) => {
|
||||||
|
@ -62,19 +70,19 @@ export const ChangelogModal = (props: {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Список изменений v{version}
|
Список изменений v{version}
|
||||||
</Accordion.Title>
|
</AccordionTitle>
|
||||||
<Accordion.Content>
|
<AccordionContent>
|
||||||
{previousVersionsChangelog.hasOwnProperty(version) ?
|
{previousVersionsChangelog.hasOwnProperty(version) ?
|
||||||
<Markdown className={Styles.markdown}>
|
<Markdown className={Styles.markdown}>
|
||||||
{previousVersionsChangelog[version]}
|
{previousVersionsChangelog[version]}
|
||||||
</Markdown>
|
</Markdown>
|
||||||
: <div>Загрузка ...</div>}
|
: <div>Загрузка ...</div>}
|
||||||
</Accordion.Content>
|
</AccordionContent>
|
||||||
</Accordion.Panel>
|
</AccordionPanel>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Accordion>
|
</Accordion>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Button, Modal, ToggleSwitch, Label, Textarea } from "flowbite-react";
|
import { Button, Label, Modal, ModalBody, ModalHeader, Textarea, ToggleSwitch } from "flowbite-react";
|
||||||
import { CommentsComment } from "./Comments.Comment";
|
import { CommentsComment } from "./Comments.Comment";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
@ -68,12 +68,12 @@ export const CommentsAddModal = (props: {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>
|
<ModalHeader>
|
||||||
<p className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
<p className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
||||||
{props.isReply ? "Ответ на комментарий" : "Оставить комментарий"}
|
{props.isReply ? "Ответ на комментарий" : "Оставить комментарий"}
|
||||||
</p>
|
</p>
|
||||||
</Modal.Header>
|
</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
{props.isReply && (
|
{props.isReply && (
|
||||||
<div className="mb-4">
|
<div className="mb-4">
|
||||||
<CommentsComment
|
<CommentsComment
|
||||||
|
@ -98,7 +98,7 @@ export const CommentsAddModal = (props: {
|
||||||
<form className="flex flex-col gap-4" onSubmit={(e) => _sendComment(e)}>
|
<form className="flex flex-col gap-4" onSubmit={(e) => _sendComment(e)}>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2 sr-only">
|
<div className="block mb-2 sr-only">
|
||||||
<Label htmlFor="comment" value="Ваш комментарий." />
|
<Label htmlFor="comment">Ваш комментарий.</Label>
|
||||||
</div>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
id="comment"
|
id="comment"
|
||||||
|
@ -132,7 +132,7 @@ export const CommentsAddModal = (props: {
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { unixToDate, sinceUnixDate } from "#/api/utils";
|
import { unixToDate, sinceUnixDate } from "#/api/utils";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { Button, Dropdown } from "flowbite-react";
|
import { Button, Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { CommentsAddModal } from "./Comments.Add";
|
import { CommentsAddModal } from "./Comments.Add";
|
||||||
import { CommentsEditModal } from "./Comments.Edit";
|
import { CommentsEditModal } from "./Comments.Edit";
|
||||||
|
@ -183,12 +183,12 @@ export const CommentsComment = (props: {
|
||||||
<span className="w-6 h-6 bg-gray-400 iconify mdi--more-horiz hover:bg-gray-800 active:bg-gray-800"></span>
|
<span className="w-6 h-6 bg-gray-400 iconify mdi--more-horiz hover:bg-gray-800 active:bg-gray-800"></span>
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<Dropdown.Item onClick={() => setIsEditCommentsOpen(true)}>
|
<DropdownItem onClick={() => setIsEditCommentsOpen(true)}>
|
||||||
Редактировать
|
Редактировать
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
<Dropdown.Item onClick={() => _deleteComment()}>
|
<DropdownItem onClick={() => _deleteComment()}>
|
||||||
Удалить
|
Удалить
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
)}
|
)}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Button, Modal, ToggleSwitch, Label, Textarea } from "flowbite-react";
|
import { Button, Label, Modal, ModalBody, ModalHeader, Textarea, ToggleSwitch } from "flowbite-react";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
|
||||||
|
@ -56,16 +56,16 @@ export const CommentsEditModal = (props: {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>
|
<ModalHeader>
|
||||||
<p className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
<p className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
||||||
Редактировать комментарий
|
Редактировать комментарий
|
||||||
</p>
|
</p>
|
||||||
</Modal.Header>
|
</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<form className="flex flex-col gap-4" onSubmit={(e) => _sendComment(e)}>
|
<form className="flex flex-col gap-4" onSubmit={(e) => _sendComment(e)}>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2 sr-only">
|
<div className="block mb-2 sr-only">
|
||||||
<Label htmlFor="comment" value="Редактировать ваш комментарий." />
|
<Label htmlFor="comment" >Редактировать ваш комментарий.</Label>
|
||||||
</div>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
id="comment"
|
id="comment"
|
||||||
|
@ -99,7 +99,7 @@ export const CommentsEditModal = (props: {
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Card, Button, Modal, Spinner } from "flowbite-react";
|
import { Button, Card, Modal, ModalHeader, Spinner } from "flowbite-react";
|
||||||
import { CommentsComment } from "./Comments.Comment";
|
import { CommentsComment } from "./Comments.Comment";
|
||||||
import { useState, useEffect, useCallback } from "react";
|
import { useState, useEffect, useCallback } from "react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
@ -149,7 +149,7 @@ const CommentsAllModal = (props: {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>
|
<ModalHeader>
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<h2 className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
<h2 className="text-lg font-bold text-gray-900 lg:text-2xl dark:text-white">
|
||||||
Все комментарии
|
Все комментарии
|
||||||
|
@ -158,7 +158,7 @@ const CommentsAllModal = (props: {
|
||||||
всего: {isLoading ? "загрузка..." : data[0].total_count}
|
всего: {isLoading ? "загрузка..." : data[0].total_count}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Header>
|
</ModalHeader>
|
||||||
<div
|
<div
|
||||||
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { useRef } from "react";
|
import React, { useRef } from "react";
|
||||||
import Cropper, { ReactCropperElement } from "react-cropper";
|
import Cropper, { ReactCropperElement } from "react-cropper";
|
||||||
import "cropperjs/dist/cropper.css";
|
import "cropperjs/dist/cropper.css";
|
||||||
import { Button, Modal } from "flowbite-react";
|
import { Button, Modal, ModalBody, ModalFooter, ModalHeader } from "flowbite-react";
|
||||||
|
|
||||||
type CropModalProps = {
|
type CropModalProps = {
|
||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
|
@ -71,8 +71,8 @@ export const CropModal: React.FC<CropModalProps> = ({
|
||||||
}}
|
}}
|
||||||
size={"7xl"}
|
size={"7xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Обрезать изображение</Modal.Header>
|
<ModalHeader>Обрезать изображение</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<Cropper
|
<Cropper
|
||||||
src={selectedImage}
|
src={selectedImage}
|
||||||
style={{ height: 400, width: "100%" }}
|
style={{ height: 400, width: "100%" }}
|
||||||
|
@ -95,8 +95,8 @@ export const CropModal: React.FC<CropModalProps> = ({
|
||||||
</p>
|
</p>
|
||||||
<p>Используйте колёсико мыши что-бы изменить масштаб</p>
|
<p>Используйте колёсико мыши что-бы изменить масштаб</p>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<Button
|
<Button
|
||||||
color={"blue"}
|
color={"blue"}
|
||||||
disabled={isActionsDisabled}
|
disabled={isActionsDisabled}
|
||||||
|
@ -120,7 +120,7 @@ export const CropModal: React.FC<CropModalProps> = ({
|
||||||
>
|
>
|
||||||
Отменить
|
Отменить
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
177
app/components/Profile/Profile.BlockedUsersModal.tsx
Normal file
177
app/components/Profile/Profile.BlockedUsersModal.tsx
Normal file
|
@ -0,0 +1,177 @@
|
||||||
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
import { tryCatchAPI, unixToDate, useSWRfetcher } from "#/api/utils";
|
||||||
|
import { Avatar, Button, Modal, ModalHeader, useThemeMode } from "flowbite-react";
|
||||||
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
import useSWRInfinite from "swr/infinite";
|
||||||
|
import { Spinner } from "../Spinner/Spinner";
|
||||||
|
import { toast } from "react-toastify";
|
||||||
|
|
||||||
|
export const ProfileBlockedUsersModal = (props: {
|
||||||
|
isOpen: boolean;
|
||||||
|
setIsOpen: (isOpen: boolean) => void;
|
||||||
|
token: string;
|
||||||
|
profile_id: number;
|
||||||
|
}) => {
|
||||||
|
const [currentRef, setCurrentRef] = useState<any>(null);
|
||||||
|
const theme = useThemeMode();
|
||||||
|
const [actionsDisabled, setActionsDisabled] = useState(false);
|
||||||
|
const [unblockedUsers, setUnblockedUsers] = useState([]);
|
||||||
|
|
||||||
|
const modalRef = useCallback((ref) => {
|
||||||
|
setCurrentRef(ref);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const getKey = (pageIndex: number, previousPageData: any) => {
|
||||||
|
if (previousPageData && !previousPageData.content.length) return null;
|
||||||
|
let url = `${ENDPOINTS.user.blocklist}/all/${pageIndex}?token=${props.token}`;
|
||||||
|
return url;
|
||||||
|
};
|
||||||
|
|
||||||
|
const { data, error, isLoading, size, setSize } = useSWRInfinite(
|
||||||
|
getKey,
|
||||||
|
useSWRfetcher,
|
||||||
|
{ initialSize: 2 }
|
||||||
|
);
|
||||||
|
|
||||||
|
async function _addToBlocklist(profile_id) {
|
||||||
|
setActionsDisabled(true);
|
||||||
|
|
||||||
|
const tid = toast.loading(
|
||||||
|
unblockedUsers.includes(profile_id) ?
|
||||||
|
"Блокируем пользователя..."
|
||||||
|
: "Разблокируем пользователя...",
|
||||||
|
{
|
||||||
|
position: "bottom-center",
|
||||||
|
hideProgressBar: true,
|
||||||
|
closeOnClick: false,
|
||||||
|
pauseOnHover: false,
|
||||||
|
draggable: false,
|
||||||
|
theme: theme.mode == "light" ? "light" : "dark",
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
let url = `${ENDPOINTS.user.blocklist}`;
|
||||||
|
unblockedUsers.includes(profile_id) ?
|
||||||
|
(url += "/add/")
|
||||||
|
: (url += "/remove/");
|
||||||
|
url += `${profile_id}?token=${props.token}`;
|
||||||
|
|
||||||
|
const { data, error } = await tryCatchAPI(fetch(url));
|
||||||
|
if (error) {
|
||||||
|
toast.update(tid, {
|
||||||
|
render:
|
||||||
|
unblockedUsers.includes(profile_id) ?
|
||||||
|
"Ошибка блокировки"
|
||||||
|
: "Ошибка разблокировки",
|
||||||
|
type: "error",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
|
setActionsDisabled(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
toast.update(tid, {
|
||||||
|
render:
|
||||||
|
unblockedUsers.includes(profile_id) ?
|
||||||
|
"Пользователь заблокирован"
|
||||||
|
: "Пользователь разблокирован",
|
||||||
|
type: "success",
|
||||||
|
autoClose: 2500,
|
||||||
|
isLoading: false,
|
||||||
|
closeOnClick: true,
|
||||||
|
draggable: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (unblockedUsers.includes(profile_id)) {
|
||||||
|
setUnblockedUsers((prev) => {
|
||||||
|
return prev.filter((item) => item !== profile_id);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
setUnblockedUsers((prev) => {
|
||||||
|
return [...prev, profile_id];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
setActionsDisabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
const [content, setContent] = useState([]);
|
||||||
|
useEffect(() => {
|
||||||
|
if (data) {
|
||||||
|
let allReleases = [];
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
allReleases.push(...data[i].content);
|
||||||
|
}
|
||||||
|
setContent(allReleases);
|
||||||
|
}
|
||||||
|
}, [data]);
|
||||||
|
|
||||||
|
const [scrollPosition, setScrollPosition] = useState(0);
|
||||||
|
function handleScroll() {
|
||||||
|
const height = currentRef.scrollHeight - currentRef.clientHeight;
|
||||||
|
const windowScroll = currentRef.scrollTop;
|
||||||
|
const scrolled = (windowScroll / height) * 100;
|
||||||
|
setScrollPosition(Math.floor(scrolled));
|
||||||
|
}
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (scrollPosition >= 95 && scrollPosition <= 96) {
|
||||||
|
setSize(size + 1);
|
||||||
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [scrollPosition]);
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Modal
|
||||||
|
dismissible
|
||||||
|
show={props.isOpen}
|
||||||
|
onClose={() => props.setIsOpen(false)}
|
||||||
|
size={"7xl"}
|
||||||
|
>
|
||||||
|
<ModalHeader>Заблокированные пользователи</ModalHeader>
|
||||||
|
<div
|
||||||
|
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
||||||
|
onScroll={handleScroll}
|
||||||
|
ref={modalRef}
|
||||||
|
>
|
||||||
|
{content && content.length > 0 ?
|
||||||
|
content.map((user) => {
|
||||||
|
return (
|
||||||
|
<div className="flex items-center justify-between gap-2" key={`blockeduser-${user.id}`}>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Avatar
|
||||||
|
alt=""
|
||||||
|
img={user.avatar}
|
||||||
|
rounded={true}
|
||||||
|
size={"md"}
|
||||||
|
bordered={true}
|
||||||
|
color={user.is_online ? "success" : "light"}
|
||||||
|
className="flex-shrink-0"
|
||||||
|
/>
|
||||||
|
<div className="flex flex-col gap-1">
|
||||||
|
<p className="text-lg font-semibold">{user.login}</p>
|
||||||
|
<p>Заблокирован: {unixToDate(user.added_date, "full")}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Button
|
||||||
|
color={!unblockedUsers.includes(user.id) ? "blue" : "red"}
|
||||||
|
onClick={() => _addToBlocklist(user.id)}
|
||||||
|
disabled={actionsDisabled}
|
||||||
|
className="flex-grow-0 h-fit"
|
||||||
|
>
|
||||||
|
{!unblockedUsers.includes(user.id) ?
|
||||||
|
"Разблокировать"
|
||||||
|
: "Заблокировать"}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
: "Нет заблокированных пользователей"}
|
||||||
|
{isLoading && <Spinner />}
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Button, Modal, Textarea, useThemeMode } from "flowbite-react";
|
import { Button, Modal, ModalBody, ModalFooter, ModalHeader, Textarea, useThemeMode } from "flowbite-react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { useSWRConfig } from "swr";
|
import { useSWRConfig } from "swr";
|
||||||
|
@ -138,8 +138,8 @@ export const ProfileEditLoginModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"4xl"}
|
size={"4xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Изменить никнейм</Modal.Header>
|
<ModalHeader>Изменить никнейм</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
{loading ?
|
{loading ?
|
||||||
<div className="flex items-center justify-center py-8">
|
<div className="flex items-center justify-center py-8">
|
||||||
<Spinner />
|
<Spinner />
|
||||||
|
@ -173,8 +173,8 @@ export const ProfileEditLoginModal = (props: {
|
||||||
}
|
}
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
{_loginData.is_change_available && (
|
{_loginData.is_change_available && (
|
||||||
<Button
|
<Button
|
||||||
color="blue"
|
color="blue"
|
||||||
|
@ -191,7 +191,7 @@ export const ProfileEditLoginModal = (props: {
|
||||||
>
|
>
|
||||||
Отмена
|
Отмена
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { FileInput, Label, Modal, useThemeMode } from "flowbite-react";
|
import { FileInput, Label, Modal, ModalBody, ModalHeader, useThemeMode } from "flowbite-react";
|
||||||
import { Spinner } from "../Spinner/Spinner";
|
import { Spinner } from "../Spinner/Spinner";
|
||||||
import useSWR from "swr";
|
import useSWR from "swr";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
@ -14,6 +14,7 @@ import { useSWRConfig } from "swr";
|
||||||
import { useUserStore } from "#/store/auth";
|
import { useUserStore } from "#/store/auth";
|
||||||
import { ProfileEditLoginModal } from "./Profile.EditLoginModal";
|
import { ProfileEditLoginModal } from "./Profile.EditLoginModal";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
|
import { ProfileBlockedUsersModal } from "./Profile.BlockedUsersModal";
|
||||||
|
|
||||||
export const ProfileEditModal = (props: {
|
export const ProfileEditModal = (props: {
|
||||||
isOpen: boolean;
|
isOpen: boolean;
|
||||||
|
@ -25,6 +26,7 @@ export const ProfileEditModal = (props: {
|
||||||
const [statusModalOpen, setStatusModalOpen] = useState(false);
|
const [statusModalOpen, setStatusModalOpen] = useState(false);
|
||||||
const [socialModalOpen, setSocialModalOpen] = useState(false);
|
const [socialModalOpen, setSocialModalOpen] = useState(false);
|
||||||
const [loginModalOpen, setLoginModalOpen] = useState(false);
|
const [loginModalOpen, setLoginModalOpen] = useState(false);
|
||||||
|
const [blockedModalOpen, setBlockedModalOpen] = useState(false);
|
||||||
const [privacyModalSetting, setPrivacyModalSetting] = useState("none");
|
const [privacyModalSetting, setPrivacyModalSetting] = useState("none");
|
||||||
const [privacySettings, setPrivacySettings] = useState({
|
const [privacySettings, setPrivacySettings] = useState({
|
||||||
privacy_stats: 9,
|
privacy_stats: 9,
|
||||||
|
@ -186,6 +188,7 @@ export const ProfileEditModal = (props: {
|
||||||
if (avatarModalProps.croppedImage) {
|
if (avatarModalProps.croppedImage) {
|
||||||
_uploadAvatar();
|
_uploadAvatar();
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [avatarModalProps.croppedImage]);
|
}, [avatarModalProps.croppedImage]);
|
||||||
|
|
||||||
if (!prefData || !loginData || prefError || loginError) {
|
if (!prefData || !loginData || prefError || loginError) {
|
||||||
|
@ -199,8 +202,8 @@ export const ProfileEditModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"7xl"}
|
size={"7xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Редактирование профиля</Modal.Header>
|
<ModalHeader>Редактирование профиля</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
{prefLoading ?
|
{prefLoading ?
|
||||||
<Spinner />
|
<Spinner />
|
||||||
: <div className="flex flex-col gap-4">
|
: <div className="flex flex-col gap-4">
|
||||||
|
@ -355,13 +358,18 @@ export const ProfileEditModal = (props: {
|
||||||
}
|
}
|
||||||
</p>
|
</p>
|
||||||
</button>
|
</button>
|
||||||
{/* <button className="p-2 text-left rounded-md hover:bg-gray-100 dark:hover:bg-gray-900">
|
<button
|
||||||
|
className="p-2 text-left rounded-md hover:bg-gray-100 dark:hover:bg-gray-900"
|
||||||
|
onClick={() => {
|
||||||
|
setBlockedModalOpen(true);
|
||||||
|
}}
|
||||||
|
>
|
||||||
<p className="text-lg">Блоклист</p>
|
<p className="text-lg">Блоклист</p>
|
||||||
<p className="text-base text-gray-500 dark:text-gray-400">
|
<p className="text-base text-gray-500 dark:text-gray-400">
|
||||||
Список пользователей, которым запрещён доступ к вашей
|
Список пользователей, которым запрещён доступ к вашей
|
||||||
странице
|
странице
|
||||||
</p>
|
</p>
|
||||||
</button> */}
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
|
@ -387,7 +395,7 @@ export const ProfileEditModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
{props.token ?
|
{props.token ?
|
||||||
<>
|
<>
|
||||||
|
@ -431,6 +439,12 @@ export const ProfileEditModal = (props: {
|
||||||
setLogin={setLogin}
|
setLogin={setLogin}
|
||||||
profile_id={props.profile_id}
|
profile_id={props.profile_id}
|
||||||
/>
|
/>
|
||||||
|
<ProfileBlockedUsersModal
|
||||||
|
isOpen={blockedModalOpen}
|
||||||
|
setIsOpen={setBlockedModalOpen}
|
||||||
|
token={props.token}
|
||||||
|
profile_id={props.profile_id}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
: ""}
|
: ""}
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Modal, useThemeMode } from "flowbite-react";
|
import { Modal, ModalBody, ModalHeader, useThemeMode } from "flowbite-react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
|
@ -98,8 +98,8 @@ export const ProfileEditPrivacyModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"4xl"}
|
size={"4xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>{setting_text[props.setting]}</Modal.Header>
|
<ModalHeader>{setting_text[props.setting]}</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
{props.setting != "none" ?
|
{props.setting != "none" ?
|
||||||
<>
|
<>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
|
@ -202,7 +202,7 @@ export const ProfileEditPrivacyModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
: ""}
|
: ""}
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Button, Modal, Label, TextInput, useThemeMode } from "flowbite-react";
|
import {
|
||||||
|
Button,
|
||||||
|
Label,
|
||||||
|
Modal,
|
||||||
|
ModalBody,
|
||||||
|
ModalFooter,
|
||||||
|
ModalHeader,
|
||||||
|
TextInput,
|
||||||
|
useThemeMode,
|
||||||
|
} from "flowbite-react";
|
||||||
import { Spinner } from "../Spinner/Spinner";
|
import { Spinner } from "../Spinner/Spinner";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
@ -164,8 +173,8 @@ export const ProfileEditSocialModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"4xl"}
|
size={"4xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Соц. сети</Modal.Header>
|
<ModalHeader>Соц. сети</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<p className="p-2 text-gray-400 border-2 border-gray-200 rounded-md dark:border-gray-500 dark:text-gray-300">
|
<p className="p-2 text-gray-400 border-2 border-gray-200 rounded-md dark:border-gray-500 dark:text-gray-300">
|
||||||
Укажите ссылки на свои социальные сети, чтобы другие пользователи
|
Укажите ссылки на свои социальные сети, чтобы другие пользователи
|
||||||
могли с вами связаться
|
могли с вами связаться
|
||||||
|
@ -177,7 +186,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
: <div className="flex flex-col gap-4 py-4">
|
: <div className="flex flex-col gap-4 py-4">
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label htmlFor="vk-page" value="ВКонтакте" />
|
<Label htmlFor="vk-page">ВКонтакте</Label>
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="vk-page"
|
id="vk-page"
|
||||||
|
@ -189,7 +198,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label htmlFor="tg-page" value="Telegram" />
|
<Label htmlFor="tg-page">Telegram</Label>
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="tg-page"
|
id="tg-page"
|
||||||
|
@ -201,7 +210,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label htmlFor="discord-page" value="Discord" />
|
<Label htmlFor="discord-page">Discord</Label>
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="discord-page"
|
id="discord-page"
|
||||||
|
@ -213,7 +222,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label htmlFor="inst-page" value="Instagram" />
|
<Label htmlFor="inst-page">Instagram</Label>
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="inst-page"
|
id="inst-page"
|
||||||
|
@ -225,7 +234,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label htmlFor="tt-page" value="TikTok" />
|
<Label htmlFor="tt-page">TikTok</Label>
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="tt-page"
|
id="tt-page"
|
||||||
|
@ -237,8 +246,8 @@ export const ProfileEditSocialModal = (props: {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<Button
|
<Button
|
||||||
color="blue"
|
color="blue"
|
||||||
onClick={() => _setSocialSetting()}
|
onClick={() => _setSocialSetting()}
|
||||||
|
@ -253,7 +262,7 @@ export const ProfileEditSocialModal = (props: {
|
||||||
>
|
>
|
||||||
Отмена
|
Отмена
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Button, Modal, Textarea, useThemeMode } from "flowbite-react";
|
import { Button, Modal, ModalBody, ModalFooter, ModalHeader, Textarea, useThemeMode } from "flowbite-react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { useSWRConfig } from "swr";
|
import { useSWRConfig } from "swr";
|
||||||
|
@ -96,8 +96,8 @@ export const ProfileEditStatusModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"4xl"}
|
size={"4xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Изменить статус</Modal.Header>
|
<ModalHeader>Изменить статус</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<Textarea
|
<Textarea
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
rows={3}
|
rows={3}
|
||||||
|
@ -111,8 +111,8 @@ export const ProfileEditStatusModal = (props: {
|
||||||
<p className="text-sm text-right text-gray-500 dark:text-gray-300">
|
<p className="text-sm text-right text-gray-500 dark:text-gray-300">
|
||||||
{_stringLength}/80
|
{_stringLength}/80
|
||||||
</p>
|
</p>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<Button
|
<Button
|
||||||
color="blue"
|
color="blue"
|
||||||
onClick={() => _setStatusSetting()}
|
onClick={() => _setStatusSetting()}
|
||||||
|
@ -123,7 +123,7 @@ export const ProfileEditStatusModal = (props: {
|
||||||
<Button color="red" onClick={() => props.setIsOpen(false)}>
|
<Button color="red" onClick={() => props.setIsOpen(false)}>
|
||||||
Отмена
|
Отмена
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,49 +1,79 @@
|
||||||
import { Card, Carousel } from "flowbite-react";
|
import { Card } from "flowbite-react";
|
||||||
import type {
|
|
||||||
FlowbiteCarouselIndicatorsTheme,
|
|
||||||
FlowbiteCarouselControlTheme,
|
|
||||||
CustomFlowbiteTheme,
|
|
||||||
} from "flowbite-react";
|
|
||||||
import { ReleaseLink } from "../ReleaseLink/ReleaseLinkUpdate";
|
|
||||||
|
|
||||||
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
import { ReleaseChips } from "../ReleasePoster/Chips";
|
||||||
active: {
|
import { Poster } from "../ReleasePoster/Poster";
|
||||||
off: "bg-gray-400/50 hover:bg-gray-200",
|
import Link from "next/link";
|
||||||
on: "bg-gray-200",
|
|
||||||
},
|
|
||||||
base: "h-3 w-3 rounded-full max-w-[300px]",
|
|
||||||
wrapper: "absolute bottom-5 left-1/2 flex -translate-x-1/2 space-x-3",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselControlsTheme: FlowbiteCarouselControlTheme = {
|
const profile_lists = {
|
||||||
base: "inline-flex h-8 w-8 items-center justify-center rounded-full group-focus:outline-none group-focus:ring-4 bg-gray-400/30 group-hover:bg-gray-400/60 group-focus:ring-gray-400/70 sm:h-10 sm:w-10",
|
// 0: "Не смотрю",
|
||||||
icon: "h-5 w-5 text-gray-400 sm:h-6 sm:w-6",
|
1: { name: "Смотрю", bg_color: "bg-green-500" },
|
||||||
};
|
2: { name: "В планах", bg_color: "bg-purple-500" },
|
||||||
|
3: { name: "Просмотрено", bg_color: "bg-blue-500" },
|
||||||
const CarouselTheme: CustomFlowbiteTheme["carousel"] = {
|
4: { name: "Отложено", bg_color: "bg-yellow-500" },
|
||||||
root: {
|
5: { name: "Брошено", bg_color: "bg-red-500" },
|
||||||
base: "relative h-full w-full max-w-[375px]",
|
|
||||||
},
|
|
||||||
indicators: CarouselIndicatorsTheme,
|
|
||||||
control: CarouselControlsTheme,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ProfileReleaseHistory = (props: any) => {
|
export const ProfileReleaseHistory = (props: any) => {
|
||||||
return (
|
return (
|
||||||
<Card className="h-fit">
|
<Card className="h-fit">
|
||||||
<h1 className="text-2xl font-bold">Недавно просмотренные</h1>
|
<h1 className="text-2xl font-bold">Недавно просмотренные</h1>
|
||||||
<div className="flex justify-center">
|
<div className="flex flex-col gap-4">
|
||||||
<Carousel theme={CarouselTheme}>
|
{props.history.map((release) => {
|
||||||
{props.history.map((release) => {
|
const genres = [];
|
||||||
return (
|
const grade = release.grade ? Number(release.grade.toFixed(1)) : null;
|
||||||
<ReleaseLink
|
const profile_list_status = release.profile_list_status || null;
|
||||||
key={`history-${release.id}`}
|
let user_list = null;
|
||||||
{...release}
|
if (profile_list_status != null || profile_list_status != 0) {
|
||||||
chipsSettings={{ lastWatchedHidden: false }}
|
user_list = profile_lists[profile_list_status];
|
||||||
/>
|
}
|
||||||
);
|
if (release.genres) {
|
||||||
})}
|
const genres_array = release.genres.split(",");
|
||||||
</Carousel>
|
genres_array.forEach((genre) => {
|
||||||
|
genres.push(genre.trim());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<Link href={`/release/${release.id}`} key={`history-${release.id}`}>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<div className="flex-shrink-0 w-32">
|
||||||
|
<Poster image={release.image} className="h-auto" />
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col gap-1">
|
||||||
|
<ReleaseChips
|
||||||
|
{...release}
|
||||||
|
user_list={user_list}
|
||||||
|
grade={grade}
|
||||||
|
settings={{ lastWatchedHidden: false }}
|
||||||
|
/>
|
||||||
|
<div>
|
||||||
|
{genres.length > 0 &&
|
||||||
|
genres.map((genre: string, index: number) => {
|
||||||
|
return (
|
||||||
|
<span
|
||||||
|
key={`release_${props.id}_genre_${genre}_${index}`}
|
||||||
|
className="text-sm font-light dark:text-white"
|
||||||
|
>
|
||||||
|
{index > 0 && ", "}
|
||||||
|
{genre}
|
||||||
|
</span>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
{release.title_ru && (
|
||||||
|
<p className="text-lg font-bold dark:text-white">
|
||||||
|
{release.title_ru}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
{release.title_original && (
|
||||||
|
<p className="text-sm text-gray-600 dark:text-gray-300">
|
||||||
|
{release.title_original}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
})}
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,16 +1,5 @@
|
||||||
import {
|
import { Button, Card, Modal, ModalHeader, Rating, RatingStar } from "flowbite-react";
|
||||||
Card,
|
|
||||||
Carousel,
|
|
||||||
RatingStar,
|
|
||||||
Rating,
|
|
||||||
Modal,
|
|
||||||
Button,
|
|
||||||
} from "flowbite-react";
|
|
||||||
import type {
|
|
||||||
FlowbiteCarouselIndicatorsTheme,
|
|
||||||
FlowbiteCarouselControlTheme,
|
|
||||||
} from "flowbite-react";
|
|
||||||
import Image from "next/image";
|
|
||||||
import { unixToDate, useSWRfetcher } from "#/api/utils";
|
import { unixToDate, useSWRfetcher } from "#/api/utils";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
@ -19,28 +8,6 @@ import useSWRInfinite from "swr/infinite";
|
||||||
import { Spinner } from "../Spinner/Spinner";
|
import { Spinner } from "../Spinner/Spinner";
|
||||||
import { Poster } from "../ReleasePoster/Poster";
|
import { Poster } from "../ReleasePoster/Poster";
|
||||||
|
|
||||||
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
|
||||||
active: {
|
|
||||||
off: "bg-gray-300/50 hover:bg-gray-400 dark:bg-gray-400/50 dark:hover:bg-gray-200",
|
|
||||||
on: "bg-gray-600 dark:bg-gray-200",
|
|
||||||
},
|
|
||||||
base: "h-3 w-3 rounded-full",
|
|
||||||
wrapper: "absolute bottom-5 left-1/2 flex -translate-x-1/2 space-x-3",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselControlsTheme: FlowbiteCarouselControlTheme = {
|
|
||||||
base: "inline-flex h-8 w-8 items-center justify-center rounded-full bg-gray-600/30 group-hover:bg-gray-600/50 group-focus:outline-none group-focus:ring-4 group-focus:ring-gray-600 dark:bg-gray-400/30 dark:group-hover:bg-gray-400/60 dark:group-focus:ring-gray-400/70 sm:h-10 sm:w-10",
|
|
||||||
icon: "h-5 w-5 text-gray-600 dark:text-gray-400 sm:h-6 sm:w-6",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselTheme = {
|
|
||||||
root: {
|
|
||||||
base: "relative h-full w-full max-w-[700px]",
|
|
||||||
},
|
|
||||||
indicators: CarouselIndicatorsTheme,
|
|
||||||
control: CarouselControlsTheme,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const ProfileReleaseRatings = (props: any) => {
|
export const ProfileReleaseRatings = (props: any) => {
|
||||||
const [modal, setModal] = useState(false);
|
const [modal, setModal] = useState(false);
|
||||||
return (
|
return (
|
||||||
|
@ -51,33 +18,31 @@ export const ProfileReleaseRatings = (props: any) => {
|
||||||
Посмотреть все
|
Посмотреть все
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex min-h-[200px] items-center justify-center">
|
<div className="flex flex-col w-full gap-4">
|
||||||
<Carousel theme={CarouselTheme}>
|
{props.ratings.map((release) => {
|
||||||
{props.ratings.map((release) => {
|
return (
|
||||||
return (
|
<Link href={`/release/${release.id}`} key={`vote-${release.id}`}>
|
||||||
<Link href={`/release/${release.id}`} key={`vote-${release.id}`}>
|
<div className="flex gap-2">
|
||||||
<div className="flex gap-4 xl:mx-20">
|
<div className="max-w-32">
|
||||||
<div className="max-w-32">
|
<Poster image={release.image} />
|
||||||
<Poster image={release.image} />
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col gap-1 py-4">
|
|
||||||
<h2 className="text-lg">{release.title_ru}</h2>
|
|
||||||
<Rating size="md">
|
|
||||||
<RatingStar filled={release.my_vote >= 1} />
|
|
||||||
<RatingStar filled={release.my_vote >= 2} />
|
|
||||||
<RatingStar filled={release.my_vote >= 3} />
|
|
||||||
<RatingStar filled={release.my_vote >= 4} />
|
|
||||||
<RatingStar filled={release.my_vote >= 5} />
|
|
||||||
</Rating>
|
|
||||||
<h2 className="text-gray-500 text-md dark:text-gray-400">
|
|
||||||
{unixToDate(release.voted_at, "full")}
|
|
||||||
</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
<div className="flex flex-col gap-1">
|
||||||
);
|
<h2 className="text-lg font-bold dark:text-white">{release.title_ru}</h2>
|
||||||
})}
|
<Rating size="md">
|
||||||
</Carousel>
|
<RatingStar filled={release.my_vote >= 1} />
|
||||||
|
<RatingStar filled={release.my_vote >= 2} />
|
||||||
|
<RatingStar filled={release.my_vote >= 3} />
|
||||||
|
<RatingStar filled={release.my_vote >= 4} />
|
||||||
|
<RatingStar filled={release.my_vote >= 5} />
|
||||||
|
</Rating>
|
||||||
|
<h2 className="text-gray-500 text-md dark:text-gray-400">
|
||||||
|
{unixToDate(release.voted_at, "full")}
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
})}
|
||||||
</div>
|
</div>
|
||||||
<ProfileReleaseRatingsModal
|
<ProfileReleaseRatingsModal
|
||||||
profile_id={props.profile_id}
|
profile_id={props.profile_id}
|
||||||
|
@ -148,7 +113,7 @@ const ProfileReleaseRatingsModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"4xl"}
|
size={"4xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Оценки</Modal.Header>
|
<ModalHeader>Оценки</ModalHeader>
|
||||||
<div
|
<div
|
||||||
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
|
|
15
app/components/Profile/Profile.Role.tsx
Normal file
15
app/components/Profile/Profile.Role.tsx
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
interface UserRoleProps {
|
||||||
|
name: string;
|
||||||
|
color: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const UserRole = ({ name, color }: UserRoleProps) => {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={`text-[var(--color)] border border-[var(--color)] rounded-md`}
|
||||||
|
style={{ "--color": `#${color}` } as React.CSSProperties}
|
||||||
|
>
|
||||||
|
<p className="px-1.5 py-0.5">{name}</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
20
app/components/Profile/Profile.Social.tsx
Normal file
20
app/components/Profile/Profile.Social.tsx
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
interface UserSocialProps {
|
||||||
|
icon: string;
|
||||||
|
url?: string;
|
||||||
|
nickname: string;
|
||||||
|
color: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const UserSocial = ({ nickname, icon, color }: UserSocialProps) => {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={`border border-[var(--color)] rounded-md`}
|
||||||
|
style={{ "--color": `#${color}` } as React.CSSProperties}
|
||||||
|
>
|
||||||
|
<div className="flex gap-1 items-center px-1.5 py-1">
|
||||||
|
<span className={`iconify w-6 h-6 bg-[var(--color)] ${icon}`}></span>
|
||||||
|
<p>{nickname}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
|
@ -1,145 +1,154 @@
|
||||||
"use client";
|
"use client";
|
||||||
import { Avatar, Card, Button } from "flowbite-react";
|
|
||||||
import Link from "next/link";
|
|
||||||
import { useRouter } from "next/navigation";
|
|
||||||
import { Chip } from "../Chip/Chip";
|
|
||||||
|
|
||||||
export const ProfileUser = (props: {
|
import { Avatar, Card, useThemeMode } from "flowbite-react";
|
||||||
isOnline: boolean;
|
import { UserRole } from "./Profile.Role";
|
||||||
|
import { UserSocial } from "./Profile.Social";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
|
interface ProfileUserProps {
|
||||||
avatar: string;
|
avatar: string;
|
||||||
login: string;
|
login: string;
|
||||||
status: string;
|
status: string;
|
||||||
socials: {
|
|
||||||
isPrivate: boolean;
|
|
||||||
hasSocials: boolean;
|
|
||||||
socials: {
|
|
||||||
name: string;
|
|
||||||
nickname: any;
|
|
||||||
icon: string;
|
|
||||||
urlPrefix?: string | undefined;
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
chips: {
|
|
||||||
hasChips: boolean;
|
|
||||||
isMyProfile: boolean;
|
|
||||||
isVerified: boolean;
|
|
||||||
isSponsor: boolean;
|
|
||||||
isBlocked: boolean;
|
|
||||||
roles?: {
|
|
||||||
id: number;
|
|
||||||
name: string;
|
|
||||||
color: string;
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
rating: number;
|
rating: number;
|
||||||
}) => {
|
roles: {
|
||||||
const router = useRouter();
|
id: number;
|
||||||
|
name: string;
|
||||||
|
color: string;
|
||||||
|
}[];
|
||||||
|
isMyProfile: boolean;
|
||||||
|
isSponsor: boolean;
|
||||||
|
isBlocked: boolean;
|
||||||
|
isVerified: boolean;
|
||||||
|
isOnline: boolean;
|
||||||
|
socials: {
|
||||||
|
vk: string;
|
||||||
|
tg: string;
|
||||||
|
tt: string;
|
||||||
|
inst: string;
|
||||||
|
discord: string;
|
||||||
|
};
|
||||||
|
is_social_hidden: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const ProfileUser = ({
|
||||||
|
avatar,
|
||||||
|
login,
|
||||||
|
status,
|
||||||
|
rating,
|
||||||
|
roles,
|
||||||
|
isMyProfile,
|
||||||
|
isVerified,
|
||||||
|
isOnline,
|
||||||
|
isSponsor,
|
||||||
|
isBlocked,
|
||||||
|
socials,
|
||||||
|
is_social_hidden,
|
||||||
|
}: ProfileUserProps) => {
|
||||||
|
const theme = useThemeMode().mode;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card className="h-fit">
|
<Card>
|
||||||
{props.chips.hasChips && (
|
{(isMyProfile ||
|
||||||
<div className="flex gap-1 overflow-x-auto scrollbar-thin">
|
isVerified ||
|
||||||
{props.chips.isMyProfile && (
|
isSponsor ||
|
||||||
<Chip bg_color="bg-blue-500" name="Мой профиль" />
|
isBlocked ||
|
||||||
)}
|
roles.length > 0) && (
|
||||||
{props.chips.isVerified && (
|
<div className="flex flex-wrap gap-2">
|
||||||
<Chip bg_color="bg-green-500" name="Верифицирован" />
|
{isMyProfile && <UserRole name="Мой профиль" color="3f83f8" />}
|
||||||
)}
|
{isBlocked && <UserRole name="Заблокирован" color="f56565" />}
|
||||||
{props.chips.isSponsor && (
|
{isVerified && <UserRole name="Верифицирован" color="0e9f6e" />}
|
||||||
<Chip bg_color="bg-yellow-500" name="Спонсор Anixart" />
|
{isSponsor && <UserRole name="Спонсор Anixart" color="ecc94b" />}
|
||||||
)}
|
{roles.map((role) => (
|
||||||
{props.chips.isBlocked && (
|
<UserRole key={role.id} name={role.name} color={role.color} />
|
||||||
<Chip bg_color="bg-red-500" name="Заблокирован" />
|
))}
|
||||||
)}
|
|
||||||
{props.chips.roles &&
|
|
||||||
props.chips.roles.length > 0 &&
|
|
||||||
props.chips.roles.map((role: any) => (
|
|
||||||
<Chip
|
|
||||||
key={role.id}
|
|
||||||
bg_color={`bg-[var(--role-color)]`}
|
|
||||||
name={role.name}
|
|
||||||
style={
|
|
||||||
{
|
|
||||||
"--role-color": `#${role.color}`,
|
|
||||||
} as React.CSSProperties
|
|
||||||
}
|
|
||||||
/>
|
|
||||||
))}
|
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<Avatar
|
<div className="flex flex-col items-center gap-4 sm:items-start sm:flex-row">
|
||||||
alt=""
|
<Avatar
|
||||||
img={props.avatar}
|
alt=""
|
||||||
rounded={true}
|
img={avatar}
|
||||||
size={"lg"}
|
rounded={true}
|
||||||
className="relative flex-col items-center justify-center sm:justify-start sm:flex-row"
|
size={"lg"}
|
||||||
bordered={true}
|
bordered={true}
|
||||||
color={props.isOnline ? "success" : "light"}
|
color={isOnline ? "success" : "light"}
|
||||||
>
|
className="flex-shrink-0"
|
||||||
<div className="space-y-1 text-2xl font-medium whitespace-pre-wrap dark:text-white">
|
/>
|
||||||
<div className="text-center sm:text-left">
|
<div className="flex flex-col gap-2">
|
||||||
{props.login}{" "}
|
<p className="flex items-center gap-2 text-2xl font-semibold">
|
||||||
|
{login}
|
||||||
<span
|
<span
|
||||||
className={`border rounded-md px-2 py-1 text-sm ${
|
className={`border rounded-md px-2 py-1 min-w-8 text-sm flex items-center justify-center ${
|
||||||
props.rating > 0
|
rating > 0 ?
|
||||||
? "border-green-500 text-green-500"
|
"border-green-500 text-green-500"
|
||||||
: "border-red-500 text-red-500"
|
: "border-red-500 text-red-500"
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
{props.rating}
|
{rating}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</p>
|
||||||
<div className="text-sm text-gray-500 whitespace-pre-wrap sm:text-md dark:text-gray-400 ">
|
<p className="text-sm whitespace-pre-wrap sm:text-md">{status}</p>
|
||||||
{props.status}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</Avatar>
|
</div>
|
||||||
{props.socials.hasSocials && !props.socials.isPrivate && (
|
{!is_social_hidden &&
|
||||||
<div className="flex items-center gap-1 overflow-x-auto scrollbar-thin">
|
(socials.vk ||
|
||||||
{props.socials.socials
|
socials.tg ||
|
||||||
.filter((social: any) => {
|
socials.discord ||
|
||||||
if (social.nickname == "") {
|
socials.tt ||
|
||||||
return false;
|
socials.inst) && (
|
||||||
}
|
<div className="flex flex-wrap gap-2">
|
||||||
return true;
|
{socials.vk && (
|
||||||
})
|
<Link href={`https://vk.com/${socials.vk}`} target="_blank">
|
||||||
.map((social: any) => {
|
<UserSocial
|
||||||
if (social.name == "discord" && social.nickname != "")
|
nickname={socials.vk}
|
||||||
return (
|
icon="fa6-brands--vk"
|
||||||
<Button
|
url={`https://vk.com/${socials.vk}`}
|
||||||
color="light"
|
color="4a76a8"
|
||||||
key={social.name}
|
/>
|
||||||
onClick={() => {
|
</Link>
|
||||||
window.navigator.clipboard.writeText(social.nickname);
|
)}
|
||||||
alert("Скопировано!");
|
{socials.tg && (
|
||||||
}}
|
<Link href={`https://t.me/${socials.tg}`} target="_blank">
|
||||||
>
|
<UserSocial
|
||||||
<div className="flex items-center justify-center gap-2">
|
nickname={socials.tg}
|
||||||
<span
|
icon="fa6-brands--telegram"
|
||||||
className={`iconify h-4 w-4 sm:h-6 sm:w-6 ${social.icon} dark:fill-white`}
|
url={`https://t.me/${socials.tg}`}
|
||||||
></span>
|
color="2aabee"
|
||||||
{social.nickname}
|
/>
|
||||||
</div>
|
</Link>
|
||||||
</Button>
|
)}
|
||||||
);
|
{socials.tt && (
|
||||||
return (
|
<Link href={`https://tiktok.com/@${socials.tt}`} target="_blank">
|
||||||
<Link
|
<UserSocial
|
||||||
key={social.name}
|
nickname={socials.tt}
|
||||||
href={`${social.urlPrefix}${social.nickname}`}
|
icon="fa6-brands--tiktok"
|
||||||
target="_blank"
|
url={`https://tiktok.com/@${socials.tt}`}
|
||||||
>
|
color={theme == "light" ? "000000" : "ffffff"}
|
||||||
<Button color="light">
|
/>
|
||||||
<div className="flex items-center justify-center gap-2">
|
</Link>
|
||||||
<span
|
)}
|
||||||
className={`iconify h-4 w-4 sm:h-6 sm:w-6 ${social.icon} dark:fill-white`}
|
{socials.inst && (
|
||||||
></span>
|
<Link
|
||||||
{social.nickname}
|
href={`https://instagram.com/${socials.inst}`}
|
||||||
</div>
|
target="_blank"
|
||||||
</Button>
|
>
|
||||||
</Link>
|
<UserSocial
|
||||||
);
|
nickname={socials.inst}
|
||||||
})}
|
icon="fa6-brands--instagram"
|
||||||
</div>
|
url={`https://instagram.com/${socials.inst}`}
|
||||||
)}
|
color="c32aa3"
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
{socials.discord && (
|
||||||
|
<UserSocial
|
||||||
|
nickname={socials.discord}
|
||||||
|
icon="fa6-brands--discord"
|
||||||
|
url={`https://discord.com/${socials.discord}`}
|
||||||
|
color="5865f2"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -28,6 +28,7 @@ export const ProfileWatchDynamic = (props: { watchDynamic: Array<any> }) => {
|
||||||
},
|
},
|
||||||
tooltip: {
|
tooltip: {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
|
theme:"dark",
|
||||||
x: {
|
x: {
|
||||||
show: false,
|
show: false,
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { Card, Table } from "flowbite-react";
|
import { Card, Table, TableBody, TableCell, TableRow } from "flowbite-react";
|
||||||
import { ReleaseInfoSearchLink } from "#/components/ReleaseInfo/ReleaseInfo.SearchLink";
|
import { ReleaseInfoSearchLink } from "#/components/ReleaseInfo/ReleaseInfo.SearchLink";
|
||||||
import { unixToDate, minutesToTime } from "#/api/utils";
|
import { unixToDate, minutesToTime } from "#/api/utils";
|
||||||
const weekDay = [
|
const weekDay = [
|
||||||
|
@ -30,9 +30,9 @@ export const ReleaseInfoInfo = (props: {
|
||||||
return (
|
return (
|
||||||
<Card>
|
<Card>
|
||||||
<Table>
|
<Table>
|
||||||
<Table.Body>
|
<TableBody>
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
{props.country ?
|
{props.country ?
|
||||||
props.country.toLowerCase() == "япония" ?
|
props.country.toLowerCase() == "япония" ?
|
||||||
<span className="w-8 h-8 iconify-color twemoji--flag-for-japan"></span>
|
<span className="w-8 h-8 iconify-color twemoji--flag-for-japan"></span>
|
||||||
|
@ -40,45 +40,45 @@ export const ReleaseInfoInfo = (props: {
|
||||||
|
|
||||||
: <span className="w-8 h-8 iconify-color twemoji--flag-for-united-nations "></span>
|
: <span className="w-8 h-8 iconify-color twemoji--flag-for-united-nations "></span>
|
||||||
}
|
}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
<TableCell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
||||||
{props.country && props.country}
|
{props.country && props.country}
|
||||||
{(props.aired_on_date != 0 || props.year) && ", "}
|
{(props.aired_on_date != 0 || props.year) && ", "}
|
||||||
{props.season && props.season != 0 ?
|
{props.season && props.season != 0 ?
|
||||||
`${YearSeason[props.season]} `
|
`${YearSeason[props.season]} `
|
||||||
: ""}
|
: ""}
|
||||||
{props.year && `${props.year} г.`}
|
{props.year && `${props.year} г.`}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
<span className="w-8 h-8 iconify-color mdi--animation-play-outline dark:invert"></span>
|
<span className="w-8 h-8 iconify-color mdi--animation-play-outline dark:invert"></span>
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
<TableCell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
||||||
{props.episodes.released ? props.episodes.released : "?"}
|
{props.episodes.released ? props.episodes.released : "?"}
|
||||||
{"/"}
|
{"/"}
|
||||||
{props.episodes.total ? props.episodes.total + " эп. " : "? эп. "}
|
{props.episodes.total ? props.episodes.total + " эп. " : "? эп. "}
|
||||||
{props.duration != 0 &&
|
{props.duration != 0 &&
|
||||||
`по ${minutesToTime(props.duration, "daysHours")}`}
|
`по ${minutesToTime(props.duration, "daysHours")}`}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
<span className="w-8 h-8 iconify-color mdi--calendar-outline dark:invert"></span>
|
<span className="w-8 h-8 iconify-color mdi--calendar-outline dark:invert"></span>
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 dark:text-white">
|
<TableCell className="font-medium text-gray-900 dark:text-white">
|
||||||
{props.category}
|
{props.category}
|
||||||
{", "}
|
{", "}
|
||||||
{props.broadcast == 0 ?
|
{props.broadcast == 0 ?
|
||||||
props.status.toLowerCase()
|
props.status.toLowerCase()
|
||||||
: `выходит ${weekDay[props.broadcast]}`}
|
: `выходит ${weekDay[props.broadcast]}`}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
<span className="w-8 h-8 iconify-color mdi--people-group-outline dark:invert"></span>
|
<span className="w-8 h-8 iconify-color mdi--people-group-outline dark:invert"></span>
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 dark:text-white">
|
<TableCell className="font-medium text-gray-900 dark:text-white">
|
||||||
{props.studio && (
|
{props.studio && (
|
||||||
<>
|
<>
|
||||||
{"Студия: "}
|
{"Студия: "}
|
||||||
|
@ -117,13 +117,13 @@ export const ReleaseInfoInfo = (props: {
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
<span className="w-8 h-8 iconify-color mdi--tag-outline dark:invert"></span>
|
<span className="w-8 h-8 iconify-color mdi--tag-outline dark:invert"></span>
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 dark:text-white">
|
<TableCell className="font-medium text-gray-900 dark:text-white">
|
||||||
{props.genres &&
|
{props.genres &&
|
||||||
props.genres.split(", ").map((genre: string, index: number) => {
|
props.genres.split(", ").map((genre: string, index: number) => {
|
||||||
return (
|
return (
|
||||||
|
@ -133,14 +133,14 @@ export const ReleaseInfoInfo = (props: {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
{props.status.toLowerCase() == "анонс" && (
|
{props.status.toLowerCase() == "анонс" && (
|
||||||
<Table.Row>
|
<TableRow>
|
||||||
<Table.Cell className="py-0">
|
<TableCell className="py-0">
|
||||||
<span className="w-8 h-8 iconify-color mdi--clock-outline dark:invert"></span>
|
<span className="w-8 h-8 iconify-color mdi--clock-outline dark:invert"></span>
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
<Table.Cell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
<TableCell className="font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
||||||
{props.aired_on_date != 0 ?
|
{props.aired_on_date != 0 ?
|
||||||
unixToDate(props.aired_on_date, "full")
|
unixToDate(props.aired_on_date, "full")
|
||||||
: props.year ?
|
: props.year ?
|
||||||
|
@ -151,10 +151,10 @@ export const ReleaseInfoInfo = (props: {
|
||||||
{props.year && `${props.year} г.`}
|
{props.year && `${props.year} г.`}
|
||||||
</>
|
</>
|
||||||
: "Скоро"}
|
: "Скоро"}
|
||||||
</Table.Cell>
|
</TableCell>
|
||||||
</Table.Row>
|
</TableRow>
|
||||||
)}
|
)}
|
||||||
</Table.Body>
|
</TableBody>
|
||||||
</Table>
|
</Table>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
|
|
|
@ -14,7 +14,7 @@ export const ReleaseInfoStreaming = (props: { release_id: number }) => {
|
||||||
setData(await response.json());
|
setData(await response.json());
|
||||||
};
|
};
|
||||||
_getData();
|
_getData();
|
||||||
}, []);
|
}, [props.release_id]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -32,7 +32,8 @@ export const ReleaseInfoStreaming = (props: { release_id: number }) => {
|
||||||
key={`platform_${item.id}`}
|
key={`platform_${item.id}`}
|
||||||
className="flex items-center gap-2 px-4 py-2 transition-colors bg-gray-100 rounded-lg hover:bg-gray-300 dark:bg-gray-700 dark:hover:bg-gray-600 "
|
className="flex items-center gap-2 px-4 py-2 transition-colors bg-gray-100 rounded-lg hover:bg-gray-300 dark:bg-gray-700 dark:hover:bg-gray-600 "
|
||||||
>
|
>
|
||||||
<img src={item.icon} className="w-6 h-6 rounded-full" />
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||||
|
<img alt="" src={item.icon} className="w-6 h-6 rounded-full" />
|
||||||
<p className="text-sm line-clamp-2">{item.name}</p>
|
<p className="text-sm line-clamp-2">{item.name}</p>
|
||||||
</a>
|
</a>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,20 +1,26 @@
|
||||||
import {
|
import {
|
||||||
Card,
|
|
||||||
Rating,
|
|
||||||
Flowbite,
|
|
||||||
Button,
|
Button,
|
||||||
CustomFlowbiteTheme,
|
Card,
|
||||||
Modal,
|
Modal,
|
||||||
|
ModalBody,
|
||||||
|
ModalFooter,
|
||||||
|
ModalHeader,
|
||||||
|
Rating,
|
||||||
|
RatingAdvanced,
|
||||||
|
RatingStar,
|
||||||
|
RatingAdvancedTheme,
|
||||||
} from "flowbite-react";
|
} from "flowbite-react";
|
||||||
import { numberDeclension } from "#/api/utils";
|
import { numberDeclension } from "#/api/utils";
|
||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
|
||||||
const RatingTheme: CustomFlowbiteTheme = {
|
const CustomRatingTheme: RatingAdvancedTheme = {
|
||||||
ratingAdvanced: {
|
base: "flex items-center",
|
||||||
progress: {
|
label: "text-sm font-medium text-cyan-600 dark:text-cyan-500",
|
||||||
base: "mx-4 h-5 w-3/4 rounded bg-gray-200 dark:bg-gray-700",
|
progress: {
|
||||||
},
|
base: "mx-4 h-5 w-3/4 rounded bg-gray-200 dark:bg-gray-700",
|
||||||
|
fill: "h-5 rounded bg-yellow-400",
|
||||||
|
label: "text-sm font-medium text-cyan-600 dark:text-cyan-500",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
export const ReleaseInfoRating = (props: {
|
export const ReleaseInfoRating = (props: {
|
||||||
|
@ -39,7 +45,7 @@ export const ReleaseInfoRating = (props: {
|
||||||
<Card>
|
<Card>
|
||||||
<div className="flex flex-col gap-2 sm:items-center sm:flex-row">
|
<div className="flex flex-col gap-2 sm:items-center sm:flex-row">
|
||||||
<Rating>
|
<Rating>
|
||||||
<Rating.Star />
|
<RatingStar />
|
||||||
<p className="ml-2 text-sm font-bold dark:text-white">
|
<p className="ml-2 text-sm font-bold dark:text-white">
|
||||||
{props.grade.toFixed(2)} из 5
|
{props.grade.toFixed(2)} из 5
|
||||||
</p>
|
</p>
|
||||||
|
@ -48,7 +54,7 @@ export const ReleaseInfoRating = (props: {
|
||||||
<>
|
<>
|
||||||
<span className="mx-1.5 h-1 w-1 rounded-full bg-gray-500 dark:bg-gray-400 hidden lg:block" />
|
<span className="mx-1.5 h-1 w-1 rounded-full bg-gray-500 dark:bg-gray-400 hidden lg:block" />
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
{vote ? (
|
{vote ?
|
||||||
<>
|
<>
|
||||||
<p className="text-sm font-medium text-gray-500 dark:text-gray-400">
|
<p className="text-sm font-medium text-gray-500 dark:text-gray-400">
|
||||||
ваша оценка: {vote}
|
ваша оценка: {vote}
|
||||||
|
@ -62,8 +68,7 @@ export const ReleaseInfoRating = (props: {
|
||||||
изменить
|
изменить
|
||||||
</Button>
|
</Button>
|
||||||
</>
|
</>
|
||||||
) : (
|
: <Button
|
||||||
<Button
|
|
||||||
size={"xs"}
|
size={"xs"}
|
||||||
className="text-gray-500 border border-gray-600 rounded-full hover:bg-black hover:text-white hover:border-black dark:text-gray-400 dark:border-gray-500"
|
className="text-gray-500 border border-gray-600 rounded-full hover:bg-black hover:text-white hover:border-black dark:text-gray-400 dark:border-gray-500"
|
||||||
color="inline"
|
color="inline"
|
||||||
|
@ -71,7 +76,7 @@ export const ReleaseInfoRating = (props: {
|
||||||
>
|
>
|
||||||
оценить
|
оценить
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
@ -80,47 +85,50 @@ export const ReleaseInfoRating = (props: {
|
||||||
{props.votes.total}{" "}
|
{props.votes.total}{" "}
|
||||||
{numberDeclension(props.votes.total, "голос", "голоса", "голосов")}
|
{numberDeclension(props.votes.total, "голос", "голоса", "голосов")}
|
||||||
</p>
|
</p>
|
||||||
<Flowbite theme={{ theme: RatingTheme }}>
|
<RatingAdvanced
|
||||||
<Rating.Advanced
|
theme={CustomRatingTheme}
|
||||||
percentFilled={Math.floor(
|
percentFilled={Math.floor(
|
||||||
(props.votes["5"] / props.votes.total) * 100
|
(props.votes["5"] / props.votes.total) * 100
|
||||||
)}
|
)}
|
||||||
className="mb-2"
|
className="mb-2"
|
||||||
>
|
>
|
||||||
5
|
5
|
||||||
</Rating.Advanced>
|
</RatingAdvanced>
|
||||||
<Rating.Advanced
|
<RatingAdvanced
|
||||||
percentFilled={Math.floor(
|
theme={CustomRatingTheme}
|
||||||
(props.votes["4"] / props.votes.total) * 100
|
percentFilled={Math.floor(
|
||||||
)}
|
(props.votes["4"] / props.votes.total) * 100
|
||||||
className="mb-2"
|
)}
|
||||||
>
|
className="mb-2"
|
||||||
4
|
>
|
||||||
</Rating.Advanced>
|
4
|
||||||
<Rating.Advanced
|
</RatingAdvanced>
|
||||||
percentFilled={Math.floor(
|
<RatingAdvanced
|
||||||
(props.votes["3"] / props.votes.total) * 100
|
theme={CustomRatingTheme}
|
||||||
)}
|
percentFilled={Math.floor(
|
||||||
className="mb-2"
|
(props.votes["3"] / props.votes.total) * 100
|
||||||
>
|
)}
|
||||||
3
|
className="mb-2"
|
||||||
</Rating.Advanced>
|
>
|
||||||
<Rating.Advanced
|
3
|
||||||
percentFilled={Math.floor(
|
</RatingAdvanced>
|
||||||
(props.votes["2"] / props.votes.total) * 100
|
<RatingAdvanced
|
||||||
)}
|
theme={CustomRatingTheme}
|
||||||
className="mb-2"
|
percentFilled={Math.floor(
|
||||||
>
|
(props.votes["2"] / props.votes.total) * 100
|
||||||
2
|
)}
|
||||||
</Rating.Advanced>
|
className="mb-2"
|
||||||
<Rating.Advanced
|
>
|
||||||
percentFilled={Math.floor(
|
2
|
||||||
(props.votes["1"] / props.votes.total) * 100
|
</RatingAdvanced>
|
||||||
)}
|
<RatingAdvanced
|
||||||
>
|
theme={CustomRatingTheme}
|
||||||
1
|
percentFilled={Math.floor(
|
||||||
</Rating.Advanced>
|
(props.votes["1"] / props.votes.total) * 100
|
||||||
</Flowbite>
|
)}
|
||||||
|
>
|
||||||
|
1
|
||||||
|
</RatingAdvanced>
|
||||||
</Card>
|
</Card>
|
||||||
<ReleaseInfoRatingModal
|
<ReleaseInfoRatingModal
|
||||||
isOpen={isRatingModalOpen}
|
isOpen={isRatingModalOpen}
|
||||||
|
@ -178,8 +186,8 @@ const ReleaseInfoRatingModal = (props: {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>Оценка</Modal.Header>
|
<ModalHeader>Оценка</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<div>
|
<div>
|
||||||
<div className="block sm:hidden">
|
<div className="block sm:hidden">
|
||||||
<Rating size="md" className="justify-center">
|
<Rating size="md" className="justify-center">
|
||||||
|
@ -191,7 +199,7 @@ const ReleaseInfoRatingModal = (props: {
|
||||||
onMouseOut={() => setCurElement(0)}
|
onMouseOut={() => setCurElement(0)}
|
||||||
onClick={() => setVote(element)}
|
onClick={() => setVote(element)}
|
||||||
>
|
>
|
||||||
<Rating.Star
|
<RatingStar
|
||||||
filled={index + 1 <= curElement || index + 1 <= vote}
|
filled={index + 1 <= curElement || index + 1 <= vote}
|
||||||
/>
|
/>
|
||||||
</Button>
|
</Button>
|
||||||
|
@ -208,7 +216,7 @@ const ReleaseInfoRatingModal = (props: {
|
||||||
onMouseOut={() => setCurElement(0)}
|
onMouseOut={() => setCurElement(0)}
|
||||||
onClick={() => setVote(element)}
|
onClick={() => setVote(element)}
|
||||||
>
|
>
|
||||||
<Rating.Star
|
<RatingStar
|
||||||
filled={index + 1 <= curElement || index + 1 <= vote}
|
filled={index + 1 <= curElement || index + 1 <= vote}
|
||||||
/>
|
/>
|
||||||
</Button>
|
</Button>
|
||||||
|
@ -216,8 +224,8 @@ const ReleaseInfoRatingModal = (props: {
|
||||||
</Rating>
|
</Rating>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<div className="flex gap-1 ml-auto">
|
<div className="flex gap-1 ml-auto">
|
||||||
<Button
|
<Button
|
||||||
disabled={isSending}
|
disabled={isSending}
|
||||||
|
@ -241,7 +249,7 @@ const ReleaseInfoRatingModal = (props: {
|
||||||
Оценить
|
Оценить
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,31 +1,9 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Card, Carousel, CustomFlowbiteTheme, FlowbiteCarouselControlTheme, FlowbiteCarouselIndicatorsTheme } from "flowbite-react";
|
import { Card, Carousel } from "flowbite-react";
|
||||||
import { ReleaseLink } from "#/components/ReleaseLink/ReleaseLinkUpdate";
|
import { ReleaseLink } from "#/components/ReleaseLink/ReleaseLinkUpdate";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
const CarouselIndicatorsTheme: FlowbiteCarouselIndicatorsTheme = {
|
|
||||||
active: {
|
|
||||||
off: "bg-gray-400/50 hover:bg-gray-200",
|
|
||||||
on: "bg-gray-200",
|
|
||||||
},
|
|
||||||
base: "h-3 w-3 rounded-full max-w-[300px]",
|
|
||||||
wrapper: "absolute bottom-5 left-1/2 flex -translate-x-1/2 space-x-3",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselControlsTheme: FlowbiteCarouselControlTheme = {
|
|
||||||
base: "inline-flex h-8 w-8 items-center justify-center rounded-full group-focus:outline-none group-focus:ring-4 bg-gray-400/30 group-hover:bg-gray-400/60 group-focus:ring-gray-400/70 sm:h-10 sm:w-10",
|
|
||||||
icon: "h-5 w-5 text-gray-400 sm:h-6 sm:w-6",
|
|
||||||
};
|
|
||||||
|
|
||||||
const CarouselTheme: CustomFlowbiteTheme["carousel"] = {
|
|
||||||
root: {
|
|
||||||
base: "relative h-full w-full max-w-[300px]",
|
|
||||||
},
|
|
||||||
indicators: CarouselIndicatorsTheme,
|
|
||||||
control: CarouselControlsTheme,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const ReleaseInfoRelated = (props: {
|
export const ReleaseInfoRelated = (props: {
|
||||||
release_id: number;
|
release_id: number;
|
||||||
related: any;
|
related: any;
|
||||||
|
@ -45,7 +23,7 @@ export const ReleaseInfoRelated = (props: {
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-center mt-2">
|
<div className="flex justify-center mt-2">
|
||||||
<Carousel pauseOnHover={true} theme={CarouselTheme}>
|
<Carousel pauseOnHover={true}>
|
||||||
{props.related_releases
|
{props.related_releases
|
||||||
.filter((release: any) => {
|
.filter((release: any) => {
|
||||||
if (release.id == props.release_id) {
|
if (release.id == props.release_id) {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import useSWRInfinite from "swr/infinite";
|
||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useState } from "react";
|
||||||
import { tryCatchAPI, useSWRfetcher } from "#/api/utils";
|
import { tryCatchAPI, useSWRfetcher } from "#/api/utils";
|
||||||
import { toast } from "react-toastify";
|
import { toast } from "react-toastify";
|
||||||
import { useThemeMode } from "flowbite-react";
|
import { DropdownItem, ModalHeader, useThemeMode } from "flowbite-react";
|
||||||
|
|
||||||
const lists = [
|
const lists = [
|
||||||
{ list: 0, name: "Не смотрю" },
|
{ list: 0, name: "Не смотрю" },
|
||||||
|
@ -174,12 +174,12 @@ export const ReleaseInfoUserList = (props: {
|
||||||
disabled={listEventDisabled}
|
disabled={listEventDisabled}
|
||||||
>
|
>
|
||||||
{lists.map((list) => (
|
{lists.map((list) => (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={list.list}
|
key={list.list}
|
||||||
onClick={() => _addToList(list.list)}
|
onClick={() => _addToList(list.list)}
|
||||||
>
|
>
|
||||||
{list.name}
|
{list.name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
<Button
|
<Button
|
||||||
|
@ -321,7 +321,7 @@ const AddReleaseToCollectionModal = (props: {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>Выбор коллекции</Modal.Header>
|
<ModalHeader>Выбор коллекции</ModalHeader>
|
||||||
<div
|
<div
|
||||||
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
className="flex flex-col gap-2 p-4 overflow-y-auto"
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
import { Spinner } from "#/components/Spinner/Spinner";
|
import { Spinner } from "#/components/Spinner/Spinner";
|
||||||
import { useUserStore } from "#/store/auth";
|
import { useUserStore } from "#/store/auth";
|
||||||
import { useUserPlayerPreferencesStore } from "#/store/player";
|
import { useUserPlayerPreferencesStore } from "#/store/player";
|
||||||
import { Card, Dropdown, Button } from "flowbite-react";
|
import { Button, Card, Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { Swiper, SwiperSlide } from "swiper/react";
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
|
@ -270,14 +270,14 @@ export const ReleasePlayer = (props: { id: number }) => {
|
||||||
theme={DropdownTheme}
|
theme={DropdownTheme}
|
||||||
>
|
>
|
||||||
{voiceoverInfo.map((voiceover: any) => (
|
{voiceoverInfo.map((voiceover: any) => (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={`voiceover_${voiceover.id}`}
|
key={`voiceover_${voiceover.id}`}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
setSelectedVoiceoverAndSaveAsPreferred(voiceover)
|
setSelectedVoiceoverAndSaveAsPreferred(voiceover)
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{voiceover.name}
|
{voiceover.name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
<Dropdown
|
<Dropdown
|
||||||
|
@ -286,12 +286,12 @@ export const ReleasePlayer = (props: { id: number }) => {
|
||||||
theme={DropdownTheme}
|
theme={DropdownTheme}
|
||||||
>
|
>
|
||||||
{sourcesInfo.map((source: any) => (
|
{sourcesInfo.map((source: any) => (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={`source_${source.id}`}
|
key={`source_${source.id}`}
|
||||||
onClick={() => setSelectedPlayerAndSaveAsPreferred(source)}
|
onClick={() => setSelectedPlayerAndSaveAsPreferred(source)}
|
||||||
>
|
>
|
||||||
{source.name}
|
{source.name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -212,7 +212,8 @@ export const ReleasePlayerCustom = (props: {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
__getInfo();
|
__getInfo();
|
||||||
}, []);
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [props.id, props.token]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const __getInfo = async () => {
|
const __getInfo = async () => {
|
||||||
|
@ -244,6 +245,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
if (voiceover.selected) {
|
if (voiceover.selected) {
|
||||||
__getInfo();
|
__getInfo();
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [voiceover.selected]);
|
}, [voiceover.selected]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -284,6 +286,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
if (source.selected) {
|
if (source.selected) {
|
||||||
__getInfo();
|
__getInfo();
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [source.selected]);
|
}, [source.selected]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -346,6 +349,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
setPlayerError(null);
|
setPlayerError(null);
|
||||||
__getInfo();
|
__getInfo();
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [episode.selected]);
|
}, [episode.selected]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Dropdown } from "flowbite-react";
|
import { Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import { numberDeclension } from "#/api/utils";
|
import { numberDeclension } from "#/api/utils";
|
||||||
import { useUserPlayerPreferencesStore } from "#/store/player";
|
import { useUserPlayerPreferencesStore } from "#/store/player";
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ const DropdownTrigger = ({ name }: Source) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const DropdownItem = ({ name, episodes_count }: Source) => {
|
const DropdownItemInternal = ({ name, episodes_count }: Source) => {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-2 cursor-pointer">
|
<div className="flex flex-col gap-2 cursor-pointer">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
|
@ -55,7 +55,7 @@ export const SourceSelector = (props: {
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{props.availableSource.map((source: Source) => (
|
{props.availableSource.map((source: Source) => (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={`source_${source.id}`}
|
key={`source_${source.id}`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
playerPreferenceStore.setPreferredPlayer(
|
playerPreferenceStore.setPreferredPlayer(
|
||||||
|
@ -68,8 +68,8 @@ export const SourceSelector = (props: {
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<DropdownItem {...source} />
|
<DropdownItemInternal {...source} />
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { Dropdown } from "flowbite-react";
|
import { Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import { numberDeclension } from "#/api/utils";
|
import { numberDeclension } from "#/api/utils";
|
||||||
import { useUserPlayerPreferencesStore } from "#/store/player";
|
import { useUserPlayerPreferencesStore } from "#/store/player";
|
||||||
|
|
||||||
|
@ -16,7 +16,8 @@ interface Voiceover {
|
||||||
const DropdownTrigger = ({ icon, name, pinned }: Voiceover) => {
|
const DropdownTrigger = ({ icon, name, pinned }: Voiceover) => {
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center gap-2 cursor-pointer">
|
<div className="flex items-center gap-2 cursor-pointer">
|
||||||
{icon && <img className="w-6 h-6 rounded-full" src={icon}></img>}
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||||
|
{icon && <img alt="" className="w-6 h-6 rounded-full" src={icon}></img>}
|
||||||
<p>{name}</p>
|
<p>{name}</p>
|
||||||
{pinned && (
|
{pinned && (
|
||||||
<span className="h-6 bg-gray-700 dark:bg-gray-300 iconify material-symbols--push-pin"></span>
|
<span className="h-6 bg-gray-700 dark:bg-gray-300 iconify material-symbols--push-pin"></span>
|
||||||
|
@ -26,7 +27,7 @@ const DropdownTrigger = ({ icon, name, pinned }: Voiceover) => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const DropdownItem = ({
|
const DropdownItemInternal = ({
|
||||||
icon,
|
icon,
|
||||||
name,
|
name,
|
||||||
pinned,
|
pinned,
|
||||||
|
@ -36,7 +37,8 @@ const DropdownItem = ({
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col gap-2 cursor-pointer">
|
<div className="flex flex-col gap-2 cursor-pointer">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
{icon && <img className="w-6 h-6 rounded-full" src={icon}></img>}
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
||||||
|
{icon && <img alt="" className="w-6 h-6 rounded-full" src={icon}></img>}
|
||||||
<p>{name}</p>
|
<p>{name}</p>
|
||||||
{pinned && (
|
{pinned && (
|
||||||
<span className="h-6 iconify material-symbols--push-pin"></span>
|
<span className="h-6 iconify material-symbols--push-pin"></span>
|
||||||
|
@ -80,7 +82,7 @@ export const VoiceoverSelector = (props: {
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{props.availableVoiceover.map((voiceover: Voiceover) => (
|
{props.availableVoiceover.map((voiceover: Voiceover) => (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
className="w-fit"
|
className="w-fit"
|
||||||
key={`voiceover_${voiceover.id}`}
|
key={`voiceover_${voiceover.id}`}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
@ -94,8 +96,8 @@ export const VoiceoverSelector = (props: {
|
||||||
});
|
});
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<DropdownItem {...voiceover} />
|
<DropdownItemInternal {...voiceover} />
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,12 +4,16 @@ import { CURRENT_APP_VERSION } from "#/api/config";
|
||||||
import { useUserStore } from "#/store/auth";
|
import { useUserStore } from "#/store/auth";
|
||||||
import { usePreferencesStore } from "#/store/preferences";
|
import { usePreferencesStore } from "#/store/preferences";
|
||||||
import {
|
import {
|
||||||
Modal,
|
|
||||||
Button,
|
Button,
|
||||||
useThemeMode,
|
ButtonGroup,
|
||||||
ToggleSwitch,
|
|
||||||
HR,
|
|
||||||
Dropdown,
|
Dropdown,
|
||||||
|
DropdownItem,
|
||||||
|
HR,
|
||||||
|
Modal,
|
||||||
|
ModalBody,
|
||||||
|
ModalHeader,
|
||||||
|
ToggleSwitch,
|
||||||
|
useThemeMode,
|
||||||
} from "flowbite-react";
|
} from "flowbite-react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
|
@ -54,8 +58,8 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
show={props.isOpen}
|
show={props.isOpen}
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<Modal.Header>Настройки</Modal.Header>
|
<ModalHeader>Настройки</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<div className="space-y-6">
|
<div className="space-y-6">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<span className="w-6 h-6 iconify material-symbols--palette-outline"></span>
|
<span className="w-6 h-6 iconify material-symbols--palette-outline"></span>
|
||||||
|
@ -63,20 +67,20 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className=" dark:text-white">Тема</p>
|
<p className=" dark:text-white">Тема</p>
|
||||||
<Button.Group>
|
<ButtonGroup>
|
||||||
<Button
|
<Button
|
||||||
color={computedMode == "light" ? "blue" : "gray"}
|
color={computedMode == "light" ? "blue" : "light"}
|
||||||
onClick={() => setMode("light")}
|
onClick={() => setMode("light")}
|
||||||
>
|
>
|
||||||
Светлая
|
Светлая
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
color={computedMode == "dark" ? "blue" : "gray"}
|
color={computedMode == "dark" ? "blue" : "light"}
|
||||||
onClick={() => setMode("dark")}
|
onClick={() => setMode("dark")}
|
||||||
>
|
>
|
||||||
Темная
|
Темная
|
||||||
</Button>
|
</Button>
|
||||||
</Button.Group>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className=" dark:text-white max-w-96">
|
<p className=" dark:text-white max-w-96">
|
||||||
|
@ -85,15 +89,6 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
</p>
|
</p>
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
color="blue"
|
color="blue"
|
||||||
theme={{
|
|
||||||
toggle: {
|
|
||||||
checked: {
|
|
||||||
color: {
|
|
||||||
blue: "border-blue-700 bg-blue-700",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
onChange={() =>
|
onChange={() =>
|
||||||
preferenceStore.setParams({
|
preferenceStore.setParams({
|
||||||
skipToCategory: {
|
skipToCategory: {
|
||||||
|
@ -121,7 +116,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
>
|
>
|
||||||
{Object.keys(HomeCategory).map((key) => {
|
{Object.keys(HomeCategory).map((key) => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={key}
|
key={key}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
preferenceStore.setParams({
|
preferenceStore.setParams({
|
||||||
|
@ -133,7 +128,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{HomeCategory[key]}
|
{HomeCategory[key]}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
@ -152,7 +147,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
>
|
>
|
||||||
{Object.keys(BookmarksCategory).map((key) => {
|
{Object.keys(BookmarksCategory).map((key) => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={key}
|
key={key}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
preferenceStore.setParams({
|
preferenceStore.setParams({
|
||||||
|
@ -164,7 +159,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{BookmarksCategory[key]}
|
{BookmarksCategory[key]}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
@ -182,7 +177,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
{Object.keys(NavbarTitles).map(
|
{Object.keys(NavbarTitles).map(
|
||||||
(key: "always" | "links" | "selected" | "never") => {
|
(key: "always" | "links" | "selected" | "never") => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
className={`${key == "links" ? "hidden lg:flex" : ""}`}
|
className={`${key == "links" ? "hidden lg:flex" : ""}`}
|
||||||
key={`navbar-titles-${key}`}
|
key={`navbar-titles-${key}`}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
|
@ -192,7 +187,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{NavbarTitles[key]}
|
{NavbarTitles[key]}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
|
@ -211,7 +206,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
: "Нет"
|
: "Нет"
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
preferenceStore.setFlags({
|
preferenceStore.setFlags({
|
||||||
showFifthButton: null,
|
showFifthButton: null,
|
||||||
|
@ -219,10 +214,10 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
Не показывать
|
Не показывать
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
{Object.keys(FifthButton).map((key) => {
|
{Object.keys(FifthButton).map((key) => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
key={`navbar-fifthbutton-${key}`}
|
key={`navbar-fifthbutton-${key}`}
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
preferenceStore.setFlags({
|
preferenceStore.setFlags({
|
||||||
|
@ -231,7 +226,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{FifthButton[key]}
|
{FifthButton[key]}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
@ -246,15 +241,6 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
<p className=" dark:text-white">Показывать список изменений</p>
|
<p className=" dark:text-white">Показывать список изменений</p>
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
color="blue"
|
color="blue"
|
||||||
theme={{
|
|
||||||
toggle: {
|
|
||||||
checked: {
|
|
||||||
color: {
|
|
||||||
blue: "border-blue-700 bg-blue-700",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
onChange={() =>
|
onChange={() =>
|
||||||
preferenceStore.setFlags({
|
preferenceStore.setFlags({
|
||||||
showChangelog: !preferenceStore.flags.showChangelog,
|
showChangelog: !preferenceStore.flags.showChangelog,
|
||||||
|
@ -272,15 +258,6 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
</div>
|
</div>
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
color="blue"
|
color="blue"
|
||||||
theme={{
|
|
||||||
toggle: {
|
|
||||||
checked: {
|
|
||||||
color: {
|
|
||||||
blue: "border-blue-700 bg-blue-700",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
onChange={() =>
|
onChange={() =>
|
||||||
preferenceStore.setFlags({
|
preferenceStore.setFlags({
|
||||||
enableAnalytics: !preferenceStore.flags.enableAnalytics,
|
enableAnalytics: !preferenceStore.flags.enableAnalytics,
|
||||||
|
@ -303,15 +280,6 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
</div>
|
</div>
|
||||||
<ToggleSwitch
|
<ToggleSwitch
|
||||||
color="blue"
|
color="blue"
|
||||||
theme={{
|
|
||||||
toggle: {
|
|
||||||
checked: {
|
|
||||||
color: {
|
|
||||||
blue: "border-blue-700 bg-blue-700",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
onChange={() =>
|
onChange={() =>
|
||||||
preferenceStore.setParams({
|
preferenceStore.setParams({
|
||||||
experimental: {
|
experimental: {
|
||||||
|
@ -340,7 +308,7 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,7 +15,6 @@ import {
|
||||||
AccordionPanel,
|
AccordionPanel,
|
||||||
AccordionTitle,
|
AccordionTitle,
|
||||||
} from "flowbite-react";
|
} from "flowbite-react";
|
||||||
import { version } from "node:os";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
export const AboutPage = () => {
|
export const AboutPage = () => {
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { Spinner } from "#/components/Spinner/Spinner";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { Dropdown, Button } from "flowbite-react";
|
import { Button, ButtonGroup, Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import { sort } from "./common";
|
import { sort } from "./common";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { BookmarksList, useSWRfetcher } from "#/api/utils";
|
import { BookmarksList, useSWRfetcher } from "#/api/utils";
|
||||||
|
@ -151,7 +151,7 @@ export function BookmarksCategoryPage(props: any) {
|
||||||
</form>
|
</form>
|
||||||
: ""}
|
: ""}
|
||||||
<div className="m-4 overflow-auto">
|
<div className="m-4 overflow-auto">
|
||||||
<Button.Group>
|
<ButtonGroup>
|
||||||
<Button
|
<Button
|
||||||
className="whitespace-nowrap"
|
className="whitespace-nowrap"
|
||||||
disabled={props.slug == "watching"}
|
disabled={props.slug == "watching"}
|
||||||
|
@ -222,7 +222,7 @@ export function BookmarksCategoryPage(props: any) {
|
||||||
>
|
>
|
||||||
{props.SectionTitleMapping["abandoned"]}
|
{props.SectionTitleMapping["abandoned"]}
|
||||||
</Button>
|
</Button>
|
||||||
</Button.Group>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center justify-between px-4 py-2 border-b-2 border-black dark:border-white">
|
<div className="flex items-center justify-between px-4 py-2 border-b-2 border-black dark:border-white">
|
||||||
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
|
<h1 className="font-bold text-md sm:text-xl md:text-lg xl:text-xl">
|
||||||
|
@ -237,7 +237,7 @@ export function BookmarksCategoryPage(props: any) {
|
||||||
theme={DropdownTheme}
|
theme={DropdownTheme}
|
||||||
>
|
>
|
||||||
{sort.values.map((item, index) => (
|
{sort.values.map((item, index) => (
|
||||||
<Dropdown.Item key={index} onClick={() => setSelectedSort(index)}>
|
<DropdownItem key={index} onClick={() => setSelectedSort(index)}>
|
||||||
<span
|
<span
|
||||||
className={`w-6 h-6 iconify ${
|
className={`w-6 h-6 iconify ${
|
||||||
sort.values[index].value.split("_")[1] == "descending" ?
|
sort.values[index].value.split("_")[1] == "descending" ?
|
||||||
|
@ -246,7 +246,7 @@ export function BookmarksCategoryPage(props: any) {
|
||||||
}`}
|
}`}
|
||||||
></span>
|
></span>
|
||||||
{item.name}
|
{item.name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,14 +5,15 @@ import { useEffect, useState, useCallback } from "react";
|
||||||
import { useSearchParams, useRouter } from "next/navigation";
|
import { useSearchParams, useRouter } from "next/navigation";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import {
|
import {
|
||||||
Card,
|
|
||||||
Button,
|
Button,
|
||||||
|
Card,
|
||||||
Checkbox,
|
Checkbox,
|
||||||
TextInput,
|
|
||||||
Textarea,
|
|
||||||
FileInput,
|
FileInput,
|
||||||
Label,
|
Label,
|
||||||
Modal,
|
Modal,
|
||||||
|
ModalHeader,
|
||||||
|
Textarea,
|
||||||
|
TextInput,
|
||||||
useThemeMode,
|
useThemeMode,
|
||||||
} from "flowbite-react";
|
} from "flowbite-react";
|
||||||
import { PosterWithStuff } from "#/components/ReleasePoster/PosterWithStuff";
|
import { PosterWithStuff } from "#/components/ReleasePoster/PosterWithStuff";
|
||||||
|
@ -33,6 +34,7 @@ export const CreateCollectionPage = () => {
|
||||||
if (userStore.state === "finished" && !userStore.token) {
|
if (userStore.state === "finished" && !userStore.token) {
|
||||||
router.push("/login?redirect=/collections/create");
|
router.push("/login?redirect=/collections/create");
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [userStore]);
|
}, [userStore]);
|
||||||
|
|
||||||
const [edit, setEdit] = useState(false);
|
const [edit, setEdit] = useState(false);
|
||||||
|
@ -388,10 +390,9 @@ export const CreateCollectionPage = () => {
|
||||||
</Label>
|
</Label>
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<div className="block mb-2">
|
<div className="block mb-2">
|
||||||
<Label
|
<Label htmlFor="title">
|
||||||
htmlFor="title"
|
Название (минимум 10, максимум 60 символов)
|
||||||
value="Название (минимум 10, максимум 60 символов)"
|
</Label>
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<TextInput
|
<TextInput
|
||||||
id="title"
|
id="title"
|
||||||
|
@ -408,10 +409,9 @@ export const CreateCollectionPage = () => {
|
||||||
{stringLength.title}/60
|
{stringLength.title}/60
|
||||||
</p>
|
</p>
|
||||||
<div className="block mt-2 mb-2">
|
<div className="block mt-2 mb-2">
|
||||||
<Label
|
<Label htmlFor="description">
|
||||||
htmlFor="description"
|
Описание (максимум 1000 символов)
|
||||||
value="Описание (максимум 1000 символов)"
|
</Label>
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
rows={4}
|
rows={4}
|
||||||
|
@ -434,7 +434,7 @@ export const CreateCollectionPage = () => {
|
||||||
checked={isPrivate}
|
checked={isPrivate}
|
||||||
onChange={(e) => setIsPrivate(e.target.checked)}
|
onChange={(e) => setIsPrivate(e.target.checked)}
|
||||||
/>
|
/>
|
||||||
<Label htmlFor="private" value="Приватная коллекция" />
|
<Label htmlFor="private">Приватная коллекция</Label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Button
|
<Button
|
||||||
|
@ -603,7 +603,7 @@ export const ReleasesEditModal = (props: {
|
||||||
onClose={() => props.setIsOpen(false)}
|
onClose={() => props.setIsOpen(false)}
|
||||||
size={"7xl"}
|
size={"7xl"}
|
||||||
>
|
>
|
||||||
<Modal.Header>Изменить релизы в коллекции</Modal.Header>
|
<ModalHeader>Изменить релизы в коллекции</ModalHeader>
|
||||||
<div
|
<div
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
ref={modalRef}
|
ref={modalRef}
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { Spinner } from "#/components/Spinner/Spinner";
|
||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect } from "react";
|
||||||
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { Dropdown, Button } from "flowbite-react";
|
import { Button, Dropdown, DropdownItem } from "flowbite-react";
|
||||||
import { sort } from "./common";
|
import { sort } from "./common";
|
||||||
import { ENDPOINTS } from "#/api/config";
|
import { ENDPOINTS } from "#/api/config";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
|
@ -126,7 +126,7 @@ export function FavoritesPage() {
|
||||||
theme={DropdownTheme}
|
theme={DropdownTheme}
|
||||||
>
|
>
|
||||||
{sort.values.map((item, index) => (
|
{sort.values.map((item, index) => (
|
||||||
<Dropdown.Item key={index} onClick={() => setSelectedSort(index)}>
|
<DropdownItem key={index} onClick={() => setSelectedSort(index)}>
|
||||||
<span
|
<span
|
||||||
className={`w-6 h-6 iconify ${
|
className={`w-6 h-6 iconify ${
|
||||||
sort.values[index].value.split("_")[1] == "descending"
|
sort.values[index].value.split("_")[1] == "descending"
|
||||||
|
@ -135,7 +135,7 @@ export function FavoritesPage() {
|
||||||
}`}
|
}`}
|
||||||
></span>
|
></span>
|
||||||
{item.name}
|
{item.name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { useState, useEffect } from "react";
|
||||||
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
import { useScrollPosition } from "#/hooks/useScrollPosition";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { _FetchHomePageReleases } from "#/api/utils";
|
import { _FetchHomePageReleases } from "#/api/utils";
|
||||||
import { Button } from "flowbite-react";
|
import { Button, ButtonGroup } from "flowbite-react";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
|
|
||||||
export function IndexCategoryPage(props) {
|
export function IndexCategoryPage(props) {
|
||||||
|
@ -53,13 +53,13 @@ export function IndexCategoryPage(props) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="mb-4 overflow-auto">
|
<div className="mb-4 overflow-auto">
|
||||||
<Button.Group>
|
<ButtonGroup>
|
||||||
<Button className="whitespace-nowrap" disabled={props.slug == "last"} color="light" onClick={() => router.push("/home/last")}>{props.SectionTitleMapping["last"]}</Button>
|
<Button className="whitespace-nowrap" disabled={props.slug == "last"} color="light" onClick={() => router.push("/home/last")}>{props.SectionTitleMapping["last"]}</Button>
|
||||||
<Button className="whitespace-nowrap" disabled={props.slug == "finished"} color="light" onClick={() => router.push("/home/finished")}>{props.SectionTitleMapping["finished"]}</Button>
|
<Button className="whitespace-nowrap" disabled={props.slug == "finished"} color="light" onClick={() => router.push("/home/finished")}>{props.SectionTitleMapping["finished"]}</Button>
|
||||||
<Button className="whitespace-nowrap" disabled={props.slug == "ongoing"} color="light" onClick={() => router.push("/home/ongoing")}>{props.SectionTitleMapping["ongoing"]}</Button>
|
<Button className="whitespace-nowrap" disabled={props.slug == "ongoing"} color="light" onClick={() => router.push("/home/ongoing")}>{props.SectionTitleMapping["ongoing"]}</Button>
|
||||||
<Button className="whitespace-nowrap" disabled={props.slug == "announce"} color="light" onClick={() => router.push("/home/announce")}>{props.SectionTitleMapping["announce"]}</Button>
|
<Button className="whitespace-nowrap" disabled={props.slug == "announce"} color="light" onClick={() => router.push("/home/announce")}>{props.SectionTitleMapping["announce"]}</Button>
|
||||||
<Button className="whitespace-nowrap" disabled={props.slug == "films"} color="light" onClick={() => router.push("/home/films")}>{props.SectionTitleMapping["films"]}</Button>
|
<Button className="whitespace-nowrap" disabled={props.slug == "films"} color="light" onClick={() => router.push("/home/films")}>{props.SectionTitleMapping["films"]}</Button>
|
||||||
</Button.Group>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
{content && content.length > 0 ? (
|
{content && content.length > 0 ? (
|
||||||
<ReleaseSection
|
<ReleaseSection
|
||||||
|
|
|
@ -59,53 +59,6 @@ export const ProfilePage = (props: any) => {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const hasSocials =
|
|
||||||
user.vk_page != "" ||
|
|
||||||
user.tg_page != "" ||
|
|
||||||
user.tt_page != "" ||
|
|
||||||
user.inst_page != "" ||
|
|
||||||
user.discord_page != "" ||
|
|
||||||
false;
|
|
||||||
const socials = [
|
|
||||||
{
|
|
||||||
name: "vk",
|
|
||||||
nickname: user.vk_page,
|
|
||||||
icon: "fa6-brands--vk",
|
|
||||||
urlPrefix: "https://vk.com/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "telegram",
|
|
||||||
nickname: user.tg_page,
|
|
||||||
icon: "fa6-brands--telegram",
|
|
||||||
urlPrefix: "https://t.me/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "discord",
|
|
||||||
nickname: user.discord_page,
|
|
||||||
icon: "fa6-brands--discord",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "tiktok",
|
|
||||||
nickname: user.tt_page,
|
|
||||||
icon: "fa6-brands--tiktok",
|
|
||||||
urlPrefix: "https://tiktok.com/@",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "instagram",
|
|
||||||
nickname: user.inst_page,
|
|
||||||
icon: "fa6-brands--instagram",
|
|
||||||
urlPrefix: "https://instagram.com/",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const hasChips =
|
|
||||||
user.is_verified ||
|
|
||||||
user.is_blocked ||
|
|
||||||
(user.roles && user.roles.length > 0) ||
|
|
||||||
isMyProfile;
|
|
||||||
const isPrivacy =
|
|
||||||
user.is_stats_hidden || user.is_counts_hidden || user.is_social_hidden;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
|
@ -116,61 +69,48 @@ export const ProfilePage = (props: any) => {
|
||||||
ban_expires={user.ban_expires}
|
ban_expires={user.ban_expires}
|
||||||
/>
|
/>
|
||||||
<ProfilePrivacyBanner
|
<ProfilePrivacyBanner
|
||||||
is_privacy={isPrivacy}
|
is_privacy={
|
||||||
|
user.is_stats_hidden ||
|
||||||
|
user.is_counts_hidden ||
|
||||||
|
user.is_social_hidden
|
||||||
|
}
|
||||||
is_me_blocked={user.is_me_blocked}
|
is_me_blocked={user.is_me_blocked}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className={`flex flex-wrap gap-2 ${
|
className={`grid grid-cols-1 gap-2 lg:grid-cols-2 ${
|
||||||
isPrivacy || user.is_banned || user.is_perm_banned ? "mt-4" : ""
|
(
|
||||||
}`}
|
user.is_banned ||
|
||||||
|
user.is_perm_banned ||
|
||||||
|
user.is_stats_hidden ||
|
||||||
|
user.is_counts_hidden ||
|
||||||
|
user.is_social_hidden
|
||||||
|
) ?
|
||||||
|
"mt-4"
|
||||||
|
: ""
|
||||||
|
} mb-4`}
|
||||||
>
|
>
|
||||||
<div className="flex flex-col gap-2 w-full xl:w-[50%]">
|
<div className="flex flex-col gap-2">
|
||||||
<ProfileUser
|
<ProfileUser
|
||||||
isOnline={user.is_online}
|
avatar={user.avatar || ""}
|
||||||
avatar={user.avatar}
|
login={user.login || ""}
|
||||||
login={user.login}
|
status={user.status || ""}
|
||||||
status={user.status}
|
roles={user.roles || []}
|
||||||
|
rating={user.rating_score || 0}
|
||||||
|
isMyProfile={isMyProfile || false}
|
||||||
|
isVerified={user.is_verified || false}
|
||||||
|
isOnline={user.is_online || false}
|
||||||
|
isSponsor={user.is_sponsor || false}
|
||||||
|
isBlocked={user.is_blocked || false}
|
||||||
socials={{
|
socials={{
|
||||||
isPrivate: user.is_social_hidden,
|
vk: user.vk_page || null,
|
||||||
hasSocials: hasSocials,
|
tg: user.tg_page || null,
|
||||||
socials: socials,
|
tt: user.tt_page || null,
|
||||||
|
inst: user.inst_page || null,
|
||||||
|
discord: user.discord_page || null,
|
||||||
}}
|
}}
|
||||||
chips={{
|
is_social_hidden={user.is_social_hidden}
|
||||||
hasChips: hasChips,
|
|
||||||
isMyProfile: isMyProfile,
|
|
||||||
isVerified: user.is_verified,
|
|
||||||
isSponsor: user.is_sponsor,
|
|
||||||
isBlocked: user.is_blocked,
|
|
||||||
roles: user.roles,
|
|
||||||
}}
|
|
||||||
rating={user.rating_score}
|
|
||||||
/>
|
/>
|
||||||
{!user.is_counts_hidden && (
|
|
||||||
<ProfileActivity
|
|
||||||
profile_id={user.id}
|
|
||||||
commentCount={user.comment_count}
|
|
||||||
videoCount={user.video_count}
|
|
||||||
collectionCount={user.collection_count}
|
|
||||||
friendsCount={user.friend_count}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{!user.is_stats_hidden && (
|
|
||||||
<div className="flex-col hidden gap-2 xl:flex">
|
|
||||||
{user.votes && user.votes.length > 0 && (
|
|
||||||
<ProfileReleaseRatings
|
|
||||||
ratings={user.votes}
|
|
||||||
token={authUser.token}
|
|
||||||
profile_id={user.id}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{user.history && user.history.length > 0 && (
|
|
||||||
<ProfileReleaseHistory history={user.history} />
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col w-full gap-2 xl:flex-1 xl:w-auto ">
|
|
||||||
{authUser.token && (
|
{authUser.token && (
|
||||||
<ProfileActions
|
<ProfileActions
|
||||||
isMyProfile={isMyProfile}
|
isMyProfile={isMyProfile}
|
||||||
|
@ -185,6 +125,28 @@ export const ProfilePage = (props: any) => {
|
||||||
edit_setIsOpen={setIsOpen}
|
edit_setIsOpen={setIsOpen}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
{!user.is_counts_hidden && (
|
||||||
|
<ProfileActivity
|
||||||
|
profile_id={user.id}
|
||||||
|
commentCount={user.comment_count}
|
||||||
|
videoCount={user.video_count}
|
||||||
|
collectionCount={user.collection_count}
|
||||||
|
friendsCount={user.friend_count}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{!user.is_stats_hidden && (
|
||||||
|
<div className="flex-col hidden gap-2 lg:flex">
|
||||||
|
{user.votes && user.votes.length > 0 && (
|
||||||
|
<ProfileReleaseRatings
|
||||||
|
ratings={user.votes}
|
||||||
|
token={authUser.token}
|
||||||
|
profile_id={user.id}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col gap-2">
|
||||||
{!user.is_stats_hidden && (
|
{!user.is_stats_hidden && (
|
||||||
<>
|
<>
|
||||||
<ProfileStats
|
<ProfileStats
|
||||||
|
@ -200,7 +162,7 @@ export const ProfilePage = (props: any) => {
|
||||||
profile_id={user.id}
|
profile_id={user.id}
|
||||||
/>
|
/>
|
||||||
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
<ProfileWatchDynamic watchDynamic={user.watch_dynamics || []} />
|
||||||
<div className="flex flex-col gap-2 xl:hidden">
|
<div className="flex flex-col gap-2 lg:hidden">
|
||||||
{user.votes && user.votes.length > 0 && (
|
{user.votes && user.votes.length > 0 && (
|
||||||
<ProfileReleaseRatings
|
<ProfileReleaseRatings
|
||||||
ratings={user.votes}
|
ratings={user.votes}
|
||||||
|
@ -208,10 +170,10 @@ export const ProfilePage = (props: any) => {
|
||||||
profile_id={user.id}
|
profile_id={user.id}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{user.history && user.history.length > 0 && (
|
|
||||||
<ProfileReleaseHistory history={user.history} />
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
{user.history && user.history.length > 0 && (
|
||||||
|
<ProfileReleaseHistory history={user.history} />
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { useScrollPosition } from "#/hooks/useScrollPosition";
|
||||||
import { useRouter } from "next/navigation";
|
import { useRouter } from "next/navigation";
|
||||||
import { useSearchParams } from "next/navigation";
|
import { useSearchParams } from "next/navigation";
|
||||||
import { useUserStore } from "../store/auth";
|
import { useUserStore } from "../store/auth";
|
||||||
import { Button, Dropdown, Modal } from "flowbite-react";
|
import { Button, Dropdown, DropdownItem, Modal, ModalBody, ModalFooter, ModalHeader } from "flowbite-react";
|
||||||
import { CollectionsSection } from "#/components/CollectionsSection/CollectionsSection";
|
import { CollectionsSection } from "#/components/CollectionsSection/CollectionsSection";
|
||||||
import { UserSection } from "#/components/UserSection/UserSection";
|
import { UserSection } from "#/components/UserSection/UserSection";
|
||||||
import { useSWRfetcher } from "#/api/utils";
|
import { useSWRfetcher } from "#/api/utils";
|
||||||
|
@ -360,8 +360,8 @@ const FiltersModal = (props: {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Modal show={props.isOpen} onClose={() => _cancel()}>
|
<Modal show={props.isOpen} onClose={() => _cancel()}>
|
||||||
<Modal.Header>Фильтры</Modal.Header>
|
<ModalHeader>Фильтры</ModalHeader>
|
||||||
<Modal.Body>
|
<ModalBody>
|
||||||
<div className="my-4">
|
<div className="my-4">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<p className="font-bold dark:text-white">Искать в</p>
|
<p className="font-bold dark:text-white">Искать в</p>
|
||||||
|
@ -376,12 +376,12 @@ const FiltersModal = (props: {
|
||||||
return <></>;
|
return <></>;
|
||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
onClick={() => setWhere(item)}
|
onClick={() => setWhere(item)}
|
||||||
key={`where--${item}`}
|
key={`where--${item}`}
|
||||||
>
|
>
|
||||||
{WhereMapping[item]}
|
{WhereMapping[item]}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
})}
|
})}
|
||||||
|
@ -395,12 +395,12 @@ const FiltersModal = (props: {
|
||||||
<Dropdown label={ListsMapping[list].name} color="blue">
|
<Dropdown label={ListsMapping[list].name} color="blue">
|
||||||
{Object.keys(ListsMapping).map((item) => {
|
{Object.keys(ListsMapping).map((item) => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
onClick={() => setList(item)}
|
onClick={() => setList(item)}
|
||||||
key={`list--${item}`}
|
key={`list--${item}`}
|
||||||
>
|
>
|
||||||
{ListsMapping[item].name}
|
{ListsMapping[item].name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
@ -414,20 +414,20 @@ const FiltersModal = (props: {
|
||||||
<Dropdown label={TagMapping[searchBy].name} color="blue">
|
<Dropdown label={TagMapping[searchBy].name} color="blue">
|
||||||
{Object.keys(TagMapping).map((item) => {
|
{Object.keys(TagMapping).map((item) => {
|
||||||
return (
|
return (
|
||||||
<Dropdown.Item
|
<DropdownItem
|
||||||
onClick={() => setSearchBy(item)}
|
onClick={() => setSearchBy(item)}
|
||||||
key={`tag--${item}`}
|
key={`tag--${item}`}
|
||||||
>
|
>
|
||||||
{TagMapping[item].name}
|
{TagMapping[item].name}
|
||||||
</Dropdown.Item>
|
</DropdownItem>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
: ""}
|
: ""}
|
||||||
</Modal.Body>
|
</ModalBody>
|
||||||
<Modal.Footer>
|
<ModalFooter>
|
||||||
<div className="flex justify-end w-full gap-2">
|
<div className="flex justify-end w-full gap-2">
|
||||||
<Button color="red" onClick={() => _cancel()}>
|
<Button color="red" onClick={() => _cancel()}>
|
||||||
Отменить
|
Отменить
|
||||||
|
@ -436,7 +436,7 @@ const FiltersModal = (props: {
|
||||||
Применить
|
Применить
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</Modal.Footer>
|
</ModalFooter>
|
||||||
</Modal>
|
</Modal>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
const { withPlausibleProxy } = require("next-plausible");
|
const { withPlausibleProxy } = require("next-plausible");
|
||||||
|
const withFlowbiteReact = require("flowbite-react/plugin/nextjs");
|
||||||
module.exports = withPlausibleProxy({
|
/** @type {import('next').NextConfig} */
|
||||||
customDomain: "https://analytics.wah.su",
|
const NextConfig = {
|
||||||
})({
|
|
||||||
reactStrictMode: false,
|
reactStrictMode: false,
|
||||||
images: {
|
images: {
|
||||||
unoptimized: true,
|
unoptimized: true,
|
||||||
|
@ -10,68 +9,74 @@ module.exports = withPlausibleProxy({
|
||||||
async headers() {
|
async headers() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
source: '/bookmarks/:slug*',
|
source: "/bookmarks/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/collection/:slug*',
|
source: "/collection/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/home/:slug*',
|
source: "/home/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/profile/:slug*',
|
source: "/profile/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/release/:slug*',
|
source: "/release/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/related/:slug*',
|
source: "/related/:slug*",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
source: '/search',
|
source: "/search",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
key: 'Cache-Control',
|
key: "Cache-Control",
|
||||||
value: 's-maxage=2592000, stale-while-revalidate=86400',
|
value: "s-maxage=2592000, stale-while-revalidate=86400",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
});
|
};
|
||||||
|
|
||||||
|
const config = withPlausibleProxy({
|
||||||
|
customDomain: "https://analytics.wah.su",
|
||||||
|
})(withFlowbiteReact(NextConfig));
|
||||||
|
|
||||||
|
module.exports = config;
|
||||||
|
|
617
package-lock.json
generated
617
package-lock.json
generated
|
@ -7,16 +7,18 @@
|
||||||
"": {
|
"": {
|
||||||
"name": "new",
|
"name": "new",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"apexcharts": "^3.52.0",
|
"apexcharts": "^3.52.0",
|
||||||
"deepmerge-ts": "^7.1.0",
|
"deepmerge-ts": "^7.1.0",
|
||||||
"flowbite": "^2.4.1",
|
"flowbite": "^2.4.1",
|
||||||
"flowbite-react": "^0.10.1",
|
"flowbite-react": "^0.11.7",
|
||||||
"hls-video-element": "^1.5.0",
|
"hls-video-element": "^1.5.0",
|
||||||
"markdown-to-jsx": "^7.4.7",
|
"markdown-to-jsx": "^7.4.7",
|
||||||
"media-chrome": "^4.8.0",
|
"media-chrome": "^4.8.0",
|
||||||
"next": "^14.2.26",
|
"next": "^14.2.26",
|
||||||
"next-plausible": "^3.12.1",
|
"next-plausible": "^3.12.1",
|
||||||
|
"prettier": "^3.5.3",
|
||||||
"react": "^18",
|
"react": "^18",
|
||||||
"react-cropper": "^2.3.3",
|
"react-cropper": "^2.3.3",
|
||||||
"react-dom": "^18",
|
"react-dom": "^18",
|
||||||
|
@ -38,8 +40,6 @@
|
||||||
"eslint": "^8",
|
"eslint": "^8",
|
||||||
"eslint-config-next": "14.2.5",
|
"eslint-config-next": "14.2.5",
|
||||||
"postcss": "^8",
|
"postcss": "^8",
|
||||||
"prettier": "^3.5.3",
|
|
||||||
"tailwind-scrollbar": "^3.1.0",
|
|
||||||
"tailwindcss": "^3.4.1"
|
"tailwindcss": "^3.4.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -153,12 +153,12 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@floating-ui/core": {
|
"node_modules/@floating-ui/core": {
|
||||||
"version": "1.6.6",
|
"version": "1.6.9",
|
||||||
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.6.tgz",
|
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz",
|
||||||
"integrity": "sha512-Vkvsw6EcpMHjvZZdMkSY+djMGFbt7CRssW99Ne8tar2WLnZ/l3dbxeTShbLQj+/s35h+Qb4cmnob+EzwtjrXGQ==",
|
"integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@floating-ui/utils": "^0.2.6"
|
"@floating-ui/utils": "^0.2.9"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@floating-ui/dom": {
|
"node_modules/@floating-ui/dom": {
|
||||||
|
@ -172,18 +172,18 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@floating-ui/react": {
|
"node_modules/@floating-ui/react": {
|
||||||
"version": "0.26.21",
|
"version": "0.27.3",
|
||||||
"resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.21.tgz",
|
"resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.27.3.tgz",
|
||||||
"integrity": "sha512-7P5ncDIiYd6RrwpCDbKyFzvabM014QlzlumtDbK3Bck0UueC+Rp8BLS34qcGBcN1pZCTodl4QNnCVmKv4tSxfQ==",
|
"integrity": "sha512-CLHnes3ixIFFKVQDdICjel8muhFLOBdQH7fgtHNPY8UbCNqbeKZ262G7K66lGQOUQWWnYocf7ZbUsLJgGfsLHg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@floating-ui/react-dom": "^2.1.1",
|
"@floating-ui/react-dom": "^2.1.2",
|
||||||
"@floating-ui/utils": "^0.2.6",
|
"@floating-ui/utils": "^0.2.9",
|
||||||
"tabbable": "^6.0.0"
|
"tabbable": "^6.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": ">=16.8.0",
|
"react": ">=17.0.0",
|
||||||
"react-dom": ">=16.8.0"
|
"react-dom": ">=17.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@floating-ui/react-dom": {
|
"node_modules/@floating-ui/react-dom": {
|
||||||
|
@ -243,6 +243,12 @@
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BSD-3-Clause"
|
"license": "BSD-3-Clause"
|
||||||
},
|
},
|
||||||
|
"node_modules/@iarna/toml": {
|
||||||
|
"version": "2.2.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
|
||||||
|
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==",
|
||||||
|
"license": "ISC"
|
||||||
|
},
|
||||||
"node_modules/@iconify-json/fa6-brands": {
|
"node_modules/@iconify-json/fa6-brands": {
|
||||||
"version": "1.2.5",
|
"version": "1.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/@iconify-json/fa6-brands/-/fa6-brands-1.2.5.tgz",
|
"resolved": "https://registry.npmjs.org/@iconify-json/fa6-brands/-/fa6-brands-1.2.5.tgz",
|
||||||
|
@ -408,15 +414,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@napi-rs/wasm-runtime": {
|
"node_modules/@napi-rs/wasm-runtime": {
|
||||||
"version": "0.2.7",
|
"version": "0.2.8",
|
||||||
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.7.tgz",
|
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.8.tgz",
|
||||||
"integrity": "sha512-5yximcFK5FNompXfJFoWanu5l8v1hNGqNHh9du1xETp9HWk/B/PzvchX55WYOPaIeNglG8++68AAiauBAtbnzw==",
|
"integrity": "sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@emnapi/core": "^1.3.1",
|
"@emnapi/core": "^1.4.0",
|
||||||
"@emnapi/runtime": "^1.3.1",
|
"@emnapi/runtime": "^1.4.0",
|
||||||
"@tybys/wasm-util": "^0.9.0"
|
"@tybys/wasm-util": "^0.9.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -996,9 +1002,9 @@
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.3.3.tgz",
|
||||||
"integrity": "sha512-ddnlXgRi0Fog5+7U5Q1qY62wl95Q1lB4tXQX1UIA9YHmRCHN2twaQW0/4tDVGCvTVEU3xEayU7VemEr7GcBYUw==",
|
"integrity": "sha512-EpRILdWr3/xDa/7MoyfO7JuBIJqpBMphtu4+80BK1bRfFcniVT74h3Z7q1+WOc92FuIAYatB1vn9TJR67sORGw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -1010,9 +1016,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.3.3.tgz",
|
||||||
"integrity": "sha512-tnl9xoEeg503jis+LW5cuq4hyLGQyqaoBL8VdPSqcewo/FL1C8POHbzl+AL25TidWYJD+R6bGUTE381kA1sT9w==",
|
"integrity": "sha512-ntj/g7lPyqwinMJWZ+DKHBse8HhVxswGTmNgFKJtdgGub3M3zp5BSZ3bvMP+kBT6dnYJLSVlDqdwOq1P8i0+/g==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -1024,9 +1030,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.3.3.tgz",
|
||||||
"integrity": "sha512-zyPn9LFCCjhKPeCtECZaiMUgkYN/VpLb4a9Xv7QriJmTaQxsuDtXqOHifrzUXIhorJTyS+5MOKDuNL0X9I4EHA==",
|
"integrity": "sha512-l6BT8f2CU821EW7U8hSUK8XPq4bmyTlt9Mn4ERrfjJNoCw0/JoHAh9amZZtV3cwC3bwwIat+GUnrcHTG9+qixw==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -1038,9 +1044,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.3.3.tgz",
|
||||||
"integrity": "sha512-UWx56Wh59Ro69fe+Wfvld4E1n9KG0e3zeouWLn8eSasyi/yVH/7ZW3CLTVFQ81oMKSpXwr5u6RpzttDXZKiO4g==",
|
"integrity": "sha512-8ScEc5a4y7oE2BonRvzJ+2GSkBaYWyh0/Ko4Q25e/ix6ANpJNhwEPZvCR6GVRmsQAYMIfQvYLdM6YEN+qRjnAQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
|
@ -1052,9 +1058,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.3.3.tgz",
|
||||||
"integrity": "sha512-VYGQXsOEJtfaoY2fOm8Z9ii5idFaHFYlrq3yMFZPaFKo8ufOXYm8hnfru7qetbM9MX116iWaPC0ZX5sK+1Dr+g==",
|
"integrity": "sha512-8qQ6l1VTzLNd3xb2IEXISOKwMGXDCzY/UNy/7SovFW2Sp0K3YbL7Ao7R18v6SQkLqQlhhqSBIFRk+u6+qu5R5A==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm"
|
"arm"
|
||||||
],
|
],
|
||||||
|
@ -1066,9 +1072,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.3.3.tgz",
|
||||||
"integrity": "sha512-3zP420zxJfYPD1rGp2/OTIBxF8E3+/6VqCG+DEO6kkDgBiloa7Y8pw1o7N9BfgAC+VC8FPZsFXhV2lpx+lLRMQ==",
|
"integrity": "sha512-v81R2wjqcWXJlQY23byqYHt9221h4anQ6wwN64oMD/WAE+FmxPHFZee5bhRkNVtzqO/q7wki33VFWlhiADwUeQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -1080,9 +1086,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.3.3.tgz",
|
||||||
"integrity": "sha512-ZWjSleUgr88H4Kei7yT4PlPqySTuWN1OYDDcdbmMCtLWFly3ed+rkrcCb3gvqXdDbYrGOtzv3g2qPEN+WWNv5Q==",
|
"integrity": "sha512-cAOx/j0u5coMg4oct/BwMzvWJdVciVauUvsd+GQB/1FZYKQZmqPy0EjJzJGbVzFc6gbnfEcSqvQE6gvbGf2N8Q==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -1094,9 +1100,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.3.3.tgz",
|
||||||
"integrity": "sha512-p+5OvYJ2UOlpjes3WfBlxyvQok2u26hLyPxLFHkYlfzhZW0juhvBf/tvewz1LDFe30M7zL9cF4OOO5dcvtk+cw==",
|
"integrity": "sha512-mq2blqwErgDJD4gtFDlTX/HZ7lNP8YCHYFij2gkXPtMzrXxPW1hOtxL6xg4NWxvnj4bppppb0W3s/buvM55yfg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"ppc64"
|
"ppc64"
|
||||||
],
|
],
|
||||||
|
@ -1108,9 +1114,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.3.3.tgz",
|
||||||
"integrity": "sha512-yweY7I6SqNn3kvj6vE4PQRo7j8Oz6+NiUhmgciBNAUOuI3Jq0bnW29hbHJdxZRSN1kYkQnSkbbA1tT8VnK816w==",
|
"integrity": "sha512-u0VRzfFYysarYHnztj2k2xr+eu9rmgoTUUgCCIT37Nr+j0A05Xk2c3RY8Mh5+DhCl2aYibihnaAEJHeR0UOFIQ==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"s390x"
|
"s390x"
|
||||||
],
|
],
|
||||||
|
@ -1122,9 +1128,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.3.3.tgz",
|
||||||
"integrity": "sha512-fNIvtzJcGN9hzWTIayrTSk2+KHQrqKbbY+I88xMVMOFV9t4AXha4veJdKaIuuks+2JNr6GuuNdsL7+exywZ32w==",
|
"integrity": "sha512-OrVo5ZsG29kBF0Ug95a2KidS16PqAMmQNozM6InbquOfW/udouk063e25JVLqIBhHLB2WyBnixOQ19tmeC/hIg==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -1136,9 +1142,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.3.3.tgz",
|
||||||
"integrity": "sha512-OaFEw8WAjiwBGxutQgkWhoAGB5BQqZJ8Gjt/mW+m6DWNjimcxU22uWCuEtfw1CIwLlKPOzsgH0429fWmZcTGkg==",
|
"integrity": "sha512-PYnmrwZ4HMp9SkrOhqPghY/aoL+Rtd4CQbr93GlrRTjK6kDzfMfgz3UH3jt6elrQAfupa1qyr1uXzeVmoEAxUA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -1150,9 +1156,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.3.3.tgz",
|
||||||
"integrity": "sha512-u+sumtO7M0AGQ9bNQrF4BHNpUyxo23FM/yXZfmVAicTQ+mXtG06O7pm5zQUw3Mr4jRs2I84uh4O0hd8bdouuvQ==",
|
"integrity": "sha512-81AnQY6fShmktQw4hWDUIilsKSdvr/acdJ5azAreu2IWNlaJOKphJSsUVWE+yCk6kBMoQyG9ZHCb/krb5K0PEA==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"wasm32"
|
"wasm32"
|
||||||
],
|
],
|
||||||
|
@ -1167,9 +1173,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.3.3.tgz",
|
||||||
"integrity": "sha512-ZAJKy95vmDIHsRFuPNqPQRON8r2mSMf3p9DoX+OMOhvu2c8OXGg8MvhGRf3PNg45ozRrPdXDnngURKgaFfpGoQ==",
|
"integrity": "sha512-X/42BMNw7cW6xrB9syuP5RusRnWGoq+IqvJO8IDpp/BZg64J1uuIW6qA/1Cl13Y4LyLXbJVYbYNSKwR/FiHEng==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"arm64"
|
"arm64"
|
||||||
],
|
],
|
||||||
|
@ -1181,9 +1187,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.3.3.tgz",
|
||||||
"integrity": "sha512-nQG4YFAS2BLoKVQFK/FrWJvFATI5DQUWQrcPcsWG9Ve5BLLHZuPOrJ2SpAJwLXQrRv6XHSFAYGI8wQpBg/CiFA==",
|
"integrity": "sha512-EGNnNGQxMU5aTN7js3ETYvuw882zcO+dsVjs+DwO2j/fRVKth87C8e2GzxW1L3+iWAXMyJhvFBKRavk9Og1Z6A==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"ia32"
|
"ia32"
|
||||||
],
|
],
|
||||||
|
@ -1195,9 +1201,9 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.3.3.tgz",
|
||||||
"integrity": "sha512-XBWpUP0mHya6yGBwNefhyEa6V7HgYKCxEAY4qhTm/PcAQyBPNmjj97VZJOJkVdUsyuuii7xmq0pXWX/c2aToHQ==",
|
"integrity": "sha512-GraLbYqOJcmW1qY3osB+2YIiD62nVf2/bVLHZmrb4t/YSUwE03l7TwcDJl08T/Tm3SVhepX8RQkpzWbag/Sb4w==",
|
||||||
"cpu": [
|
"cpu": [
|
||||||
"x64"
|
"x64"
|
||||||
],
|
],
|
||||||
|
@ -1619,6 +1625,12 @@
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/array-timsort": {
|
||||||
|
"version": "1.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz",
|
||||||
|
"integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/array-union": {
|
"node_modules/array-union": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
||||||
|
@ -1749,6 +1761,18 @@
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/ast-types": {
|
||||||
|
"version": "0.16.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
|
||||||
|
"integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/ast-types-flow": {
|
"node_modules/ast-types-flow": {
|
||||||
"version": "0.0.8",
|
"version": "0.0.8",
|
||||||
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
|
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
|
||||||
|
@ -1966,9 +1990,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001707",
|
"version": "1.0.30001709",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001709.tgz",
|
||||||
"integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==",
|
"integrity": "sha512-NgL3vUTnDrPCZ3zTahp4fsugQ4dc7EKTSzwQDPEel6DMoMnfH2jhry9n2Zm8onbSR+f/QtKHFOA+iAQu4kbtWA==",
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
|
@ -2012,39 +2036,18 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chokidar": {
|
"node_modules/chokidar": {
|
||||||
"version": "3.6.0",
|
"version": "4.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
||||||
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
"integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"anymatch": "~3.1.2",
|
"readdirp": "^4.0.1"
|
||||||
"braces": "~3.0.2",
|
|
||||||
"glob-parent": "~5.1.2",
|
|
||||||
"is-binary-path": "~2.1.0",
|
|
||||||
"is-glob": "~4.0.1",
|
|
||||||
"normalize-path": "~3.0.0",
|
|
||||||
"readdirp": "~3.6.0"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.10.0"
|
"node": ">= 14.16.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://paulmillr.com/funding/"
|
"url": "https://paulmillr.com/funding/"
|
||||||
},
|
|
||||||
"optionalDependencies": {
|
|
||||||
"fsevents": "~2.3.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/chokidar/node_modules/glob-parent": {
|
|
||||||
"version": "5.1.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
||||||
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
||||||
"license": "ISC",
|
|
||||||
"dependencies": {
|
|
||||||
"is-glob": "^4.0.1"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 6"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chrome-trace-event": {
|
"node_modules/chrome-trace-event": {
|
||||||
|
@ -2106,6 +2109,22 @@
|
||||||
"node": ">= 6"
|
"node": ">= 6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/comment-json": {
|
||||||
|
"version": "4.2.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.5.tgz",
|
||||||
|
"integrity": "sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"array-timsort": "^1.0.3",
|
||||||
|
"core-util-is": "^1.0.3",
|
||||||
|
"esprima": "^4.0.1",
|
||||||
|
"has-own-prop": "^2.0.0",
|
||||||
|
"repeat-string": "^1.6.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/concat-map": {
|
"node_modules/concat-map": {
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
||||||
|
@ -2138,6 +2157,12 @@
|
||||||
"webpack": "^5.1.0"
|
"webpack": "^5.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/core-util-is": {
|
||||||
|
"version": "1.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
||||||
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/cropperjs": {
|
"node_modules/cropperjs": {
|
||||||
"version": "1.6.2",
|
"version": "1.6.2",
|
||||||
"resolved": "https://registry.npmjs.org/cropperjs/-/cropperjs-1.6.2.tgz",
|
"resolved": "https://registry.npmjs.org/cropperjs/-/cropperjs-1.6.2.tgz",
|
||||||
|
@ -2245,9 +2270,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/debounce": {
|
"node_modules/debounce": {
|
||||||
"version": "2.1.0",
|
"version": "2.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/debounce/-/debounce-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/debounce/-/debounce-2.2.0.tgz",
|
||||||
"integrity": "sha512-OkL3+0pPWCqoBc/nhO9u6TIQNTK44fnBnzuVtJAbp13Naxw9R6u21x+8tVTka87AhDZ3htqZ2pSSsZl9fqL2Wg==",
|
"integrity": "sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
@ -2260,7 +2285,6 @@
|
||||||
"version": "4.4.0",
|
"version": "4.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
|
||||||
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ms": "^2.1.3"
|
"ms": "^2.1.3"
|
||||||
|
@ -2414,9 +2438,9 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/electron-to-chromium": {
|
"node_modules/electron-to-chromium": {
|
||||||
"version": "1.5.128",
|
"version": "1.5.131",
|
||||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.128.tgz",
|
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.131.tgz",
|
||||||
"integrity": "sha512-bo1A4HH/NS522Ws0QNFIzyPcyUUNV/yyy70Ho1xqfGYzPUme2F/xr4tlEOuM6/A538U1vDA7a4XfCd1CKRegKQ==",
|
"integrity": "sha512-fJFRYXVEJgDCiqFOgRGJm8XR97hZ13tw7FXI9k2yC5hgY+nyzC2tMO8baq1cQR7Ur58iCkASx2zrkZPZUnfzPg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"peer": true
|
"peer": true
|
||||||
|
@ -2915,9 +2939,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-react": {
|
"node_modules/eslint-plugin-react": {
|
||||||
"version": "7.37.4",
|
"version": "7.37.5",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz",
|
||||||
"integrity": "sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==",
|
"integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -2931,7 +2955,7 @@
|
||||||
"hasown": "^2.0.2",
|
"hasown": "^2.0.2",
|
||||||
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
|
"jsx-ast-utils": "^2.4.1 || ^3.0.0",
|
||||||
"minimatch": "^3.1.2",
|
"minimatch": "^3.1.2",
|
||||||
"object.entries": "^1.1.8",
|
"object.entries": "^1.1.9",
|
||||||
"object.fromentries": "^2.0.8",
|
"object.fromentries": "^2.0.8",
|
||||||
"object.values": "^1.2.1",
|
"object.values": "^1.2.1",
|
||||||
"prop-types": "^15.8.1",
|
"prop-types": "^15.8.1",
|
||||||
|
@ -3049,6 +3073,19 @@
|
||||||
"url": "https://opencollective.com/eslint"
|
"url": "https://opencollective.com/eslint"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/esprima": {
|
||||||
|
"version": "4.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
||||||
|
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"bin": {
|
||||||
|
"esparse": "bin/esparse.js",
|
||||||
|
"esvalidate": "bin/esvalidate.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=4"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/esquery": {
|
"node_modules/esquery": {
|
||||||
"version": "1.6.0",
|
"version": "1.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
|
||||||
|
@ -3288,34 +3325,146 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/flowbite-react": {
|
"node_modules/flowbite-react": {
|
||||||
"version": "0.10.2",
|
"version": "0.11.7",
|
||||||
"resolved": "https://registry.npmjs.org/flowbite-react/-/flowbite-react-0.10.2.tgz",
|
"resolved": "https://registry.npmjs.org/flowbite-react/-/flowbite-react-0.11.7.tgz",
|
||||||
"integrity": "sha512-qkayK6IFmfH7zuuDnHmS0hJxLtL0KpW4vo4i/VQfZ6ZfaNlUsNLQxCGcmXwbZZtUm2WVw8x71aaDOAxftG9tmg==",
|
"integrity": "sha512-Z8m+ycHEsXPacSAi8P4yYDeff7LvcHNwbGAnL/+Fpiv+6ZWDEAGY/YPKhUofZsZa837JTYrbcbmgjqQ1bpt51g==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@floating-ui/core": "1.6.6",
|
"@floating-ui/core": "1.6.9",
|
||||||
"@floating-ui/react": "0.26.21",
|
"@floating-ui/react": "0.27.3",
|
||||||
|
"@iarna/toml": "2.2.5",
|
||||||
|
"@typescript-eslint/typescript-estree": "8.26.0",
|
||||||
|
"chokidar": "4.0.3",
|
||||||
"classnames": "2.5.1",
|
"classnames": "2.5.1",
|
||||||
"debounce": "2.1.0",
|
"comment-json": "4.2.5",
|
||||||
"flowbite": "2.5.1",
|
"debounce": "2.2.0",
|
||||||
"react-icons": "5.2.1",
|
"deepmerge-ts": "7.1.4",
|
||||||
"tailwind-merge": "2.4.0"
|
"klona": "2.0.6",
|
||||||
|
"package-manager-detector": "0.2.9",
|
||||||
|
"recast": "0.23.11",
|
||||||
|
"tailwind-merge-v2": "npm:tailwind-merge@2.6.0",
|
||||||
|
"tailwind-merge-v3": "npm:tailwind-merge@3.0.1"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"flowbite-react": "dist/cli/bin.js"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": ">=18",
|
"react": "^18 || ^19",
|
||||||
"react-dom": ">=18",
|
"react-dom": "^18 || ^19",
|
||||||
"tailwindcss": "^3"
|
"tailwindcss": "^3 || ^4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/flowbite-react/node_modules/flowbite": {
|
"node_modules/flowbite-react/node_modules/@typescript-eslint/types": {
|
||||||
"version": "2.5.1",
|
"version": "8.26.0",
|
||||||
"resolved": "https://registry.npmjs.org/flowbite/-/flowbite-2.5.1.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.26.0.tgz",
|
||||||
"integrity": "sha512-7jP1jy9c3QP7y+KU9lc8ueMkTyUdMDvRP+lteSWgY5TigSZjf9K1kqZxmqjhbx2gBnFQxMl1GAjVThCa8cEpKA==",
|
"integrity": "sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/@typescript-eslint/typescript-estree": {
|
||||||
|
"version": "8.26.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.26.0.tgz",
|
||||||
|
"integrity": "sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@popperjs/core": "^2.9.3",
|
"@typescript-eslint/types": "8.26.0",
|
||||||
"flowbite-datepicker": "^1.3.0",
|
"@typescript-eslint/visitor-keys": "8.26.0",
|
||||||
"mini-svg-data-uri": "^1.4.3"
|
"debug": "^4.3.4",
|
||||||
|
"fast-glob": "^3.3.2",
|
||||||
|
"is-glob": "^4.0.3",
|
||||||
|
"minimatch": "^9.0.4",
|
||||||
|
"semver": "^7.6.0",
|
||||||
|
"ts-api-utils": "^2.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"typescript": ">=4.8.4 <5.9.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/@typescript-eslint/visitor-keys": {
|
||||||
|
"version": "8.26.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.26.0.tgz",
|
||||||
|
"integrity": "sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@typescript-eslint/types": "8.26.0",
|
||||||
|
"eslint-visitor-keys": "^4.2.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/brace-expansion": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"balanced-match": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/deepmerge-ts": {
|
||||||
|
"version": "7.1.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/deepmerge-ts/-/deepmerge-ts-7.1.4.tgz",
|
||||||
|
"integrity": "sha512-fxqo6nHGQ9zOVgI4KXqtWXJR/yCLtC7aXIVq+6jc8tHPFUxlFmuUcm2kC4vztQ+LJxQ3gER/XAWearGYQ8niGA==",
|
||||||
|
"license": "BSD-3-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/eslint-visitor-keys": {
|
||||||
|
"version": "4.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
|
||||||
|
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"engines": {
|
||||||
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://opencollective.com/eslint"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/minimatch": {
|
||||||
|
"version": "9.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
|
||||||
|
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"brace-expansion": "^2.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16 || 14 >=14.17"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/isaacs"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/flowbite-react/node_modules/ts-api-utils": {
|
||||||
|
"version": "2.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz",
|
||||||
|
"integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18.12"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"typescript": ">=4.8.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/for-each": {
|
"node_modules/for-each": {
|
||||||
|
@ -3660,6 +3809,15 @@
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/has-own-prop": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/has-property-descriptors": {
|
"node_modules/has-property-descriptors": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
|
||||||
|
@ -4417,6 +4575,15 @@
|
||||||
"json-buffer": "3.0.1"
|
"json-buffer": "3.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/klona": {
|
||||||
|
"version": "2.0.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
|
||||||
|
"integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/language-subtag-registry": {
|
"node_modules/language-subtag-registry": {
|
||||||
"version": "0.3.23",
|
"version": "0.3.23",
|
||||||
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
|
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
|
||||||
|
@ -4670,7 +4837,6 @@
|
||||||
"version": "2.1.3",
|
"version": "2.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
||||||
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/mz": {
|
"node_modules/mz": {
|
||||||
|
@ -5035,6 +5201,12 @@
|
||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/package-manager-detector": {
|
||||||
|
"version": "0.2.9",
|
||||||
|
"resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.9.tgz",
|
||||||
|
"integrity": "sha512-+vYvA/Y31l8Zk8dwxHhL3JfTuHPm6tlxM2A3GeQyl7ovYnSp1+mzAxClxaOr0qO1TtPxbQxetI7v5XqKLJZk7Q==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/parent-module": {
|
"node_modules/parent-module": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
||||||
|
@ -5315,7 +5487,6 @@
|
||||||
"version": "3.5.3",
|
"version": "3.5.3",
|
||||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
|
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
|
||||||
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
|
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bin": {
|
"bin": {
|
||||||
"prettier": "bin/prettier.cjs"
|
"prettier": "bin/prettier.cjs"
|
||||||
|
@ -5416,15 +5587,6 @@
|
||||||
"react": "^18.3.1"
|
"react": "^18.3.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/react-icons": {
|
|
||||||
"version": "5.2.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.2.1.tgz",
|
|
||||||
"integrity": "sha512-zdbW5GstTzXaVKvGSyTaBalt7HSfuK5ovrzlpyiWHAFXndXTdd/1hdDHI4xBM1Mn7YriT6aqESucFl9kEXzrdw==",
|
|
||||||
"license": "MIT",
|
|
||||||
"peerDependencies": {
|
|
||||||
"react": "*"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/react-is": {
|
"node_modules/react-is": {
|
||||||
"version": "16.13.1",
|
"version": "16.13.1",
|
||||||
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
||||||
|
@ -5455,27 +5617,32 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/readdirp": {
|
"node_modules/readdirp": {
|
||||||
"version": "3.6.0",
|
"version": "4.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
|
||||||
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
"integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"picomatch": "^2.2.1"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=8.10.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/readdirp/node_modules/picomatch": {
|
|
||||||
"version": "2.3.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
||||||
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=8.6"
|
"node": ">= 14.18.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/jonschlinkert"
|
"type": "individual",
|
||||||
|
"url": "https://paulmillr.com/funding/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/recast": {
|
||||||
|
"version": "0.23.11",
|
||||||
|
"resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz",
|
||||||
|
"integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"ast-types": "^0.16.1",
|
||||||
|
"esprima": "~4.0.0",
|
||||||
|
"source-map": "~0.6.1",
|
||||||
|
"tiny-invariant": "^1.3.3",
|
||||||
|
"tslib": "^2.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/reflect.getprototypeof": {
|
"node_modules/reflect.getprototypeof": {
|
||||||
|
@ -5522,6 +5689,15 @@
|
||||||
"url": "https://github.com/sponsors/ljharb"
|
"url": "https://github.com/sponsors/ljharb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/repeat-string": {
|
||||||
|
"version": "1.6.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
|
||||||
|
"integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/require-from-string": {
|
"node_modules/require-from-string": {
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
||||||
|
@ -5790,7 +5966,6 @@
|
||||||
"version": "7.7.1",
|
"version": "7.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
||||||
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
||||||
"dev": true,
|
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
"semver": "bin/semver.js"
|
"semver": "bin/semver.js"
|
||||||
|
@ -5984,9 +6159,7 @@
|
||||||
"version": "0.6.1",
|
"version": "0.6.1",
|
||||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
||||||
"dev": true,
|
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"peer": true,
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
|
@ -6458,27 +6631,26 @@
|
||||||
"integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==",
|
"integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/tailwind-merge": {
|
"node_modules/tailwind-merge-v2": {
|
||||||
"version": "2.4.0",
|
"name": "tailwind-merge",
|
||||||
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.4.0.tgz",
|
"version": "2.6.0",
|
||||||
"integrity": "sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==",
|
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz",
|
||||||
|
"integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"funding": {
|
"funding": {
|
||||||
"type": "github",
|
"type": "github",
|
||||||
"url": "https://github.com/sponsors/dcastil"
|
"url": "https://github.com/sponsors/dcastil"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/tailwind-scrollbar": {
|
"node_modules/tailwind-merge-v3": {
|
||||||
"version": "3.1.0",
|
"name": "tailwind-merge",
|
||||||
"resolved": "https://registry.npmjs.org/tailwind-scrollbar/-/tailwind-scrollbar-3.1.0.tgz",
|
"version": "3.0.1",
|
||||||
"integrity": "sha512-pmrtDIZeHyu2idTejfV59SbaJyvp1VRjYxAjZBH0jnyrPRo6HL1kD5Glz8VPagasqr6oAx6M05+Tuw429Z8jxg==",
|
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.0.1.tgz",
|
||||||
"dev": true,
|
"integrity": "sha512-AvzE8FmSoXC7nC+oU5GlQJbip2UO7tmOhOfQyOmPhrStOGXHU08j8mZEHZ4BmCqY5dWTCo4ClWkNyRNx1wpT0g==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"funding": {
|
||||||
"node": ">=12.13.0"
|
"type": "github",
|
||||||
},
|
"url": "https://github.com/sponsors/dcastil"
|
||||||
"peerDependencies": {
|
|
||||||
"tailwindcss": "3.x"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/tailwindcss": {
|
"node_modules/tailwindcss": {
|
||||||
|
@ -6518,6 +6690,66 @@
|
||||||
"node": ">=14.0.0"
|
"node": ">=14.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/tailwindcss/node_modules/chokidar": {
|
||||||
|
"version": "3.6.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
||||||
|
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"anymatch": "~3.1.2",
|
||||||
|
"braces": "~3.0.2",
|
||||||
|
"glob-parent": "~5.1.2",
|
||||||
|
"is-binary-path": "~2.1.0",
|
||||||
|
"is-glob": "~4.0.1",
|
||||||
|
"normalize-path": "~3.0.0",
|
||||||
|
"readdirp": "~3.6.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8.10.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://paulmillr.com/funding/"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"fsevents": "~2.3.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": {
|
||||||
|
"version": "5.1.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
||||||
|
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"is-glob": "^4.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tailwindcss/node_modules/picomatch": {
|
||||||
|
"version": "2.3.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
||||||
|
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.6"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/jonschlinkert"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tailwindcss/node_modules/readdirp": {
|
||||||
|
"version": "3.6.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
||||||
|
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"picomatch": "^2.2.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.10.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/tapable": {
|
"node_modules/tapable": {
|
||||||
"version": "2.2.1",
|
"version": "2.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
|
||||||
|
@ -6621,6 +6853,12 @@
|
||||||
"node": ">=0.8"
|
"node": ">=0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/tiny-invariant": {
|
||||||
|
"version": "1.3.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
|
||||||
|
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/tinyglobby": {
|
"node_modules/tinyglobby": {
|
||||||
"version": "0.2.12",
|
"version": "0.2.12",
|
||||||
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
|
||||||
|
@ -6796,7 +7034,6 @@
|
||||||
"version": "5.8.2",
|
"version": "5.8.2",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
||||||
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
||||||
"dev": true,
|
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"peer": true,
|
"peer": true,
|
||||||
"bin": {
|
"bin": {
|
||||||
|
@ -6847,30 +7084,30 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/unrs-resolver": {
|
"node_modules/unrs-resolver": {
|
||||||
"version": "1.3.2",
|
"version": "1.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.3.3.tgz",
|
||||||
"integrity": "sha512-ZKQBC351Ubw0PY8xWhneIfb6dygTQeUHtCcNGd0QB618zabD/WbFMYdRyJ7xeVT+6G82K5v/oyZO0QSHFtbIuw==",
|
"integrity": "sha512-PFLAGQzYlyjniXdbmQ3dnGMZJXX5yrl2YS4DLRfR3BhgUsE1zpRIrccp9XMOGRfIHpdFvCn/nr5N1KMVda4x3A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/JounQin"
|
"url": "https://github.com/sponsors/JounQin"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"@unrs/resolver-binding-darwin-arm64": "1.3.2",
|
"@unrs/resolver-binding-darwin-arm64": "1.3.3",
|
||||||
"@unrs/resolver-binding-darwin-x64": "1.3.2",
|
"@unrs/resolver-binding-darwin-x64": "1.3.3",
|
||||||
"@unrs/resolver-binding-freebsd-x64": "1.3.2",
|
"@unrs/resolver-binding-freebsd-x64": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.3.2",
|
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-arm-musleabihf": "1.3.2",
|
"@unrs/resolver-binding-linux-arm-musleabihf": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-arm64-gnu": "1.3.2",
|
"@unrs/resolver-binding-linux-arm64-gnu": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-arm64-musl": "1.3.2",
|
"@unrs/resolver-binding-linux-arm64-musl": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-ppc64-gnu": "1.3.2",
|
"@unrs/resolver-binding-linux-ppc64-gnu": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-s390x-gnu": "1.3.2",
|
"@unrs/resolver-binding-linux-s390x-gnu": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-x64-gnu": "1.3.2",
|
"@unrs/resolver-binding-linux-x64-gnu": "1.3.3",
|
||||||
"@unrs/resolver-binding-linux-x64-musl": "1.3.2",
|
"@unrs/resolver-binding-linux-x64-musl": "1.3.3",
|
||||||
"@unrs/resolver-binding-wasm32-wasi": "1.3.2",
|
"@unrs/resolver-binding-wasm32-wasi": "1.3.3",
|
||||||
"@unrs/resolver-binding-win32-arm64-msvc": "1.3.2",
|
"@unrs/resolver-binding-win32-arm64-msvc": "1.3.3",
|
||||||
"@unrs/resolver-binding-win32-ia32-msvc": "1.3.2",
|
"@unrs/resolver-binding-win32-ia32-msvc": "1.3.3",
|
||||||
"@unrs/resolver-binding-win32-x64-msvc": "1.3.2"
|
"@unrs/resolver-binding-win32-x64-msvc": "1.3.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/update-browserslist-db": {
|
"node_modules/update-browserslist-db": {
|
||||||
|
@ -7256,9 +7493,9 @@
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
"node_modules/yaml": {
|
"node_modules/yaml": {
|
||||||
"version": "2.7.0",
|
"version": "2.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz",
|
||||||
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
|
"integrity": "sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
"yaml": "bin.mjs"
|
"yaml": "bin.mjs"
|
||||||
|
|
|
@ -6,18 +6,20 @@
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "next lint"
|
"lint": "next lint",
|
||||||
|
"postinstall": "flowbite-react patch"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"apexcharts": "^3.52.0",
|
"apexcharts": "^3.52.0",
|
||||||
"deepmerge-ts": "^7.1.0",
|
"deepmerge-ts": "^7.1.0",
|
||||||
"flowbite": "^2.4.1",
|
"flowbite": "^2.4.1",
|
||||||
"flowbite-react": "^0.10.1",
|
"flowbite-react": "^0.11.7",
|
||||||
"hls-video-element": "^1.5.0",
|
"hls-video-element": "^1.5.0",
|
||||||
"markdown-to-jsx": "^7.4.7",
|
"markdown-to-jsx": "^7.4.7",
|
||||||
"media-chrome": "^4.8.0",
|
"media-chrome": "^4.8.0",
|
||||||
"next": "^14.2.26",
|
"next": "^14.2.26",
|
||||||
"next-plausible": "^3.12.1",
|
"next-plausible": "^3.12.1",
|
||||||
|
"prettier": "^3.5.3",
|
||||||
"react": "^18",
|
"react": "^18",
|
||||||
"react-cropper": "^2.3.3",
|
"react-cropper": "^2.3.3",
|
||||||
"react-dom": "^18",
|
"react-dom": "^18",
|
||||||
|
@ -39,8 +41,6 @@
|
||||||
"eslint": "^8",
|
"eslint": "^8",
|
||||||
"eslint-config-next": "14.2.5",
|
"eslint-config-next": "14.2.5",
|
||||||
"postcss": "^8",
|
"postcss": "^8",
|
||||||
"prettier": "^3.5.3",
|
|
||||||
"tailwind-scrollbar": "^3.1.0",
|
|
||||||
"tailwindcss": "^3.4.1"
|
"tailwindcss": "^3.4.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
const { addIconSelectors } = require("@iconify/tailwind");
|
const { addIconSelectors } = require("@iconify/tailwind");
|
||||||
import flowbite from "flowbite-react/tailwind";
|
const flowbiteReact = require("flowbite-react/plugin/tailwindcss");
|
||||||
|
|
||||||
|
flowbiteReact.config = {
|
||||||
|
charts: true,
|
||||||
|
}
|
||||||
|
|
||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
@ -7,14 +11,11 @@ module.exports = {
|
||||||
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
flowbite.content(),
|
".flowbite-react\\class-list.json"
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
addIconSelectors(["mdi", "material-symbols", "twemoji", "fa6-brands"]),
|
addIconSelectors(["mdi", "material-symbols", "twemoji", "fa6-brands"]),
|
||||||
require("tailwind-scrollbar"),
|
flowbiteReact
|
||||||
flowbite.plugin()({
|
|
||||||
charts: true,
|
|
||||||
}),
|
|
||||||
],
|
],
|
||||||
darkMode: "selector",
|
darkMode: "selector",
|
||||||
theme: {
|
theme: {
|
||||||
|
@ -43,4 +44,4 @@ module.exports = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
Loading…
Add table
Reference in a new issue