Follow latest Web Share Target specification

This commit is contained in:
syuilo
2019-03-12 12:55:43 +09:00
parent f19ac5320e
commit c473b62aed
3 changed files with 32 additions and 5 deletions

View File

@ -3,7 +3,7 @@
<h1>{{ this.$t('share-with', { name }) }}</h1>
<div>
<mk-signin v-if="!$store.getters.isSignedIn"/>
<mk-post-form v-else-if="!posted" :initial-text="text" :instant="true" @posted="posted = true"/>
<mk-post-form v-else-if="!posted" :initial-text="template" :instant="true" @posted="posted = true"/>
<p v-if="posted" class="posted"><fa icon="check"/></p>
</div>
<button v-if="posted" class="ui button" @click="close">{{ $t('@.close') }}</button>
@ -20,9 +20,20 @@ export default Vue.extend({
return {
name: null,
posted: false,
text: new URLSearchParams(location.search).get('text')
text: new URLSearchParams(location.search).get('text'),
url: new URLSearchParams(location.search).get('url'),
title: new URLSearchParams(location.search).get('title'),
};
},
computed: {
template(): string {
let t = '';
if (this.title) t += `${title}\n`;
if (this.text) t += `${text}\n`;
if (this.url) t += `${url}`;
return t.trim();
}
},
methods: {
close() {
window.close();