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
P
pro-blocks
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
pro-blocks
Commits
3ca2f1e1
Commit
3ca2f1e1
authored
May 23, 2019
by
陈帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rm get tabkey from props
parent
8c52c611
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
AccountCenter/src/index.tsx
AccountCenter/src/index.tsx
+15
-15
No files found.
AccountCenter/src/index.tsx
View file @
3ca2f1e1
...
...
@@ -66,23 +66,23 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends PureComponent<
BLOCK_NAME_CAMEL_CASEProps
,
BLOCK_NAME_CAMEL_CASEState
>
{
static
getDerivedStateFromProps
(
props
:
BLOCK_NAME_CAMEL_CASEProps
,
state
:
BLOCK_NAME_CAMEL_CASEState
,
)
{
const
{
match
,
location
}
=
props
;
const
{
tabKey
}
=
state
;
const
path
=
match
&&
match
.
path
;
//
static getDerivedStateFromProps(
//
props: BLOCK_NAME_CAMEL_CASEProps,
//
state: BLOCK_NAME_CAMEL_CASEState,
//
) {
//
const { match, location } = props;
//
const { tabKey } = state;
//
const path = match && match.path;
const
urlTabKey
=
location
.
pathname
.
replace
(
`
${
path
}
/`
,
''
);
if
(
urlTabKey
&&
urlTabKey
!==
'
/
'
&&
tabKey
!==
urlTabKey
)
{
return
{
tabKey
:
urlTabKey
,
};
}
//
const urlTabKey = location.pathname.replace(`${path}/`, '');
//
if (urlTabKey && urlTabKey !== '/' && tabKey !== urlTabKey) {
//
return {
//
tabKey: urlTabKey,
//
};
//
}
return
null
;
}
//
return null;
//
}
state
:
BLOCK_NAME_CAMEL_CASEState
=
{
newTags
:
[],
...
...
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