@@ -3,7 +3,7 @@ const root = import.meta.url.match(/.*\//);
3
3
let WaitingWheel = root + '/waiting.png' ;
4
4
5
5
const urlAttribute = 'src' ;
6
- const transitionTimeSecs = '0.5' ;
6
+ const transitionTimeSecs = 0 ;
7
7
/**
8
8
*
9
9
* System: 2 images presents
@@ -34,10 +34,12 @@ export default class JehonImageLoading extends HTMLElement {
34
34
display: block;
35
35
width: 100%;
36
36
height: 100%;
37
+
38
+ position: relative;
37
39
}
38
40
39
41
img {
40
- position: relative ;
42
+ position: absolute ;
41
43
42
44
width: 100%;
43
45
height: 100%;
@@ -91,21 +93,31 @@ export default class JehonImageLoading extends HTMLElement {
91
93
if ( url != this . #currentURL) {
92
94
this . #currentURL = url ;
93
95
96
+ // All the others are now supposed to be loaded
97
+ this . querySelectorAll ( 'img' ) . forEach ( el => el . removeAttribute ( 'loading' ) ) ;
98
+
99
+ // Create the new element, as "loading"
94
100
const el = document . createElement ( 'img' ) ;
95
101
el . setAttribute ( 'src' , url ) ;
96
102
el . setAttribute ( 'loading' , 1 ) ;
97
103
this . shadowRoot . appendChild ( el ) ;
98
104
99
105
el . addEventListener ( 'load' , ( ) => {
100
- this . shadowRoot . querySelectorAll ( 'img:not([loading])' ) . forEach ( img => img . remove ( ) ) ;
101
106
el . removeAttribute ( 'loading' ) ;
107
+ setTimeout ( ( ) => {
108
+ this . shadowRoot . querySelectorAll ( 'img:not([loading]):not(:last-child)' )
109
+ . forEach ( img => img . remove ( ) ) ;
110
+ } , transitionTimeSecs * 1000 ) ;
111
+
112
+ // Warn parents
102
113
this . dispatchEvent ( new CustomEvent ( 'load' , { detail : url } ) ) ;
103
114
} ) ;
104
115
105
- if ( ! whenReady ) {
106
- // Simulate that we are ready
107
- el . dispatchEvent ( new Event ( 'load' ) ) ;
108
- }
116
+ }
117
+
118
+ if ( ! whenReady ) {
119
+ // Simulate that we are ready on the first 'loading' element (should be only one)
120
+ this . shadowRoot . querySelector ( '[loading]' ) . dispatchEvent ( new Event ( 'load' ) ) ;
109
121
}
110
122
111
123
return this ;
0 commit comments