Merge pull request 'feat: refs #6839 module searching' (!910) from 6839-addSearchMenu into dev
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #910 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
cc12250109
|
@ -1,6 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { onMounted, watch, ref, reactive } from 'vue';
|
import { onMounted, watch, ref, reactive, computed } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { QSeparator, useQuasar } from 'quasar';
|
import { QSeparator, useQuasar } from 'quasar';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
@ -9,6 +9,7 @@ import { toLowerCamel } from 'src/filters';
|
||||||
import routes from 'src/router/modules';
|
import routes from 'src/router/modules';
|
||||||
import LeftMenuItem from './LeftMenuItem.vue';
|
import LeftMenuItem from './LeftMenuItem.vue';
|
||||||
import LeftMenuItemGroup from './LeftMenuItemGroup.vue';
|
import LeftMenuItemGroup from './LeftMenuItemGroup.vue';
|
||||||
|
import VnInput from './common/VnInput.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -22,7 +23,32 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const items = ref([]);
|
||||||
const expansionItemElements = reactive({});
|
const expansionItemElements = reactive({});
|
||||||
|
const pinnedModules = computed(() => {
|
||||||
|
const map = new Map();
|
||||||
|
items.value.forEach((item) => item.isPinned && map.set(item.name, item));
|
||||||
|
return map;
|
||||||
|
});
|
||||||
|
const search = ref(null);
|
||||||
|
|
||||||
|
const filteredItems = computed(() => {
|
||||||
|
if (!search.value) return items.value;
|
||||||
|
return items.value.filter((item) => {
|
||||||
|
const locale = t(item.title).toLowerCase();
|
||||||
|
return locale.includes(search.value.toLowerCase());
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const filteredPinnedModules = computed(() => {
|
||||||
|
if (!search.value) return pinnedModules.value;
|
||||||
|
const map = new Map();
|
||||||
|
for (const [key, pinnedModule] of pinnedModules.value) {
|
||||||
|
const locale = t(pinnedModule.title).toLowerCase();
|
||||||
|
if (locale.includes(search.value.toLowerCase())) map.set(key, pinnedModule);
|
||||||
|
}
|
||||||
|
return map;
|
||||||
|
});
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await navigation.fetchPinned();
|
await navigation.fetchPinned();
|
||||||
|
@ -66,8 +92,6 @@ function addChildren(module, route, parent) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const items = ref([]);
|
|
||||||
|
|
||||||
function getRoutes() {
|
function getRoutes() {
|
||||||
if (props.source === 'main') {
|
if (props.source === 'main') {
|
||||||
const modules = Object.assign([], navigation.getModules().value);
|
const modules = Object.assign([], navigation.getModules().value);
|
||||||
|
@ -129,15 +153,44 @@ const handleItemExpansion = (itemName) => {
|
||||||
<QList padding class="column-max-width">
|
<QList padding class="column-max-width">
|
||||||
<template v-if="$props.source === 'main'">
|
<template v-if="$props.source === 'main'">
|
||||||
<template v-if="$route?.matched[1]?.name === 'Dashboard'">
|
<template v-if="$route?.matched[1]?.name === 'Dashboard'">
|
||||||
<QItem class="header">
|
<QItem class="q-pb-md">
|
||||||
<QItemSection avatar>
|
<VnInput
|
||||||
<QIcon name="view_module" />
|
v-model="search"
|
||||||
</QItemSection>
|
:label="t('Search modules')"
|
||||||
<QItemSection> {{ t('globals.modules') }}</QItemSection>
|
class="full-width"
|
||||||
|
filled
|
||||||
|
dense
|
||||||
|
/>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QSeparator />
|
<QSeparator />
|
||||||
<template v-for="item in items" :key="item.name">
|
<template v-if="filteredPinnedModules.size">
|
||||||
<template v-if="item.children">
|
<LeftMenuItem
|
||||||
|
v-for="[key, pinnedModule] of filteredPinnedModules"
|
||||||
|
:key="key"
|
||||||
|
:item="pinnedModule"
|
||||||
|
group="modules"
|
||||||
|
>
|
||||||
|
<template #side>
|
||||||
|
<QBtn
|
||||||
|
v-if="pinnedModule.isPinned === true"
|
||||||
|
@click="togglePinned(pinnedModule, $event)"
|
||||||
|
icon="remove_circle"
|
||||||
|
size="xs"
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('components.leftMenu.removeFromPinned') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</LeftMenuItem>
|
||||||
|
<QSeparator />
|
||||||
|
</template>
|
||||||
|
<template v-for="item in filteredItems" :key="item.name">
|
||||||
|
<template
|
||||||
|
v-if="item.children && !filteredPinnedModules.has(item.name)"
|
||||||
|
>
|
||||||
<LeftMenuItem :item="item" group="modules">
|
<LeftMenuItem :item="item" group="modules">
|
||||||
<template #side>
|
<template #side>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -256,3 +309,7 @@ const handleItemExpansion = (itemName) => {
|
||||||
color: var(--vn-label-color);
|
color: var(--vn-label-color);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search modules: Buscar módulos
|
||||||
|
</i18n>
|
||||||
|
|
Loading…
Reference in New Issue