rudeshark.net/src/client/components/page/page.post.vue

113 lines
2.3 KiB
Vue
Raw Normal View History

<template>
<div class="ngbfujlo">
2020-01-30 23:01:45 +01:00
<mk-textarea :value="text" readonly style="margin: 0;"></mk-textarea>
<mk-button class="button" primary @click="post()" :disabled="posting || posted"><fa v-if="posted" :icon="faCheck"/><fa v-else :icon="faPaperPlane"/></mk-button>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import { faCheck, faPaperPlane } from '@fortawesome/free-solid-svg-icons';
import i18n from '../../i18n';
import MkTextarea from '../ui/textarea.vue';
import MkButton from '../ui/button.vue';
2020-04-19 02:05:20 +02:00
import { apiUrl } from '../../config';
export default Vue.extend({
i18n,
components: {
MkTextarea,
MkButton,
},
props: {
value: {
required: true
},
script: {
required: true
}
},
data() {
return {
text: this.script.interpolate(this.value.text),
posted: false,
posting: false,
faCheck, faPaperPlane
};
},
watch: {
'script.vars': {
handler() {
this.text = this.script.interpolate(this.value.text);
},
deep: true
}
},
methods: {
2020-04-19 02:05:20 +02:00
upload() {
return new Promise((ok) => {
const dialog = this.$root.dialog({
type: 'waiting',
text: this.$t('uploading') + '...',
showOkButton: false,
showCancelButton: false,
cancelableByBgClick: false
});
const canvas = this.script.aoiScript.canvases[this.value.canvasId];
canvas.toBlob(blob => {
const data = new FormData();
data.append('file', blob);
data.append('i', this.$store.state.i.token);
fetch(apiUrl + '/drive/files/create', {
method: 'POST',
body: data
})
.then(response => response.json())
.then(f => {
dialog.close();
ok(f);
})
});
});
},
async post() {
this.posting = true;
2020-04-19 02:05:20 +02:00
const file = this.value.attachCanvasImage ? await this.upload() : null;
this.$root.api('notes/create', {
text: this.text === '' ? null : this.text,
2020-04-19 02:05:20 +02:00
fileIds: file ? [file.id] : undefined,
}).then(() => {
this.posted = true;
this.$root.dialog({
type: 'success',
iconOnly: true, autoClose: true
});
});
}
}
});
</script>
<style lang="scss" scoped>
.ngbfujlo {
2020-04-19 02:05:20 +02:00
position: relative;
2020-01-30 23:01:45 +01:00
padding: 32px;
border-radius: 6px;
2020-01-30 23:01:45 +01:00
box-shadow: 0 2px 8px var(--shadow);
2020-04-19 02:05:20 +02:00
z-index: 1;
2020-01-30 23:01:45 +01:00
> .button {
margin-top: 32px;
}
@media (max-width: 600px) {
2020-01-30 23:01:45 +01:00
padding: 16px;
2020-01-30 23:01:45 +01:00
> .button {
margin-top: 16px;
}
}
}
</style>