Skip to content

Instantly share code, notes, and snippets.

View isaachinman's full-sized avatar

Isaac Hinman isaachinman

View GitHub Profile
@isaachinman
isaachinman / flattenDeeplyNestedArray.js
Created October 23, 2017 10:16
A utility function to flatten a deeply nested array
export default function flattenDeeplyNestedArray(array) {
return array.reduce((flattenedArray, value) => {
if (Array.isArray(value)) {
// If our value is an array itself, flatten again before concating
return flattenedArray.concat(flattenDeeplyNestedArray(value))
} else {
@isaachinman
isaachinman / NotFound.js
Created October 24, 2017 12:55
Radium-styled 404 Component
import React, { Component } from 'react'
import { Link } from 'react-router'
import Radium from 'radium'
const styles = {
text: {
margin: '5rem auto .5rem',
textAlign: 'center',
'@media (min-width: 991px)': {
margin: '7rem auto 1.2rem',
@isaachinman
isaachinman / index.js
Last active March 4, 2019 20:28
next-i18next-demo/index.js
import React from 'react'
export default class Homepage extends React.Component {
render() {
return <div>I am a sentence in English.</div>
}
}
@isaachinman
isaachinman / package.json
Created March 4, 2019 15:46
next-i18next-demo/package-next-scripts
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
}
@isaachinman
isaachinman / common.json
Created March 4, 2019 20:42
English localised content
{
"title": "I am a sentence in English."
}
@isaachinman
isaachinman / common.json
Last active March 4, 2019 20:44
German localised content
{
"title": "Ich bin ein Satz auf Deutsch."
}
const NextI18Next = require('next-i18next/dist/commonjs')
module.exports = new NextI18Next({
defaultLanguage: 'en',
otherLanguages: ['de']
})
import React from 'react'
import App, { Container } from 'next/app'
import { appWithTranslation } from '../i18n'
class MyApp extends App {
render() {
const { Component, pageProps } = this.props
return (
<Container>
<Component {...pageProps} />
const express = require('express')
const next = require('next')
const nextI18NextMiddleware = require('next-i18next/middleware')
const nextI18next = require('./i18n')
const port = process.env.PORT || 3000
const app = next({ dev: process.env.NODE_ENV !== 'production' })
const handle = app.getRequestHandler();
import React from 'react'
import { i18n, withNamespaces } from '../i18n'
class Homepage extends React.Component {
static async getInitialProps() {
return {
namespacesRequired: ['common'],
}
}