1
- import React from " react" ;
2
- import { render } from " react-dom" ;
3
- import ReactHintFactory from " src" ;
4
- import " css/index.css" ;
5
- import " ./index.css" ;
1
+ import React from ' react'
2
+ import { render } from ' react-dom'
3
+ import ReactHintFactory from ' src'
4
+ import ' css/index.css'
5
+ import ' ./index.css'
6
6
7
- const ReactHint = ReactHintFactory ( React ) ;
7
+ const ReactHint = ReactHintFactory ( React )
8
8
class App extends React . Component {
9
9
onRenderContent = ( target , content ) => {
10
- const { catId } = target . dataset ;
11
- const width = 240 ;
12
- const url = `https://images.pexels.com/photos/${ catId } /pexels-photo-${ catId } .jpeg?w=${ width } ` ;
10
+ const { catId} = target . dataset
11
+ const width = 240
12
+ const url = `https://images.pexels.com/photos/${ catId } /pexels-photo-${ catId } .jpeg?w=${ width } `
13
13
14
14
return (
15
15
< div className = "custom-hint__content" >
@@ -21,23 +21,23 @@ class App extends React.Component {
21
21
Ok
22
22
</ button >
23
23
</ div >
24
- ) ;
25
- } ;
24
+ )
25
+ }
26
26
27
27
render ( ) {
28
28
return (
29
29
< div >
30
30
< ReactHint
31
31
auto
32
32
position = "top"
33
- events = { { hover : true } }
33
+ events = { { hover : true } }
34
34
onRenderContent = { ( ) => (
35
35
< div
36
36
style = { {
37
- minWidth : " 100px" ,
38
- padding : " 5px" ,
39
- border : " 1px solid black" ,
40
- zIndex : " 99999" ,
37
+ minWidth : ' 100px' ,
38
+ padding : ' 5px' ,
39
+ border : ' 1px solid black' ,
40
+ zIndex : ' 99999' ,
41
41
} }
42
42
>
43
43
Hello! Something long that could demonstrate the issue very
@@ -47,12 +47,12 @@ class App extends React.Component {
47
47
) }
48
48
attribute = "data-tip1"
49
49
/>
50
- < ReactHint autoPosition events delay = { { show : 100 , hide : 1000 } } />
50
+ < ReactHint autoPosition events delay = { { show : 100 , hide : 1000 } } />
51
51
< ReactHint
52
52
persist
53
53
attribute = "data-custom"
54
54
className = "custom-hint"
55
- events = { { click : true } }
55
+ events = { { click : true } }
56
56
onRenderContent = { this . onRenderContent }
57
57
ref = { ( ref ) => ( this . instance = ref ) }
58
58
/>
@@ -83,8 +83,8 @@ class App extends React.Component {
83
83
Click Me
84
84
</ button >
85
85
</ div >
86
- ) ;
86
+ )
87
87
}
88
88
}
89
89
90
- render ( < App /> , demo ) ;
90
+ render ( < App /> , demo )
0 commit comments