Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄瑜
VueElementTemplate
Commits
ca75f7bc
Commit
ca75f7bc
authored
Dec 08, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf(tagsView):split to single modules
parent
b7939165
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
59 additions
and
46 deletions
+59
-46
getters.js
src/store/getters.js
+2
-2
index.js
src/store/index.js
+5
-3
app.js
src/store/modules/app.js
+1
-38
tagsView.js
src/store/modules/tagsView.js
+47
-0
index.vue
src/views/example/table/index.vue
+1
-1
AppMain.vue
src/views/layout/components/AppMain.vue
+2
-1
TagsView.vue
src/views/layout/components/TagsView.vue
+1
-1
No files found.
src/store/getters.js
View file @
ca75f7bc
const
getters
=
{
sidebar
:
state
=>
state
.
app
.
sidebar
,
language
:
state
=>
state
.
app
.
language
,
visitedViews
:
state
=>
state
.
app
.
visitedViews
,
cachedViews
:
state
=>
state
.
app
.
cachedViews
,
visitedViews
:
state
=>
state
.
tagsView
.
visitedViews
,
cachedViews
:
state
=>
state
.
tagsView
.
cachedViews
,
token
:
state
=>
state
.
user
.
token
,
avatar
:
state
=>
state
.
user
.
avatar
,
name
:
state
=>
state
.
user
.
name
,
...
...
src/store/index.js
View file @
ca75f7bc
import
Vue
from
'vue'
import
Vuex
from
'vuex'
import
app
from
'./modules/app'
import
user
from
'./modules/user'
import
permission
from
'./modules/permission'
import
tagsView
from
'./modules/tagsView'
import
user
from
'./modules/user'
import
getters
from
'./getters'
Vue
.
use
(
Vuex
)
...
...
@@ -10,8 +11,9 @@ Vue.use(Vuex)
const
store
=
new
Vuex
.
Store
({
modules
:
{
app
,
user
,
permission
permission
,
tagsView
,
user
},
getters
})
...
...
src/store/modules/app.js
View file @
ca75f7bc
...
...
@@ -5,9 +5,7 @@ const app = {
sidebar
:
{
opened
:
!+
Cookies
.
get
(
'sidebarStatus'
)
},
language
:
Cookies
.
get
(
'language'
)
||
'zh'
,
visitedViews
:
[],
cachedViews
:
[]
language
:
Cookies
.
get
(
'language'
)
||
'zh'
},
mutations
:
{
TOGGLE_SIDEBAR
:
state
=>
{
...
...
@@ -21,32 +19,6 @@ const app = {
SET_LANGUAGE
:
(
state
,
language
)
=>
{
state
.
language
=
language
Cookies
.
set
(
'language'
,
language
)
},
ADD_VISITED_VIEWS
:
(
state
,
view
)
=>
{
if
(
state
.
visitedViews
.
some
(
v
=>
v
.
path
===
view
.
path
))
return
state
.
visitedViews
.
push
({
name
:
view
.
name
,
path
:
view
.
path
,
title
:
view
.
meta
.
title
||
'no-name'
})
if
(
!
view
.
meta
.
noCache
)
{
state
.
cachedViews
.
push
(
view
.
name
)
}
},
DEL_VISITED_VIEWS
:
(
state
,
view
)
=>
{
for
(
const
[
i
,
v
]
of
state
.
visitedViews
.
entries
())
{
if
(
v
.
path
===
view
.
path
)
{
state
.
visitedViews
.
splice
(
i
,
1
)
break
}
}
for
(
const
i
of
state
.
cachedViews
)
{
if
(
i
===
view
.
name
)
{
const
index
=
state
.
cachedViews
.
indexOf
(
i
)
state
.
cachedViews
.
splice
(
index
,
1
)
break
}
}
}
},
actions
:
{
...
...
@@ -55,15 +27,6 @@ const app = {
},
setLanguage
({
commit
},
language
)
{
commit
(
'SET_LANGUAGE'
,
language
)
},
addVisitedViews
({
commit
},
view
)
{
commit
(
'ADD_VISITED_VIEWS'
,
view
)
},
delVisitedViews
({
commit
,
state
},
view
)
{
return
new
Promise
((
resolve
)
=>
{
commit
(
'DEL_VISITED_VIEWS'
,
view
)
resolve
([...
state
.
visitedViews
])
})
}
}
}
...
...
src/store/modules/tagsView.js
0 → 100644
View file @
ca75f7bc
const
tagsView
=
{
state
:
{
visitedViews
:
[],
cachedViews
:
[]
},
mutations
:
{
ADD_VISITED_VIEWS
:
(
state
,
view
)
=>
{
if
(
state
.
visitedViews
.
some
(
v
=>
v
.
path
===
view
.
path
))
return
state
.
visitedViews
.
push
({
name
:
view
.
name
,
path
:
view
.
path
,
title
:
view
.
meta
.
title
||
'no-name'
})
if
(
!
view
.
meta
.
noCache
)
{
state
.
cachedViews
.
push
(
view
.
name
)
}
},
DEL_VISITED_VIEWS
:
(
state
,
view
)
=>
{
for
(
const
[
i
,
v
]
of
state
.
visitedViews
.
entries
())
{
if
(
v
.
path
===
view
.
path
)
{
state
.
visitedViews
.
splice
(
i
,
1
)
break
}
}
for
(
const
i
of
state
.
cachedViews
)
{
if
(
i
===
view
.
name
)
{
const
index
=
state
.
cachedViews
.
indexOf
(
i
)
state
.
cachedViews
.
splice
(
index
,
1
)
break
}
}
}
},
actions
:
{
addVisitedViews
({
commit
},
view
)
{
commit
(
'ADD_VISITED_VIEWS'
,
view
)
},
delVisitedViews
({
commit
,
state
},
view
)
{
return
new
Promise
((
resolve
)
=>
{
commit
(
'DEL_VISITED_VIEWS'
,
view
)
resolve
([...
state
.
visitedViews
])
})
}
}
}
export
default
tagsView
src/views/example/table/index.vue
View file @
ca75f7bc
...
...
@@ -11,7 +11,7 @@ export default {
name
:
'TableMain'
,
computed
:
{
cachedViews
()
{
return
this
.
$store
.
state
.
app
.
cachedViews
return
this
.
$store
.
state
.
tagsView
.
cachedViews
}
}
}
...
...
src/views/layout/components/AppMain.vue
View file @
ca75f7bc
...
...
@@ -13,7 +13,8 @@ export default {
name
:
'AppMain'
,
computed
:
{
cachedViews
()
{
return
this
.
$store
.
state
.
app
.
cachedViews
// console.log(this.$store.state.tagsView.cachedViews)
return
this
.
$store
.
state
.
tagsView
.
cachedViews
}
// key() {
// return this.$route.name !== undefined ? this.$route.name + +new Date() : this.$route + +new Date()
...
...
src/views/layout/components/TagsView.vue
View file @
ca75f7bc
...
...
@@ -15,7 +15,7 @@ export default {
components
:
{
ScrollPane
},
computed
:
{
visitedViews
()
{
return
this
.
$store
.
state
.
app
.
visitedViews
return
this
.
$store
.
state
.
tagsView
.
visitedViews
}
},
mounted
()
{
...
...
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