Skip to content
Snippets Groups Projects
Commit 99624c46 authored by Anthony's avatar Anthony
Browse files

Fix opacity defaultValue

parent a11d6a86
No related branches found
No related tags found
1 merge request!10Draft: MigratingAnnotationCreation to MUI5.
...@@ -37,6 +37,7 @@ export const SHAPES_TOOL = { ...@@ -37,6 +37,7 @@ export const SHAPES_TOOL = {
SHAPES: 'shapes', SHAPES: 'shapes',
}; };
/** Check if the active tool is a shape tool */
export function isShapesTool(activeTool) { export function isShapesTool(activeTool) {
// Find if active tool in the list of overlay tools. I want a boolean in return // Find if active tool in the list of overlay tools. I want a boolean in return
return Object.values(SHAPES_TOOL).find((tool) => tool === activeTool); return Object.values(SHAPES_TOOL).find((tool) => tool === activeTool);
...@@ -57,6 +58,7 @@ export async function saveAnnotation(canvas, storageAdapter, receiveAnnotation, ...@@ -57,6 +58,7 @@ export async function saveAnnotation(canvas, storageAdapter, receiveAnnotation,
} }
} }
/** Save annotation for each canvas */
export async function saveAnnotationInEachCanvas(canvases, config, receiveAnnotation, annotation, target, isNewAnnotation) { export async function saveAnnotationInEachCanvas(canvases, config, receiveAnnotation, annotation, target, isNewAnnotation) {
canvases.forEach(async (canvas) => { canvases.forEach(async (canvas) => {
// Adapt target to the canvas // Adapt target to the canvas
...@@ -70,9 +72,9 @@ export async function saveAnnotationInEachCanvas(canvases, config, receiveAnnota ...@@ -70,9 +72,9 @@ export async function saveAnnotationInEachCanvas(canvases, config, receiveAnnota
export const defaultToolState = { export const defaultToolState = {
activeTool: OVERLAY_TOOL.EDIT, activeTool: OVERLAY_TOOL.EDIT,
closedMode: 'closed', closedMode: 'closed',
fillColor: 'rgba(83,162, 235, 50)', fillColor: 'rgba(83,162, 235, 0.5)',
image: { id: null }, image: { id: null },
imageEvent: null, imageEvent: null,
strokeColor: 'rgba(20,82,168,100)', strokeColor: 'rgba(20,82,168,1)',
strokeWidth: 2, strokeWidth: 2,
} };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment