iceshrimp-legacy/src/client/app/desktop/views/components/received-follow-requests-window.vue

66 lines
1.5 KiB
Vue
Raw Normal View History

2018-06-02 06:34:53 +02:00
<template>
<mk-window ref="window" is-modal width="450px" height="500px" @closed="destroyDom">
2018-06-02 06:34:53 +02:00
<span slot="header">%fa:envelope R% %i18n:@title%</span>
2018-09-28 07:26:20 +02:00
<div class="slpqaxdoxhvglersgjukmvizkqbmbokc">
2018-06-02 08:51:43 +02:00
<div v-for="req in requests">
<router-link :key="req.id" :to="req.follower | userPage">{{ req.follower | userName }}</router-link>
<span>
<a @click="accept(req.follower)">%i18n:@accept%</a>|<a @click="reject(req.follower)">%i18n:@reject%</a>
</span>
</div>
2018-06-02 06:34:53 +02:00
</div>
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
data() {
return {
fetching: true,
requests: []
};
},
mounted() {
(this as any).api('following/requests/list').then(requests => {
this.fetching = false;
this.requests = requests;
});
},
methods: {
2018-06-02 08:51:43 +02:00
accept(user) {
(this as any).api('following/requests/accept', { userId: user.id }).then(() => {
this.requests = this.requests.filter(r => r.follower.id != user.id);
});
},
reject(user) {
(this as any).api('following/requests/reject', { userId: user.id }).then(() => {
this.requests = this.requests.filter(r => r.follower.id != user.id);
});
},
2018-06-02 06:34:53 +02:00
close() {
(this as any).$refs.window.close();
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 08:34:34 +02:00
.slpqaxdoxhvglersgjukmvizkqbmbokc
2018-06-02 06:34:53 +02:00
padding 16px
> button
margin-bottom 16px
2018-06-02 08:51:43 +02:00
> div
display flex
2018-06-02 06:34:53 +02:00
padding 16px
2018-09-28 08:34:34 +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>