Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gaearon/react-document-title
Declarative, nested, stateful, isomorphic document.title for React
https://github.com/gaearon/react-document-title
Last synced: 21 days ago
JSON representation
Declarative, nested, stateful, isomorphic document.title for React
- Host: GitHub
- URL: https://github.com/gaearon/react-document-title
- Owner: gaearon
- License: mit
- Created: 2014-10-08T19:51:49.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2019-10-28T13:34:57.000Z (about 5 years ago)
- Last Synced: 2024-05-13T05:09:46.218Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 31.3 KB
- Stars: 1,869
- Watchers: 17
- Forks: 105
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-react-components-all - react-document-title - Declarative, nested, stateful, isomorphic document.title for React. (Uncategorized / Uncategorized)
- awesome-react-components - react-document-title - Declarative, nested, stateful, isomorphic document.title for React. (UI Utilities / Meta Tags)
- awesome-list - react-document-title - Declarative, nested, stateful, isomorphic document.title for React. (UI Utilites / Meta Tags)
- awesome-react-components - react-document-title - Declarative, nested, stateful, isomorphic document.title for React. (UI Utilities / Meta Tags)
- awesome-react-components - react-document-title - Declarative, nested, stateful, isomorphic document.title for React. (UI Utilities / Meta Tags)
README
React Document Title
====================Provides a declarative way to specify `document.title` in a single-page app.
This component can be used on server side as well.Built with [React Side Effect](https://github.com/gaearon/react-side-effect).
## Installation
```
npm install --save react-document-title
```Dependencies: React >= 0.13.0
## Features
* Does not emit DOM, not even a ``;
* Like a normal React compoment, can use its parent's `props` and `state`;
* Can be defined in many places throughout the application;
* Supports arbitrary levels of nesting, so you can define app-wide and page-specific titles;
* Works just as well with isomorphic apps.## Example
Assuming you use something like [react-router](https://github.com/rackt/react-router):
```javascript
function App() {
// Use "My Web App" if no child overrides this
return (
);
}function HomePage() {
// Use "Home" while this component is mounted
return (
Home, sweet home.
);
}class NewArticlePage extends React.Component {
constructor(props) {
super(props);
this.state = { title: 'Untitled' };
}render() {
// Update using value from state while this component is mounted
return (
New Article
this.setState({ title: e.target.value })}
/>
);
}
}
```## Server Usage
If you use it on server, call `DocumentTitle.rewind()` **after rendering components to string** to retrieve the title given to the innermost `DocumentTitle`. You can then embed this title into HTML page template.
Because this component keeps track of mounted instances, **you have to make sure to call `rewind` on server**, or you'll get a memory leak.
## But What About Meta Tags?
Looking for something more powerful? Check out [React Helmet](https://github.com/nfl/react-helmet)!