rudeshark.net/src/client/pages/follow.vue
tamaina 3963ed8ff7
feat(client): 翻訳をIndexedDBに保存・プッシュ通知を翻訳 (#6396)
* wip

* tabun ok

* better msg

* oops

* fix lint

* Update gulpfile.ts

Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>

* Update src/client/scripts/set-i18n-contexts.ts

Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>

* refactor

Co-authored-by: acid-chicken <root@acid-chicken.com>

* 

* wip

* fix lint

* たぶんおk

* fix flush

* Translate Notification

* remove console.log

* fix

* add notifications

* remove san

* wip

* ok

* ✌️

* Update src/prelude/array.ts

Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>

* wip

* i18n refactor

* Update init.ts

* ✌️

Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
Co-authored-by: syuilo <syuilotan@yahoo.co.jp>
2020-05-23 13:19:31 +09:00

96 lines
1.8 KiB
Vue

<template>
<div class="mk-follow-page">
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
created() {
const acct = new URL(location.href).searchParams.get('acct');
if (acct == null) return;
const dialog = this.$root.dialog({
type: 'waiting',
text: this.$t('fetchingAsApObject') + '...',
showOkButton: false,
showCancelButton: false,
cancelableByBgClick: false
});
if (acct.startsWith('https://')) {
this.$root.api('ap/show', {
uri: acct
}).then(res => {
if (res.type == 'User') {
this.follow(res.object);
} else {
this.$root.dialog({
type: 'error',
text: 'Not a user'
}).then(() => {
window.close();
});
}
}).catch(e => {
this.$root.dialog({
type: 'error',
text: e
}).then(() => {
window.close();
});
}).finally(() => {
dialog.close();
});
} else {
this.$root.api('users/show', parseAcct(acct)).then(user => {
this.follow(user);
}).catch(e => {
this.$root.dialog({
type: 'error',
text: e
}).then(() => {
window.close();
});
}).finally(() => {
dialog.close();
});
}
},
methods: {
async follow(user) {
const { canceled } = await this.$root.dialog({
type: 'question',
text: this.$t('followConfirm', { name: user.name || user.username }),
showCancelButton: true
});
if (canceled) {
window.close();
return;
}
this.$root.api('following/create', {
userId: user.id
}).then(() => {
this.$root.dialog({
type: 'success',
iconOnly: true, autoClose: true
}).then(() => {
window.close();
});
}).catch(e => {
this.$root.dialog({
type: 'error',
text: e
}).then(() => {
window.close();
});
});
}
}
});
</script>