feat: refs #7957 open in new tab #1086

Merged
jorgep merged 28 commits from 7957-monitorChanges into dev 2025-01-07 14:38:56 +00:00
1 changed files with 6 additions and 9 deletions
Showing only changes of commit b1ad357bda - Show all commits

View File

@ -86,18 +86,14 @@ if (props.redirect)
let arrayData = useArrayData(props.dataKey, arrayDataProps);
let store = arrayData.store;
const to = computed(() => {
const { params } = arrayData.getCurrentFilter();
params.search = searchText.value || undefined;
const url = { path: route.path, query: { ...(route.query ?? {}) } };
jorgep marked this conversation as resolved Outdated
Outdated
Review

Has mirado si store.currentFilter te valia? Ahi en teoria estan los params sin tratar

Has mirado si store.currentFilter te valia? Ahi en teoria estan los params sin tratar
const searchUrl = arrayData.store.searchUrl;

Por defecto vn-input pone null y esto es un parámetro valido de búsqueda, Para que no se añada hay declararlo como undefined.

Por defecto vn-input pone null y esto es un parámetro valido de búsqueda, Para que no se añada hay declararlo como undefined.
const currentFilter = {
...arrayData.store.currentFilter,
search: searchText.value || undefined,
};
for (const key in params) {
const val = params[key];
if (typeof val === 'object' && !Array.isArray(val) && !(val instanceof Date))
params[key] = JSON.stringify(val);
}
if (searchUrl) url.query[searchUrl] = JSON.stringify(params);
if (searchUrl) url.query[searchUrl] = JSON.stringify(currentFilter);
return url;
});
@ -158,6 +154,7 @@ async function search() {
</RouterLink>
<VnInput
id="searchbar"
ref="input"
v-model.trim="searchText"
:placeholder="t(props.label)"
dense