148 lines
4.4 KiB
TypeScript
148 lines
4.4 KiB
TypeScript
import { TopNav } from "@dashboard/components/AppLayout/TopNav";
|
|
import CardSpacer from "@dashboard/components/CardSpacer";
|
|
import LanguageSwitch from "@dashboard/components/LanguageSwitch";
|
|
import { DetailPageLayout } from "@dashboard/components/Layouts";
|
|
import {
|
|
CollectionTranslationFragment,
|
|
LanguageCodeEnum,
|
|
} from "@dashboard/graphql";
|
|
import { commonMessages } from "@dashboard/intl";
|
|
import { getStringOrPlaceholder } from "@dashboard/misc";
|
|
import {
|
|
TranslationInputFieldName,
|
|
TranslationsEntitiesPageProps,
|
|
} from "@dashboard/translations/types";
|
|
import {
|
|
languageEntitiesUrl,
|
|
languageEntityUrl,
|
|
TranslatableEntities,
|
|
} from "@dashboard/translations/urls";
|
|
import React from "react";
|
|
import { useIntl } from "react-intl";
|
|
|
|
import TranslationFields from "../TranslationFields";
|
|
|
|
export interface TranslationsCollectionsPageProps
|
|
extends TranslationsEntitiesPageProps {
|
|
data: CollectionTranslationFragment;
|
|
}
|
|
|
|
const TranslationsCollectionsPage: React.FC<
|
|
TranslationsCollectionsPageProps
|
|
> = ({
|
|
translationId,
|
|
activeField,
|
|
disabled,
|
|
languageCode,
|
|
languages,
|
|
data,
|
|
saveButtonState,
|
|
onDiscard,
|
|
onEdit,
|
|
onSubmit,
|
|
}) => {
|
|
const intl = useIntl();
|
|
|
|
return (
|
|
<DetailPageLayout gridTemplateColumns={1}>
|
|
<TopNav
|
|
href={languageEntitiesUrl(languageCode, {
|
|
tab: TranslatableEntities.collections,
|
|
})}
|
|
title={intl.formatMessage(
|
|
{
|
|
id: "Bphmwe",
|
|
defaultMessage:
|
|
'Translation Collection "{collectionName}" - {languageCode}',
|
|
description: "header",
|
|
},
|
|
{
|
|
collectionName: getStringOrPlaceholder(data?.collection?.name),
|
|
languageCode,
|
|
},
|
|
)}
|
|
>
|
|
<LanguageSwitch
|
|
currentLanguage={LanguageCodeEnum[languageCode]}
|
|
languages={languages}
|
|
getLanguageUrl={lang =>
|
|
languageEntityUrl(
|
|
lang,
|
|
TranslatableEntities.collections,
|
|
translationId,
|
|
)
|
|
}
|
|
/>
|
|
</TopNav>
|
|
<TranslationFields
|
|
activeField={activeField}
|
|
disabled={disabled}
|
|
initialState={true}
|
|
title={intl.formatMessage(commonMessages.generalInformations)}
|
|
fields={[
|
|
{
|
|
displayName: intl.formatMessage({
|
|
id: "VZsE96",
|
|
defaultMessage: "Collection Name",
|
|
}),
|
|
name: TranslationInputFieldName.name,
|
|
translation: data?.translation?.name || null,
|
|
type: "short" as "short",
|
|
value: data?.collection?.name,
|
|
},
|
|
{
|
|
displayName: intl.formatMessage(commonMessages.description),
|
|
name: TranslationInputFieldName.description,
|
|
translation: data?.translation?.description || null,
|
|
type: "rich" as "rich",
|
|
value: data?.collection?.description,
|
|
},
|
|
]}
|
|
saveButtonState={saveButtonState}
|
|
richTextResetKey={languageCode}
|
|
onEdit={onEdit}
|
|
onDiscard={onDiscard}
|
|
onSubmit={onSubmit}
|
|
/>
|
|
<CardSpacer />
|
|
<TranslationFields
|
|
activeField={activeField}
|
|
disabled={disabled}
|
|
initialState={true}
|
|
title={intl.formatMessage({
|
|
id: "TGX4T1",
|
|
defaultMessage: "Search Engine Preview",
|
|
})}
|
|
fields={[
|
|
{
|
|
displayName: intl.formatMessage({
|
|
id: "HlEpii",
|
|
defaultMessage: "Search Engine Title",
|
|
}),
|
|
name: TranslationInputFieldName.seoTitle,
|
|
translation: data?.translation?.seoTitle || null,
|
|
type: "short" as "short",
|
|
value: data?.collection?.seoTitle,
|
|
},
|
|
{
|
|
displayName: intl.formatMessage({
|
|
id: "US3IPU",
|
|
defaultMessage: "Search Engine Description",
|
|
}),
|
|
name: TranslationInputFieldName.seoDescription,
|
|
translation: data?.translation?.seoDescription || null,
|
|
type: "long" as "long",
|
|
value: data?.collection?.seoDescription,
|
|
},
|
|
]}
|
|
saveButtonState={saveButtonState}
|
|
richTextResetKey={languageCode}
|
|
onEdit={onEdit}
|
|
onDiscard={onDiscard}
|
|
onSubmit={onSubmit}
|
|
/>
|
|
</DetailPageLayout>
|
|
);
|
|
};
|
|
TranslationsCollectionsPage.displayName = "TranslationsCollectionsPage";
|
|
export default TranslationsCollectionsPage;
|