320 lines
7.9 KiB
Svelte
320 lines
7.9 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="typescript">
|
|
import ImageHandleFloat from "./ImageHandleFloat.svelte";
|
|
import ImageHandleSizeSelect from "./ImageHandleSizeSelect.svelte";
|
|
|
|
import { onDestroy, getContext } from "svelte";
|
|
import { nightModeKey } from "components/context-keys";
|
|
|
|
export let image: HTMLImageElement | null = null;
|
|
export let imageRule: CSSStyleRule | null = null;
|
|
export let isRtl: boolean = false;
|
|
|
|
export let container: HTMLElement;
|
|
|
|
$: showDimensions = image
|
|
? parseInt(getComputedStyle(image).getPropertyValue("width")) > 100
|
|
: false;
|
|
|
|
$: selector = `:not([src="${image?.getAttribute("src")}"])`;
|
|
$: active = imageRule?.selectorText.includes(selector) as boolean;
|
|
|
|
let naturalWidth = 0;
|
|
let naturalHeight = 0;
|
|
|
|
let actualWidth = "";
|
|
let actualHeight = "";
|
|
let customDimensions = false;
|
|
|
|
let containerTop = 0;
|
|
let containerLeft = 0;
|
|
|
|
let top = 0;
|
|
let left = 0;
|
|
let width = 0;
|
|
let height = 0;
|
|
|
|
$: if (image) {
|
|
updateSizes();
|
|
}
|
|
|
|
const observer = new ResizeObserver(() => {
|
|
if (image) {
|
|
updateSizes();
|
|
}
|
|
});
|
|
|
|
function startObserving() {
|
|
observer.observe(container);
|
|
}
|
|
|
|
function stopObserving() {
|
|
observer.unobserve(container);
|
|
}
|
|
|
|
startObserving();
|
|
|
|
function updateSizes() {
|
|
const imageRect = image!.getBoundingClientRect();
|
|
const containerRect = container.getBoundingClientRect();
|
|
|
|
naturalWidth = image!.naturalWidth;
|
|
naturalHeight = image!.naturalHeight;
|
|
|
|
containerTop = containerRect.top;
|
|
containerLeft = containerRect.left;
|
|
top = imageRect.top - containerTop;
|
|
left = imageRect.left - containerLeft;
|
|
width = image!.clientWidth;
|
|
height = image!.clientHeight;
|
|
|
|
const widthProperty = image!.style.width;
|
|
customDimensions = false;
|
|
|
|
if (widthProperty) {
|
|
actualWidth = widthProperty.endsWith("px")
|
|
? widthProperty.substring(0, widthProperty.length - 2)
|
|
: widthProperty;
|
|
customDimensions = true;
|
|
} else {
|
|
actualWidth = String(naturalWidth);
|
|
}
|
|
|
|
const heightProperty = image!.style.height;
|
|
if (heightProperty) {
|
|
actualHeight = heightProperty.endsWith("px")
|
|
? heightProperty.substring(0, heightProperty.length - 2)
|
|
: heightProperty;
|
|
customDimensions = true;
|
|
} else {
|
|
actualHeight = String(naturalHeight);
|
|
}
|
|
}
|
|
|
|
function setPointerCapture(event: PointerEvent): void {
|
|
if (event.pointerId !== 1) {
|
|
return;
|
|
}
|
|
|
|
stopObserving();
|
|
(event.target as Element).setPointerCapture(event.pointerId);
|
|
}
|
|
|
|
function resize(event: PointerEvent): void {
|
|
const element = event.target! as Element;
|
|
|
|
if (!element.hasPointerCapture(event.pointerId)) {
|
|
return;
|
|
}
|
|
|
|
const dragWidth = event.clientX - containerLeft - left;
|
|
const dragHeight = event.clientY - containerTop - top;
|
|
|
|
const widthIncrease = dragWidth / naturalWidth;
|
|
const heightIncrease = dragHeight / naturalHeight;
|
|
|
|
if (widthIncrease > heightIncrease) {
|
|
width = Math.trunc(dragWidth);
|
|
height = Math.trunc(naturalHeight * widthIncrease);
|
|
} else {
|
|
height = Math.trunc(dragHeight);
|
|
width = Math.trunc(naturalWidth * heightIncrease);
|
|
}
|
|
|
|
showDimensions = width > 100;
|
|
|
|
image!.style.width = `${width}px`;
|
|
image!.style.height = `${height}px`;
|
|
}
|
|
|
|
let sizeSelect: any;
|
|
|
|
function onDblclick() {
|
|
sizeSelect.toggleActualSize();
|
|
}
|
|
|
|
const nightMode = getContext(nightModeKey);
|
|
|
|
onDestroy(() => observer.disconnect());
|
|
</script>
|
|
|
|
{#if image && imageRule}
|
|
<div
|
|
style="--top: {top}px; --left: {left}px; --width: {width}px; --height: {height}px;"
|
|
class="image-handle-selection"
|
|
>
|
|
<div
|
|
class="image-handle-bg"
|
|
on:mousedown|preventDefault
|
|
on:dblclick={onDblclick}
|
|
/>
|
|
<div class="image-handle-float" class:is-rtl={isRtl}>
|
|
<ImageHandleFloat {isRtl} bind:float={image.style.float} />
|
|
</div>
|
|
<div class="image-handle-size-select" class:is-rtl={isRtl}>
|
|
<ImageHandleSizeSelect
|
|
bind:this={sizeSelect}
|
|
bind:active
|
|
{image}
|
|
{imageRule}
|
|
{selector}
|
|
{isRtl}
|
|
on:update={updateSizes}
|
|
/>
|
|
</div>
|
|
{#if showDimensions}
|
|
<div class="image-handle-dimensions" class:is-rtl={isRtl}>
|
|
<span>{actualWidth}×{actualHeight}</span>
|
|
{#if customDimensions}<span
|
|
>(Original: {naturalWidth}×{naturalHeight})</span
|
|
>{/if}
|
|
</div>
|
|
{/if}
|
|
<div
|
|
class:nightMode
|
|
class="image-handle-control image-handle-control-nw"
|
|
on:mousedown|preventDefault
|
|
/>
|
|
<div
|
|
class:nightMode
|
|
class="image-handle-control image-handle-control-ne"
|
|
on:mousedown|preventDefault
|
|
/>
|
|
<div
|
|
class:nightMode
|
|
class:active
|
|
class="image-handle-control image-handle-control-sw"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={setPointerCapture}
|
|
on:pointerup={startObserving}
|
|
on:pointermove={resize}
|
|
/>
|
|
<div
|
|
class:nightMode
|
|
class:active
|
|
class="image-handle-control image-handle-control-se"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={setPointerCapture}
|
|
on:pointerup={startObserving}
|
|
on:pointermove={resize}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
|
|
<style lang="scss">
|
|
div {
|
|
position: absolute;
|
|
}
|
|
|
|
.image-handle-selection {
|
|
top: var(--top);
|
|
left: var(--left);
|
|
width: var(--width);
|
|
height: var(--height);
|
|
}
|
|
|
|
.image-handle-bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: black;
|
|
opacity: 0.2;
|
|
}
|
|
|
|
.image-handle-float {
|
|
top: 3px;
|
|
left: 3px;
|
|
|
|
&.is-rtl {
|
|
left: auto;
|
|
right: 3px;
|
|
}
|
|
}
|
|
|
|
.image-handle-size-select {
|
|
top: 3px;
|
|
right: 3px;
|
|
|
|
&.is-rtl {
|
|
right: auto;
|
|
left: 3px;
|
|
}
|
|
}
|
|
|
|
.image-handle-dimensions {
|
|
pointer-events: none;
|
|
user-select: none;
|
|
|
|
font-size: 13px;
|
|
color: white;
|
|
background-color: rgba(0 0 0 / 0.3);
|
|
border-color: black;
|
|
border-radius: 0.25rem;
|
|
padding: 0 5px;
|
|
|
|
bottom: 3px;
|
|
right: 3px;
|
|
|
|
&.is-rtl {
|
|
right: auto;
|
|
left: 3px;
|
|
}
|
|
}
|
|
|
|
.image-handle-control {
|
|
width: 7px;
|
|
height: 7px;
|
|
border: 1px solid black;
|
|
|
|
&.active {
|
|
background-color: black;
|
|
}
|
|
|
|
&.nightMode {
|
|
border-color: white;
|
|
|
|
&.active {
|
|
background-color: white;
|
|
}
|
|
}
|
|
}
|
|
|
|
.image-handle-control-nw {
|
|
top: -5px;
|
|
left: -5px;
|
|
border-bottom: none;
|
|
border-right: none;
|
|
}
|
|
|
|
.image-handle-control-ne {
|
|
top: -5px;
|
|
right: -5px;
|
|
border-bottom: none;
|
|
border-left: none;
|
|
}
|
|
|
|
.image-handle-control-sw {
|
|
bottom: -5px;
|
|
left: -5px;
|
|
border-top: none;
|
|
border-right: none;
|
|
|
|
&.active {
|
|
cursor: sw-resize;
|
|
}
|
|
}
|
|
|
|
.image-handle-control-se {
|
|
bottom: -5px;
|
|
right: -5px;
|
|
border-top: none;
|
|
border-left: none;
|
|
|
|
&.active {
|
|
cursor: se-resize;
|
|
}
|
|
}
|
|
</style>
|