2018-06-16 04:42:49 -05:00
|
|
|
<template>
|
|
|
|
<div class="pptjhabgjtt7kwskbfv4y3uml6fpuhmr">
|
2018-08-06 23:25:50 -05:00
|
|
|
<h1>{{ '%i18n:@share-with%'.replace('{}', name) }}</h1>
|
2018-06-16 04:42:49 -05:00
|
|
|
<div>
|
|
|
|
<mk-signin v-if="!$store.getters.isSignedIn"/>
|
|
|
|
<mk-post-form v-else-if="!posted" :initial-text="text" :instant="true" @posted="posted = true"/>
|
|
|
|
<p v-if="posted" class="posted">%fa:check%</p>
|
|
|
|
</div>
|
2018-08-02 05:03:31 -05:00
|
|
|
<button v-if="posted" class="ui button" @click="close">%i18n:common.close%</button>
|
2018-06-16 04:42:49 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
2018-08-25 12:05:42 -05:00
|
|
|
name: null,
|
2018-06-16 04:42:49 -05:00
|
|
|
posted: false,
|
|
|
|
text: new URLSearchParams(location.search).get('text')
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
close() {
|
|
|
|
window.close();
|
|
|
|
}
|
2018-08-25 12:05:42 -05:00
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
(this as any).os.getMeta().then(meta => {
|
|
|
|
this.name = meta.name;
|
|
|
|
});
|
2018-06-16 04:42:49 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.pptjhabgjtt7kwskbfv4y3uml6fpuhmr
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
> h1
|
|
|
|
margin 0 0 8px 0
|
|
|
|
color #555
|
|
|
|
font-size 20px
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
> div
|
|
|
|
max-width 500px
|
|
|
|
margin 0 auto
|
|
|
|
background #fff
|
|
|
|
border solid 1px rgba(#000, 0.1)
|
|
|
|
border-radius 6px
|
|
|
|
overflow hidden
|
|
|
|
|
|
|
|
> .posted
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 64px
|
|
|
|
text-align center
|
|
|
|
|
|
|
|
> button
|
|
|
|
display block
|
|
|
|
margin 16px auto
|
|
|
|
</style>
|