Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Update window title on page change #6119

Conversation

andrico1234
Copy link
Contributor

@andrico1234 andrico1234 commented Apr 2, 2021

Closes: #5893

Updates the window title to match with the title of the current page. This solves an issue with the browser history simply displaying the same title for every single page.

Note: I created a new hook called useDocumentTitle this is a way to set the document title. I added it to the hooks folder in ra-core and exported it. To me it doesn't feel like it should live there. Practically it would only be used in this Title component, so I'm not sure if we should keep the function located in ra-core, but there aren't any hooks exported in ra-ui-materialui`.

Saying that, if someone chooses to pass through their own Title component, they should be able to manage their document.title however they see fit, which means they should also be able to import useDocumentTitle.

tl;dr, useDocumentTitle lives in ra-core but i'll be happy to place it in ra-ui-materialui if you see it fit

@andrico1234
Copy link
Contributor Author

@djhi I can't get my head around moving the tip of a branch (e.g. moving the last commit from the tip of master over to next), so I just made a new pull request

If you have a git helper doc to hand for the above issue, i'd be eternally grateful!

@andrico1234
Copy link
Contributor Author

Morning folks! I'm wondering if there are any other changes you'd like me to make for this pull request. @fzaninotto @djhi

Copy link
Member

@fzaninotto fzaninotto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

This feature needs basic documentatoin, e.g. in https://marmelab.com/react-admin/CreateEdit.html#page-title, where you should explain that, when using an element as title, you have to set the document title by hand - and show an example usage of the hook.

examples/simple/src/tags/TagEdit.tsx Outdated Show resolved Hide resolved
packages/ra-core/src/util/hooks.ts Outdated Show resolved Hide resolved
packages/ra-ui-materialui/src/layout/Title.tsx Outdated Show resolved Hide resolved
@andrico1234
Copy link
Contributor Author

andrico1234 commented Apr 27, 2021

Thanks for all the feedback and suggestions, @fzaninotto , I've pushed the fixes and resolved them all. I'll behappy to make any other changes as needed

Edit: Just realised I missed one of the changes, I'll get this updated

docs/CreateEdit.md Outdated Show resolved Hide resolved
docs/CreateEdit.md Outdated Show resolved Hide resolved
packages/ra-core/src/util/index.ts Outdated Show resolved Hide resolved
packages/ra-core/src/util/useDocumentTitle.ts Outdated Show resolved Hide resolved
packages/ra-ui-materialui/src/layout/index.ts Outdated Show resolved Hide resolved
@andrico1234
Copy link
Contributor Author

Thanks for the re-review @fzaninotto , I've implemented the requested changes!

@andrico1234
Copy link
Contributor Author

Hi @fzaninotto , are there any other changes you'd like?

Copy link
Member

@fzaninotto fzaninotto left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I saw some more adjustments to make, I should've seen them during y first review, sorry.

examples/simple/src/posts/PostTitle.tsx Outdated Show resolved Hide resolved
packages/ra-core/src/util/useDocumentTitle.ts Outdated Show resolved Hide resolved
packages/ra-ui-materialui/src/layout/TitleText.tsx Outdated Show resolved Hide resolved
@andrico1234
Copy link
Contributor Author

Hi @fzaninotto , I've made the required changes. Is there anything else I should change before hand?

@fzaninotto fzaninotto merged commit a072f1f into marmelab:next May 31, 2021
@fzaninotto
Copy link
Member

Thanks!

@fzaninotto
Copy link
Member

We haven't noticed, but this is a breaking change. If a developer has set the document title to "Acme" globally, it's replaced by the page title (e.g. "Posts"), without any simple way to insert the main app name globally.

So I'm going to revert this PR as is must provide an additional feature without removing the current abilities.

Feel free to open another PR to discuss possible implementations.

@andrico1234
Copy link
Contributor Author

Thanks for the headsup, i'll see if there's a way in which we can implement this without a breaking change

@wmwart
Copy link

wmwart commented Jun 23, 2021

import { useEffect, useRef } from "react";


export const tryToSetDocumentTitle = (title) => {
    try {
        document.title = title;
    } catch (e) {
        console.warn("Document is undefined");
    }
};


const useDocumentTitle = ({
    title,
    revertOnUnmount = true,
}) => {

    const isBrowser = typeof document !== "undefined";
    const prevPageTitleRef = useRef(isBrowser ? document.title : null);

    useEffect(() => {
        if (isBrowser) {
            prevPageTitleRef.current = document.title;
        }
    }, [isBrowser]);

    useEffect(() => {
        if (isBrowser) {
            tryToSetDocumentTitle(title);
        }

        return () => {
            if (isBrowser && revertOnUnmount && prevPageTitleRef.current !== null) {
                tryToSetDocumentTitle(prevPageTitleRef.current);
            }
        };
    }, [isBrowser, title, revertOnUnmount]);
};

export default useDocumentTitle

@andrico1234
Copy link
Contributor Author

thanks @wmwart for the excellent example , i'll give this a shot and see how it goes!

@yelworc
Copy link
Contributor

yelworc commented Jul 22, 2021

@andrico1234 thanks for your work on this – I'd really appreciate this feature!

ogustavo-pereira pushed a commit to ogustavo-pereira/react-admin that referenced this pull request Nov 23, 2021
* update window title on page change

* remove use of UMD global

* pass through custom empty component to Datagrid

* don't update title if component is an element, update the doc title to be the same as page title

* fix example

* move functions and components into their own files

* update readme

* reset createedit readme

* Update docs/CreateEdit.md

Co-authored-by: Francois Zaninotto <fzaninotto@gmail.com>

* Update packages/ra-core/src/util/useDocumentTitle.ts

Co-authored-by: Francois Zaninotto <fzaninotto@gmail.com>

* use export * syntax

* remove unused exports

* test

* make changes

* make example consistent

* revert formatting changes

Co-authored-by: HH: Andrico Karoulla <andrico@hhs-macbook-pro.home>
Co-authored-by: Francois Zaninotto <fzaninotto@gmail.com>
ogustavo-pereira pushed a commit to ogustavo-pereira/react-admin that referenced this pull request Nov 23, 2021
@lefuturiste lefuturiste mentioned this pull request Apr 30, 2024
24 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants