Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
superlbr committed Oct 22, 2019
2 parents 90e80dd + c878425 commit 9d5ec20
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 43 deletions.
4 changes: 2 additions & 2 deletions .umirc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export default {
},
pwa: {
manifestOptions: {
srcPath: 'manifest.json'
srcPath: 'manifest.json',
},
}
},
},
],
],
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"dependencies": {
"@lingui/react": "^2.8.0",
"ant-design-pro": "^2.3.0",
"antd": "^3.19.0",
"antd": "^3.24.0",
"axios": "^0.19.0",
"classnames": "^2.2.6",
"d3-shape": "^1.3.0",
"draftjs-to-html": "^0.8.4",
"draftjs-to-markdown": "^0.5.1",
"dva": "2.4.1",
"dva-model-extend": "^0.1.2",
"echarts": "^4.2.0",
"echarts-for-react": "^2.0.15-beta.0",
"echarts": "^4.4.0",
"echarts-for-react": "^2.0.15-beta.1",
"echarts-gl": "^1.1.1",
"echarts-liquidfill": "^2.0.2",
"enquire-js": "^0.2.1",
Expand All @@ -25,16 +25,16 @@
"lodash": "^4.17.11",
"md5": "^2.2.1",
"nprogress": "^0.2.0",
"path-to-regexp": "^3.0.0",
"path-to-regexp": "^3.1.0",
"prop-types": "^15.7.0",
"qs": "^6.7.0",
"qs": "^6.9.0",
"react-adsense": "^0.1.0",
"react-countup": "^4.1.0",
"react-countup": "^4.2.0",
"react-draft-wysiwyg": "^1.13.0",
"react-helmet": "^5.2.0",
"react-highcharts": "^16.0.2",
"react-highcharts": "^16.1.0",
"react-perfect-scrollbar": "^1.5.0",
"recharts": "^1.6.0",
"recharts": "^1.8.0",
"store": "^2.0.0"
},
"devDependencies": {
Expand All @@ -45,9 +45,9 @@
"babel-eslint": "^10.0.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-import": "^1.12.0",
"babel-plugin-macros": "^2.5.0",
"babel-plugin-macros": "^2.6.0",
"babel-plugin-module-resolver": "^3.2.0",
"cross-env": "^5.2.0",
"cross-env": "^6.0.0",
"eslint": "^5.15.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.11.0",
Expand All @@ -60,12 +60,12 @@
"lint-staged": "^8.1.0",
"mockjs": "^1.0.1-beta3",
"module": "^1.2.5",
"prettier": "^1.16.0",
"prettier": "^1.18.0",
"stylelint": "^10.0.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"umi": "^2.8.9",
"umi-plugin-react": "^1.9.6"
"umi": "^2.10.0",
"umi-plugin-react": "^1.12.0"
},
"lint-staged": {
"src/**/*.js": [
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Header extends PureComponent {
trigger="click"
key="notifications"
overlayClassName={styles.notificationPopover}
getPopupContainer={() => document.querySelector('#layoutHeader')}
getPopupContainer={() => document.querySelector('#primaryLayout')}
content={
<div className={styles.notification}>
<List
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Layout extends Component {
componentDidMount() {
const language = langFromPath(this.props.location.pathname)
this.language = language
this.loadCatalog(language)
language && this.loadCatalog(language)
}

shouldComponentUpdate(nextProps, nextState) {
Expand All @@ -35,7 +35,7 @@ class Layout extends Component {
const { catalogs } = nextState

if (preLanguage !== language && !catalogs[language]) {
this.loadCatalog(language)
language && this.loadCatalog(language)
this.language = language
return false
}
Expand Down
19 changes: 13 additions & 6 deletions src/models/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ import config from 'config'

const { queryRouteList, logoutUser, queryUserInfo } = api

const goDashboard = () => {
if (pathMatchRegexp(['/', '/login'], window.location.pathname)) {
router.push({
pathname: '/dashboard',
})
}
}

export default {
namespace: 'app',
state: {
Expand Down Expand Up @@ -71,7 +79,10 @@ export default {
*query({ payload }, { call, put, select }) {
// store isInit to prevent query trigger by refresh
const isInit = store.get('isInit')
if (isInit) return
if (isInit) {
goDashboard()
return
}
const { locationPathname } = yield select(_ => _.app)
const { success, user } = yield call(queryUserInfo, payload)
if (success && user) {
Expand Down Expand Up @@ -99,11 +110,7 @@ export default {
store.set('permissions', permissions)
store.set('user', user)
store.set('isInit', true)
if (pathMatchRegexp(['/', '/login'], window.location.pathname)) {
router.push({
pathname: '/dashboard',
})
}
goDashboard()
} else if (queryLayout(config.layouts, locationPathname) !== 'public') {
router.push({
pathname: '/login',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dashboard/components/completed.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Completed({ data }) {
return (
<div className={styles.tooltip}>
<p className={styles.tiptitle}>{content.label}</p>
<ul>{list}</ul>
{content.payload && <ul>{list}</ul>}
</div>
)
}}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/dashboard/components/sales.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Sales({ data }) {
return (
<div className={styles.tooltip}>
<p className={styles.tiptitle}>{content.label}</p>
<ul>{list}</ul>
{content.payload && <ul>{list}</ul>}
</div>
)
}}
Expand Down
4 changes: 4 additions & 0 deletions src/themes/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ body {
a:focus {
text-decoration: none;
}

.ant-table-layout-fixed table {
table-layout: auto;
}
}
@media (min-width: 1600px) {
:global {
Expand Down
52 changes: 35 additions & 17 deletions src/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ export config from './config'
export request from './request'
export { Color } from './theme'

export const { defaultLanguage } = i18n
export const languages = i18n.languages.map(item => item.key)
// export const { defaultLanguage } = i18n
// export const languages = i18n.languages.map(item => item.key)
export const languages = i18n ? i18n.languages.map(item => item.key) : []
export const defaultLanguage = i18n ? i18n.defaultLanguage : ''

/**
* Query objects that specify keys and values in an array where all values are objects.
Expand Down Expand Up @@ -61,23 +63,32 @@ export function arrayToTree(
return result
}

export const langFromPath = curry(
/**
* Query language from pathname.
* @param {array} languages Specify which languages are currently available.
* @param {string} defaultLanguage Specify the default language.
* @param {string} pathname Pathname to be queried.
* @return {string} Return the queryed language.
*/
(languages, defaultLanguage, pathname) => {
for (const item of languages) {
if (pathname.startsWith(`/${item}/`)) {
return item
}
// export const langFromPath = curry(
// /**
// * Query language from pathname.
// * @param {array} languages Specify which languages are currently available.
// * @param {string} defaultLanguage Specify the default language.
// * @param {string} pathname Pathname to be queried.
// * @return {string} Return the queryed language.
// */
// (languages, defaultLanguage, pathname) => {
// for (const item of languages) {
// if (pathname.startsWith(`/${item}/`)) {
// return item
// }
// }
// return defaultLanguage
// }
// )(languages)(defaultLanguage)

export const langFromPath = pathname => {
for (const item of languages) {
if (pathname.startsWith(`/${item}/`)) {
return item
}
return defaultLanguage
}
)(languages)(defaultLanguage)
return defaultLanguage
}

export const deLangPrefix = curry(
/**
Expand Down Expand Up @@ -106,11 +117,18 @@ export const deLangPrefix = curry(
* @return {string} Return the pathname after adding the language prefix.
*/
export function addLangPrefix(pathname) {
if (!i18n) {
return pathname
}

const prefix = langFromPath(window.location.pathname)
return `/${prefix}${deLangPrefix(pathname)}`
}

const routerAddLangPrefix = params => {
if (!i18n) {
return params
}
if (isString(params)) {
params = addLangPrefix(params)
} else {
Expand Down

0 comments on commit 9d5ec20

Please sign in to comment.