Adds sitemap. (#982)

This commit is contained in:
Michael Novotny
2023-04-23 13:55:25 -05:00
committed by GitHub
parent ee900a48e8
commit a53ee3e3a0
6 changed files with 82 additions and 15 deletions

View File

@@ -55,6 +55,7 @@ const productFragment = /* GraphQL */ `
...seo
}
tags
updatedAt
}
${imageFragment}
${seoFragment}

View File

@@ -13,7 +13,7 @@ import {
getCollectionsQuery
} from './queries/collection';
import { getMenuQuery } from './queries/menu';
import { getPageQuery } from './queries/page';
import { getPageQuery, getPagesQuery } from './queries/page';
import {
getProductQuery,
getProductRecommendationsQuery,
@@ -36,6 +36,7 @@ import {
ShopifyCreateCartOperation,
ShopifyMenuOperation,
ShopifyPageOperation,
ShopifyPagesOperation,
ShopifyProduct,
ShopifyProductOperation,
ShopifyProductRecommendationsOperation,
@@ -279,7 +280,8 @@ export async function getCollections(): Promise<Collection[]> {
title: 'All',
description: 'All products'
},
path: '/search'
path: '/search',
updatedAt: new Date().toISOString()
},
// Filter out the `hidden` collections.
// Collections that start with `hidden-*` need to be hidden on the search page.
@@ -316,6 +318,14 @@ export async function getPage(handle: string): Promise<Page> {
return res.body.data.pageByHandle;
}
export async function getPages(): Promise<Page[]> {
const res = await shopifyFetch<ShopifyPagesOperation>({
query: getPagesQuery
});
return removeEdgesAndNodes(res.body.data.pages);
}
export async function getProduct(handle: string): Promise<Product | undefined> {
const res = await shopifyFetch<ShopifyProductOperation>({
query: getProductQuery,

View File

@@ -9,6 +9,7 @@ const collectionFragment = /* GraphQL */ `
seo {
...seo
}
updatedAt
}
${seoFragment}
`;

View File

@@ -1,21 +1,41 @@
import seoFragment from '../fragments/seo';
export const getPageQuery = /* GraphQL */ `
query getPage($handle: String!) {
pageByHandle(handle: $handle) {
const pageFragment = /* GraphQL */ `
fragment page on Page {
... on Page {
id
... on Page {
title
handle
body
bodySummary
seo {
...seo
}
createdAt
updatedAt
title
handle
body
bodySummary
seo {
...seo
}
createdAt
updatedAt
}
}
${seoFragment}
`;
export const getPageQuery = /* GraphQL */ `
query getPage($handle: String!) {
pageByHandle(handle: $handle) {
...page
}
}
${pageFragment}
`;
export const getPagesQuery = /* GraphQL */ `
query getPages {
pages(first: 100) {
edges {
node {
...page
}
}
}
}
${pageFragment}
`;

View File

@@ -105,6 +105,7 @@ export type ShopifyCollection = {
title: string;
description: string;
seo: SEO;
updatedAt: string;
};
export type ShopifyProduct = {
@@ -124,6 +125,7 @@ export type ShopifyProduct = {
images: Connection<Image>;
seo: SEO;
tags: string[];
updatedAt: string;
};
export type ShopifyCartOperation = {