mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 17:41:43 -05:00
update react-router; update react-intl; make intl polyfill available to client too
This commit is contained in:
parent
7ee43957cf
commit
d6835d266d
5 changed files with 17 additions and 18 deletions
|
@ -122,7 +122,7 @@ rate-limit@1.0.4
|
|||
react-meteor-data@0.2.9
|
||||
reactive-dict@1.1.7
|
||||
reactive-var@1.0.9
|
||||
reactrouter:react-router-ssr@3.1.2
|
||||
reactrouter:react-router-ssr@3.1.3
|
||||
reload@1.1.8
|
||||
retry@1.0.7
|
||||
routepolicy@1.0.10
|
||||
|
@ -147,7 +147,7 @@ ui@1.0.11
|
|||
underscore@1.0.8
|
||||
url@1.0.9
|
||||
utilities:react-list-container@0.1.12
|
||||
utilities:smart-methods@0.1.4
|
||||
utilities:smart-methods@0.1.5
|
||||
utilities:smart-publications@0.1.4
|
||||
webapp@1.2.8
|
||||
webapp-hashing@1.0.9
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"react-bootstrap-datetimepicker": "0.0.22",
|
||||
"react-cookie": "^0.4.6",
|
||||
"react-dom": "^15.0.0",
|
||||
"react-intl": "^2.1.2",
|
||||
"react-intl": "^2.1.3",
|
||||
"react-komposer": "^1.8.0",
|
||||
"react-mounter": "^1.2.0",
|
||||
"react-no-ssr": "^1.1.0",
|
||||
|
|
|
@ -25,16 +25,15 @@ class App extends Component {
|
|||
}
|
||||
|
||||
render() {
|
||||
|
||||
if (this.props.ready) {
|
||||
return (
|
||||
<IntlProvider locale={this.getLocale()} messages={Telescope.strings[this.getLocale()]}>
|
||||
<Telescope.components.Layout currentUser={this.props.currentUser}>{this.props.children}</Telescope.components.Layout>
|
||||
</IntlProvider>
|
||||
)
|
||||
} else {
|
||||
return <Telescope.components.AppLoading />
|
||||
}
|
||||
return (
|
||||
<IntlProvider locale={this.getLocale()} messages={Telescope.strings[this.getLocale()]}>
|
||||
{
|
||||
this.props.ready ?
|
||||
<Telescope.components.Layout currentUser={this.props.currentUser}>{this.props.children}</Telescope.components.Layout>
|
||||
: <Telescope.components.AppLoading />
|
||||
}
|
||||
</IntlProvider>
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var areIntlLocalesSupported = require('intl-locales-supported');
|
||||
|
||||
var localesMyAppSupports = [
|
||||
Telescope.settings.get("locale")
|
||||
Telescope.settings.get("locale", "en");
|
||||
];
|
||||
|
||||
if (global.Intl) {
|
|
@ -39,7 +39,7 @@ Package.onUse(function (api) {
|
|||
'tmeasday:publish-counts@0.7.3',
|
||||
'meteorhacks:unblock@1.1.0',
|
||||
// 'kadira:flow-router-ssr@3.13.0',
|
||||
"reactrouter:react-router-ssr@3.1.2",
|
||||
"reactrouter:react-router-ssr@3.1.3",
|
||||
// 'kadira:flow-router@2.12.1',
|
||||
'utilities:smart-publications@0.1.4',
|
||||
'utilities:smart-methods@0.1.4',
|
||||
|
@ -58,12 +58,12 @@ Package.onUse(function (api) {
|
|||
'lib/settings.js',
|
||||
'lib/collections.js',
|
||||
'lib/deep.js',
|
||||
'lib/deep_extend.js'
|
||||
'lib/deep_extend.js',
|
||||
'lib/intl-polyfill.js'
|
||||
], ['client', 'server']);
|
||||
|
||||
api.addFiles([
|
||||
'lib/server/server-config.js',
|
||||
'lib/server/intl-polyfill.js'
|
||||
'lib/server/server-config.js'
|
||||
], ['server']);
|
||||
|
||||
api.export([
|
||||
|
|
Loading…
Add table
Reference in a new issue