Skip to content

Commit 81e1dc7

Browse files
committed
[LVGL] ImgButton, This widget type is not supported in LVLG 9.0 #606
1 parent f9ef583 commit 81e1dc7

File tree

8 files changed

+66
-23
lines changed

8 files changed

+66
-23
lines changed

packages/project-editor/features/bitmap/BitmapsNavigation.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ListNavigation } from "project-editor/ui-components/ListNavigation";
66
import { FlexLayoutContainer } from "eez-studio-ui/FlexLayout";
77
import { isObjectExists } from "project-editor/store";
88
import { ProjectContext } from "project-editor/project/context";
9-
import { Bitmap, createBitmap } from "./bitmap";
9+
import { Bitmap, createBitmapFromFile } from "./bitmap";
1010

1111
////////////////////////////////////////////////////////////////////////////////
1212

@@ -53,10 +53,9 @@ export const BitmapsTab = observer(
5353

5454
for (const file of files) {
5555
if (file.type.startsWith("image/")) {
56-
const bitmap = await createBitmap(
56+
const bitmap = await createBitmapFromFile(
5757
this.context,
58-
file.path,
59-
file.type
58+
file
6059
);
6160
if (bitmap) {
6261
this.context.addObject(

packages/project-editor/features/bitmap/bitmap.tsx

+49
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,55 @@ export async function createBitmap(
602602
}
603603
}
604604

605+
export async function createBitmapFromFile(
606+
projectStore: ProjectStore,
607+
file: File
608+
) {
609+
let fileType = file.type;
610+
611+
if (file.type == undefined) {
612+
const ext = path.extname(file.name).toLowerCase();
613+
if (ext == ".jpg" || ext == ".jpeg") {
614+
fileType = "image/jpg";
615+
} else {
616+
fileType = "image/png";
617+
}
618+
}
619+
620+
let bpp = projectStore.projectTypeTraits.isLVGL ? CF_TRUE_COLOR_ALPHA : 32;
621+
622+
let name = getUniquePropertyValue(
623+
projectStore.project.bitmaps,
624+
"name",
625+
path.parse(file.name).name
626+
) as string;
627+
628+
try {
629+
const arrayBuffer = await file.arrayBuffer();
630+
const base64 = btoa(
631+
String.fromCharCode.apply(null, new Uint8Array(arrayBuffer))
632+
);
633+
634+
const bitmapProperties: Partial<Bitmap> = {
635+
name,
636+
image: `data:${fileType};base64,` + base64,
637+
bpp,
638+
alwaysBuild: false
639+
};
640+
641+
const bitmap = createObject<Bitmap>(
642+
projectStore,
643+
bitmapProperties,
644+
Bitmap
645+
);
646+
647+
return bitmap;
648+
} catch (err) {
649+
notification.error(err);
650+
return undefined;
651+
}
652+
}
653+
605654
////////////////////////////////////////////////////////////////////////////////
606655

607656
export interface BitmapData {

packages/project-editor/features/style/StylesTreeNavigation.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { DragAndDropManagerClass } from "project-editor/core/dd";
3030

3131
import { ProjectContext } from "project-editor/project/context";
3232
import { ProjectEditor } from "project-editor/project-editor-interface";
33-
import { DropFile, Tree } from "project-editor/ui-components/Tree";
33+
import { Tree } from "project-editor/ui-components/Tree";
3434
import { SortControl } from "project-editor/ui-components/ListNavigation";
3535

3636
////////////////////////////////////////////////////////////////////////////////
@@ -124,7 +124,7 @@ interface StylesTreeNavigationProps {
124124
dragAndDropManager?: DragAndDropManagerClass;
125125
searchInput?: boolean;
126126
editable?: boolean;
127-
onFilesDrop?: (files: DropFile[]) => void;
127+
onFilesDrop?: (files: File[]) => void;
128128
}
129129

130130
export const StylesTreeNavigation = observer(

packages/project-editor/lvgl/LVGLStylesTreeNavigation.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { DragAndDropManagerClass } from "project-editor/core/dd";
3030

3131
import { ProjectContext } from "project-editor/project/context";
3232
import { ProjectEditor } from "project-editor/project-editor-interface";
33-
import { DropFile, Tree } from "project-editor/ui-components/Tree";
33+
import { Tree } from "project-editor/ui-components/Tree";
3434
import { SortControl } from "project-editor/ui-components/ListNavigation";
3535

3636
////////////////////////////////////////////////////////////////////////////////
@@ -121,7 +121,7 @@ interface LVGLStylesTreeNavigationProps {
121121
dragAndDropManager?: DragAndDropManagerClass;
122122
searchInput?: boolean;
123123
editable?: boolean;
124-
onFilesDrop?: (files: DropFile[]) => void;
124+
onFilesDrop?: (files: File[]) => void;
125125
}
126126

127127
export const LVGLStylesTreeNavigation = observer(

packages/project-editor/lvgl/widgets/Imgbutton.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import type { LVGLBuild } from "project-editor/lvgl/build";
1616
import { ImgbuttonStates } from "project-editor/lvgl/lvgl-constants";
1717

1818
import { LVGLWidget } from "./internal";
19-
import { checkWidgetTypeLvglVersion } from "../widget-common";
2019
import { ProjectEditor } from "project-editor/project-editor-interface";
2120
import { propertyNotFoundMessage } from "project-editor/store";
2221

@@ -108,7 +107,7 @@ export class LVGLImgbuttonWidget extends LVGLWidget {
108107
),
109108

110109
check: (widget: LVGLImgbuttonWidget, messages: IMessage[]) => {
111-
checkWidgetTypeLvglVersion(widget, messages, "8.3");
110+
// checkWidgetTypeLvglVersion(widget, messages, "8.3");
112111

113112
if (widget.imageReleased) {
114113
const bitmap = findBitmap(

packages/project-editor/ui-components/List.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import { observer } from "mobx-react";
33

44
import { TreeAdapter } from "project-editor/core/objectAdapter";
5-
import { Tree, DropFile } from "project-editor/ui-components/Tree";
5+
import { Tree } from "project-editor/ui-components/Tree";
66

77
////////////////////////////////////////////////////////////////////////////////
88

@@ -12,7 +12,7 @@ interface ListProps {
1212
onFocus?: () => void;
1313
onEditItem?: (itemId: string) => void;
1414
renderItem?: (itemId: string) => React.ReactNode;
15-
onFilesDrop?: (files: DropFile[]) => void;
15+
onFilesDrop?: (files: File[]) => void;
1616
}
1717

1818
export const List = observer(

packages/project-editor/ui-components/ListNavigation.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import { List } from "project-editor/ui-components/List";
3131
import { ProjectContext } from "project-editor/project/context";
3232
import classNames from "classnames";
3333
import { ProjectEditor } from "project-editor/project-editor-interface";
34-
import { DropFile } from "project-editor/ui-components/Tree";
3534

3635
////////////////////////////////////////////////////////////////////////////////
3736

@@ -157,7 +156,7 @@ interface ListNavigationProps {
157156
dragAndDropManager?: DragAndDropManagerClass;
158157
searchInput?: boolean;
159158
editable?: boolean;
160-
onFilesDrop?: (files: DropFile[]) => void;
159+
onFilesDrop?: (files: File[]) => void;
161160
}
162161

163162
export const ListNavigation = observer(

packages/project-editor/ui-components/Tree.tsx

+6-9
Original file line numberDiff line numberDiff line change
@@ -171,18 +171,13 @@ const TreeRow = observer(
171171

172172
////////////////////////////////////////////////////////////////////////////////
173173

174-
export interface DropFile {
175-
path: string;
176-
type: string;
177-
}
178-
179174
interface TreeProps {
180175
treeAdapter: TreeAdapter;
181176
tabIndex?: number;
182177
onFocus?: () => void;
183178
onEditItem?: (itemId: string) => void;
184179
renderItem?: (itemId: string) => React.ReactNode;
185-
onFilesDrop?: (files: DropFile[]) => void;
180+
onFilesDrop?: (files: File[]) => void;
186181
}
187182

188183
export const Tree = observer(
@@ -642,17 +637,19 @@ export const Tree = observer(
642637
this.props.treeAdapter.draggableAdapter!.onDragLeave(event);
643638
}
644639

645-
onDrop(event: any) {
640+
onDrop(event: React.DragEvent) {
646641
event.stopPropagation();
647642
event.preventDefault();
648643

649644
if (isFileData(event)) {
650645
if (this.props.onFilesDrop) {
651-
const files: DropFile[] = [];
646+
const files: File[] = [];
652647
for (let i = 0; i < event.dataTransfer.items.length; i++) {
653648
const item = event.dataTransfer.items[i];
654649
const file = item.getAsFile();
655-
files.push(file);
650+
if (file) {
651+
files.push(file);
652+
}
656653
}
657654
this.props.onFilesDrop(files);
658655
}

0 commit comments

Comments
 (0)