2022-06-11 08:45:44 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<XModalWindow
|
|
|
|
ref="dialogEl"
|
|
|
|
:width="800"
|
|
|
|
:height="500"
|
|
|
|
:scroll="false"
|
|
|
|
:with-ok-button="true"
|
|
|
|
@close="cancel()"
|
|
|
|
@ok="ok()"
|
|
|
|
@closed="$emit('closed')"
|
|
|
|
>
|
|
|
|
<template #header>{{ i18n.ts.cropImage }}</template>
|
|
|
|
<template #default="{ width, height }">
|
|
|
|
<div
|
|
|
|
class="mk-cropper-dialog"
|
|
|
|
:style="`--vw: ${width}px; --vh: ${height}px;`"
|
|
|
|
>
|
|
|
|
<Transition name="fade">
|
|
|
|
<div v-if="loading" class="loading">
|
|
|
|
<MkLoading />
|
|
|
|
</div>
|
|
|
|
</Transition>
|
|
|
|
<div class="container">
|
|
|
|
<img
|
|
|
|
ref="imgEl"
|
|
|
|
:src="imgUrl"
|
|
|
|
style="display: none"
|
|
|
|
@load="onImageLoad"
|
|
|
|
/>
|
2022-06-11 08:45:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</template>
|
|
|
|
</XModalWindow>
|
2022-06-11 08:45:44 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { nextTick, onMounted } from "vue";
|
|
|
|
import * as misskey from "calckey-js";
|
|
|
|
import Cropper from "cropperjs";
|
|
|
|
import tinycolor from "tinycolor2";
|
|
|
|
import XModalWindow from "@/components/MkModalWindow.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { $i } from "@/account";
|
|
|
|
import { defaultStore } from "@/store";
|
|
|
|
import { apiUrl, url } from "@/config";
|
|
|
|
import { query } from "@/scripts/url";
|
|
|
|
import { i18n } from "@/i18n";
|
2022-06-11 08:45:44 +02:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
(ev: "ok", cropped: misskey.entities.DriveFile): void;
|
|
|
|
(ev: "cancel"): void;
|
|
|
|
(ev: "closed"): void;
|
2022-06-11 08:45:44 +02:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
file: misskey.entities.DriveFile;
|
|
|
|
aspectRatio: number;
|
|
|
|
}>();
|
|
|
|
|
2022-06-11 11:47:58 +02:00
|
|
|
const imgUrl = `${url}/proxy/image.webp?${query({
|
2022-06-11 11:48:59 +02:00
|
|
|
url: props.file.url,
|
2022-06-11 11:47:58 +02:00
|
|
|
})}`;
|
2022-06-11 08:45:44 +02:00
|
|
|
let dialogEl = $ref<InstanceType<typeof XModalWindow>>();
|
|
|
|
let imgEl = $ref<HTMLImageElement>();
|
|
|
|
let cropper: Cropper | null = null;
|
|
|
|
let loading = $ref(true);
|
|
|
|
|
|
|
|
const ok = async () => {
|
|
|
|
const promise = new Promise<misskey.entities.DriveFile>(async (res) => {
|
|
|
|
const croppedCanvas = await cropper?.getCropperSelection()?.$toCanvas();
|
2023-04-08 02:01:42 +02:00
|
|
|
croppedCanvas.toBlob((blob) => {
|
2022-06-11 08:45:44 +02:00
|
|
|
const formData = new FormData();
|
2023-04-08 02:01:42 +02:00
|
|
|
formData.append("file", blob);
|
2022-06-11 08:45:44 +02:00
|
|
|
if (defaultStore.state.uploadFolder) {
|
2023-04-08 02:01:42 +02:00
|
|
|
formData.append("folderId", defaultStore.state.uploadFolder);
|
2022-06-11 08:45:44 +02:00
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
fetch(apiUrl + "/drive/files/create", {
|
|
|
|
method: "POST",
|
2022-06-11 08:45:44 +02:00
|
|
|
body: formData,
|
2022-07-19 00:49:40 +02:00
|
|
|
headers: {
|
|
|
|
authorization: `Bearer ${$i.token}`,
|
|
|
|
},
|
2022-06-11 08:45:44 +02:00
|
|
|
})
|
2023-04-08 02:01:42 +02:00
|
|
|
.then((response) => response.json())
|
|
|
|
.then((f) => {
|
|
|
|
res(f);
|
|
|
|
});
|
2022-06-11 08:45:44 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
os.promiseDialog(promise);
|
|
|
|
|
|
|
|
const f = await promise;
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("ok", f);
|
2022-06-11 08:45:44 +02:00
|
|
|
dialogEl.close();
|
|
|
|
};
|
|
|
|
|
|
|
|
const cancel = () => {
|
2023-04-08 02:01:42 +02:00
|
|
|
emit("cancel");
|
2022-06-11 08:45:44 +02:00
|
|
|
dialogEl.close();
|
|
|
|
};
|
|
|
|
|
|
|
|
const onImageLoad = () => {
|
|
|
|
loading = false;
|
|
|
|
|
|
|
|
if (cropper) {
|
2023-04-08 02:01:42 +02:00
|
|
|
cropper.getCropperImage()!.$center("contain");
|
2022-06-11 08:45:44 +02:00
|
|
|
cropper.getCropperSelection()!.$center();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
cropper = new Cropper(imgEl, {});
|
2022-06-11 08:45:44 +02:00
|
|
|
|
|
|
|
const computedStyle = getComputedStyle(document.documentElement);
|
|
|
|
|
|
|
|
const selection = cropper.getCropperSelection()!;
|
2023-04-08 02:01:42 +02:00
|
|
|
selection.themeColor = tinycolor(
|
|
|
|
computedStyle.getPropertyValue("--accent")
|
|
|
|
).toHexString();
|
2022-06-11 08:45:44 +02:00
|
|
|
selection.aspectRatio = props.aspectRatio;
|
|
|
|
selection.initialAspectRatio = props.aspectRatio;
|
|
|
|
selection.outlined = true;
|
|
|
|
|
|
|
|
window.setTimeout(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
cropper.getCropperImage()!.$center("contain");
|
2022-06-11 08:45:44 +02:00
|
|
|
selection.$center();
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
// モーダルオープンアニメーションが終わったあとで再度調整
|
|
|
|
window.setTimeout(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
cropper.getCropperImage()!.$center("contain");
|
2022-06-11 08:45:44 +02:00
|
|
|
selection.$center();
|
|
|
|
}, 500);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.5s ease 0.5s;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mk-cropper-dialog {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: var(--vw);
|
|
|
|
height: var(--vh);
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .loading {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(10px));
|
|
|
|
backdrop-filter: var(--blur, blur(10px));
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .container {
|
|
|
|
flex: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> ::v-deep(cropper-canvas) {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> cropper-selection > cropper-handle[action="move"] {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|