From 71a152d9266e8220c266befa46e25e6673de6d4e Mon Sep 17 00:00:00 2001 From: Im-Beast Date: Thu, 11 Nov 2021 22:39:23 +0100 Subject: [PATCH] make label dynamic --- src/components/label.ts | 87 +++++++++++++++++++++++------------------ 1 file changed, 48 insertions(+), 39 deletions(-) diff --git a/src/components/label.ts b/src/components/label.ts index 3e45a33..a537230 100644 --- a/src/components/label.ts +++ b/src/components/label.ts @@ -52,61 +52,70 @@ export function createLabel( ) { const { row, column, width, height } = options.rectangle; - const drawFuncs: (() => void)[] = []; - + let drawFuncs: (() => void)[] = []; + let lastText = ""; const label = createComponent(object, { name: "label", interactive: false, ...options, draw() { + const currentText = typeof options.text === "function" + ? options.text() + : options.text; + + if (currentText !== lastText) { + updateDrawFuncs(currentText); + lastText = currentText; + } + for (const draw of drawFuncs) { draw(); } }, }); - const text = typeof options.text === "function" - ? options.text() - : options.text; + const updateDrawFuncs = (text: string) => { + drawFuncs = []; - const lines = text.split("\n"); - for (let [i, line] of lines.entries()) { - let textWidth = textPixelWidth(line); - while (textWidth > width) { - line = line.slice(0, width); - textWidth = textPixelWidth(line); - } + const lines = text.split("\n"); + for (let [i, line] of lines.entries()) { + let textWidth = textPixelWidth(line); + while (textWidth > width) { + line = line.slice(0, width); + textWidth = textPixelWidth(line); + } - let c = column; - let r = row; + let c = column; + let r = row; - switch (options.textAlign.horizontal) { - case "center": - c = Math.floor(column + (width / 2 - textWidth / 2)); - break; - case "right": - r = column + width; - break; - } + switch (options.textAlign.horizontal) { + case "center": + c = Math.floor(column + (width / 2 - textWidth / 2)); + break; + case "right": + r = column + width; + break; + } - switch (options.textAlign.vertical) { - case "center": - r = Math.floor(row + height / 2 - lines.length / 2); - break; - case "bottom": - r = row + height; - break; - } + switch (options.textAlign.vertical) { + case "center": + r = Math.floor(row + height / 2 - lines.length / 2); + break; + case "bottom": + r = row + height; + break; + } - drawFuncs.push(() => - drawText(object.canvas, { - column: c, - row: r + i, - text: line, - styler: getCurrentStyler(label), - }) - ); - } + drawFuncs.push(() => + drawText(object.canvas, { + column: c, + row: r + i, + text: line, + styler: getCurrentStyler(label), + }) + ); + } + }; return label; }