Last active
February 13, 2017 16:58
-
-
Save karlhorky/8d8b5ecb454ac55f1ddf9a2f56b7f11a to your computer and use it in GitHub Desktop.
react-server route groups (for translated path fragments)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Beware! Not tested. | |
// open source library: `react-server-route-groups` | |
// - function to generate routes based on array of things (in our case, translations) | |
export default function ({groups, pages}) { | |
return groups.reduce((acc, group) => { | |
return { | |
// All previous routes | |
...acc, | |
// Routes for all pages | |
...pages.reduce((acc2, page) => { | |
// All previous page routes | |
...acc2 | |
// TODO: Do checks here to prevent route collision | |
// TODO: Do checks here to exclude / include | |
// TODO: Do checks to make sure that path is well-formed (no empty path fragment) | |
[`${page.baseName}${group}`]: { | |
path: page.getPath(group), | |
page: page.page, | |
}, | |
}, {}), | |
}; | |
}, {}); | |
}; | |
// Call the function in the universal app | |
import translations from 'translations'; | |
generateRouteGroups({ | |
groups: Object.keys(translations), | |
pages: [ | |
// These can be imported from separate files in modules | |
{ | |
baseName: 'reviews', | |
getPath: (group) => `/:locale/${translations[group].RATING}`, | |
page: 'pages/review.js', | |
exclude: ['at'], | |
include: ['de'], | |
}] | |
}); | |
// - function to display generated routes (CLI) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ALTERNATIVE: Use array to add more routes to routes.js | |
import {LOCALE_AT, LOCALE_DE, LOCALE_CH, LOCALE_US} from 'route_locales'; | |
const DACH_LOCALES = `(${LOCALE_AT}|${LOCALE_DE}|${LOCALE_CH})`; | |
export default { | |
ReviewsPage: { | |
path: [ | |
`/:locale(${DACH_LOCALES})/bewerten`, | |
`/:locale(${LOCALE_US})/review`, | |
], | |
page: 'pages/review.js', | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment