Skip to content
Snippets Groups Projects
Commit a622396e authored by Moritz Stückler's avatar Moritz Stückler :cowboy:
Browse files

fix: base url in header image

parent ff25992f
No related branches found
No related tags found
1 merge request!55fix: base url in header image
......@@ -7,6 +7,7 @@ import { getBaseUrl, buildPageTree, buildBreadcrumbs } from "@utils";
import { LANGUAGES } from "@config";
import type { IPage } from "@interfaces/IPage";
import { format } from "node:util";
import { prefixWithBaseIfNotUrl } from "@utils/Url";
type Props = MarkdownLayoutProps<{
title: string;
......@@ -60,7 +61,10 @@ const breadcrumbs = buildBreadcrumbs(breadcrumbItems, url as string, baseUrl);
hideFooterSeparator={frontmatter.hideFooterSeparator}
title={frontmatter.title}
subtitle={frontmatter.subtitle}
titleImage={frontmatter.headerImage}
titleImage={prefixWithBaseIfNotUrl(
frontmatter.headerImage,
baseUrl
)}
tags={frontmatter.tags}
teaser={frontmatter.teaser || frontmatter.description}
dateAndAuthor={`${frontmatter.date || ""}${
......
......@@ -6,6 +6,7 @@ import type { MarkdownLayoutProps } from "astro";
import { getBaseUrl, buildPageTree } from "@utils";
import { LANGUAGES } from "@config";
import type { IPage } from "@interfaces/IPage";
import { prefixWithBaseIfNotUrl } from "@utils/Url";
type Props = MarkdownLayoutProps<{
title: string;
......@@ -30,7 +31,9 @@ const menuItems = buildPageTree(rawContent, baseUrl, localeFromUrl);
menuItems={menuItems}
compact={true}
/>
<HeroSection src={frontmatter.headerImage} />
<HeroSection
src={prefixWithBaseIfNotUrl(frontmatter.headerImage, baseUrl)}
/>
<main class="fc-overflow-x-hidden">
<slot />
</main>
......
......@@ -10,3 +10,25 @@ export const getBaseUrl = (withoutEndingSlash?: boolean): string => {
}
return baseUrl;
};
/**
* Prefix a given path with a base url, if the given path is NOT a valid external URL.
* @param path
* @param baseUrl
* @returns
*/
export const prefixWithBaseIfNotUrl = (
path: string,
baseUrl?: string
): string => {
if (baseUrl) {
const isExternalUrl = path.toLowerCase().startsWith("http");
const hasTrailingSlash = path.endsWith("/");
return isExternalUrl
? path
: `${baseUrl}${hasTrailingSlash ? "" : "/"}${path}`;
}
return path;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment