mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add openGraph metadata
This commit is contained in:
parent
a5c19eadea
commit
8afa3ef664
12 changed files with 100 additions and 34 deletions
2
TODO.md
2
TODO.md
|
@ -73,7 +73,7 @@
|
||||||
## Стиль
|
## Стиль
|
||||||
|
|
||||||
- [X] Тёмная тема
|
- [X] Тёмная тема
|
||||||
- [ ] Больше метаданных для превью ссылки страницы
|
- [X] Больше метаданных для превью ссылки страницы
|
||||||
|
|
||||||
## Баги
|
## Баги
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,6 @@ export async function generateMetadata({ params }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Index({ params }) {
|
export default function Index({ params }) {
|
||||||
const metadata = {
|
|
||||||
title: "AniX | " + SectionTitleMapping[params.slug],
|
|
||||||
};
|
|
||||||
return (
|
return (
|
||||||
<BookmarksCategoryPage
|
<BookmarksCategoryPage
|
||||||
slug={params.slug}
|
slug={params.slug}
|
||||||
|
|
|
@ -3,8 +3,6 @@ export const metadata = {
|
||||||
};
|
};
|
||||||
|
|
||||||
import { BookmarksPage } from "#/pages/Bookmarks";
|
import { BookmarksPage } from "#/pages/Bookmarks";
|
||||||
|
|
||||||
export default function Index() {
|
export default function Index() {
|
||||||
return <BookmarksPage />;
|
return <BookmarksPage />;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,9 +14,6 @@ export async function generateMetadata({ params }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Index({ params }) {
|
export default function Index({ params }) {
|
||||||
const metadata = {
|
|
||||||
title: "AniX | " + SectionTitleMapping[params.slug],
|
|
||||||
};
|
|
||||||
return (
|
return (
|
||||||
<IndexCategoryPage
|
<IndexCategoryPage
|
||||||
slug={params.slug}
|
slug={params.slug}
|
||||||
|
|
|
@ -3,11 +3,35 @@ import { App } from "./App";
|
||||||
import { ThemeModeScript } from "flowbite-react";
|
import { ThemeModeScript } from "flowbite-react";
|
||||||
|
|
||||||
export const metadata = {
|
export const metadata = {
|
||||||
title: {
|
keywords: ["anix", "anixart", "anime", "аниксарт", "аниме"],
|
||||||
template: 'AniX | %s',
|
formatDetection: {
|
||||||
default: 'AniX',
|
email: false,
|
||||||
|
address: false,
|
||||||
|
telephone: false,
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
template: "AniX | %s",
|
||||||
|
default: "AniX | Домашняя",
|
||||||
|
},
|
||||||
|
description: "Неофициальное приложение для anixart.tv",
|
||||||
|
openGraph: {
|
||||||
|
url: process.env.VERCEL_URL
|
||||||
|
? `https://${process.env.VERCEL_URL}`
|
||||||
|
: `http://localhost:${process.env.PORT || 3000}`,
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: `${
|
||||||
|
process.env.VERCEL_URL
|
||||||
|
? "https://" + process.env.VERCEL_URL
|
||||||
|
: "http://localhost:" + process.env.PORT || 3000
|
||||||
|
}/opengraph.png`, // Must be an absolute URL
|
||||||
|
width: 800,
|
||||||
|
height: 600,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
locale: "ru_RU",
|
||||||
|
type: "website",
|
||||||
},
|
},
|
||||||
description: "Generated by create next app",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({ children }) {
|
export default function RootLayout({ children }) {
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
import dynamic from "next/dynamic";
|
import dynamic from "next/dynamic";
|
||||||
import { LoginPage } from "#/pages/Login";
|
import { LoginPage } from "#/pages/Login";
|
||||||
|
|
||||||
|
export const metadata = {
|
||||||
|
title: "Авторизация",
|
||||||
|
description: "Вход в аккаунт anixart",
|
||||||
|
}
|
||||||
|
|
||||||
const LoginDynamic = dynamic(() => Promise.resolve(LoginPage), {
|
const LoginDynamic = dynamic(() => Promise.resolve(LoginPage), {
|
||||||
ssr: false,
|
ssr: false,
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
export const metadata = {
|
|
||||||
title: "AniX | Домашняя",
|
|
||||||
};
|
|
||||||
|
|
||||||
import { IndexPage } from "./pages/Index";
|
import { IndexPage } from "./pages/Index";
|
||||||
|
|
||||||
export default function Index() {
|
export default function Index() {
|
||||||
|
|
|
@ -1,12 +1,30 @@
|
||||||
import { ProfilePage } from "#/pages/Profile";
|
import { ProfilePage } from "#/pages/Profile";
|
||||||
import { fetchDataViaGet } from "#/api/utils";
|
import { fetchDataViaGet } from "#/api/utils";
|
||||||
|
import type { Metadata, ResolvingMetadata } from "next";
|
||||||
|
|
||||||
export async function generateMetadata({ params }) {
|
export async function generateMetadata(
|
||||||
|
{ params },
|
||||||
|
parent: ResolvingMetadata
|
||||||
|
): Promise<Metadata> {
|
||||||
const id: string = params.id;
|
const id: string = params.id;
|
||||||
const profile: any = await fetchDataViaGet(`https://api.anixart.tv/profile/${id}`);
|
const profile: any = await fetchDataViaGet(
|
||||||
|
`https://api.anixart.tv/profile/${id}`
|
||||||
|
);
|
||||||
|
const previousOG = (await parent).openGraph;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title: "Профиль " + profile.profile.login,
|
title: "Профиль - " + profile.profile.login,
|
||||||
|
description: profile.profile.status,
|
||||||
|
openGraph: {
|
||||||
|
...previousOG,
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: profile.profile.avatar, // Must be an absolute URL
|
||||||
|
width: 600,
|
||||||
|
height: 600,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,26 @@
|
||||||
import { RelatedPage } from "#/pages/Related";
|
import { RelatedPage } from "#/pages/Related";
|
||||||
import { fetchDataViaGet } from "#/api/utils";
|
import { fetchDataViaGet } from "#/api/utils";
|
||||||
|
import type { Metadata, ResolvingMetadata } from "next";
|
||||||
|
|
||||||
export async function generateMetadata({ params }) {
|
export async function generateMetadata({ params }, parent: ResolvingMetadata): Promise<Metadata> {
|
||||||
const id:string = params.id;
|
const id:string = params.id;
|
||||||
const related: any = await fetchDataViaGet(`https://api.anixart.tv/related/${id}/0`);
|
const related: any = await fetchDataViaGet(`https://api.anixart.tv/related/${id}/0`);
|
||||||
const firstRelease: any = await fetchDataViaGet(`https://api.anixart.tv/release/${related.content[0].id}`);
|
const firstRelease: any = await fetchDataViaGet(`https://api.anixart.tv/release/${related.content[0].id}`);
|
||||||
|
const previousOG = (await parent).openGraph;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title: "Франшиза " + firstRelease.release.related.name_ru || firstRelease.release.related.name,
|
title: "Франшиза - " + firstRelease.release.related.name_ru || firstRelease.release.related.name,
|
||||||
|
description: firstRelease.release.description,
|
||||||
|
openGraph: {
|
||||||
|
...previousOG,
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: firstRelease.release.image, // Must be an absolute URL
|
||||||
|
width: 600,
|
||||||
|
height: 800,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,32 @@
|
||||||
import { ReleasePage } from "#/pages/Release";
|
import { ReleasePage } from "#/pages/Release";
|
||||||
import { fetchDataViaGet } from "#/api/utils";
|
import { fetchDataViaGet } from "#/api/utils";
|
||||||
|
import type { Metadata, ResolvingMetadata } from "next";
|
||||||
|
|
||||||
export async function generateMetadata({ params }) {
|
export async function generateMetadata(
|
||||||
const id = params.id
|
{ params },
|
||||||
|
parent: ResolvingMetadata
|
||||||
|
): Promise<Metadata> {
|
||||||
|
const id = params.id;
|
||||||
const release = await fetchDataViaGet(`https://api.anixart.tv/release/${id}`);
|
const release = await fetchDataViaGet(`https://api.anixart.tv/release/${id}`);
|
||||||
|
const previousOG = (await parent).openGraph;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title: release.release.title_ru,
|
title: release.release.title_ru,
|
||||||
|
description: release.release.description,
|
||||||
|
openGraph: {
|
||||||
|
...previousOG,
|
||||||
|
images: [
|
||||||
|
{
|
||||||
|
url: release.release.image, // Must be an absolute URL
|
||||||
|
width: 600,
|
||||||
|
height: 800,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export default async function Search({ params }) {
|
export default async function Search({ params }) {
|
||||||
const id = params.id
|
const id = params.id;
|
||||||
return <ReleasePage id={id} />;
|
return <ReleasePage id={id} />;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
import dynamic from "next/dynamic";
|
import dynamic from "next/dynamic";
|
||||||
import { SearchPage } from "#/pages/Search";
|
import { SearchPage } from "#/pages/Search";
|
||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
export async function generateMetadata({ searchParams }) {
|
export async function generateMetadata({ searchParams }): Promise<Metadata> {
|
||||||
const query = searchParams.q;
|
const query = searchParams.q;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title: query || "Поиск",
|
title: query || "Поиск",
|
||||||
};
|
};
|
||||||
|
|
BIN
public/opengraph.png
Normal file
BIN
public/opengraph.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
Loading…
Add table
Reference in a new issue