#7889 - Implmenet main shortcuts #655

Merged
jsegarra merged 6 commits from 7889_main_shortcuts into dev 2024-09-02 13:03:20 +00:00
3 changed files with 33 additions and 1 deletions
Showing only changes of commit d8e3f9dfd9 - Show all commits

View File

@ -0,0 +1,29 @@
import routes from 'src/router/modules';
import { useRouter } from 'vue-router';
export default {
mounted: function () {
const router = useRouter();
const keyBindingMap = routes
.filter((route) => route.meta.keyBinding)
.reduce((map, route) => {
map[route.meta.keyBinding.toLowerCase()] = route.path;
return map;
}, {});
const handleKeyDown = (event) => {
const { ctrlKey, altKey, key } = event;
event.preventDefault();
const combination = `${ctrlKey ? 'Ctrl+' : ''}${
altKey ? 'Alt+' : ''
}${key.toLowerCase()}`;
console.log(ctrlKey, altKey, key, combination);
Review

??

??
Review

Solved
💣

Solved 💣
if (ctrlKey && altKey && keyBindingMap[key]) {
router.push(keyBindingMap[key]);
}
};
window.addEventListener('keydown', handleKeyDown);
},
};

View File

@ -1,6 +1,8 @@
import { boot } from 'quasar/wrappers';
import qFormMixin from './qformMixin';
import mainShortcutMixin from './mainShortcutMixin';
export default boot(({ app }) => {
app.mixin(qFormMixin);
app.mixin(mainShortcutMixin);
});

View File

@ -5,8 +5,9 @@ export default {
name: 'Route',
meta: {
title: 'routes',
icon: 'vn:delivery',
icon: 'vn:delivesry',

fallo?

fallo?

Dios, bien visto
Totalmente

Dios, bien visto Totalmente
moduleName: 'Route',
keyBinding: 'r',
},
component: RouterView,
redirect: { name: 'RouteMain' },