rudeshark.net/src/client/app/common/views/pages/follow-requests.vue

69 lines
1.6 KiB
Vue
Raw Normal View History

2018-06-02 06:34:53 +02:00
<template>
2019-05-18 13:36:33 +02:00
<div>
<ui-container :body-togglable="true">
<template #header>{{ $t('received-follow-requests') }}</template>
<div v-if="!fetching">
<sequential-entrance animation="entranceFromTop" delay="25" tag="div" class="mcbzkkaw">
<div v-for="req in requests">
<router-link :key="req.id" :to="req.follower | userPage">
<mk-user-name :user="req.follower"/>
</router-link>
<span>
<a @click="accept(req.follower)">{{ $t('accept') }}</a>|<a @click="reject(req.follower)">{{ $t('reject') }}</a>
</span>
</div>
</sequential-entrance>
2018-06-02 08:51:43 +02:00
</div>
2019-05-18 13:36:33 +02:00
</ui-container>
</div>
2018-06-02 06:34:53 +02:00
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2019-05-18 13:36:33 +02:00
import Progress from '../../scripts/loading';
2018-06-02 09:13:32 +02:00
2018-06-02 06:34:53 +02:00
export default Vue.extend({
2019-05-18 13:36:33 +02:00
i18n: i18n('common/views/pages/follow-requests.vue'),
2018-06-02 06:34:53 +02:00
data() {
return {
fetching: true,
requests: []
};
},
mounted() {
2018-06-02 09:13:32 +02:00
Progress.start();
2018-11-09 00:13:34 +01:00
this.$root.api('following/requests/list').then(requests => {
2018-06-02 06:34:53 +02:00
this.fetching = false;
this.requests = requests;
2018-06-02 09:13:32 +02:00
Progress.done();
2018-06-02 06:34:53 +02:00
});
},
methods: {
2018-06-02 08:51:43 +02:00
accept(user) {
2018-11-09 00:13:34 +01:00
this.$root.api('following/requests/accept', { userId: user.id }).then(() => {
2018-06-02 08:51:43 +02:00
this.requests = this.requests.filter(r => r.follower.id != user.id);
});
},
reject(user) {
2018-11-09 00:13:34 +01:00
this.$root.api('following/requests/reject', { userId: user.id }).then(() => {
2018-06-02 08:51:43 +02:00
this.requests = this.requests.filter(r => r.follower.id != user.id);
});
2018-06-02 06:34:53 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
2019-05-18 13:36:33 +02:00
.mcbzkkaw
2018-06-02 08:51:43 +02:00
> div
display flex
2018-06-02 06:34:53 +02:00
padding 16px
2018-09-28 07:03:55 +02:00
border solid 1px var(--faceDivider)
2018-06-02 06:34:53 +02:00
border-radius 4px
2018-06-02 08:51:43 +02:00
> span
margin 0 0 0 auto
2018-06-02 06:34:53 +02:00
</style>