cal/packages/lib/browser/browser.utils.ts
Richard Poelderl 174c730f1f
chore: add canonical to the document via `PageWrapper` (#8639)
* add canonical to the document via `PageWrapper`

* use WEBSITE_URL constant to create the canonical url value

---------

Co-authored-by: Keith Williams <keithwillcode@gmail.com>
Co-authored-by: Efraín Rochín <roae.85@gmail.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
2023-06-02 18:28:03 +00:00

23 lines
570 B
TypeScript

type BrowserInfo = {
url: string;
path: string;
referrer: string;
title: string;
query: string;
origin: string;
};
export const getBrowserInfo = (): Partial<BrowserInfo> => {
if (typeof window === "undefined") {
return {};
}
return {
url: window.document.location?.href ?? undefined,
path: window.document.location?.pathname ?? undefined,
referrer: window.document?.referrer ?? undefined,
title: window.document.title ?? undefined,
query: window.document.location?.search,
origin: window.document.location?.origin,
};
};