A hook for handling browser Document titles bound to components. Previous titles are restored when a component unmounts.
The hook adheres to the following rules:
- It reverts the title when the component unmounts, but only when
document.title
has the value used by the component - The hook listens to the changes of its given value (internally this counts as a new mounted title)
- When the title changes to an empty string, the hook reverts the title
- When multiple components with the same title get mounted in a row, the title only gets removed when all components have unmounted
- When three components get mounted with a title and the second in order unmounts, the title of the first component is saved in the third and loaded when the third component unmounts. Of course this mechanism works with any count of titled components.
- No state changes and unnecessary re-renders; components notify each other and share state via events and mutable refs
npm i @jvllmr/react-component-titles
oryarn add @jvllmr/react-component-titles
for Reactnpm i @jvllmr/solid-component-titles
oryarn add @jvllmr/solid-component-titles
for Solid
You can find a React demo here
// with solid-js use import { createComponentTitle } from "@jvllmr/solid-component-titles"
import { useComponentTitle } from "@jvllmr/react-component-titles";
function MyLoadingComponent() {
// In solid-js () => string has to be passed
useComponentTitle("Loading...");
return <Loader />;
}
useComponentTitle hook API
function useComponentTitle(title: string): void;
createComponentTitle hook API
function createComponentTitle(title: Accessor<string>): void;
DocumentTitle component API
function DocumentTitle(props: { title: string }): null;