yunohost-portal/pages/index.vue
2023-08-06 16:27:24 +02:00

93 lines
2.5 KiB
Vue

<script setup lang="ts">
const { t } = useI18n()
const { userData } = await useUserInfo()
const me = computed(() => {
const appTileColors = [
['bg-primary', 'text-primary-content'],
['bg-secondary', 'text-secondary-content'],
['bg-accent', 'text-accent-content'],
['bg-neutral', 'text-neutral-content'],
['bg-info', 'text-info-content'],
['bg-success', 'text-success-content'],
['bg-warning', 'text-warning-content'],
['bg-error', 'text-error-content'],
// FIXME currently using daisyui theme colors,
// if we want more colors we need to adapt those to every themes.
// ['bg-red-500', 'text-red-100'],
// ['bg-orange-500', 'text-orange-100'],
// ['bg-yellow-500', 'text-yellow-100'],
// ['bg-lime-500', 'text-lime-100'],
// ['bg-green-500', 'text-green-100'],
// ['bg-teal-500', 'text-teal-100'],
// ['bg-indigo-500', 'text-indigo-100'],
// ['bg-primary', 'text-primary-content'],
// ['bg-purple-500', 'text-purple-100'],
// ['bg-rose-500', 'text-rose-100'],
]
return {
...userData.value,
apps: Object.entries(userData.value.apps).map(([id, app]) => {
return {
...app,
id,
url: '//' + app.url,
colors: appTileColors[parseInt(app.label, 36) % appTileColors.length],
}
}),
}
})
</script>
<template>
<div>
<PageTitle :text="$t('app_list')" />
<div id="apps" class="my-10">
<div v-if="!me.apps.length" class="w-2/3">
<em>{{ t('no_apps') }}</em>
</div>
<ul v-else class="tile-container">
<li
v-for="app in me.apps"
:key="app.id"
class="leading-none card h-40 w-40 relative mr-7 mb-7"
>
<div class="tile-layer" :class="[app.colors[0], 'brightness-75']" />
<a :href="app.url" class="tile-layer p-5" :class="app.colors">
<div class="text-6xl font-extrabold mb-1" aria-hidden="true">
{{ app.label.substring(0, 2) }}
</div>
<span class="leading-tight mt-2">{{ app.label }}</span>
</a>
</li>
</ul>
</div>
</div>
</template>
<style>
.tile-container {
display: grid;
grid-template-columns: repeat(auto-fit, 10rem);
grid-auto-rows: 10rem;
grid-gap: 1.5rem;
}
.tile-layer {
z-index: -1;
position: absolute;
@apply inset-0;
@apply rounded-2xl;
transform: translate(0rem, 0rem);
}
#apps li.card:hover div.tile-layer {
transform: translate(0.75rem, 0.75rem);
}
#apps li.card:hover {
transform: translate(-0.75rem, -0.75rem);
}
</style>