Commit 10674cff authored by rockyl's avatar rockyl

修改:当hash修改的时候,把editor重载一遍

parent a15f7a96
...@@ -45,16 +45,10 @@ export const projectStore = { ...@@ -45,16 +45,10 @@ export const projectStore = {
Vue.set(localData, 'dataMapping', dataMapping || []); Vue.set(localData, 'dataMapping', dataMapping || []);
} }
}else{ }else{
if (!localData.views) {
Vue.set(localData, 'views', []); Vue.set(localData, 'views', []);
}
if (!localData.assets) {
Vue.set(localData, 'assets', []); Vue.set(localData, 'assets', []);
}
if (!localData.dataMapping) {
Vue.set(localData, 'dataMapping', []); Vue.set(localData, 'dataMapping', []);
} }
}
// compoleteComponentData(state.data.views); // compoleteComponentData(state.data.views);
}, },
/** /**
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
.right-part{ .right-part{
color: $--color-text-regular; color: $--color-text-regular;
line-height: 15px;
.el-button{ .el-button{
padding: 2px; padding: 2px;
......
<template> <template>
<div class="editor"> <div class="editor" v-if="ready">
<tool-bar @click-menu="clickMenu"/> <tool-bar @click-menu="clickMenu"/>
<split-panes class="pane-container" @resized="onPanesReSized(0, $event)"> <split-panes class="pane-container" @resized="onPanesReSized(0, $event)">
<split-panes splitpanes-min="40" :splitpanes-size="getSize(0, 0)" horizontal @resized="onPanesReSized(1, $event)"> <split-panes splitpanes-min="40" :splitpanes-size="getSize(0, 0)" horizontal @resized="onPanesReSized(1, $event)">
...@@ -45,12 +45,26 @@ ...@@ -45,12 +45,26 @@
const panesConfig = localStorage.panesConfig ? JSON.parse(localStorage.panesConfig) : [0.8, 0.8, 0.3]; const panesConfig = localStorage.panesConfig ? JSON.parse(localStorage.panesConfig) : [0.8, 0.8, 0.3];
return { return {
panesConfig, panesConfig,
ready: false,
}
},
watch: {
$route: {
handler: function(val, oldVal){
console.log('router changed');
this.loadProject();
},
deep: true
} }
}, },
computed: { computed: {
...mapGetters([]), ...mapGetters([]),
}, },
async mounted() { mounted() {
this.loadProject();
},
methods: {
async loadProject(){
const {projectID} = this.$route.params; const {projectID} = this.$route.params;
if (await this.localVersionExist(projectID)) { if (await this.localVersionExist(projectID)) {
this.$confirm(this.$t('Unsaved version found locally'), this.$t('Alert'), { this.$confirm(this.$t('Unsaved version found locally'), this.$t('Alert'), {
...@@ -73,13 +87,17 @@ ...@@ -73,13 +87,17 @@
this.loadRemoteVersion(projectID); this.loadRemoteVersion(projectID);
} }
}, },
methods: {
loadLocalVersion(projectID) { loadLocalVersion(projectID) {
this.loadFromLocal(projectID) this.ready = false;
this.loadFromLocal(projectID);
this.$nextTick(()=>{
this.ready = true;
});
}, },
loadRemoteVersion(projectID) { async loadRemoteVersion(projectID) {
if (projectID) { if (projectID) {
playWaiting(this.loadFromRemote(projectID), this.$t('Preparing')).catch(e => { this.ready = false;
await playWaiting(this.loadFromRemote(projectID), this.$t('Preparing')).catch(e => {
this.$alert(this.$t('Project does not exist'), this.$t('Alert'), { this.$alert(this.$t('Project does not exist'), this.$t('Alert'), {
confirmButtonText: this.$t('Confirm'), confirmButtonText: this.$t('Confirm'),
callback: action=>{ callback: action=>{
...@@ -87,6 +105,7 @@ ...@@ -87,6 +105,7 @@
} }
}); });
}); });
this.ready = true;
} else { } else {
this.$router.push({name: 'home'}) this.$router.push({name: 'home'})
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment