mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 16:13:09 +02:00
57 lines
1 KiB
Vue
57 lines
1 KiB
Vue
|
<template>
|
||
|
<div class="azibmfpleajagva420swmu4c3r7ni7iw">
|
||
|
<h1>Misskeyで共有</h1>
|
||
|
<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>
|
||
|
<ui-button class="close" v-if="posted" @click="close">閉じる</ui-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
data() {
|
||
|
return {
|
||
|
posted: false,
|
||
|
text: new URLSearchParams(location.search).get('text')
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
close() {
|
||
|
window.close();
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
.azibmfpleajagva420swmu4c3r7ni7iw
|
||
|
> h1
|
||
|
margin 8px 0
|
||
|
color #555
|
||
|
font-size 20px
|
||
|
text-align center
|
||
|
|
||
|
> div
|
||
|
max-width 500px
|
||
|
margin 0 auto
|
||
|
|
||
|
> .posted
|
||
|
display block
|
||
|
margin 0 auto
|
||
|
padding 64px
|
||
|
text-align center
|
||
|
background #fff
|
||
|
border-radius 6px
|
||
|
width calc(100% - 32px)
|
||
|
|
||
|
> .close
|
||
|
display block
|
||
|
margin 16px auto
|
||
|
width calc(100% - 32px)
|
||
|
</style>
|