phanpy/src/utils/useTitle.js

30 lines
967 B
JavaScript
Raw Normal View History

2022-12-10 09:14:48 +00:00
import { useEffect } from 'preact/hooks';
import { matchPath } from 'react-router-dom';
import { useSnapshot } from 'valtio';
import states from './states';
2022-12-10 09:14:48 +00:00
const { VITE_CLIENT_NAME: CLIENT_NAME } = import.meta.env;
export default function useTitle(title, path) {
const snapStates = useSnapshot(states);
2023-02-11 09:57:26 +00:00
const { currentLocation } = snapStates;
let paths = [];
// Workaround for matchPath not working for optional path segments
// https://github.com/remix-run/react-router/discussions/9862
if (/:\w+\?/.test(path)) {
paths.push(path.replace(/\?/g, ''));
paths.push(path.replace(/\/?:\w+\?/g, ''));
}
let matched = false;
if (paths.length) {
matched = paths.some((p) => matchPath(p, currentLocation));
} else {
matched = matchPath(path, currentLocation);
}
2022-12-10 09:14:48 +00:00
useEffect(() => {
2023-02-11 09:57:26 +00:00
if (path && !matched) return;
document.title = title ? `${title} / ${CLIENT_NAME}` : CLIENT_NAME;
}, [title, snapStates.currentLocation]);
2022-12-16 05:27:04 +00:00
}