88 lines
1.9 KiB
Vue
88 lines
1.9 KiB
Vue
<template>
|
|
<div>
|
|
<table id="tasks_tbl">
|
|
<thead>
|
|
<tr>
|
|
<th width="5%">Up?</th>
|
|
<th width="*">Host</th>
|
|
<th width="5%">Type</th>
|
|
<th width="20%">Last checked</th>
|
|
<th width="13%">Frequency (min)</th>
|
|
<th width="5%">Active</th>
|
|
<th width="5%">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr
|
|
v-for="task in tasks"
|
|
v-bind:key="task.id"
|
|
>
|
|
<td :class="statusText(task.status)">
|
|
<img :src="'img/'+statusText(task.status)+'.svg'" width="16" alt="Status" />
|
|
</td>
|
|
<td>
|
|
<a :href="task.host" target="_blank">{{ task.host }}</a>
|
|
</td>
|
|
<td>
|
|
<img :src="task.type == 'http' ? 'img/http.svg' : 'img/ping.svg'" width="16" alt="Type of check" :title="'Type: '+task.type" />
|
|
</td>
|
|
<td>
|
|
<span
|
|
v-if="task.last_execution"
|
|
>
|
|
{{ moment(task.last_execution).fromNow() }}
|
|
<img src="img/info.svg" alt="Infos" width="16" :title="'Result: '+task.output" />
|
|
</span>
|
|
<span
|
|
v-else
|
|
>
|
|
Never
|
|
</span>
|
|
<td>{{ task.frequency / 60 }}</td>
|
|
<td>{{ task.active == 1 ? 'Yes' : 'No' }}</td>
|
|
<td>
|
|
<router-link :to="{ name: 'taskdetails', params: { id: task.id }}">
|
|
<img src="img/see.svg" alt="Details" width="16" />
|
|
</router-link>
|
|
<a
|
|
v-on:click.prevent="disableTask(task.id, task.active)"
|
|
href="#"
|
|
>
|
|
<img src="img/disable.svg" alt="Disable" width="16" />
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: [
|
|
'tasks'
|
|
],
|
|
methods: {
|
|
statusText: function (status) {
|
|
switch (status) {
|
|
case 1:
|
|
return 'up';
|
|
break;
|
|
case 0:
|
|
return 'down';
|
|
break;
|
|
default:
|
|
return 'unknown';
|
|
}
|
|
},
|
|
disableTask: function(task_id, current_status) {
|
|
console.log('Disabling task #'+task_id)
|
|
this.$http.post('/api/toggleTaskStatus/'+task_id, {
|
|
active: !current_status
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|