summaryrefslogtreecommitdiff
path: root/src/utils/seo/arcade-see-all-page.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/seo/arcade-see-all-page.ts')
-rw-r--r--src/utils/seo/arcade-see-all-page.ts40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/utils/seo/arcade-see-all-page.ts b/src/utils/seo/arcade-see-all-page.ts
new file mode 100644
index 0000000..14d1474
--- /dev/null
+++ b/src/utils/seo/arcade-see-all-page.ts
@@ -0,0 +1,40 @@
+import type I18N from '@amp/web-apps-localization';
+import type { GenericPage } from '@jet-app/app-store/api/models';
+import type { SeoData } from '@amp/web-app-components/src/components/MetaTags/types';
+import { isAppTrailerLockupShelf } from '~/components/jet/shelf/AppTrailerLockupShelf.svelte';
+
+export function seoDataForArcadeSeeAllPage(
+ page: GenericPage,
+ i18n: I18N,
+): SeoData {
+ const titleWithSiteName = i18n.t(
+ 'ASE.Web.AppStore.Meta.TitleWithSiteName',
+ {
+ title: i18n.t('ASE.Web.AppStore.ArcadeSeeAll.Meta.Title'),
+ },
+ );
+
+ const appNames = page.shelves
+ .filter(isAppTrailerLockupShelf)
+ .flatMap((shelf) => shelf.items)
+ .slice(0, 3)
+ .map((item) => item.title);
+
+ const description = i18n.t(
+ 'ASE.Web.AppStore.ArcadeSeeAll.Meta.Description',
+ {
+ listing1: appNames[0],
+ listing2: appNames[1],
+ listing3: appNames[2],
+ },
+ );
+
+ return {
+ pageTitle: titleWithSiteName,
+ socialTitle: titleWithSiteName,
+ appleTitle: titleWithSiteName,
+ description,
+ socialDescription: description,
+ appleDescription: description,
+ };
+}