mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add link to about page in settings
This commit is contained in:
parent
956d35579b
commit
2241a8a226
2 changed files with 85 additions and 78 deletions
|
@ -1,5 +1,6 @@
|
||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
|
import { CURRENT_APP_VERSION } from "#/api/config";
|
||||||
import { usePreferencesStore } from "#/store/preferences";
|
import { usePreferencesStore } from "#/store/preferences";
|
||||||
import {
|
import {
|
||||||
Modal,
|
Modal,
|
||||||
|
@ -278,26 +279,15 @@ export const SettingsModal = (props: { isOpen: boolean; setIsOpen: any }) => {
|
||||||
<HR className="my-4 dark:bg-slate-400" />
|
<HR className="my-4 dark:bg-slate-400" />
|
||||||
<div>
|
<div>
|
||||||
<Link
|
<Link
|
||||||
href={"https://t.me/anix_web"}
|
href={"/about"}
|
||||||
className="flex items-center gap-2 p-2 text-left rounded-md hover:bg-gray-100 dark:hover:bg-gray-900"
|
className="flex items-center gap-2 p-2 text-left rounded-md hover:bg-gray-100 dark:hover:bg-gray-900"
|
||||||
|
onClick={() => props.setIsOpen(false)}
|
||||||
>
|
>
|
||||||
<span className="w-8 h-8 iconify fa6-brands--telegram"></span>
|
<span className="w-8 h-8 iconify material-symbols--info"></span>
|
||||||
<div>
|
<div>
|
||||||
<p>Телеграм канал</p>
|
<p>О приложении</p>
|
||||||
<p className="text-sm text-gray-400 dark:text-gray-200">
|
<p className="text-sm text-gray-400 dark:text-gray-200">
|
||||||
@anix_web
|
v{CURRENT_APP_VERSION}
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</Link>
|
|
||||||
<Link
|
|
||||||
href={"https://wah.su/radiquum"}
|
|
||||||
className="flex items-center gap-2 p-2 text-left rounded-md hover:bg-gray-100 dark:hover:bg-gray-900"
|
|
||||||
>
|
|
||||||
<span className="w-8 h-8 iconify mdi--code"></span>
|
|
||||||
<div>
|
|
||||||
<p>Разработчик</p>
|
|
||||||
<p className="text-sm text-gray-400 dark:text-gray-200">
|
|
||||||
Radiquum
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// "use client";
|
"use server";
|
||||||
|
|
||||||
import { Card } from "flowbite-react";
|
import { Card } from "flowbite-react";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
|
@ -9,37 +9,42 @@ import { CURRENT_APP_VERSION } from "#/api/config";
|
||||||
import Styles from "../components/ChangelogModal/ChangelogModal.module.css";
|
import Styles from "../components/ChangelogModal/ChangelogModal.module.css";
|
||||||
import Markdown from "markdown-to-jsx";
|
import Markdown from "markdown-to-jsx";
|
||||||
|
|
||||||
|
import {
|
||||||
|
Accordion,
|
||||||
|
AccordionContent,
|
||||||
|
AccordionPanel,
|
||||||
|
AccordionTitle,
|
||||||
|
} from "flowbite-react";
|
||||||
|
import { version } from "node:os";
|
||||||
|
import Link from "next/link";
|
||||||
|
|
||||||
export const AboutPage = () => {
|
export const AboutPage = () => {
|
||||||
const directoryPath = path.join(process.cwd(), "public/changelog");
|
const directoryPath = path.join(process.cwd(), "public/changelog");
|
||||||
const files = fs.readdirSync(directoryPath);
|
const files = fs.readdirSync(directoryPath);
|
||||||
const changelogs = [];
|
const current = {
|
||||||
|
version: CURRENT_APP_VERSION,
|
||||||
|
changelog: `#${CURRENT_APP_VERSION}\r\nНет списка изменений`,
|
||||||
|
};
|
||||||
|
const previous = [];
|
||||||
|
|
||||||
|
if (files.includes(`${CURRENT_APP_VERSION}.md`)) {
|
||||||
|
const changelog = fs.readFileSync(
|
||||||
|
path.join(directoryPath, `${CURRENT_APP_VERSION}.md`),
|
||||||
|
"utf8"
|
||||||
|
);
|
||||||
|
current.changelog = changelog;
|
||||||
|
}
|
||||||
|
|
||||||
files.forEach((file) => {
|
files.forEach((file) => {
|
||||||
if (file != `${CURRENT_APP_VERSION}.md`) {
|
if (file != `${CURRENT_APP_VERSION}.md`) {
|
||||||
const changelog = fs.readFileSync(path.join(directoryPath, file), "utf8");
|
const changelog = fs.readFileSync(path.join(directoryPath, file), "utf8");
|
||||||
changelogs.push({
|
previous.push({
|
||||||
version: file.replace(".md", ""),
|
version: file.replace(".md", ""),
|
||||||
changelog: changelog,
|
changelog: changelog,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!files.includes(`${CURRENT_APP_VERSION}.md`)) {
|
|
||||||
changelogs.push({
|
|
||||||
version: CURRENT_APP_VERSION,
|
|
||||||
changelog: "Нет списка изменений",
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
const changelog = fs.readFileSync(
|
|
||||||
path.join(directoryPath, `${CURRENT_APP_VERSION}.md`),
|
|
||||||
"utf8"
|
|
||||||
);
|
|
||||||
changelogs.push({
|
|
||||||
version: CURRENT_APP_VERSION,
|
|
||||||
changelog: changelog,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid grid-cols-1 gap-2 md:grid-cols-2 lg:grid-cols-3">
|
<div className="grid grid-cols-1 gap-2 md:grid-cols-2 lg:grid-cols-3">
|
||||||
<Card className="md:col-span-2 lg:col-span-3">
|
<Card className="md:col-span-2 lg:col-span-3">
|
||||||
|
@ -65,6 +70,7 @@ export const AboutPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
<Link href={"https://wah.su/radiquum"} target="_blank">
|
||||||
<Card>
|
<Card>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<Image
|
<Image
|
||||||
|
@ -82,6 +88,8 @@ export const AboutPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
</Link>
|
||||||
|
<Link href={"https://t.me/anix_web"} target="_blank">
|
||||||
<Card>
|
<Card>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<span className="w-16 h-16 iconify fa6-brands--telegram text-[#001725] dark:text-[#faf8f9]"></span>
|
<span className="w-16 h-16 iconify fa6-brands--telegram text-[#001725] dark:text-[#faf8f9]"></span>
|
||||||
|
@ -93,6 +101,8 @@ export const AboutPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
</Link>
|
||||||
|
<Link href={"https://github.com/Radiquum/AniX"} target="_blank">
|
||||||
<Card>
|
<Card>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<span className="flex-shrink-0 w-16 h-16 iconify fa6-brands--github text-[#001725] dark:text-[#faf8f9]"></span>
|
<span className="flex-shrink-0 w-16 h-16 iconify fa6-brands--github text-[#001725] dark:text-[#faf8f9]"></span>
|
||||||
|
@ -104,15 +114,22 @@ export const AboutPage = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
</Link>
|
||||||
<Card className="md:col-span-2 lg:col-span-3">
|
<Card className="md:col-span-2 lg:col-span-3">
|
||||||
<h1 className="text-2xl font-bold">Список изменений</h1>
|
<h1 className="text-2xl font-bold">Список изменений</h1>
|
||||||
{changelogs.reverse().map((changelog) => (
|
<Markdown className={Styles.markdown}>{current.changelog}</Markdown>
|
||||||
<div key={changelog.version} className="my-4">
|
<Accordion collapseAll={true}>
|
||||||
|
{previous.reverse().map((changelog) => (
|
||||||
|
<AccordionPanel key={changelog.version}>
|
||||||
|
<AccordionTitle>v{changelog.version}</AccordionTitle>
|
||||||
|
<AccordionContent>
|
||||||
<Markdown className={Styles.markdown}>
|
<Markdown className={Styles.markdown}>
|
||||||
{changelog.changelog}
|
{changelog.changelog}
|
||||||
</Markdown>
|
</Markdown>
|
||||||
</div>
|
</AccordionContent>
|
||||||
|
</AccordionPanel>
|
||||||
))}
|
))}
|
||||||
|
</Accordion>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue