Sharkey/src/client/app/mobile/views/pages/received-follow-requests.vue

77 lines
1.5 KiB
Vue
Raw Normal View History

2018-06-02 07:34:53 +03:00
<template>
2018-06-02 10:13:32 +03:00
<mk-ui>
<span slot="header">%fa:envelope R%%i18n:@title%</span>
2018-06-02 07:34:53 +03:00
2018-06-02 10:13:32 +03:00
<main>
2018-06-02 09:51:43 +03: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 10:13:32 +03:00
</main>
</mk-ui>
2018-06-02 07:34:53 +03:00
</template>
<script lang="ts">
import Vue from 'vue';
2018-06-02 10:13:32 +03:00
import Progress from '../../../common/scripts/loading';
2018-06-02 07:34:53 +03:00
export default Vue.extend({
data() {
return {
fetching: true,
requests: []
};
},
mounted() {
2018-08-07 07:25:50 +03:00
document.title = '%i18n:@title%';
2018-06-02 10:13:32 +03:00
Progress.start();
2018-06-02 07:34:53 +03:00
(this as any).api('following/requests/list').then(requests => {
this.fetching = false;
this.requests = requests;
2018-06-02 10:13:32 +03:00
Progress.done();
2018-06-02 07:34:53 +03:00
});
},
methods: {
2018-06-02 09:51:43 +03: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 07:34:53 +03:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-06-02 10:13:32 +03:00
main
width 100%
max-width 680px
margin 0 auto
padding 8px
2018-06-02 07:34:53 +03:00
2018-06-02 10:13:32 +03:00
@media (min-width 500px)
padding 16px
@media (min-width 600px)
padding 32px
2018-06-02 07:34:53 +03:00
2018-06-02 09:51:43 +03:00
> div
display flex
2018-06-02 07:34:53 +03:00
padding 16px
2018-09-28 08:03:55 +03:00
border solid 1px var(--faceDivider)
2018-06-02 07:34:53 +03:00
border-radius 4px
2018-06-02 09:51:43 +03:00
> span
margin 0 0 0 auto
2018-06-02 07:34:53 +03:00
</style>