thelounge/client/components/Special/ListBans.vue

46 lines
1.1 KiB
Vue
Raw Normal View History

2018-07-10 11:16:24 +02:00
<template>
<table class="ban-list">
<thead>
<tr>
<th class="hostmask">Banned</th>
<th class="banned_by">Banned By</th>
<th class="banned_at">Banned At</th>
</tr>
</thead>
<tbody>
2019-07-17 11:33:59 +02:00
<tr v-for="ban in channel.data" :key="ban.hostmask">
<td class="hostmask"><ParsedMessage :network="network" :text="ban.hostmask" /></td>
2018-07-12 10:41:40 +02:00
<td class="banned_by">{{ ban.banned_by }}</td>
2020-01-08 10:11:44 +01:00
<td class="banned_at">{{ localetime(ban.banned_at) }}</td>
2018-07-10 11:16:24 +02:00
</tr>
</tbody>
</table>
</template>
<script lang="ts">
import ParsedMessage from "../ParsedMessage.vue";
import localeTime from "../../js/helpers/localetime";
import {defineComponent, PropType} from "vue";
import type {ClientNetwork, ClientChan} from "../../js/types";
2020-01-08 10:11:44 +01:00
export default defineComponent({
2018-07-10 11:16:24 +02:00
name: "ListBans",
components: {
ParsedMessage,
},
2018-07-10 11:16:24 +02:00
props: {
network: {type: Object as PropType<ClientNetwork>, required: true},
channel: {type: Object as PropType<ClientChan>, required: true},
2018-07-10 11:16:24 +02:00
},
setup() {
const localetime = (date: number | Date) => {
return localeTime(date);
};
return {
localetime,
};
2020-01-08 10:11:44 +01:00
},
});
2018-07-10 11:16:24 +02:00
</script>