Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add subsonic traduction info #82

Merged
merged 3 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/src/pages/commissions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ export const getServerSideProps: GetServerSideProps<{
"name",
"slug",
"id",
// @ts-expect-error
{ translations: ["banner", "small_description", "languages_code"] },
],
})
Expand Down
1 change: 0 additions & 1 deletion app/src/pages/commissions/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export const getServerSideProps: GetServerSideProps<
}

let commissions = await directus().request(
//@ts-expect-error
readItems("commissions", {
filter: { slug: { _eq: context.params.slug } },
...queryTranslations,
Expand Down
1 change: 0 additions & 1 deletion app/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ export const getServerSideProps: GetServerSideProps<
"slug",
"date_created",
{
//@ts-expect-error
translations: [
"title",
"banner",
Expand Down
1 change: 0 additions & 1 deletion app/src/pages/news.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export const getServerSideProps: GetServerSideProps<{
"slug",
"date_created",
{
//@ts-expect-error
translations: [
"title",
"banner",
Expand Down
2 changes: 0 additions & 2 deletions app/src/pages/news/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export const getServerSideProps: GetServerSideProps<{
}

let news = await directus().request(
//@ts-expect-error
readItems("news", {
...queryTranslations,
limit: 1,
Expand All @@ -100,7 +99,6 @@ export const getServerSideProps: GetServerSideProps<{
.request(
readItems("news_commissions", {
...queryTranslations,
//@ts-expect-error
fields: [{ commissions_id: ["*.*"] }],
filter: { news_id: { _eq: news[0].id } },
})
Expand Down
9 changes: 6 additions & 3 deletions app/src/pages/subsonic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@ import DirectusImage from "@/components/DirectusImage";
import PartnersList from "@/components/PartnersList";
import TabTitle from "@/components/TabTitle";
import { directus, getDirectusImageUrl, populateLayoutProps } from "@/directus";
import { useTranslationTable } from "@/locales";
import { getTranslation, useTranslationTable } from "@/locales";
import style from "@/styles/SubsonicPage.module.scss";
import { Artist, Partner, Subsonic } from "@/types/aliases";
import { readItems, readSingleton } from "@directus/sdk";
import { GetServerSideProps, InferGetServerSidePropsType } from "next";
import { useRouter } from "next/router";
import Markdown from "react-markdown";

export default function SubsonicPage(
props: InferGetServerSidePropsType<typeof getServerSideProps>
) {
const router = useRouter();
const translation = getTranslation(props.subsonic, router.locale);
const tt = useTranslationTable();

return (
Expand Down Expand Up @@ -88,7 +91,7 @@ export default function SubsonicPage(
/>
</div>

<Markdown className={style.markdown}>{props.subsonic.info}</Markdown>
<Markdown className={style.markdown}>{translation.info}</Markdown>
</>
);
}
Expand All @@ -103,7 +106,7 @@ export const getServerSideProps: GetServerSideProps<{
subsonic: await directus().request(
// @ts-ignore
readSingleton("subsonic", {
fields: ["header_image", "logo", "map", "info"],
fields: ["header_image", "logo", "map", { translations: ["*"] }],
})
),
artists: await directus().request(
Expand Down
2 changes: 1 addition & 1 deletion directus
Submodule directus updated 3 files
+3 −3 save.sh
+1,322 −3,327 snapshot.yaml
+333 −1,304 types/schema.d.ts
Loading