Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
ant-design-pro
Commits
4ff721fa
Commit
4ff721fa
authored
Dec 02, 2017
by
afc163
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor breadcrumbMap
parent
faec7edc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
10 deletions
+17
-10
src/components/PageHeader/index.js
src/components/PageHeader/index.js
+13
-9
src/layouts/BasicLayout.js
src/layouts/BasicLayout.js
+4
-1
No files found.
src/components/PageHeader/index.js
View file @
4ff721fa
...
@@ -6,16 +6,23 @@ import styles from './index.less';
...
@@ -6,16 +6,23 @@ import styles from './index.less';
const
{
TabPane
}
=
Tabs
;
const
{
TabPane
}
=
Tabs
;
function
getBreadcrumbNameWithParams
(
breadcrumbNameMap
,
url
)
{
function
getBreadcrumbName
(
breadcrumbNameMap
,
url
)
{
let
name
=
''
;
if
(
breadcrumbNameMap
[
url
]
&&
breadcrumbNameMap
[
url
].
name
)
{
return
breadcrumbNameMap
[
url
].
name
;
}
const
urlWithoutSplash
=
url
.
replace
(
/
\/
$/
,
''
);
if
(
breadcrumbNameMap
[
urlWithoutSplash
]
&&
breadcrumbNameMap
[
urlWithoutSplash
].
name
)
{
return
breadcrumbNameMap
[
urlWithoutSplash
].
name
;
}
let
breadcrumbName
=
''
;
Object
.
keys
(
breadcrumbNameMap
).
forEach
((
item
)
=>
{
Object
.
keys
(
breadcrumbNameMap
).
forEach
((
item
)
=>
{
const
itemRegExpStr
=
`^
${
item
.
replace
(
/:
[\w
-
]
+/g
,
'
[
\\
w-]+
'
)}
$`
;
const
itemRegExpStr
=
`^
${
item
.
replace
(
/:
[\w
-
]
+/g
,
'
[
\\
w-]+
'
)}
$`
;
const
itemRegExp
=
new
RegExp
(
itemRegExpStr
);
const
itemRegExp
=
new
RegExp
(
itemRegExpStr
);
if
(
itemRegExp
.
test
(
url
))
{
if
(
itemRegExp
.
test
(
url
))
{
name
=
breadcrumbNameMap
[
item
]
;
breadcrumbName
=
breadcrumbNameMap
[
item
].
name
;
}
}
});
});
return
name
;
return
breadcrumbName
||
url
;
}
}
export
default
class
PageHeader
extends
PureComponent
{
export
default
class
PageHeader
extends
PureComponent
{
...
@@ -72,12 +79,9 @@ export default class PageHeader extends PureComponent {
...
@@ -72,12 +79,9 @@ export default class PageHeader extends PureComponent {
return
(
return
(
<
Breadcrumb
.
Item
key
=
{
url
}
>
<
Breadcrumb
.
Item
key
=
{
url
}
>
{
createElement
(
{
createElement
(
index
===
pathSnippets
.
length
-
1
?
'
span
'
:
linkElement
,
(
index
===
pathSnippets
.
length
-
1
)
?
'
span
'
:
linkElement
,
{
[
linkElement
===
'
a
'
?
'
href
'
:
'
to
'
]:
url
},
{
[
linkElement
===
'
a
'
?
'
href
'
:
'
to
'
]:
url
},
breadcrumbNameMap
[
url
]
||
getBreadcrumbName
(
breadcrumbNameMap
,
url
),
breadcrumbNameMap
[
url
.
replace
(
'
/
'
,
''
)]
||
getBreadcrumbNameWithParams
(
breadcrumbNameMap
,
url
)
||
url
)}
)}
<
/Breadcrumb.Item
>
<
/Breadcrumb.Item
>
);
);
...
...
src/layouts/BasicLayout.js
View file @
4ff721fa
...
@@ -61,7 +61,10 @@ class BasicLayout extends React.PureComponent {
...
@@ -61,7 +61,10 @@ class BasicLayout extends React.PureComponent {
const
breadcrumbNameMap
=
{};
const
breadcrumbNameMap
=
{};
routeData
.
concat
(
menuData
).
forEach
((
item
)
=>
{
routeData
.
concat
(
menuData
).
forEach
((
item
)
=>
{
breadcrumbNameMap
[
item
.
path
]
=
item
.
name
;
breadcrumbNameMap
[
item
.
path
]
=
{
name
:
item
.
name
,
component
:
item
.
component
,
};
});
});
return
{
location
,
breadcrumbNameMap
};
return
{
location
,
breadcrumbNameMap
};
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment