1
1
import 'cropperjs/dist/cropper.css'
2
+
2
3
import { createSignal , Show } from 'solid-js'
4
+ import { createStore } from 'solid-js/store'
3
5
import Cropper from 'cropperjs'
4
6
import { Icon } from 'solid-heroicons'
5
7
import { cloudArrowUp , photo } from 'solid-heroicons/solid'
8
+
6
9
export default function ImageDrop ( props ) {
7
10
let cropImage
8
- const [ dropZoneActive , setDropZoneActive ] = createSignal ( false ) ,
11
+ const [ state , setState ] = createStore ( {
12
+ error : null ,
13
+ loading : false ,
14
+ file : { } ,
15
+ croppedImage : null
16
+ } ) ,
17
+ [ dropZoneActive , setDropZoneActive ] = createSignal ( false ) ,
9
18
[ uploading , setUploading ] = createSignal ( false ) ,
10
19
[ preview , setPreview ] = createSignal ( null ) ,
11
20
[ cropper , setCropper ] = createSignal ( null ) ,
@@ -15,8 +24,8 @@ export default function ImageDrop(props) {
15
24
uploadFile = async ( file ) => {
16
25
if ( ! file ) return
17
26
setUploading ( true )
18
- props . setState ( 'loading' , true )
19
- props . setState ( 'file' , file )
27
+ setState ( 'loading' , true )
28
+ setState ( 'file' , file )
20
29
try {
21
30
const reader = new FileReader ( )
22
31
reader . onload = ( e ) => {
@@ -33,14 +42,13 @@ export default function ImageDrop(props) {
33
42
} catch ( e ) {
34
43
console . error ( 'upload failed' , e )
35
44
const message = e instanceof Error ? e . message : String ( e )
36
- props . setState ( 'error' , message )
45
+ setState ( 'error' , message )
37
46
}
38
- props . setState ( 'loading' , false )
47
+ setState ( 'loading' , false )
39
48
setUploading ( false )
40
49
} ,
41
50
handleFileDrop = async ( e ) => {
42
51
e . preventDefault ( )
43
- console . log ( e )
44
52
setDropZoneActive ( false )
45
53
uploadFile ( e . dataTransfer . files [ 0 ] )
46
54
} ,
@@ -64,9 +72,13 @@ export default function ImageDrop(props) {
64
72
< button
65
73
type = "button"
66
74
class = "inline-flex items-center gap-x-1.5 rounded-md bg-indigo-600 py-2 px-3 text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 mt-2"
67
- onClick = { ( ) =>
68
- props . saveImage ( cropper ( ) . getCroppedCanvas ( ) . toDataURL ( ) )
69
- }
75
+ onClick = { ( ) => {
76
+ setState (
77
+ 'croppedImage' ,
78
+ cropper ( ) . getCroppedCanvas ( ) . toDataURL ( state . file . type )
79
+ )
80
+ props . saveImage ( state )
81
+ } }
70
82
>
71
83
< Icon
72
84
path = { cloudArrowUp }
0 commit comments