Added language support

This commit is contained in:
2018-03-10 22:25:03 +11:00
parent c24c29c899
commit 370b556ed1
7 changed files with 113 additions and 15 deletions

View File

@ -0,0 +1,11 @@
import Language from './../language/Language';
export const SET_LANGUAGE = "SET_LANGUAGE";
export const LANGUAGES = Language.getLanguages();
export function setLanguage(language) {
return {
type: SET_LANGUAGE,
code: language
}
};

View File

@ -10,6 +10,8 @@ import React from 'react';
import { Form, InputGroup, TextInput } from './Form';
import Button from './../components/Button';
import { connect } from 'react-redux';
import Language from './../../language/Language';
class ContactForm extends React.Component {
constructor(props) {
@ -19,23 +21,28 @@ class ContactForm extends React.Component {
render() {
return (
<Form className={this.props.className}>
<InputGroup title="Name">
<TextInput placeholder="Enter your name." />
<InputGroup title={Language.get("contact.form.name.label")} >
<TextInput placeholder={Language.get("contact.form.name.placeholder")} />
</InputGroup>
<InputGroup title="Email">
<TextInput type="email" placeholder="Enter your email address." />
<InputGroup title={Language.get("contact.form.email.label")}>
<TextInput type="email" placeholder={Language.get("contact.form.email.placeholder")} />
</InputGroup>
<InputGroup title="Message">
<TextInput multiline placeholder="Enter your message here." />
<InputGroup title={Language.get("contact.form.message.label")}>
<TextInput multiline placeholder={Language.get("contact.form.message.placeholder")} />
</InputGroup>
<Button to="/">Home</Button>
<Button submit>Contact</Button>
<Button submit>{Language.get("contact.form.submit")}</Button>
</Form>
);
}
}
export default ContactForm;
const mapStateToProps = function(state) {
return {
code: state.language.code
}
}
export default connect(mapStateToProps)(ContactForm);

View File

@ -17,6 +17,9 @@ import BodySection from './../sections/BodySection';
import ContactForm from './../forms/ContactForm';
import { connect } from 'react-redux';
import Language from './../../language/Language';
class ContactPage extends React.Component {
constructor(props) {
super(props);
@ -27,10 +30,10 @@ class ContactPage extends React.Component {
<Page>
<PhoneSection />
<BodySection>
<h1>Contact</h1>
<h1>{Language.get("contact.form.title")}</h1>
<div className="c-page--style-container__split">
<p className="c-page--style-container__split-part">
Want to get ahold of me and other lorem ipsum dolor?
{Language.get("contact.form.info")}
</p>
<ContactForm className="c-page--style-container__split-part" />
</div>
@ -40,4 +43,10 @@ class ContactPage extends React.Component {
}
}
export default ContactPage;
const mapStateToProps = function(state) {
return {
code: state.language.code
}
}
export default connect(mapStateToProps)(ContactPage);

View File

@ -10,11 +10,37 @@ class Language {
}
setLanguage(lang) {
this.langName = lang;
this.data = LANGUAGES[lang];
}
get(key) {
getLanguage() {
return this.langName;
}
get(key) {
return this.getRecursive(key.split(".")) || "Missing \"" + key + "\"";
}
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;
//Awesome
if(key_array.length > 1) {
if(typeof o !== typeof {}) return null;
key_array.shift();
return this.getRecursive(key_array, o);
}
return o;
}
getLanguages() {
return Object.keys(LANGUAGES);
}
}

View File

@ -1,3 +1,21 @@
module.exports = {
""
"contact": {
"form": {
"title": "Contact",
"info": "Want to contact me and other lorem ipsum dolor sit amet.",
"name": {
"label": "Name",
"placeholder": "Enter your name."
},
"email": {
"label": "Email",
"placeholder": "Enter your email address.",
},
"message": {
"label": "Message",
"placeholder": "Enter your message here."
},
"submit": "Send"
}
}
}

View File

@ -0,0 +1,26 @@
'use strict';
import Language from './../language/Language';
import { SET_LANGUAGE, LANGUAGES } from './../actions/language';
const initialState = {
code: Language.getLanguage()
};
function language(state, action) {
if(typeof state === typeof undefined) {
state = initialState;
}
switch(action.type) {
case SET_LANGUAGE:
if(!(action.theme)) return state;
return {
code: action.code
};
default:
return state;
}
}
export default language;

View File

@ -2,10 +2,11 @@
import {combineReducers} from 'redux';
//Import Reducers
import language from './language';
//Create our Reducer
const rootReducer = combineReducers({
language
});
//Export the root reducer