UNPKG

docusaurus

Version:

Easy to Maintain Open Source Documentation Websites

57 lines (52 loc) 1.65 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const React = require('react'); const Head = require('./Head.js'); const translation = require('../server/translation.js'); const {idx} = require('./utils.js'); // Component used to provide same head, header, footer, other scripts to all pages class Redirect extends React.Component { render() { const tagline = idx(translation, [this.props.language, 'localized-strings', 'tagline']) || this.props.config.tagline; const title = this.props.title ? `${this.props.title} · ${this.props.config.title}` : (!this.props.config.disableTitleTagline && `${this.props.config.title} · ${tagline}`) || this.props.config.title; const description = this.props.description || tagline; const url = this.props.config.url + this.props.config.baseUrl + (this.props.url || 'index.html'); const redirect = this.props.redirect || false; return ( <html lang="en"> <Head config={this.props.config} description={description} title={title} url={url} redirect={redirect} /> <body className={this.props.className}> <script dangerouslySetInnerHTML={{ __html: ` <!-- window.location.href = "${this.props.redirect}"; // --> `, }} /> </body> </html> ); } } module.exports = Redirect;