Sharkey/src/client/app/desktop/views/components/settings.mute.vue

36 lines
684 B
Vue
Raw Normal View History

2018-02-12 16:48:01 +02:00
<template>
2018-02-21 18:25:57 +02:00
<div>
2018-02-12 16:48:01 +02:00
<div class="none ui info" v-if="!fetching && users.length == 0">
<p>%fa:info-circle%%i18n:desktop.tags.mk-mute-setting.no-users%</p>
</div>
<div class="users" v-if="users.length != 0">
<div v-for="user in users" :key="user.id">
2018-03-27 10:51:12 +03:00
<p><b>{{ user.name }}</b> @{{ getAcct(user) }}</p>
2018-02-12 16:48:01 +02:00
</div>
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-02 07:44:32 +03:00
import getAcct from '../../../../../acct/render';
2018-02-12 16:48:01 +02:00
export default Vue.extend({
data() {
return {
fetching: true,
2018-02-21 18:25:57 +02:00
users: []
2018-02-12 16:48:01 +02:00
};
},
2018-03-27 10:51:12 +03:00
methods: {
getAcct
},
2018-02-12 16:48:01 +02:00
mounted() {
2018-02-18 05:35:18 +02:00
(this as any).api('mute/list').then(x => {
2018-02-12 16:48:01 +02:00
this.users = x.users;
2018-02-19 16:37:09 +02:00
this.fetching = false;
2018-02-12 16:48:01 +02:00
});
}
});
</script>