| | <script lang="ts" context="module"> |
| | import type { Tool, Subtool } from "./Toolbar.svelte"; |
| | |
| | export const EDITOR_KEY = Symbol("editor"); |
| | export type context_type = "bg" | "layers" | "crop" | "draw" | "erase"; |
| | </script> |
| |
|
| | <script lang="ts"> |
| | import { onMount, createEventDispatcher, tick } from "svelte"; |
| | import { get } from "svelte/store"; |
| | import Toolbar, { type Tool as ToolbarTool } from "./Toolbar.svelte"; |
| | import { CropTool } from "./crop/crop"; |
| | import { ResizeTool } from "./resize/resize"; |
| | import { Webcam } from "@gradio/image"; |
| | import type { I18nFormatter } from "@gradio/utils"; |
| | import type { Client, FileData } from "@gradio/client"; |
| | import tinycolor, { type ColorInput } from "tinycolor2"; |
| | import { ZoomTool } from "./zoom/zoom"; |
| | import { type CommandManager, type CommandNode } from "./core/commands"; |
| | import { ImageEditor } from "./core/editor"; |
| | import { type Brush, type Eraser } from "./brush/types"; |
| | import { BrushTool } from "./brush/brush"; |
| | import { create_drag } from "@gradio/upload"; |
| | import SecondaryToolbar from "./SecondaryToolbar.svelte"; |
| | import { Check } from "@gradio/icons"; |
| | import type { LayerOptions, Source, Transform, WebcamOptions } from "./types"; |
| | |
| | import { type ImageBlobs } from "./types"; |
| | import Controls from "./Controls.svelte"; |
| | import IconButton from "./IconButton.svelte"; |
| | |
| | const { drag, open_file_upload } = create_drag(); |
| | const dispatch = createEventDispatcher<{ |
| | clear?: never; |
| | save: void; |
| | change: void; |
| | upload: void; |
| | input: void; |
| | download_error: string; |
| | }>(); |
| | |
| | export const antialias = true; |
| | |
| | export let changeable = false; |
| | export let sources: Source[] = ["upload", "webcam", "clipboard"]; |
| | export let transforms: Transform[] = ["crop", "resize"]; |
| | export let canvas_size: [number, number]; |
| | export let is_dragging = false; |
| | export let background_image = false; |
| | export let brush_options: Brush; |
| | export let eraser_options: Eraser; |
| | export let fixed_canvas = false; |
| | export let root: string; |
| | export let i18n: I18nFormatter; |
| | export let upload: Client["upload"]; |
| | export let composite: FileData | null; |
| | export let layers: FileData[]; |
| | export let background: FileData | null; |
| | export let border_region = 0; |
| | export let layer_options: LayerOptions; |
| | export let current_tool: ToolbarTool; |
| | export let webcam_options: WebcamOptions; |
| | export let show_download_button = false; |
| | export let theme_mode: "dark" | "light"; |
| | export let full_history: CommandNode | null = null; |
| | |
| | let pixi_target: HTMLDivElement; |
| | let pixi_target_crop: HTMLDivElement; |
| | |
| | $: if (layer_options) { |
| | if (check_if_should_init()) { |
| | editor.set_layer_options(layer_options); |
| | refresh_tools(); |
| | } |
| | } |
| | |
| | function refresh_tools(): void { |
| | if (!editor || !ready) return; |
| | editor.set_tool(current_tool); |
| | editor.set_subtool(current_subtool); |
| | } |
| | |
| | $: if (editor && ready && editor.layers) { |
| | const current_layers = get(editor.layers); |
| | |
| | if (current_layers.layers.length > 0 && !current_layers.active_layer) { |
| | refresh_tools_for_layer_changes(current_layers); |
| | } |
| | } |
| | |
| | |
| | |
| | |
| | function refresh_tools_for_layer_changes(current_layers: any): void { |
| | if (!editor || !ready) return; |
| | |
| | if (current_layers.layers.length > 0 && !current_layers.active_layer) { |
| | editor.set_layer(current_layers.layers[0].id); |
| | } |
| | |
| | |
| | if (current_tool) { |
| | editor.set_tool(current_tool); |
| | if (current_subtool) { |
| | editor.set_subtool(current_subtool); |
| | } |
| | } |
| | |
| | if (brush && (current_tool === "draw" || current_tool === "erase")) { |
| | brush.set_tool(current_tool, current_subtool); |
| | } |
| | } |
| | |
| | function check_if_should_init(): boolean { |
| | return layer_options && editor && ready; |
| | } |
| | |
| | export let has_drawn = false; |
| | |
| | |
| | |
| | {Promise<ImageBlobs>} Object containing background, layers, and composite image blobs |
| | */ |
| | export async function get_blobs(): Promise<ImageBlobs> { |
| | if (!editor) return { background: null, layers: [], composite: null }; |
| | if (!background_image && !has_drawn && !layers.length) |
| | return { background: null, layers: [], composite: null }; |
| | const blobs = await editor.get_blobs(); |
| | return blobs; |
| | } |
| | |
| | let editor: ImageEditor; |
| | |
| | |
| | |
| | {Blob | File} image - The image to add |
| | */ |
| | export function add_image(image: Blob | File): void { |
| | editor.add_image({ image }); |
| | } |
| | |
| | let pending_bg: Promise<void>; |
| | |
| | |
| | {string | FileData} source - The URL of the image or a FileData object |
| | * @returns {Promise<void>} |
| | */ |
| | export async function add_image_from_url( |
| | source: |
| | | string |
| | | { |
| | url: string; |
| | meta: { |
| | _type: string; |
| | }; |
| | } |
| | | any |
| | ): Promise<void> { |
| | if (!editor || !source || !check_if_should_init()) return; |
| | let url: string; |
| | |
| | if (typeof source === "string") { |
| | url = source; |
| | } else if (source?.meta?._type === "gradio.FileData" && source?.url) { |
| | url = source.url; |
| | } else { |
| | console.warn("Invalid source provided to add_image_from_url:", source); |
| | return; |
| | } |
| | |
| | try { |
| | pending_bg = editor.add_image_from_url(url); |
| | let pending_crop = crop.add_image_from_url(url); |
| | await Promise.all([pending_bg, pending_crop]); |
| | crop.set_tool("image"); |
| | crop.set_subtool("crop"); |
| | background_image = true; |
| | zoom.set_zoom("fit"); |
| | dispatch("upload"); |
| | dispatch("input"); |
| | } catch (error) { |
| | console.error("Error adding image from URL:", error); |
| | } |
| | } |
| | |
| | |
| | |
| | {string | FileData} source - The URL of the image or a FileData object |
| | * @returns {Promise<string | null>} - The ID of the created layer, or null if failed |
| | */ |
| | export async function add_layers_from_url( |
| | source: FileData[] | any |
| | ): Promise<void> { |
| | if (!editor || !source.length || !check_if_should_init()) return; |
| | |
| | if ( |
| | Array.isArray(source) && |
| | source.every((item) => item?.meta?._type === "gradio.FileData") |
| | ) { |
| | try { |
| | await pending_bg; |
| | await editor.add_layers_from_url(source.map((item) => item.url)); |
| | dispatch("change"); |
| | dispatch("input"); |
| | } catch (error) { |
| | console.error("Error adding layer from URL:", error); |
| | } |
| | } |
| | } |
| | |
| | let brush: BrushTool; |
| | let zoom: ZoomTool; |
| | let zoom_level = 1; |
| | let ready = false; |
| | let mounted = false; |
| | let min_zoom = true; |
| | |
| | let last_dimensions = { width: 0, height: 0 }; |
| | |
| | |
| | |
| | |
| | async function handle_visibility_change(): Promise<void> { |
| | if (!editor || !ready || !zoom) return; |
| | await tick(); |
| | |
| | const is_visible = pixi_target.offsetParent !== null; |
| | |
| | if (is_visible) { |
| | const current_dimensions = pixi_target.getBoundingClientRect(); |
| | |
| | if ( |
| | current_dimensions.width !== last_dimensions.width || |
| | current_dimensions.height !== last_dimensions.height |
| | ) { |
| | zoom.set_zoom("fit"); |
| | |
| | last_dimensions = { |
| | width: current_dimensions.width, |
| | height: current_dimensions.height |
| | }; |
| | } |
| | } |
| | } |
| | |
| | onMount(() => { |
| | let intersection_observer: IntersectionObserver; |
| | let resize_observer: ResizeObserver; |
| | |
| | init_image_editor().then(() => { |
| | mounted = true; |
| | intersection_observer = new IntersectionObserver(() => { |
| | handle_visibility_change(); |
| | }); |
| | |
| | resize_observer = new ResizeObserver(() => { |
| | handle_visibility_change(); |
| | }); |
| | |
| | intersection_observer.observe(pixi_target); |
| | resize_observer.observe(pixi_target); |
| | |
| | setTimeout(() => { |
| | if (full_history && editor) { |
| | editor.command_manager |
| | .replay(full_history, editor.context) |
| | .then(() => { |
| | refresh_tools_after_history(); |
| | }); |
| | } |
| | }, 0); |
| | }); |
| | |
| | if (typeof window !== "undefined") { |
| | (window as any).editor = editor; |
| | } |
| | |
| | return () => { |
| | if (intersection_observer) { |
| | intersection_observer.disconnect(); |
| | } |
| | if (resize_observer) { |
| | resize_observer.disconnect(); |
| | } |
| | if (editor) { |
| | editor.destroy(); |
| | } |
| | }; |
| | }); |
| | |
| | |
| | |
| | |
| | function refresh_tools_after_history(): void { |
| | if (!editor || !ready) return; |
| | |
| | const current_layers = get(editor.layers); |
| | |
| | if (current_layers.layers.length > 0 && !current_layers.active_layer) { |
| | editor.set_layer(current_layers.layers[0].id); |
| | } |
| | |
| | if (current_tool) { |
| | editor.set_tool(current_tool); |
| | if (current_subtool) { |
| | editor.set_subtool(current_subtool); |
| | } |
| | } |
| | |
| | if (brush && (current_tool === "draw" || current_tool === "erase")) { |
| | brush.set_tool(current_tool, current_subtool); |
| | } |
| | |
| | full_history = editor.command_manager.history; |
| | } |
| | |
| | let crop: ImageEditor; |
| | let crop_zoom: ZoomTool; |
| | export let can_undo = false; |
| | let can_redo = false; |
| | async function init_image_editor(): Promise<void> { |
| | brush = new BrushTool(); |
| | zoom = new ZoomTool(); |
| | editor = new ImageEditor({ |
| | target_element: pixi_target, |
| | width: canvas_size[0], |
| | height: canvas_size[1], |
| | tools: ["image", zoom, new ResizeTool(), brush], |
| | fixed_canvas, |
| | border_region, |
| | layer_options, |
| | theme_mode |
| | }); |
| | |
| | brush.on("change", () => { |
| | has_drawn = true; |
| | }); |
| | |
| | crop_zoom = new ZoomTool(); |
| | |
| | crop = new ImageEditor({ |
| | target_element: pixi_target_crop, |
| | width: canvas_size[0], |
| | height: canvas_size[1], |
| | tools: ["image", crop_zoom, new CropTool()], |
| | dark: true, |
| | fixed_canvas: false, |
| | border_region: 0, |
| | pad_bottom: 40 |
| | }); |
| | |
| | editor.scale.subscribe((_scale) => { |
| | zoom_level = _scale; |
| | }); |
| | |
| | editor.min_zoom.subscribe((is_min_zoom) => { |
| | min_zoom = is_min_zoom; |
| | }); |
| | |
| | editor.dimensions.subscribe((dimensions) => { |
| | last_dimensions = { ...dimensions }; |
| | }); |
| | |
| | editor.command_manager.current_history.subscribe((history) => { |
| | can_undo = history.previous !== null; |
| | can_redo = history.next !== null; |
| | }); |
| | |
| | await Promise.all([editor.ready, crop.ready]).then(() => { |
| | handle_tool_change({ tool: "image" }); |
| | ready = true; |
| | if (sources.length > 0) { |
| | handle_tool_change({ tool: "image" }); |
| | } else { |
| | handle_tool_change({ tool: "draw" }); |
| | } |
| | crop.set_subtool("crop"); |
| | }); |
| | |
| | editor.on("change", () => { |
| | dispatch("change"); |
| | dispatch("input"); |
| | full_history = editor.command_manager.history; |
| | }); |
| | |
| | if (background || layers.length > 0) { |
| | if (background) { |
| | await add_image_from_url(background); |
| | } |
| | if (layers.length > 0) { |
| | await add_layers_from_url(layers); |
| | } |
| | handle_tool_change({ tool: "draw" }); |
| | } else if (composite) { |
| | await add_image_from_url(composite); |
| | handle_tool_change({ tool: "draw" }); |
| | } |
| | |
| | refresh_tools(); |
| | } |
| | |
| | $: if ( |
| | background == null && |
| | layers.length == 0 && |
| | composite == null && |
| | editor && |
| | ready |
| | ) { |
| | editor.reset_canvas(); |
| | zoom.set_zoom("fit"); |
| | handle_tool_change({ tool: "image" }); |
| | background_image = false; |
| | has_drawn = false; |
| | } |
| | |
| | $: current_tool === "image" && |
| | current_subtool === "crop" && |
| | crop_zoom.set_zoom("fit"); |
| | |
| | |
| | |
| | {File[]} files - The uploaded files |
| | */ |
| | async function handle_files( |
| | files: File[] | Blob[] | File | Blob | null |
| | ): Promise<void> { |
| | if (files == null) return; |
| | if (!sources.includes("upload")) return; |
| | editor.reset_canvas(); |
| | const _file = Array.isArray(files) ? files[0] : files; |
| | await editor.add_image({ image: _file }); |
| | await crop.add_image({ image: _file }); |
| | crop.reset(); |
| | |
| | background_image = true; |
| | zoom.set_zoom("fit"); |
| | handle_tool_change({ tool: "draw" }); |
| | dispatch("upload"); |
| | } |
| | |
| | $: background_image = can_undo && editor.command_manager.contains("AddImage"); |
| | |
| | |
| | |
| | {{ tool: ToolbarTool }} param0 - Object containing the selected tool |
| | */ |
| | function handle_tool_change({ tool }: { tool: ToolbarTool }): void { |
| | editor.set_tool(tool); |
| | current_tool = tool; |
| | |
| | if (tool === "image") { |
| | crop.set_tool("image"); |
| | crop.set_subtool("crop"); |
| | } |
| | } |
| | |
| | |
| | |
| | {{ tool: ToolbarTool, subtool: Subtool }} param0 - Object containing the selected tool and subtool |
| | */ |
| | function handle_subtool_change({ |
| | tool, |
| | subtool |
| | }: { |
| | tool: ToolbarTool; |
| | subtool: Subtool | null; |
| | }): void { |
| | editor.set_subtool(subtool); |
| | current_subtool = subtool; |
| | |
| | if (subtool === null) { |
| | return; |
| | } |
| | |
| | if (tool === "draw") { |
| | if (subtool === "size") { |
| | brush_size_visible = true; |
| | } else if (subtool === "color") { |
| | brush_color_visible = true; |
| | } |
| | } |
| | |
| | if (tool === "erase" && subtool === "size") { |
| | eraser_size_visible = true; |
| | } |
| | |
| | if (tool === "image" && subtool === "paste") { |
| | process_clipboard(); |
| | } |
| | |
| | if (tool === "image" && subtool === "upload") { |
| | tick().then(() => { |
| | disable_click = false; |
| | open_file_upload(); |
| | }); |
| | } |
| | } |
| | |
| | let eraser_size_visible = false; |
| | let selected_color: ColorInput | string; |
| | let selected_size: number; |
| | let selected_opacity = 1; |
| | let selected_eraser_size: number; |
| | |
| | $: { |
| | if (brush_options) { |
| | update_brush_options(); |
| | } |
| | |
| | if (eraser_options) { |
| | update_eraser_options(); |
| | } |
| | } |
| | |
| | function update_brush_options(): void { |
| | const default_color = |
| | brush_options.default_color === "auto" |
| | ? brush_options.colors[0] |
| | : brush_options.default_color; |
| | |
| | // color is already a tuple [color, opacity] |
| | if (Array.isArray(default_color)) { |
| | selected_color = default_color[0]; |
| | selected_opacity = default_color[1]; |
| | } else { |
| | selected_color = default_color; |
| | |
| | // color is a string, check if it has opacity info |
| | const color = tinycolor(default_color); |
| | if (color.getAlpha() < 1) { |
| | selected_opacity = color.getAlpha(); |
| | } else { |
| | selected_opacity = 1; |
| | } |
| | } |
| | |
| | selected_size = |
| | typeof brush_options.default_size === "number" |
| | ? brush_options.default_size |
| | : 25; |
| | } |
| | |
| | function update_eraser_options(): void { |
| | selected_eraser_size = |
| | eraser_options.default_size === "auto" ? 25 : eraser_options.default_size; |
| | } |
| | |
| | let brush_size_visible = false; |
| | |
| | let brush_color_visible = false; |
| | |
| | $: brush?.set_brush_color( |
| | (() => { |
| | let color_value; |
| | if (selected_color === "auto") { |
| | const default_color = |
| | brush_options.colors.find((color) => |
| | Array.isArray(color) |
| | ? color[0] === brush_options.default_color |
| | : color === brush_options.default_color |
| | ) || brush_options.colors[0]; |
| | |
| | color_value = Array.isArray(default_color) |
| | ? default_color[0] |
| | : default_color; |
| | } else { |
| | color_value = selected_color; |
| | } |
| | return color_value; |
| | })() |
| | ); |
| | |
| | $: brush?.set_brush_size( |
| | typeof selected_size === "number" ? selected_size : 25 |
| | ); |
| | |
| | $: brush?.set_eraser_size( |
| | typeof selected_eraser_size === "number" ? selected_eraser_size : 25 |
| | ); |
| | |
| | $: disable_click = |
| | current_tool !== "image" || |
| | (current_tool === "image" && background_image) || |
| | (current_tool === "image" && current_subtool === "webcam") || |
| | !sources.includes("upload"); |
| | |
| | let current_subtool: Subtool | null = null; |
| | let preview = false; |
| | $: brush?.preview_brush(preview); |
| | $: brush?.set_brush_opacity(selected_opacity); |
| | |
| | function handle_zoom_change(zoom_level: number | "fit"): void { |
| | zoom.set_zoom(zoom_level); |
| | } |
| | |
| | function zoom_in_out(direction: "in" | "out"): void { |
| | zoom.set_zoom( |
| | direction === "in" |
| | ? zoom_level + (zoom_level < 1 ? 0.1 : zoom_level * 0.1) |
| | : zoom_level - (zoom_level < 1 ? 0.1 : zoom_level * 0.1) |
| | ); |
| | } |
| | |
| | async function process_clipboard(): Promise<void> { |
| | const items = await navigator.clipboard.read(); |
| | |
| | for (let i = 0; i < items.length; i++) { |
| | const type = items[i].types.find((t) => t.startsWith("image/")); |
| | if (type) { |
| | const blob = await items[i].getType(type); |
| | |
| | handle_files(blob); |
| | } |
| | } |
| | } |
| | |
| | function handle_capture(e: CustomEvent): void { |
| | if (e.detail !== null) { |
| | handle_files(e.detail as Blob); |
| | } |
| | handle_subtool_change({ tool: current_tool, subtool: null }); |
| | } |
| | |
| | function handle_save(): void { |
| | dispatch("save"); |
| | } |
| | |
| | $: add_image_from_url(composite || background); |
| | $: add_layers_from_url(layers); |
| | |
| | async function handle_crop_confirm(): Promise<void> { |
| | const { image } = await crop.get_crop_bounds(); |
| | if (!image) return; |
| | |
| | await editor.add_image({ |
| | image, |
| | resize: false |
| | }); |
| | handle_subtool_change({ tool: "image", subtool: null }); |
| | dispatch("change"); |
| | dispatch("input"); |
| | } |
| | |
| | async function handle_download(): Promise<void> { |
| | const blobs = await editor.get_blobs(); |
| | |
| | const blob = blobs.composite; |
| | if (!blob) { |
| | dispatch("download_error", "Unable to generate image to download."); |
| | return; |
| | } |
| | const url = URL.createObjectURL(blob); |
| | const link = document.createElement("a"); |
| | link.href = url; |
| | link.download = "image.png"; |
| | link.click(); |
| | URL.revokeObjectURL(url); |
| | } |
| | |
| | function handle_undo(): void { |
| | editor.undo(); |
| | } |
| | |
| | function handle_redo(): void { |
| | editor.redo(); |
| | } |
| | |
| | let old_background = background; |
| | |
| | $: if (old_background !== background) { |
| | handle_tool_change({ tool: "draw" }); |
| | handle_subtool_change({ tool: "draw", subtool: null }); |
| | current_tool = "draw"; |
| | old_background = background; |
| | } |
| | </script> |
| | |
| | <div |
| | data-testid="image" |
| | class="image-container" |
| | class:dark-bg={current_subtool === "crop"} |
| | use:drag={{ |
| | on_drag_change: (dragging) => (is_dragging = dragging), |
| | on_files: handle_files, |
| | accepted_types: "image/*", |
| | disable_click: disable_click |
| | }} |
| | aria-label={"Click to upload or drop files"} |
| | aria-dropeffect="copy" |
| | > |
| | {#if ready} |
| | {#if current_subtool !== "crop"} |
| | <Controls |
| | {changeable} |
| | on:set_zoom={(e) => handle_zoom_change(e.detail)} |
| | on:zoom_in={() => zoom_in_out("in")} |
| | on:zoom_out={() => zoom_in_out("out")} |
| | {min_zoom} |
| | current_zoom={zoom_level} |
| | on:remove_image={() => { |
| | dispatch("clear"); |
| | editor.reset_canvas(); |
| | handle_tool_change({ tool: "image" }); |
| | background_image = false; |
| | has_drawn = false; |
| | }} |
| | tool={current_tool} |
| | can_save={true} |
| | on:save={handle_save} |
| | on:pan={(e) => { |
| | handle_tool_change({ tool: "pan" }); |
| | }} |
| | enable_download={show_download_button} |
| | on:download={() => handle_download()} |
| | {can_undo} |
| | {can_redo} |
| | on:undo={handle_undo} |
| | on:redo={handle_redo} |
| | /> |
| | {/if} |
| | |
| | {#if current_subtool !== "crop"} |
| | <Toolbar |
| | {sources} |
| | {transforms} |
| | background={background_image} |
| | on:tool_change={(e) => handle_tool_change(e.detail)} |
| | on:subtool_change={(e) => handle_subtool_change(e.detail)} |
| | show_brush_size={brush_size_visible} |
| | show_brush_color={brush_color_visible} |
| | show_eraser_size={eraser_size_visible} |
| | {brush_options} |
| | {eraser_options} |
| | bind:selected_color |
| | bind:selected_size |
| | bind:selected_eraser_size |
| | bind:selected_opacity |
| | bind:preview |
| | tool={current_tool} |
| | subtool={current_subtool} |
| | /> |
| | {/if} |
| | |
| | {#if current_tool === "image" && current_subtool === "webcam"} |
| | <div class="modal"> |
| | <div class="modal-inner"> |
| | <Webcam |
| | {upload} |
| | {root} |
| | on:capture={handle_capture} |
| | on:error |
| | on:drag |
| | streaming={false} |
| | mode="image" |
| | include_audio={false} |
| | {i18n} |
| | mirror_webcam={webcam_options.mirror} |
| | webcam_constraints={webcam_options.constraints} |
| | /> |
| | </div> |
| | </div> |
| | {/if} |
| | |
| | {#if current_subtool !== "crop" && !layer_options.disabled} |
| | <SecondaryToolbar |
| | enable_additional_layers={layer_options.allow_additional_layers} |
| | layers={editor.layers} |
| | on:new_layer={() => { |
| | editor.add_layer(); |
| | }} |
| | on:change_layer={(e) => { |
| | editor.set_layer(e.detail); |
| | if (current_tool === "draw") { |
| | handle_tool_change({ tool: "draw" }); |
| | } |
| | }} |
| | on:move_layer={(e) => { |
| | editor.move_layer(e.detail.id, e.detail.direction); |
| | }} |
| | on:delete_layer={(e) => { |
| | editor.delete_layer(e.detail); |
| | }} |
| | on:toggle_layer_visibility={(e) => { |
| | editor.toggle_layer_visibility(e.detail); |
| | }} |
| | /> |
| | {/if} |
| | {/if} |
| | <div |
| | class="pixi-target" |
| | class:visible={current_subtool !== "crop"} |
| | bind:this={pixi_target} |
| | ></div> |
| | <div |
| | class="pixi-target-crop" |
| | class:visible={current_subtool === "crop"} |
| | bind:this={pixi_target_crop} |
| | ></div> |
| | |
| | {#if current_subtool === "crop"} |
| | <div class="crop-confirm-button"> |
| | <IconButton |
| | Icon={Check} |
| | label="Confirm crop" |
| | show_label={true} |
| | size="large" |
| | padded={true} |
| | color="white" |
| | background="var(--color-green-500)" |
| | label_position="right" |
| | on:click={handle_crop_confirm} |
| | /> |
| | </div> |
| | {/if} |
| | <slot></slot> |
| | </div> |
| | |
| | <style> |
| | .image-container { |
| | display: flex; |
| | height: 100%; |
| | flex-direction: column; |
| | justify-content: center; |
| | align-items: center; |
| | max-height: 100%; |
| | border-radius: var(--radius-sm); |
| | } |
| | |
| | .pixi-target { |
| | width: 100%; |
| | height: 100%; |
| | position: absolute; |
| | top: 0; |
| | left: 0; |
| | z-index: 1; |
| | display: block; |
| | opacity: 0; |
| | pointer-events: none; |
| | border-radius: var(--radius-sm); |
| | } |
| | |
| | .pixi-target-crop { |
| | width: 100%; |
| | height: 100%; |
| | position: absolute; |
| | top: 0; |
| | left: 0; |
| | z-index: 2; |
| | display: block; |
| | opacity: 0; |
| | pointer-events: none; |
| | border-radius: var(--radius-sm); |
| | } |
| | |
| | .visible { |
| | opacity: 1; |
| | pointer-events: auto; |
| | } |
| | |
| | .pixi-target { |
| | width: 100%; |
| | height: 100%; |
| | position: absolute; |
| | top: 0; |
| | left: 0; |
| | right: 0; |
| | bottom: 0; |
| | overflow: hidden; |
| | } |
| | |
| | .modal { |
| | position: absolute; |
| | height: 100%; |
| | width: 100%; |
| | left: 0; |
| | right: 0; |
| | margin: auto; |
| | z-index: var(--layer-top); |
| | display: flex; |
| | align-items: center; |
| | } |
| | |
| | .modal-inner { |
| | height: 100%; |
| | width: 100%; |
| | background: var(--block-background-fill); |
| | } |
| | |
| | .dark-bg { |
| | background: #333; |
| | } |
| | |
| | .crop-confirm-button { |
| | position: absolute; |
| | bottom: 8px; |
| | left: 0; |
| | right: 0; |
| | margin: auto; |
| | z-index: var(--layer-top); |
| | display: flex; |
| | align-items: center; |
| | justify-content: center; |
| | } |
| | </style> |
| | |