Shiwen Cheng
3 years ago
committed by
GitHub
27 changed files with 214 additions and 59 deletions
@ -0,0 +1,33 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import { mapState } from 'vuex' |
||||
import { beforeProjectRoute } from '@/module/project/router' |
||||
|
||||
export default { |
||||
computed: { |
||||
...mapState('dag', ['projectId', 'projectName']) |
||||
}, |
||||
watch: { |
||||
projectId () { |
||||
typeof this._updateProject === 'function' && this._updateProject() |
||||
} |
||||
}, |
||||
beforeRouteUpdate (to, from, next) { |
||||
beforeProjectRoute(to, from, next) |
||||
} |
||||
} |
@ -0,0 +1,38 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
import store from '@/conf/home/store' |
||||
import localStore from '@/module/util/localStorage' |
||||
|
||||
export function beforeProjectRoute (to, from, next) { |
||||
const blacklist = ['projects', 'projects-list'] |
||||
if (!blacklist.includes(to.name) && to.params.projectId && to.params.projectId !== localStore.getItem('projectId')) { |
||||
store.dispatch('projects/getProjectById', { |
||||
projectId: to.params.projectId |
||||
}).then(res => { |
||||
store.commit('dag/setProjectId', res.id) |
||||
store.commit('dag/setProjectName', res.name) |
||||
localStore.setItem('projectId', res.id) |
||||
localStore.setItem('projectName', res.name) |
||||
next() |
||||
}).catch(e => { |
||||
next({ name: 'projects-list' }) |
||||
}) |
||||
} else { |
||||
next() |
||||
} |
||||
} |
Loading…
Reference in new issue