calckey/packages/client/src/pages/messaging/messaging-room.form.vue

407 lines
8.2 KiB
Vue
Raw Normal View History

2018-02-13 06:56:11 +00:00
<template>
2023-04-08 00:01:42 +00:00
<div
class="pemppnzi _block"
@dragover.stop="onDragover"
@drop.stop="onDrop"
>
<textarea
ref="textEl"
v-model="text"
:placeholder="i18n.ts.inputMessageHere"
@keydown="onKeydown"
@compositionupdate="onCompositionUpdate"
@paste="onPaste"
></textarea>
<footer>
<div v-if="file" class="file" @click="file = null">
{{ file.name }}
</div>
<div class="buttons">
<button class="_button" @click="chooseFile">
<i class="ph-upload ph-bold ph-lg"></i>
</button>
<button class="_button" @click="insertEmoji">
<i class="ph-smiley ph-bold ph-lg"></i>
</button>
<button
class="send _button"
:disabled="!canSend || sending"
:title="i18n.ts.send"
@click="send"
>
<template v-if="!sending"
><i
class="ph-paper-plane-tilt ph-bold ph-lg"
></i></template
><template v-if="sending"
><i
class="ph-circle-notch ph-bold ph-lg fa-pulse ph-fw ph-lg"
></i
></template>
</button>
</div>
</footer>
<input ref="fileEl" type="file" @change="onChangeFile" />
</div>
2018-02-13 06:56:11 +00:00
</template>
<script lang="ts" setup>
2023-04-08 00:01:42 +00:00
import { onMounted, watch } from "vue";
import * as Misskey from "calckey-js";
import autosize from "autosize";
//import insertTextAtCursor from 'insert-text-at-cursor';
2023-04-08 00:01:42 +00:00
import { throttle } from "throttle-debounce";
import { Autocomplete } from "@/scripts/autocomplete";
import { formatTimeString } from "@/scripts/format-time-string";
import { selectFile } from "@/scripts/select-file";
import * as os from "@/os";
import { stream } from "@/stream";
import { defaultStore } from "@/store";
import { i18n } from "@/i18n";
import { uploadFile } from "@/scripts/upload";
2018-02-24 17:57:19 +00:00
const props = defineProps<{
user?: Misskey.entities.UserDetailed | null;
group?: Misskey.entities.UserGroup | null;
}>();
let textEl = $ref<HTMLTextAreaElement>();
let fileEl = $ref<HTMLInputElement>();
2023-04-08 00:01:42 +00:00
let text = $ref<string>("");
let file = $ref<Misskey.entities.DriveFile | null>(null);
let sending = $ref(false);
const typing = throttle(3000, () => {
2023-04-08 00:01:42 +00:00
stream.send(
"typingOnMessaging",
props.user ? { partner: props.user.id } : { group: props.group?.id }
);
});
2023-04-08 00:01:42 +00:00
let draftKey = $computed(() =>
props.user ? "user:" + props.user.id : "group:" + props.group?.id
);
let canSend = $computed(
() => (text != null && text.trim() !== "") || file != null
);
watch([$$(text), $$(file)], saveDraft);
async function onPaste(ev: ClipboardEvent) {
if (!ev.clipboardData) return;
const clipboardData = ev.clipboardData;
const items = clipboardData.items;
if (items.length === 1) {
2023-04-08 00:01:42 +00:00
if (items[0].kind === "file") {
const pastedFile = items[0].getAsFile();
if (!pastedFile) return;
2023-04-08 00:01:42 +00:00
const lio = pastedFile.name.lastIndexOf(".");
const ext = lio >= 0 ? pastedFile.name.slice(lio) : "";
const formatted =
formatTimeString(
new Date(pastedFile.lastModified),
defaultStore.state.pastedFileName
).replace(/{{number}}/g, "1") + ext;
if (formatted) upload(pastedFile, formatted);
2018-02-25 13:56:23 +00:00
}
} else {
2023-04-08 00:01:42 +00:00
if (items[0].kind === "file") {
os.alert({
2023-04-08 00:01:42 +00:00
type: "error",
text: i18n.ts.onlyOneFileCanBeAttached,
});
2018-02-25 13:56:23 +00:00
}
}
}
2018-02-26 19:36:16 +00:00
function onDragover(ev: DragEvent) {
if (!ev.dataTransfer) return;
2018-02-26 19:36:16 +00:00
2023-04-08 00:01:42 +00:00
const isFile = ev.dataTransfer.items[0].kind === "file";
const isDriveFile = ev.dataTransfer.types[0] === _DATA_TRANSFER_DRIVE_FILE_;
if (isFile || isDriveFile) {
ev.preventDefault();
2023-04-08 00:01:42 +00:00
ev.dataTransfer.dropEffect =
ev.dataTransfer.effectAllowed === "all" ? "copy" : "move";
}
}
2018-02-26 19:36:16 +00:00
function onDrop(ev: DragEvent): void {
if (!ev.dataTransfer) return;
// ファイルだったら
if (ev.dataTransfer.files.length === 1) {
ev.preventDefault();
upload(ev.dataTransfer.files[0]);
return;
} else if (ev.dataTransfer.files.length > 1) {
ev.preventDefault();
os.alert({
2023-04-08 00:01:42 +00:00
type: "error",
text: i18n.ts.onlyOneFileCanBeAttached,
});
return;
}
2018-02-13 06:56:11 +00:00
//#region ドライブのファイル
const driveFile = ev.dataTransfer.getData(_DATA_TRANSFER_DRIVE_FILE_);
2023-04-08 00:01:42 +00:00
if (driveFile != null && driveFile !== "") {
file = JSON.parse(driveFile);
ev.preventDefault();
}
//#endregion
}
2018-02-13 06:56:11 +00:00
function onKeydown(ev: KeyboardEvent) {
typing();
2023-04-08 00:01:42 +00:00
let sendOnEnter =
localStorage.getItem("enterSendsMessage") === "true" ||
defaultStore.state.enterSendsMessage;
2022-07-08 22:45:19 +00:00
if (sendOnEnter) {
2023-04-08 00:01:42 +00:00
if (ev.key === "Enter" && (ev.ctrlKey || ev.metaKey)) {
textEl.value += "\n";
} else if (
ev.key === "Enter" &&
!ev.shiftKey &&
!("ontouchstart" in document.documentElement) &&
canSend
) {
2022-07-08 22:45:19 +00:00
ev.preventDefault();
send();
}
2023-04-08 00:01:42 +00:00
} else {
if (ev.key === "Enter" && (ev.ctrlKey || ev.metaKey) && canSend) {
2022-07-08 22:45:19 +00:00
ev.preventDefault();
send();
}
}
}
function onCompositionUpdate() {
typing();
}
2018-02-13 06:56:11 +00:00
function chooseFile(ev: MouseEvent) {
2023-04-08 00:01:42 +00:00
selectFile(ev.currentTarget ?? ev.target, i18n.ts.selectFile).then(
(selectedFile) => {
file = selectedFile;
}
);
}
2018-02-26 17:10:52 +00:00
function onChangeFile() {
if (fileEl.files![0]) upload(fileEl.files[0]);
}
2018-02-18 14:51:41 +00:00
function upload(fileToUpload: File, name?: string) {
2023-04-08 00:01:42 +00:00
uploadFile(fileToUpload, defaultStore.state.uploadFolder, name).then(
(res) => {
file = res;
}
);
}
2018-02-13 06:56:11 +00:00
function send() {
sending = true;
2023-04-08 00:01:42 +00:00
os.api("messaging/messages/create", {
userId: props.user ? props.user.id : undefined,
groupId: props.group ? props.group.id : undefined,
text: text ? text : undefined,
fileId: file ? file.id : undefined,
2023-04-08 00:01:42 +00:00
})
.then((message) => {
clear();
})
.catch((err) => {
console.error(err);
})
.then(() => {
sending = false;
});
}
2018-02-25 13:56:23 +00:00
function clear() {
2023-04-08 00:01:42 +00:00
text = "";
file = null;
deleteDraft();
}
2018-02-25 13:56:23 +00:00
function saveDraft() {
2023-04-08 00:01:42 +00:00
const drafts = JSON.parse(localStorage.getItem("message_drafts") || "{}");
2018-02-25 13:56:23 +00:00
drafts[draftKey] = {
updatedAt: new Date(),
data: {
text: text,
file: file,
2018-02-25 13:56:23 +00:00
},
};
2018-02-25 13:56:23 +00:00
2023-04-08 00:01:42 +00:00
localStorage.setItem("message_drafts", JSON.stringify(drafts));
}
2018-02-25 13:56:23 +00:00
function deleteDraft() {
2023-04-08 00:01:42 +00:00
const drafts = JSON.parse(localStorage.getItem("message_drafts") || "{}");
2018-02-25 13:56:23 +00:00
delete drafts[draftKey];
2020-02-06 10:22:15 +00:00
2023-04-08 00:01:42 +00:00
localStorage.setItem("message_drafts", JSON.stringify(drafts));
}
async function insertEmoji(ev: MouseEvent) {
os.openEmojiPicker(ev.currentTarget ?? ev.target, {}, textEl);
}
onMounted(() => {
autosize(textEl);
// TODO: detach when unmount
2022-07-07 01:09:26 +00:00
new Autocomplete(textEl, $$(text));
// 書きかけの投稿を復元
2023-04-08 00:01:42 +00:00
const draft = JSON.parse(localStorage.getItem("message_drafts") || "{}")[
draftKey
];
if (draft) {
text = draft.data.text;
file = draft.data.file;
2018-02-13 06:56:11 +00:00
}
});
defineExpose({
file,
upload,
});
2018-02-13 06:56:11 +00:00
</script>
<style lang="scss" scoped>
.pemppnzi {
2022-09-14 03:07:19 +00:00
position: relative;
2022-11-09 23:57:42 +00:00
margin-top: 1rem;
> textarea {
cursor: auto;
display: block;
2022-09-14 03:07:19 +00:00
width: 100%;
min-width: 100%;
max-width: 100%;
min-height: 80px;
margin: 0;
padding: 16px 16px 0 16px;
resize: none;
font-size: 1em;
font-family: inherit;
outline: none;
border: none;
border-radius: 0;
box-shadow: none;
background: transparent;
box-sizing: border-box;
color: var(--fg);
}
footer {
position: sticky;
bottom: 0;
background: var(--panel);
> .file {
padding: 8px;
color: var(--fg);
background: transparent;
cursor: pointer;
}
}
.files {
display: block;
margin: 0;
padding: 0 8px;
list-style: none;
&:after {
2023-04-08 00:01:42 +00:00
content: "";
display: block;
clear: both;
}
> li {
display: block;
float: left;
margin: 4px;
padding: 0;
width: 64px;
height: 64px;
background-color: #eee;
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
cursor: move;
&:hover {
> .remove {
display: block;
}
}
> .remove {
display: none;
position: absolute;
right: -6px;
top: -6px;
margin: 0;
padding: 0;
background: transparent;
outline: none;
border: none;
border-radius: 0;
box-shadow: none;
cursor: pointer;
}
}
}
.buttons {
display: flex;
._button {
margin: 0;
padding: 16px;
font-size: 1em;
font-weight: normal;
text-decoration: none;
transition: color 0.1s ease;
&:hover {
color: var(--accent);
}
&:active {
color: var(--accentDarken);
transition: color 0s ease;
}
}
> .send {
margin-left: auto;
color: var(--accent);
&:hover {
color: var(--accentLighten);
}
&:active {
color: var(--accentDarken);
transition: color 0s ease;
}
}
}
2023-04-08 00:01:42 +00:00
input[type="file"] {
display: none;
}
}
2018-02-13 06:56:11 +00:00
</style>