Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
admin-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Angelina Filippova
admin-fe
Commits
d0d1addb
Unverified
Commit
d0d1addb
authored
6 years ago
by
花裤衩
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor[store]: refactor tagsView store (#1032)
parent
0fe3f181
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/components/SizeSelect/index.vue
+1
-11
1 addition, 11 deletions
src/components/SizeSelect/index.vue
src/store/modules/tagsView.js
+84
-12
84 additions, 12 deletions
src/store/modules/tagsView.js
src/views/layout/components/TagsView.vue
+3
-3
3 additions, 3 deletions
src/views/layout/components/TagsView.vue
with
88 additions
and
26 deletions
src/components/SizeSelect/index.vue
+
1
−
11
View file @
d0d1addb
...
...
@@ -30,17 +30,7 @@ export default {
},
refreshView
()
{
// In order to make the cached page re-rendered
const
visitedViews
=
[...
this
.
$store
.
getters
.
visitedViews
].
map
(
i
=>
{
i
.
meta
.
noCache
=
true
return
i
})
this
.
$store
.
dispatch
(
'
delAllViews
'
,
this
.
$route
).
then
(()
=>
{
console
.
log
(
visitedViews
)
for
(
const
i
of
visitedViews
)
{
this
.
$store
.
dispatch
(
'
addVisitedViews
'
,
i
)
}
})
this
.
$store
.
dispatch
(
'
delAllCachedViews
'
,
this
.
$route
)
const
{
path
}
=
this
.
$route
...
...
This diff is collapsed.
Click to expand it.
src/store/modules/tagsView.js
+
84
−
12
View file @
d0d1addb
...
...
@@ -4,24 +4,31 @@ const tagsView = {
cachedViews
:
[]
},
mutations
:
{
ADD_VISITED_VIEW
S
:
(
state
,
view
)
=>
{
ADD_VISITED_VIEW
:
(
state
,
view
)
=>
{
if
(
state
.
visitedViews
.
some
(
v
=>
v
.
path
===
view
.
path
))
return
state
.
visitedViews
.
push
(
Object
.
assign
({},
view
,
{
title
:
view
.
meta
.
title
||
'
no-name
'
})
)
},
ADD_CACHED_VIEW
:
(
state
,
view
)
=>
{
if
(
state
.
cachedViews
.
includes
(
view
.
name
))
return
if
(
!
view
.
meta
.
noCache
)
{
state
.
cachedViews
.
push
(
view
.
name
)
}
},
DEL_VISITED_VIEWS
:
(
state
,
view
)
=>
{
DEL_VISITED_VIEW
:
(
state
,
view
)
=>
{
for
(
const
[
i
,
v
]
of
state
.
visitedViews
.
entries
())
{
if
(
v
.
path
===
view
.
path
)
{
state
.
visitedViews
.
splice
(
i
,
1
)
console
.
log
(
'
1
'
)
break
}
}
},
DEL_CACHED_VIEW
:
(
state
,
view
)
=>
{
for
(
const
i
of
state
.
cachedViews
)
{
if
(
i
===
view
.
name
)
{
const
index
=
state
.
cachedViews
.
indexOf
(
i
)
...
...
@@ -30,13 +37,16 @@ const tagsView = {
}
}
},
DEL_OTHERS_VIEWS
:
(
state
,
view
)
=>
{
DEL_OTHERS_VISITED_VIEWS
:
(
state
,
view
)
=>
{
for
(
const
[
i
,
v
]
of
state
.
visitedViews
.
entries
())
{
if
(
v
.
path
===
view
.
path
)
{
state
.
visitedViews
=
state
.
visitedViews
.
slice
(
i
,
i
+
1
)
break
}
}
},
DEL_OTHERS_CACHED_VIEWS
:
(
state
,
view
)
=>
{
for
(
const
i
of
state
.
cachedViews
)
{
if
(
i
===
view
.
name
)
{
const
index
=
state
.
cachedViews
.
indexOf
(
i
)
...
...
@@ -45,32 +55,94 @@ const tagsView = {
}
}
},
DEL_ALL_VIEWS
:
state
=>
{
DEL_ALL_VISITED_VIEWS
:
state
=>
{
state
.
visitedViews
=
[]
},
DEL_ALL_CACHED_VIEWS
:
state
=>
{
state
.
cachedViews
=
[]
}
},
actions
:
{
addVisitedViews
({
commit
},
view
)
{
commit
(
'
ADD_VISITED_VIEWS
'
,
view
)
addView
({
dispatch
},
view
)
{
dispatch
(
'
addVisitedView
'
,
view
)
dispatch
(
'
addCachedView
'
,
view
)
},
addVisitedView
({
commit
},
view
)
{
commit
(
'
ADD_VISITED_VIEW
'
,
view
)
},
delVisitedViews
({
commit
,
state
},
view
)
{
addCachedView
({
commit
},
view
)
{
commit
(
'
ADD_CACHED_VIEW
'
,
view
)
},
delView
({
dispatch
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
dispatch
(
'
delVisitedView
'
,
view
)
dispatch
(
'
delCachedView
'
,
view
)
resolve
({
visitedViews
:
[...
state
.
visitedViews
],
cachedViews
:
[...
state
.
cachedViews
]
})
})
},
delVisitedView
({
commit
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_VISITED_VIEW
S
'
,
view
)
commit
(
'
DEL_VISITED_VIEW
'
,
view
)
resolve
([...
state
.
visitedViews
])
})
},
delOthersViews
({
commit
,
state
},
view
)
{
delCachedView
({
commit
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_CACHED_VIEW
'
,
view
)
resolve
([...
state
.
cachedViews
])
})
},
delOthersViews
({
dispatch
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_OTHERS_VIEWS
'
,
view
)
dispatch
(
'
delOthersVisitedViews
'
,
view
)
dispatch
(
'
delOthersCachedViews
'
,
view
)
resolve
({
visitedViews
:
[...
state
.
visitedViews
],
cachedViews
:
[...
state
.
cachedViews
]
})
})
},
delOthersVisitedViews
({
commit
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_OTHERS_VISITED_VIEWS
'
,
view
)
resolve
([...
state
.
visitedViews
])
})
},
del
All
Views
({
commit
,
state
})
{
del
OthersCached
Views
({
commit
,
state
}
,
view
)
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_ALL_VIEWS
'
)
commit
(
'
DEL_OTHERS_CACHED_VIEWS
'
,
view
)
resolve
([...
state
.
cachedViews
])
})
},
delAllViews
({
dispatch
,
state
},
view
)
{
return
new
Promise
(
resolve
=>
{
dispatch
(
'
delAllVisitedViews
'
,
view
)
dispatch
(
'
delAllCachedViews
'
,
view
)
resolve
({
visitedViews
:
[...
state
.
visitedViews
],
cachedViews
:
[...
state
.
cachedViews
]
})
})
},
delAllVisitedViews
({
commit
,
state
})
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_ALL_VISITED_VIEWS
'
)
resolve
([...
state
.
visitedViews
])
})
},
delAllCachedViews
({
commit
,
state
})
{
return
new
Promise
(
resolve
=>
{
commit
(
'
DEL_ALL_CACHED_VIEWS
'
)
resolve
([...
state
.
cachedViews
])
})
}
}
}
...
...
This diff is collapsed.
Click to expand it.
src/views/layout/components/TagsView.vue
+
3
−
3
View file @
d0d1addb
...
...
@@ -72,7 +72,7 @@ export default {
if
(
!
route
)
{
return
false
}
this
.
$store
.
dispatch
(
'
addVi
sitedVi
ew
s
'
,
route
)
this
.
$store
.
dispatch
(
'
addView
'
,
route
)
},
moveToCurrentTag
()
{
const
tags
=
this
.
$refs
.
tag
...
...
@@ -86,9 +86,9 @@ export default {
})
},
closeSelectedTag
(
view
)
{
this
.
$store
.
dispatch
(
'
delVi
sitedVi
ew
s
'
,
view
).
then
((
v
iews
)
=>
{
this
.
$store
.
dispatch
(
'
delView
'
,
view
).
then
((
{
visitedV
iews
}
)
=>
{
if
(
this
.
isActive
(
view
))
{
const
latestView
=
views
.
slice
(
-
1
)[
0
]
const
latestView
=
vi
sitedVi
ews
.
slice
(
-
1
)[
0
]
if
(
latestView
)
{
this
.
$router
.
push
(
latestView
)
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment