Skip to content

Commit

Permalink
немного документирования в Picto
Browse files Browse the repository at this point in the history
  • Loading branch information
chekoopa committed Oct 3, 2023
1 parent b97882f commit 14e876a
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions src/renderer/src/lib/drawable/Picto.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,16 @@ export class Picto {
return imagesLoaded;
}

/**
* Рисует масштабированный значок на canvas.
*
* @param ctx Контекст canvas, в котором рисуем
* @param iconData Название значка или контейнер с данными для метки
* @param bounds Координаты и размер рамки
*/
drawImage(ctx: CanvasRenderingContext2D, iconData: string | MarkedIconData, bounds: Rectangle) {
// console.log([iconName, icons.has(iconName)]);
const isMarked = !(typeof iconData === 'string');
const isMarked = typeof iconData !== 'string';
const iconName = isMarked ? iconData.icon : iconData;
const image = icons.get(iconName);
if (!image) return;
Expand Down Expand Up @@ -121,6 +128,14 @@ export class Picto {
ctx.closePath();
}

/**
* Генерирует SVG-ноду для значка с меткой.
* По сути, дублирует {@link drawImage} вне canvas.
*
* @param data Контейнер с данными значка
* @param className Атрибут class для генерируемой ноды (дополнительно)
* @returns JSX-нода со значком
*/
getMarkedSvg(data: MarkedIconData, className?: string) {
const icon = icons.get(data.icon);
return (
Expand Down Expand Up @@ -152,8 +167,6 @@ export class Picto {
);
}

// TODO: все перечисленные ниже функции нужно вернуть в законные места

eventWidth = 100;
eventHeight = 40;
eventMargin = 5;
Expand Down Expand Up @@ -250,6 +263,15 @@ export class Picto {
ctx.restore();
}

/**
* Рисует масштабированную пиктограмму на canvas.
* Главная функция в этом классе.
*
* @param ctx Контекст canvas, в котором рисуем
* @param x X-координата
* @param y Y-координата
* @param ps Контейнер с параметрами пиктограммы
*/
drawPicto(ctx: CanvasRenderingContext2D, x: number, y: number, ps: PictoProps) {
const leftIcon = ps.leftIcon;
const rightIcon = ps.rightIcon;
Expand Down

0 comments on commit 14e876a

Please sign in to comment.