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

79 lines
1.6 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 :icon="['far', 'envelope']"/>{{ $t('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)">{{ $t('accept') }}</a>|<a @click="reject(req.follower)">{{ $t('reject') }}</a>
2018-06-02 09:51:43 +03:00
</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';
import i18n from '../../../i18n';
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({
i18n: i18n('mobile/views/pages/received-follow-requests.vue'),
2018-06-02 07:34:53 +03:00
data() {
return {
fetching: true,
requests: []
};
},
mounted() {
document.title = this.$t('title');
2018-06-02 10:13:32 +03:00
Progress.start();
2018-11-09 01:13:34 +02:00
this.$root.api('following/requests/list').then(requests => {
2018-06-02 07:34:53 +03:00
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) {
2018-11-09 01:13:34 +02:00
this.$root.api('following/requests/accept', { userId: user.id }).then(() => {
2018-06-02 09:51:43 +03:00
this.requests = this.requests.filter(r => r.follower.id != user.id);
});
},
reject(user) {
2018-11-09 01:13:34 +02:00
this.$root.api('following/requests/reject', { userId: user.id }).then(() => {
2018-06-02 09:51:43 +03:00
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>