iceshrimp-legacy/src/web/app/mobile/views/components/post-form.vue

277 lines
6.1 KiB
Vue
Raw Normal View History

2018-02-14 05:26:08 +01:00
<template>
<div class="mk-post-form">
<header>
<button class="cancel" @click="cancel">%fa:times%</button>
<div>
2018-02-21 23:06:47 +01:00
<span class="text-count" :class="{ over: text.length > 1000 }">{{ 1000 - text.length }}</span>
2018-03-05 06:09:12 +01:00
<span class="geo" v-if="geo">%fa:map-marker-alt%</span>
2018-03-04 04:14:53 +01:00
<button class="submit" :disabled="posting" @click="post">{{ reply ? '返信' : '%i18n:mobile.tags.mk-post-form.submit%' }}</button>
2018-02-14 05:26:08 +01:00
</div>
</header>
<div class="form">
2018-02-21 18:37:04 +01:00
<mk-post-preview v-if="reply" :post="reply"/>
2018-02-21 23:06:47 +01:00
<textarea v-model="text" ref="text" :disabled="posting" :placeholder="reply ? '%i18n:mobile.tags.mk-post-form.reply-placeholder%' : '%i18n:mobile.tags.mk-post-form.post-placeholder%'"></textarea>
2018-02-21 18:37:04 +01:00
<div class="attaches" v-show="files.length != 0">
2018-02-21 23:06:47 +01:00
<x-draggable class="files" :list="files" :options="{ animation: 150 }">
<div class="file" v-for="file in files" :key="file.id">
<div class="img" :style="`background-image: url(${file.url}?thumbnail&size=128)`" @click="detachMedia(file)"></div>
</div>
</x-draggable>
2018-02-14 05:26:08 +01:00
</div>
2018-03-04 04:14:44 +01:00
<mk-poll-editor v-if="poll" ref="poll" @destroyed="poll = false"/>
2018-02-21 23:06:47 +01:00
<mk-uploader ref="uploader" @uploaded="attachMedia" @change="onChangeUploadings"/>
<button class="upload" @click="chooseFile">%fa:upload%</button>
<button class="drive" @click="chooseFileFromDrive">%fa:cloud%</button>
2018-02-14 05:26:08 +01:00
<button class="kao" @click="kao">%fa:R smile%</button>
2018-02-21 23:06:47 +01:00
<button class="poll" @click="poll = true">%fa:chart-pie%</button>
2018-03-05 06:18:00 +01:00
<button class="geo" @click="geo ? removeGeo() : setGeo()">%fa:map-marker-alt%</button>
2018-02-21 23:06:47 +01:00
<input ref="file" class="file" type="file" accept="image/*" multiple="multiple" @change="onChangeFile"/>
2018-02-14 05:26:08 +01:00
</div>
2018-02-21 18:15:46 +01:00
</div>
2018-02-14 05:26:08 +01:00
</template>
<script lang="ts">
import Vue from 'vue';
2018-02-21 23:06:47 +01:00
import * as XDraggable from 'vuedraggable';
2018-02-21 18:37:04 +01:00
import getKao from '../../../common/scripts/get-kao';
2018-02-14 05:26:08 +01:00
export default Vue.extend({
2018-02-21 23:06:47 +01:00
components: {
XDraggable
},
2018-02-21 18:37:04 +01:00
props: ['reply'],
2018-02-14 05:26:08 +01:00
data() {
return {
posting: false,
text: '',
uploadings: [],
files: [],
2018-03-05 00:44:37 +01:00
poll: false,
geo: null
2018-02-14 05:26:08 +01:00
};
},
mounted() {
2018-02-21 23:06:47 +01:00
this.$nextTick(() => {
2018-02-22 21:43:19 +01:00
this.focus();
2018-02-14 05:26:08 +01:00
});
},
methods: {
2018-02-22 21:43:19 +01:00
focus() {
(this.$refs.text as any).focus();
},
2018-02-21 23:06:47 +01:00
chooseFile() {
(this.$refs.file as any).click();
},
chooseFileFromDrive() {
(this as any).apis.chooseDriveFile({
multiple: true
}).then(files => {
files.forEach(this.attachMedia);
});
},
2018-02-14 05:26:08 +01:00
attachMedia(driveFile) {
this.files.push(driveFile);
this.$emit('change-attached-media', this.files);
},
2018-02-21 23:06:47 +01:00
detachMedia(file) {
this.files = this.files.filter(x => x.id != file.id);
2018-02-14 05:26:08 +01:00
this.$emit('change-attached-media', this.files);
},
onChangeFile() {
Array.from((this.$refs.file as any).files).forEach(this.upload);
},
upload(file) {
(this.$refs.uploader as any).upload(file);
},
onChangeUploadings(uploads) {
this.$emit('change-uploadings', uploads);
},
2018-03-05 00:44:37 +01:00
setGeo() {
if (navigator.geolocation == null) {
alert('お使いの端末は位置情報に対応していません');
return;
}
navigator.geolocation.getCurrentPosition(pos => {
this.geo = pos.coords;
}, err => {
alert('エラー: ' + err.message);
}, {
enableHighAccuracy: true
});
},
2018-03-05 06:09:12 +01:00
removeGeo() {
this.geo = null;
},
2018-02-14 05:26:08 +01:00
clear() {
this.text = '';
this.files = [];
this.poll = false;
this.$emit('change-attached-media');
},
2018-02-21 23:06:47 +01:00
post() {
this.posting = true;
2018-03-28 09:39:14 +02:00
const viaMobile = (this as any).os.i.account.clientSettings.disableViaMobile !== true;
2018-02-21 23:06:47 +01:00
(this as any).api('posts/create', {
text: this.text == '' ? undefined : this.text,
2018-03-28 09:39:14 +02:00
mediaIds: this.files.length > 0 ? this.files.map(f => f.id) : undefined,
replyId: this.reply ? this.reply.id : undefined,
2018-03-04 01:39:25 +01:00
poll: this.poll ? (this.$refs.poll as any).get() : undefined,
2018-03-05 01:03:54 +01:00
geo: this.geo ? {
latitude: this.geo.latitude,
longitude: this.geo.longitude,
altitude: this.geo.altitude,
accuracy: this.geo.accuracy,
altitudeAccuracy: this.geo.altitudeAccuracy,
heading: isNaN(this.geo.heading) ? null : this.geo.heading,
speed: this.geo.speed,
} : null,
2018-03-28 09:39:14 +02:00
viaMobile: viaMobile
2018-02-21 23:06:47 +01:00
}).then(data => {
this.$emit('post');
this.$destroy();
}).catch(err => {
this.posting = false;
});
},
2018-02-14 05:26:08 +01:00
cancel() {
this.$emit('cancel');
this.$destroy();
2018-02-21 18:37:04 +01:00
},
kao() {
this.text += getKao();
2018-02-14 05:26:08 +01:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-03-03 05:47:55 +01:00
@import '~const.styl'
2018-02-14 05:26:08 +01:00
.mk-post-form
max-width 500px
width calc(100% - 16px)
margin 8px auto
background #fff
border-radius 8px
box-shadow 0 0 0 1px rgba(0, 0, 0, 0.2)
@media (min-width 500px)
margin 16px auto
width calc(100% - 32px)
> header
z-index 1
height 50px
box-shadow 0 1px 0 0 rgba(0, 0, 0, 0.1)
> .cancel
2018-03-04 04:14:53 +01:00
padding 0
2018-02-14 05:26:08 +01:00
width 50px
line-height 50px
font-size 24px
color #555
> div
position absolute
top 0
right 0
2018-03-05 06:09:12 +01:00
color #657786
2018-02-14 05:26:08 +01:00
> .text-count
line-height 50px
2018-03-05 06:09:12 +01:00
> .geo
margin 0 8px
line-height 50px
2018-02-14 05:26:08 +01:00
> .submit
margin 8px
padding 0 16px
line-height 34px
2018-03-04 04:14:53 +01:00
vertical-align bottom
2018-02-14 05:26:08 +01:00
color $theme-color-foreground
background $theme-color
border-radius 4px
&:disabled
opacity 0.7
> .form
max-width 500px
margin 0 auto
2018-02-16 19:01:00 +01:00
> .mk-post-preview
2018-02-14 05:26:08 +01:00
padding 16px
> .attaches
> .files
display block
margin 0
padding 4px
list-style none
&:after
content ""
display block
clear both
> .file
display block
float left
margin 0
padding 0
border solid 4px transparent
> .img
width 64px
height 64px
background-size cover
background-position center center
2018-02-16 19:01:00 +01:00
> .mk-uploader
2018-02-14 05:26:08 +01:00
margin 8px 0 0 0
padding 8px
2018-02-21 23:06:47 +01:00
> .file
2018-02-14 05:26:08 +01:00
display none
2018-02-21 23:06:47 +01:00
> textarea
2018-02-14 05:26:08 +01:00
display block
padding 12px
margin 0
width 100%
max-width 100%
min-width 100%
min-height 80px
font-size 16px
color #333
border none
border-bottom solid 1px #ddd
border-radius 0
&:disabled
opacity 0.5
2018-02-21 23:06:47 +01:00
> .upload
> .drive
2018-03-05 00:44:37 +01:00
> .kao
> .poll
> .geo
2018-02-14 05:26:08 +01:00
display inline-block
padding 0
margin 0
width 48px
height 48px
font-size 20px
color #657786
background transparent
outline none
border none
border-radius 0
box-shadow none
</style>