File tree 8 files changed +66
-23
lines changed
8 files changed +66
-23
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { ListNavigation } from "project-editor/ui-components/ListNavigation";
6
6
import { FlexLayoutContainer } from "eez-studio-ui/FlexLayout" ;
7
7
import { isObjectExists } from "project-editor/store" ;
8
8
import { ProjectContext } from "project-editor/project/context" ;
9
- import { Bitmap , createBitmap } from "./bitmap" ;
9
+ import { Bitmap , createBitmapFromFile } from "./bitmap" ;
10
10
11
11
////////////////////////////////////////////////////////////////////////////////
12
12
@@ -53,10 +53,9 @@ export const BitmapsTab = observer(
53
53
54
54
for ( const file of files ) {
55
55
if ( file . type . startsWith ( "image/" ) ) {
56
- const bitmap = await createBitmap (
56
+ const bitmap = await createBitmapFromFile (
57
57
this . context ,
58
- file . path ,
59
- file . type
58
+ file
60
59
) ;
61
60
if ( bitmap ) {
62
61
this . context . addObject (
Original file line number Diff line number Diff line change @@ -602,6 +602,55 @@ export async function createBitmap(
602
602
}
603
603
}
604
604
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
+
605
654
////////////////////////////////////////////////////////////////////////////////
606
655
607
656
export interface BitmapData {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { DragAndDropManagerClass } from "project-editor/core/dd";
30
30
31
31
import { ProjectContext } from "project-editor/project/context" ;
32
32
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" ;
34
34
import { SortControl } from "project-editor/ui-components/ListNavigation" ;
35
35
36
36
////////////////////////////////////////////////////////////////////////////////
@@ -124,7 +124,7 @@ interface StylesTreeNavigationProps {
124
124
dragAndDropManager ?: DragAndDropManagerClass ;
125
125
searchInput ?: boolean ;
126
126
editable ?: boolean ;
127
- onFilesDrop ?: ( files : DropFile [ ] ) => void ;
127
+ onFilesDrop ?: ( files : File [ ] ) => void ;
128
128
}
129
129
130
130
export const StylesTreeNavigation = observer (
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { DragAndDropManagerClass } from "project-editor/core/dd";
30
30
31
31
import { ProjectContext } from "project-editor/project/context" ;
32
32
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" ;
34
34
import { SortControl } from "project-editor/ui-components/ListNavigation" ;
35
35
36
36
////////////////////////////////////////////////////////////////////////////////
@@ -121,7 +121,7 @@ interface LVGLStylesTreeNavigationProps {
121
121
dragAndDropManager ?: DragAndDropManagerClass ;
122
122
searchInput ?: boolean ;
123
123
editable ?: boolean ;
124
- onFilesDrop ?: ( files : DropFile [ ] ) => void ;
124
+ onFilesDrop ?: ( files : File [ ] ) => void ;
125
125
}
126
126
127
127
export const LVGLStylesTreeNavigation = observer (
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import type { LVGLBuild } from "project-editor/lvgl/build";
16
16
import { ImgbuttonStates } from "project-editor/lvgl/lvgl-constants" ;
17
17
18
18
import { LVGLWidget } from "./internal" ;
19
- import { checkWidgetTypeLvglVersion } from "../widget-common" ;
20
19
import { ProjectEditor } from "project-editor/project-editor-interface" ;
21
20
import { propertyNotFoundMessage } from "project-editor/store" ;
22
21
@@ -108,7 +107,7 @@ export class LVGLImgbuttonWidget extends LVGLWidget {
108
107
) ,
109
108
110
109
check : ( widget : LVGLImgbuttonWidget , messages : IMessage [ ] ) => {
111
- checkWidgetTypeLvglVersion ( widget , messages , "8.3" ) ;
110
+ // checkWidgetTypeLvglVersion(widget, messages, "8.3");
112
111
113
112
if ( widget . imageReleased ) {
114
113
const bitmap = findBitmap (
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from "react";
2
2
import { observer } from "mobx-react" ;
3
3
4
4
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" ;
6
6
7
7
////////////////////////////////////////////////////////////////////////////////
8
8
@@ -12,7 +12,7 @@ interface ListProps {
12
12
onFocus ?: ( ) => void ;
13
13
onEditItem ?: ( itemId : string ) => void ;
14
14
renderItem ?: ( itemId : string ) => React . ReactNode ;
15
- onFilesDrop ?: ( files : DropFile [ ] ) => void ;
15
+ onFilesDrop ?: ( files : File [ ] ) => void ;
16
16
}
17
17
18
18
export const List = observer (
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ import { List } from "project-editor/ui-components/List";
31
31
import { ProjectContext } from "project-editor/project/context" ;
32
32
import classNames from "classnames" ;
33
33
import { ProjectEditor } from "project-editor/project-editor-interface" ;
34
- import { DropFile } from "project-editor/ui-components/Tree" ;
35
34
36
35
////////////////////////////////////////////////////////////////////////////////
37
36
@@ -157,7 +156,7 @@ interface ListNavigationProps {
157
156
dragAndDropManager ?: DragAndDropManagerClass ;
158
157
searchInput ?: boolean ;
159
158
editable ?: boolean ;
160
- onFilesDrop ?: ( files : DropFile [ ] ) => void ;
159
+ onFilesDrop ?: ( files : File [ ] ) => void ;
161
160
}
162
161
163
162
export const ListNavigation = observer (
Original file line number Diff line number Diff line change @@ -171,18 +171,13 @@ const TreeRow = observer(
171
171
172
172
////////////////////////////////////////////////////////////////////////////////
173
173
174
- export interface DropFile {
175
- path : string ;
176
- type : string ;
177
- }
178
-
179
174
interface TreeProps {
180
175
treeAdapter : TreeAdapter ;
181
176
tabIndex ?: number ;
182
177
onFocus ?: ( ) => void ;
183
178
onEditItem ?: ( itemId : string ) => void ;
184
179
renderItem ?: ( itemId : string ) => React . ReactNode ;
185
- onFilesDrop ?: ( files : DropFile [ ] ) => void ;
180
+ onFilesDrop ?: ( files : File [ ] ) => void ;
186
181
}
187
182
188
183
export const Tree = observer (
@@ -642,17 +637,19 @@ export const Tree = observer(
642
637
this . props . treeAdapter . draggableAdapter ! . onDragLeave ( event ) ;
643
638
}
644
639
645
- onDrop ( event : any ) {
640
+ onDrop ( event : React . DragEvent ) {
646
641
event . stopPropagation ( ) ;
647
642
event . preventDefault ( ) ;
648
643
649
644
if ( isFileData ( event ) ) {
650
645
if ( this . props . onFilesDrop ) {
651
- const files : DropFile [ ] = [ ] ;
646
+ const files : File [ ] = [ ] ;
652
647
for ( let i = 0 ; i < event . dataTransfer . items . length ; i ++ ) {
653
648
const item = event . dataTransfer . items [ i ] ;
654
649
const file = item . getAsFile ( ) ;
655
- files . push ( file ) ;
650
+ if ( file ) {
651
+ files . push ( file ) ;
652
+ }
656
653
}
657
654
this . props . onFilesDrop ( files ) ;
658
655
}
You can’t perform that action at this time.
0 commit comments