2021-12-05 11:55:46 -09:00
|
|
|
import { Ref } from "@nuxtjs/composition-api";
|
2022-09-10 19:29:21 +02:00
|
|
|
import { useStaticRoutes } from "~/composables/api";
|
2022-10-22 11:51:07 -08:00
|
|
|
import { Recipe } from "~/lib/api/types/recipe";
|
2021-12-05 11:55:46 -09:00
|
|
|
|
2022-08-28 20:08:33 -08:00
|
|
|
export interface RecipeMeta {
|
|
|
|
title?: string;
|
2022-09-10 19:29:21 +02:00
|
|
|
mainImage?: string;
|
2022-08-28 20:08:33 -08:00
|
|
|
meta: Array<any>;
|
|
|
|
__dangerouslyDisableSanitizers: Array<string>;
|
|
|
|
script: Array<any>;
|
|
|
|
}
|
|
|
|
|
2022-09-10 19:29:21 +02:00
|
|
|
export const useRecipeMeta = () => {
|
|
|
|
const { recipeImage } = useStaticRoutes();
|
|
|
|
function recipeMeta(recipe: Ref<Recipe | null>): RecipeMeta {
|
|
|
|
const imageURL = recipeImage(recipe?.value?.id ?? "");
|
2021-12-05 11:55:46 -09:00
|
|
|
return {
|
2021-12-06 17:14:14 -09:00
|
|
|
title: recipe?.value?.name,
|
|
|
|
mainImage: imageURL,
|
2021-12-05 11:55:46 -09:00
|
|
|
meta: [
|
|
|
|
{ hid: "og:title", property: "og:title", content: recipe?.value?.name || "Recipe" },
|
|
|
|
{
|
2022-09-10 19:29:21 +02:00
|
|
|
hid: "og:description",
|
2021-12-05 11:55:46 -09:00
|
|
|
property: "og:description",
|
2022-01-09 07:15:23 +01:00
|
|
|
content: recipe?.value?.description ?? "",
|
2021-12-05 11:55:46 -09:00
|
|
|
},
|
|
|
|
{
|
2022-09-10 19:29:21 +02:00
|
|
|
hid: "og:image",
|
2021-12-05 11:55:46 -09:00
|
|
|
property: "og:image",
|
2021-12-06 17:14:14 -09:00
|
|
|
content: imageURL,
|
2021-12-05 11:55:46 -09:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hid: "twitter:title",
|
|
|
|
property: "twitter:title",
|
2022-01-09 07:15:23 +01:00
|
|
|
content: recipe?.value?.name ?? "",
|
2021-12-05 11:55:46 -09:00
|
|
|
},
|
|
|
|
{
|
|
|
|
hid: "twitter:desc",
|
|
|
|
property: "twitter:description",
|
2022-01-09 07:15:23 +01:00
|
|
|
content: recipe?.value?.description ?? "",
|
2021-12-05 11:55:46 -09:00
|
|
|
},
|
|
|
|
{ hid: "t-type", name: "twitter:card", content: "summary_large_image" },
|
|
|
|
],
|
|
|
|
__dangerouslyDisableSanitizers: ["script"],
|
|
|
|
script: [
|
|
|
|
{
|
|
|
|
innerHTML: JSON.stringify({
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "Recipe",
|
|
|
|
...recipe.value,
|
|
|
|
}),
|
|
|
|
type: "application/ld+json",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
2022-10-22 11:51:07 -08:00
|
|
|
}
|
2022-09-10 19:29:21 +02:00
|
|
|
return { recipeMeta };
|
2021-12-05 11:55:46 -09:00
|
|
|
};
|