Работа с keyHook, мелкий рефакторинг

This commit is contained in:
Book Pauk
2019-01-11 02:13:46 +07:00
parent 64bff259ff
commit a30fd57afb
3 changed files with 14 additions and 9 deletions

View File

@@ -142,7 +142,8 @@ class App extends Vue {
get rootRoute() {
const m = this.$route.path.match(/^(\/[^/]*).*$/i);
return (m ? m[1] : this.$route.path);
this.$root.rootRoute = (m ? m[1] : this.$route.path);
return this.$root.rootRoute;
}
itemTitleClass(path) {

View File

@@ -32,11 +32,6 @@ class LoaderPage extends Vue {
}
mounted() {
//недостатки сторонних ui
this.$refs.input.$refs.input.addEventListener('keyup', (event) => {
if (event.key == 'Enter')
this.submitUrl();
});
}
activated() {
@@ -55,6 +50,12 @@ class LoaderPage extends Vue {
//loadUrl()
;
}
keyHook(event) {
//недостатки сторонних ui
if (document.activeElement == this.$refs.input.$refs.input && event.type == 'keyup' && event.key == 'Enter')
this.submitUrl();
}
}
//-----------------------------------------------------------------------------
</script>

View File

@@ -43,7 +43,7 @@
<el-main>
<keep-alive>
<component :is="componentActive"></component>
<component ref="page" :is="pageActive"></component>
</keep-alive>
</el-main>
</el-container>
@@ -93,7 +93,7 @@ class Reader extends Vue {
return {};
}
get componentActive() {
get pageActive() {
let result = '';
if (this.loaderActive)
@@ -107,7 +107,10 @@ class Reader extends Vue {
}
keyHook(event) {
//console.log(this.componentActive);
if (this.$root.rootRoute == '/reader') {
if (this.$refs.page && this.$refs.page.keyHook)
this.$refs.page.keyHook(event);
}
}
}
//-----------------------------------------------------------------------------