Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
H
H5Public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
CI / CD
CI / CD
流水线
作业
日程
统计图
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
H5Public
Commits
f5c7fe5f
提交
f5c7fe5f
authored
5月 15, 2020
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug修改
上级
8319dde6
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
61 行增加
和
4 行删除
+61
-4
index.js
baseComponents/NavBarDiy/index.js
+1
-4
index.test.js
layouts/__tests__/index.test.js
+14
-0
index.css
layouts/index.css
+8
-0
index.js
layouts/index.js
+38
-0
没有找到文件。
baseComponents/NavBarDiy/index.js
浏览文件 @
f5c7fe5f
...
...
@@ -14,10 +14,7 @@ function NavBarDiy ({ history, title, rightContent, onLeftClick }) {
<
NavBar
mode
=
"light"
icon
=
{
<
Icon
type
=
"left"
/>
}
onLeftClick
=
{
onLeftClick
?
onLeftClick
:
()
=>
{
window
.
history
.
back
();
}}
onLeftClick
=
{
onLeftClick
?
onLeftClick
:
()
=>
history
.
goBack
()}
rightContent
=
{
rightContent
}
>
<
span
>
...
...
layouts/__tests__/index.test.js
0 → 100644
浏览文件 @
f5c7fe5f
import
BasicLayout
from
'..'
;
import
renderer
from
'react-test-renderer'
;
describe
(
'Layout: BasicLayout'
,
()
=>
{
it
(
'Render correctly'
,
()
=>
{
const
wrapper
=
renderer
.
create
(
<
BasicLayout
/>
);
expect
(
wrapper
.
root
.
children
.
length
).
toBe
(
1
);
const
outerLayer
=
wrapper
.
root
.
children
[
0
];
expect
(
outerLayer
.
type
).
toBe
(
'div'
);
const
title
=
outerLayer
.
children
[
0
];
expect
(
title
.
type
).
toBe
(
'h1'
);
expect
(
title
.
children
[
0
]).
toBe
(
'Yay! Welcome to umi!'
);
});
});
layouts/index.css
0 → 100644
浏览文件 @
f5c7fe5f
.normal
{
height
:
100%
;
background-color
:
#F4F4F4
;
}
*
{
box-sizing
:
border-box
;
}
layouts/index.js
0 → 100644
浏览文件 @
f5c7fe5f
import
React
from
'react'
;
import
styles
from
'./index.css'
;
import
{
router
,
connect
,
}
from
'dva'
;
import
{
getToken
,
setToken
,
}
from
'@/H5Public/utils/authority'
const
routerWhiteList
=
[
"/login"
,
];
const
{
Redirect
}
=
router
;
let
BasicLayout
=
({
children
,
dispatch
,
location
:
{
pathname
},
})
=>
{
if
(
pathname
===
'/login'
)
{
return
<
div
>
{
children
}
<
/div>
;
}
return
<
div
className
=
{
styles
.
normal
}
>
{
children
}
<
/div>
;
}
BasicLayout
=
connect
()(
BasicLayout
);
export
default
(
props
)
=>
{
const
{
location
:
{
pathname
,
query
:
{
token
,
returnUrl
}
},
children
,
}
=
props
;
if
(
routerWhiteList
.
includes
(
pathname
))
return
children
;
if
(
!!
token
||
getToken
())
{
if
(
!!
token
)
{
setToken
(
token
);
}
if
(
!!
returnUrl
)
{
return
<
Redirect
to
=
{
returnUrl
}
/>
;
}
return
<
BasicLayout
{...
props
}
/>
;
}
let
loginPathname
=
'/login'
;
if
(
!!
returnUrl
)
{
loginPathname
=
`
${
loginPathname
}
?returnUrl=
${
returnUrl
}
`
;
}
return
<
Redirect
to
=
{
loginPathname
}
/>
;
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论