Added custom title support
This commit is contained in:
@ -27,6 +27,7 @@
|
|||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"react": "^16.4.0",
|
"react": "^16.4.0",
|
||||||
"react-dom": "^16.4.0",
|
"react-dom": "^16.4.0",
|
||||||
|
"react-helmet": "^5.2.0",
|
||||||
"react-redux": "^5.0.7",
|
"react-redux": "^5.0.7",
|
||||||
"react-router": "^4.3.1",
|
"react-router": "^4.3.1",
|
||||||
"react-router-dom": "^4.3.1",
|
"react-router-dom": "^4.3.1",
|
||||||
|
@ -22,14 +22,17 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { connect } from 'react-redux';
|
||||||
|
import Language from './../language/Language';
|
||||||
import { NavLink } from 'react-router-dom'
|
import { NavLink } from 'react-router-dom'
|
||||||
import { PageBoundary } from './../page/Page';
|
import { PageBoundary } from './../page/Page';
|
||||||
|
|
||||||
const FooterLink = function(props) {
|
const FooterLink = function(props) {
|
||||||
|
let key = "footer.links." + props.title;
|
||||||
return (
|
return (
|
||||||
<span className="c-footer__link">
|
<span className="c-footer__link">
|
||||||
<NavLink to="/about">
|
<NavLink to={ props.to }>
|
||||||
Link
|
{ Language.get(key) }
|
||||||
</NavLink>
|
</NavLink>
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
@ -50,10 +53,10 @@ class Footer extends React.Component {
|
|||||||
<div className="c-footer__inner">
|
<div className="c-footer__inner">
|
||||||
|
|
||||||
<nav className="c-footer__links">
|
<nav className="c-footer__links">
|
||||||
<FooterLink title="privacy" />
|
<FooterLink title="home" to="/" />
|
||||||
<FooterLink title="privacy" />
|
<FooterLink title="about" to="/about" />
|
||||||
<FooterLink title="privacy" />
|
<FooterLink title="contact" to="/contact" />
|
||||||
<FooterLink title="privacy" />
|
<FooterLink title="privacy" to="/legal/privacy" />
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<div className="c-footer__copyright">
|
<div className="c-footer__copyright">
|
||||||
@ -68,4 +71,10 @@ class Footer extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Footer;
|
const mapStateToProps = function(state) {
|
||||||
|
return {
|
||||||
|
code: state.language.code
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(mapStateToProps)(Footer);
|
||||||
|
@ -5,7 +5,9 @@ import Policy from './policy-english';
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
"site": {
|
"site": {
|
||||||
"name": "domsPlace"
|
"name": "domsPlace",
|
||||||
|
"title": "domsPlace - Personal Site of Dominic Masters",
|
||||||
|
"titleTemplate": "%s - domsPlace"
|
||||||
},
|
},
|
||||||
|
|
||||||
"navbar": {
|
"navbar": {
|
||||||
@ -14,6 +16,15 @@ module.exports = {
|
|||||||
"contact": "Contact"
|
"contact": "Contact"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"footer": {
|
||||||
|
"links": {
|
||||||
|
"home": "Home",
|
||||||
|
"about": "About Me",
|
||||||
|
"contact": "Contact Me",
|
||||||
|
"privacy": "Privacy Policy"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
"pages": {
|
"pages": {
|
||||||
|
|
||||||
"about": {
|
"about": {
|
||||||
|
@ -22,9 +22,12 @@
|
|||||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { Helmet } from "react-helmet";
|
||||||
import PageBoundary from './PageBoundary';
|
import PageBoundary from './PageBoundary';
|
||||||
|
import Language from './../language/Language';
|
||||||
|
|
||||||
export default class Page extends React.Component {
|
class Page extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
}
|
}
|
||||||
@ -34,12 +37,36 @@ export default class Page extends React.Component {
|
|||||||
|
|
||||||
if(this.props.className) clazzes += " " + this.props.className;
|
if(this.props.className) clazzes += " " + this.props.className;
|
||||||
|
|
||||||
|
let title;
|
||||||
|
if(
|
||||||
|
(typeof this.props.title === typeof undefined ||
|
||||||
|
typeof this.props.title.length === typeof undefined ||
|
||||||
|
!this.props.title.length) && this.props.style != "home-page"
|
||||||
|
) {
|
||||||
|
console.exception("This page (" + (this.props.style || this.props.className) + ") does not have a title!");
|
||||||
|
} else {
|
||||||
|
title = <title>{ this.props.title }</title>
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={clazzes}>
|
<div className={clazzes}>
|
||||||
|
<Helmet defaultTitle={ Language.get("site.title") } titleTemplate={ Language.get("site.titleTemplate") }>
|
||||||
|
{ title }
|
||||||
|
</Helmet>
|
||||||
{ this.props.children }
|
{ this.props.children }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { PageBoundary };
|
const mapStateToProps = function(state) {
|
||||||
|
return {
|
||||||
|
code: state.language.code
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default connect(mapStateToProps)(Page);
|
||||||
|
|
||||||
|
export {
|
||||||
|
PageBoundary
|
||||||
|
}
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import Page from './../Page';
|
import Page from './../Page';
|
||||||
|
import Language from './../../language/Language'
|
||||||
|
|
||||||
import BannerSection from './sections/BannerSection';
|
import BannerSection from './sections/BannerSection';
|
||||||
import PromoVideoSection from './sections/PromoVideoSection';
|
import PromoVideoSection from './sections/PromoVideoSection';
|
||||||
@ -34,7 +35,7 @@ import ExistingWorkSection from './sections/ExistingWorkSection';
|
|||||||
const AboutPage = (props) => {
|
const AboutPage = (props) => {
|
||||||
//Return
|
//Return
|
||||||
return (
|
return (
|
||||||
<Page style="home-page" className="p-about-page">
|
<Page style="about-page" className="p-about-page" title={ Language.get("pages.about.title") }>
|
||||||
|
|
||||||
{ /* Banner */ }
|
{ /* Banner */ }
|
||||||
<BannerSection />
|
<BannerSection />
|
||||||
|
@ -43,7 +43,7 @@ class ContactPage extends React.Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<Page style="contact-page" className="p-contact-page" title="">
|
<Page style="contact-page" className="p-contact-page" title={ Language.get("pages.contact.title") }>
|
||||||
|
|
||||||
<ClearSection />
|
<ClearSection />
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ export default function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page style="home-page" className="p-home-page">
|
<Page style="home-page" title={0} className="p-home-page">
|
||||||
Welcome home
|
Welcome home
|
||||||
{ lines }
|
{ lines }
|
||||||
</Page>
|
</Page>
|
||||||
|
Reference in New Issue
Block a user