refactoring FollowMe flow
This commit is contained in:
@@ -5,20 +5,23 @@
|
||||
p(v-html="$t('event.follow_me_description', { title: settings.title, account: `@${settings.instance_name}@${domain}`})")
|
||||
v-text-field(
|
||||
:rules="[$validators.required('common.url')]"
|
||||
:loading='loading'
|
||||
:label="$t('common.url')"
|
||||
v-model='instance_hostname')
|
||||
p <img class='instance_thumb' :src="instance.thumbnail"/> {{instance.title}}
|
||||
v-btn(v-if='!isDialog' slot='prepend' text :disabled='(!couldGo || !proceed)' :href='link' target='_blank'
|
||||
:loading='loading' color="primary") {{$t("common.follow")}}
|
||||
|
||||
v-card-actions
|
||||
p(slot='append') <img class='instance_thumb' :src="instance.thumbnail"/> {{instance.title}}
|
||||
|
||||
v-card-actions(v-if='isDialog')
|
||||
v-spacer
|
||||
v-btn(color='warning' @click="$emit('close')") {{$t("common.cancel")}}
|
||||
v-btn(:disabled='(!couldGo || !proceed)'
|
||||
v-btn(v-if='isDialog' color='warning' @click="$emit('close')") {{$t("common.cancel")}}
|
||||
v-btn(:disabled='(!couldGo || !proceed)' :href='link' target='_blank'
|
||||
:loading='loading' color="primary") {{$t("common.follow")}}
|
||||
</template>
|
||||
<script>
|
||||
import { mapState } from 'vuex'
|
||||
import debounce from 'lodash/debounce'
|
||||
import url from 'url'
|
||||
|
||||
export default {
|
||||
name: 'FollowMe',
|
||||
@@ -30,19 +33,19 @@ export default {
|
||||
proceed: false,
|
||||
instance: {},
|
||||
loading: false,
|
||||
get_instance_info: debounce(this.getInstanceInfo, 500)
|
||||
get_instance_info: debounce(this.getInstanceInfo, 300)
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapState(['settings']),
|
||||
domain () {
|
||||
const URL = url.parse(this.settings.baseurl)
|
||||
const URL = new window.URL(this.settings.baseurl)
|
||||
return URL.hostname
|
||||
},
|
||||
couldGo () {
|
||||
// check if is mastodon
|
||||
this.get_instance_info()
|
||||
this.get_instance_info(this.instance_hostname)
|
||||
return true
|
||||
},
|
||||
link () {
|
||||
@@ -55,14 +58,19 @@ export default {
|
||||
if (!this.instance_hostname) {
|
||||
return
|
||||
}
|
||||
this.loading = true
|
||||
|
||||
const instance_url = `https://${this.instance_hostname}/api/v1/instance`
|
||||
this.$axios.$get(instance_url)
|
||||
.then(ret => {
|
||||
this.instance = ret
|
||||
this.proceed = true
|
||||
this.loading = false
|
||||
})
|
||||
.catch(e => {
|
||||
this.instance = {}
|
||||
this.proceed = false
|
||||
this.loading = false
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user