diff --git a/public/language/Language.jsx b/public/language/Language.jsx index 2cc9748..09d5035 100644 --- a/public/language/Language.jsx +++ b/public/language/Language.jsx @@ -38,36 +38,33 @@ class Language { setLanguage(lang) { this.langName = lang; - this.data = LANGUAGES[lang]; + this.dataRaw = LANGUAGES[lang]; + + //Now parse + this.data = this.parseRecursive(this.dataRaw); } getLanguage() { return this.langName; } - get(key) { - if(typeof key === typeof undefined) return "Key \"undefined\"."; - let j = this.getRecursive(key.split(".")); - if(typeof j === typeof undefined || j == null) return "Missing \"" + key + "\""; - return j; - } - - getRecursive(key_array, data_obj) { - if(typeof data_obj === typeof undefined) data_obj = this.data; - if(typeof data_obj === typeof undefined) return null; - - let k = key_array[0]; - let o = data_obj[k]; - if(typeof o === typeof undefined) return null; - if(typeof o === 'function') o = o(); - - //Awesome - if(key_array.length > 1) { - if(typeof o !== "object") return null; - key_array.shift(); - return this.getRecursive(key_array, o); - } - return o; + parseRecursive(o) { + let keys = Object.keys(o); + let p = {}; + keys.forEach(key => { + let d = o[key]; + if(typeof d === typeof undefined) d = null; + if(typeof d === 'function') { + p[key] = d(); + return; + } + if(typeof d === 'string') { + p[key] = d; + return; + } + p[key] = this.parseRecursive(d); + }); + return p; } getLanguages() { diff --git a/public/language/en-AU.jsx b/public/language/en-AU.jsx index e99e31f..a5cf521 100644 --- a/public/language/en-AU.jsx +++ b/public/language/en-AU.jsx @@ -163,7 +163,7 @@ export default { ); } }, "footer": "Want me for your next project?", - "footer-button": "Contact Me" + "footerButton": "Contact Me" } }, diff --git a/public/pages/contact/ContactPage.jsx b/public/pages/contact/ContactPage.jsx index 57138ac..13ac2f7 100644 --- a/public/pages/contact/ContactPage.jsx +++ b/public/pages/contact/ContactPage.jsx @@ -32,7 +32,7 @@ import { openModal } from '@public/actions/ModalActions'; //Components import Page, { PageBoundary } from '@components/page/Page'; -import Language from '@public/language/Language'; +import { withLanguage } from '@public/language/Language'; import Section, { BodySection, ClearSection, @@ -75,13 +75,14 @@ class ContactPage extends React.Component { onError(e, a, b) { this.props.openModal( - + { e } ); } render() { + let { lang } = this.props; //Form let inners; @@ -90,8 +91,8 @@ class ContactPage extends React.Component { inners = ( - { Language.get("pages.contact.success.heading") } - { Language.get("pages.contact.success.paragraph") } + { lang.pages.contact.success.heading } + { lang.pages.contact.success.paragraph } ); @@ -105,18 +106,18 @@ class ContactPage extends React.Component { contentType="application/json" ajax loader - onSuccess={ this.onSuccess.bind(this) } - onError={ this.onError.bind(this) } + onSuccess={ (e) => this.onSuccess(e) } + onError={ (e) => this.onError(e) } manager={ this.manager } >