mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* add tail log viewer routes * add log viewer * add _mealie to ignore directories * add detailed breakdown of storage * generate types * add dialog to view breakdown * cleanup mobile UI * move migrations page * spelling * init analytics page * move route up * add remove temp files function * analytics API client * stub out analytics pages * generate types * stub out analytics routes * update names * ignore types * temporary remove analytics from sidebar
101 lines
2.3 KiB
Vue
101 lines
2.3 KiB
Vue
<template>
|
|
<v-container fluid>
|
|
<BaseCardSectionTitle class="pb-0" :icon="$globals.icons.cog" title="Summary"> </BaseCardSectionTitle>
|
|
<div class="mb-6 ml-2 d-flex" style="gap: 0.8rem">
|
|
<BaseButton color="info" :loading="state.loading" @click="refreshLogs">
|
|
<template #icon> {{ $globals.icons.refreshCircle }} </template>
|
|
Refresh Logs
|
|
</BaseButton>
|
|
<AppButtonCopy :copy-text="copyText" />
|
|
<div class="ml-auto" style="max-width: 150px">
|
|
<v-text-field v-model="state.lines" type="number" label="Tail Lines" hide-details dense outlined>
|
|
</v-text-field>
|
|
</div>
|
|
</div>
|
|
<v-card outlined>
|
|
<v-virtual-scroll
|
|
v-scroll="scrollOptions"
|
|
:bench="20"
|
|
:items="logs.logs"
|
|
height="800"
|
|
item-height="20"
|
|
class="keep-whitespace log-container"
|
|
>
|
|
<template #default="{ item }">
|
|
<p class="log-text">
|
|
{{ item }}
|
|
</p>
|
|
</template>
|
|
</v-virtual-scroll>
|
|
</v-card>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from "@nuxtjs/composition-api";
|
|
import { computed, onMounted, reactive } from "vue-demi";
|
|
import { useAdminApi } from "~/composables/api";
|
|
|
|
export default defineComponent({
|
|
layout: "admin",
|
|
setup() {
|
|
const adminApi = useAdminApi();
|
|
|
|
const state = reactive({
|
|
loading: false,
|
|
lines: 500,
|
|
autoRefresh: true,
|
|
});
|
|
|
|
const scrollOptions = reactive({
|
|
enable: true,
|
|
always: false,
|
|
smooth: false,
|
|
notSmoothOnInit: true,
|
|
});
|
|
|
|
const logs = ref({
|
|
logs: [] as string[],
|
|
});
|
|
|
|
async function refreshLogs() {
|
|
state.loading = true;
|
|
const { data } = await adminApi.maintenance.logs(state.lines);
|
|
if (data) {
|
|
logs.value = data;
|
|
}
|
|
state.loading = false;
|
|
}
|
|
onMounted(() => {
|
|
refreshLogs();
|
|
});
|
|
|
|
const copyText = computed(() => {
|
|
return logs.value.logs.join("") || "";
|
|
});
|
|
return {
|
|
copyText,
|
|
scrollOptions,
|
|
state,
|
|
refreshLogs,
|
|
logs,
|
|
};
|
|
},
|
|
head: {
|
|
title: "Mealie Logs",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style>
|
|
.log-text {
|
|
font: 0.8rem Inconsolata, monospace;
|
|
}
|
|
.log-container {
|
|
background-color: var(--v-background-base) !important;
|
|
}
|
|
.keep-whitespace {
|
|
white-space: pre;
|
|
}
|
|
</style>
|