58 lines
1.5 KiB
Vue
58 lines
1.5 KiB
Vue
<template>
|
|
<CardWithDetails
|
|
title="Logs"
|
|
:subtitle="`Available logs for ${instanceName}`"
|
|
:showDetails="logName"
|
|
>
|
|
<div v-if="$resources.logs.data && $resources.logs.data.length">
|
|
<router-link
|
|
class="block cursor-pointer rounded-md px-2.5"
|
|
:class="logName === log.name ? 'bg-gray-100' : 'hover:bg-gray-50'"
|
|
v-for="log in $resources.logs.data"
|
|
:key="log.name"
|
|
:to="`/groups/${bench.name}/logs/${instanceName}/${log.name}`"
|
|
>
|
|
<ListItem
|
|
:title="log.name"
|
|
:description="`${formatDate(log.modified) + '\n' + log.size} kB`"
|
|
/>
|
|
<div class="border-b"></div>
|
|
</router-link>
|
|
</div>
|
|
<div v-else>
|
|
<Button
|
|
v-if="$resources.logs.loading"
|
|
:loading="true"
|
|
loading-text="Loading..."
|
|
/>
|
|
<span v-else class="text-base text-gray-600">No logs</span>
|
|
</div>
|
|
<template #details>
|
|
<BenchLogsDetail
|
|
:bench="bench"
|
|
:instanceName="instanceName"
|
|
:logName="logName"
|
|
/>
|
|
</template>
|
|
</CardWithDetails>
|
|
</template>
|
|
|
|
<script>
|
|
import CardWithDetails from '@/components/CardWithDetails.vue';
|
|
import BenchLogsDetail from './BenchLogsDetail.vue';
|
|
export default {
|
|
name: 'BenchLogs',
|
|
props: ['bench', 'instanceName', 'logName'],
|
|
components: { CardWithDetails, BenchLogsDetail },
|
|
resources: {
|
|
logs() {
|
|
return {
|
|
url: 'jcloud.api.bench.logs',
|
|
params: { name: this.bench?.name, bench: this.instanceName },
|
|
auto: true
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|