mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
refactor: rework async AppList
This commit is contained in:
parent
301fd4d36c
commit
2478f53fc2
2 changed files with 20 additions and 31 deletions
|
@ -148,3 +148,5 @@ export type AppInfo = {
|
|||
supports_config_panel: boolean
|
||||
supports_purge: boolean
|
||||
}
|
||||
|
||||
export type AppList = { apps: AppInfo[] }
|
||||
|
|
|
@ -1,35 +1,23 @@
|
|||
<script setup lang="ts">
|
||||
import { ref } from 'vue'
|
||||
|
||||
import { useInitialQueries } from '@/composables/useInitialQueries'
|
||||
import api from '@/api'
|
||||
import { useSearch } from '@/composables/useSearch'
|
||||
import type { Obj } from '@/types/commons'
|
||||
import type { AppList } from '@/types/core/api'
|
||||
|
||||
const { loading } = useInitialQueries([{ uri: 'apps?full' }], {
|
||||
onQueriesResponse,
|
||||
})
|
||||
|
||||
const apps = ref<Obj[] | undefined>()
|
||||
const [search, filteredApps] = useSearch(apps, (s, app) => {
|
||||
return Object.values(app).some(
|
||||
(value) => value && value.toLowerCase().includes(s),
|
||||
)
|
||||
})
|
||||
|
||||
function onQueriesResponse(data: any) {
|
||||
if (data.apps.length === 0) {
|
||||
apps.value = undefined
|
||||
return
|
||||
}
|
||||
|
||||
apps.value = data.apps
|
||||
const apps = await api
|
||||
.get<AppList>({ uri: 'apps?full', initial: true })
|
||||
.then(({ apps }) => {
|
||||
return apps
|
||||
.map(({ id, name, description, manifest }) => {
|
||||
return { id, name: manifest.name, label: name, description }
|
||||
})
|
||||
.sort((prev, app) => {
|
||||
return prev.label > app.label ? 1 : -1
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
const [search, filteredApps] = useSearch(apps, (s, app) =>
|
||||
Object.values(app).some((value) => value && value.toLowerCase().includes(s)),
|
||||
)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -37,7 +25,6 @@ function onQueriesResponse(data: any) {
|
|||
v-model="search"
|
||||
items-name="installed_apps"
|
||||
:items="filteredApps"
|
||||
:loading="loading"
|
||||
>
|
||||
<template #top-bar-buttons>
|
||||
<BButton variant="success" :to="{ name: 'app-catalog' }">
|
||||
|
@ -54,8 +41,8 @@ function onQueriesResponse(data: any) {
|
|||
class="d-flex justify-content-between align-items-center pe-0"
|
||||
>
|
||||
<div>
|
||||
<h5 class="fw-bold">
|
||||
{{ label }}
|
||||
<h5>
|
||||
<strong class="me-1 fw-bold">{{ label }}</strong>
|
||||
<small class="text-secondary">{{ id }}</small>
|
||||
</h5>
|
||||
<p class="m-0">
|
||||
|
|
Loading…
Reference in a new issue