@@ -143,100 +143,106 @@ export const newManualSelect = (oldSelect: ManualStep, mIds: Set<string>, needCo
143
143
} ;
144
144
145
145
export const addHighlight = ( element : HTMLElement ) => {
146
- const selectionGuideId = "selectionGuide" ;
147
- const svg = document . getElementById ( "visChart" ) ;
148
- let selectionGuide = document . getElementById ( selectionGuideId ) as Element ;
149
- const chartContent = document . getElementById ( "chartContent" ) ;
150
- if ( selectionGuide == null ) {
151
- selectionGuide = document . createElementNS ( "http://www.w3.org/2000/svg" , "g" ) ;
152
- selectionGuide . id = selectionGuideId ;
153
- chartContent . appendChild ( selectionGuide ) ;
154
- }
146
+ // const selectionGuideId = "selectionGuide";
147
+ // const svg = document.getElementById("visChart");
148
+ // let selectionGuide = document.getElementById(selectionGuideId) as Element;
149
+ // const chartContent = document.getElementById("chartContent");
150
+ // if (selectionGuide == null) {
151
+ // selectionGuide = document.createElementNS("http://www.w3.org/2000/svg", "g");
152
+ // selectionGuide.id = selectionGuideId;
153
+ // chartContent.appendChild(selectionGuide);
154
+ // }
155
155
const opacityAttr = element . getAttribute ( "opacity" ) ;
156
156
let opacity = 1 ;
157
- if ( opacityAttr ) {
158
- opacity = Number ( opacityAttr ) ;
159
- }
157
+ // if (opacityAttr) {
158
+ // opacity = Number(opacityAttr);
159
+ // }
160
160
161
- element . classList . remove ( "non-framed-mark" ) ;
162
- element . setAttribute ( "opacity" , ( opacity * 0.3 ) . toString ( ) ) ;
163
- return ;
164
- let frame : Element ;
165
- if ( element . tagName == "text" ) {
166
- frame = document . createElementNS ( "http://www.w3.org/2000/svg" , "rect" ) ;
167
- const boundingBox = element . getBoundingClientRect ( ) ;
168
- const topLeft = jsTool . screenToSvgCoords ( svg , boundingBox . left , boundingBox . top ) ;
169
- const bottomRight = jsTool . screenToSvgCoords ( svg , boundingBox . right , boundingBox . bottom ) ;
170
- const transform = new Polygon ( ) . parseTransform ( chartContent ) ;
171
- frame . setAttribute ( "x" , ( ( topLeft . x - transform . e ) / transform . a ) . toString ( ) ) ;
172
- frame . setAttribute ( "y" , ( ( topLeft . y - transform . f ) / transform . a ) . toString ( ) ) ;
173
- frame . setAttribute ( "height" , ( ( bottomRight . y - topLeft . y ) / transform . a ) . toString ( ) ) ;
174
- frame . setAttribute ( "width" , ( ( bottomRight . x - topLeft . x ) / transform . a ) . toString ( ) ) ;
175
- } else {
176
- frame = element . cloneNode ( ) as Element ;
177
- frame . removeAttribute ( "data-datum" ) ;
161
+ // element.classList.remove("non-framed-mark");
162
+ if ( element . getAttribute ( 'opacity' ) == '1' ) {
163
+ element . style . opacity = "0.3" ;
178
164
}
179
- frame . id = "qwert" + element . id ;
180
- frame . setAttribute ( "fill" , "none" ) ;
181
- frame . setAttribute ( "stroke" , "black" ) ;
182
- frame . setAttribute ( "stroke-width" , "1" ) ;
183
- frame . setAttribute ( "stroke-dasharray" , "5, 5" ) ;
184
- frame . setAttribute ( "opacity" , "1" ) ;
185
- frame . setAttribute ( "transform" , new Polygon ( ) . getTransformFromChartContent ( element ) . toString ( ) ) ;
186
-
187
- const animation = document . createElementNS ( "http://www.w3.org/2000/svg" , "animate" ) ;
188
- animation . setAttribute ( "attributeName" , "stroke-dashoffset" ) ;
189
- animation . setAttribute ( "from" , "0" ) ;
190
- animation . setAttribute ( "to" , "10" ) ;
191
- animation . setAttribute ( "dur" , "1" ) ;
192
- animation . setAttribute ( "repeatCount" , "indefinite" ) ;
193
- frame . appendChild ( animation ) ;
194
-
195
- const animation2 = document . createElementNS ( "http://www.w3.org/2000/svg" , "animate" ) ;
196
- animation2 . setAttribute ( "attributeName" , "stroke" ) ;
197
- animation2 . setAttribute ( "from" , "black" ) ;
198
- animation2 . setAttribute ( "to" , "white" ) ;
199
- animation2 . setAttribute ( "dur" , "1" ) ;
200
- animation2 . setAttribute ( "repeatCount" , "indefinite" ) ;
201
- frame . appendChild ( animation2 ) ;
202
-
203
- frame . classList . forEach ( value => frame . classList . remove ( value ) ) ;
204
- selectionGuide . appendChild ( frame ) ;
165
+ // return;
166
+ // let frame: Element;
167
+ // if (element.tagName == "text") {
168
+ // frame = document.createElementNS("http://www.w3.org/2000/svg", "rect");
169
+ // const boundingBox = element.getBoundingClientRect();
170
+ // const topLeft = jsTool.screenToSvgCoords(svg, boundingBox.left, boundingBox.top);
171
+ // const bottomRight = jsTool.screenToSvgCoords(svg, boundingBox.right, boundingBox.bottom);
172
+ // const transform = new Polygon().parseTransform(chartContent);
173
+ // frame.setAttribute("x", ((topLeft.x - transform.e) / transform.a).toString());
174
+ // frame.setAttribute("y", ((topLeft.y - transform.f) / transform.a).toString());
175
+ // frame.setAttribute("height", ((bottomRight.y - topLeft.y) / transform.a).toString());
176
+ // frame.setAttribute("width", ((bottomRight.x - topLeft.x) / transform.a).toString());
177
+ // } else {
178
+ // frame = element.cloneNode() as Element;
179
+ // frame.removeAttribute("data-datum");
180
+ // }
181
+ // frame.id = "qwert" + element.id;
182
+ // frame.setAttribute("fill", "none");
183
+ // frame.setAttribute("stroke", "black");
184
+ // frame.setAttribute("stroke-width", "1");
185
+ // frame.setAttribute("stroke-dasharray", "5, 5");
186
+ // frame.setAttribute("opacity", "1");
187
+ // frame.setAttribute("transform", new Polygon().getTransformFromChartContent(element).toString());
188
+
189
+ // const animation = document.createElementNS("http://www.w3.org/2000/svg", "animate");
190
+ // animation.setAttribute("attributeName", "stroke-dashoffset");
191
+ // animation.setAttribute("from", "0");
192
+ // animation.setAttribute("to", "10");
193
+ // animation.setAttribute("dur", "1");
194
+ // animation.setAttribute("repeatCount", "indefinite");
195
+ // frame.appendChild(animation);
196
+
197
+ // const animation2 = document.createElementNS("http://www.w3.org/2000/svg", "animate");
198
+ // animation2.setAttribute("attributeName", "stroke");
199
+ // animation2.setAttribute("from", "black");
200
+ // animation2.setAttribute("to", "white");
201
+ // animation2.setAttribute("dur", "1");
202
+ // animation2.setAttribute("repeatCount", "indefinite");
203
+ // frame.appendChild(animation2);
204
+
205
+ // frame.classList.forEach(value => frame.classList.remove(value));
206
+ // selectionGuide.appendChild(frame);
205
207
} ;
206
208
207
209
export const removeHighlight = ( element : HTMLElement ) => {
208
- const selectionGuideId = "selectionGuide" ;
209
- let selectionGuide = document . getElementById ( selectionGuideId ) as Element ;
210
- const chartContent = document . getElementById ( "chartContent" ) ;
211
- if ( selectionGuide == null ) {
212
- selectionGuide = document . createElementNS ( "http://www.w3.org/2000/svg" , "g" ) ;
213
- selectionGuide . id = selectionGuideId ;
214
- selectionGuide . classList . add ( "selectionGuide" ) ;
215
- chartContent . appendChild ( selectionGuide ) ;
216
- }
217
-
218
- const opacityAttr = element . getAttribute ( "opacity" ) ;
219
- let opacity = 1 ;
220
- if ( opacityAttr ) {
221
- opacity = Number ( opacityAttr ) ;
210
+ if ( element . style . opacity == '0.3' ) {
211
+ element . style . opacity = '1' ;
222
212
}
223
- element . classList . add ( "non-framed-mark" ) ;
224
- element . setAttribute ( "opacity" , ( opacity / 0.3 ) . toString ( ) ) ;
225
- // selectionGuide.removeChild(document.getElementById("qwert" + element.id))
213
+ // const selectionGuideId = "selectionGuide";
214
+ // let selectionGuide = document.getElementById(selectionGuideId) as Element;
215
+ // const chartContent = document.getElementById("chartContent");
216
+ // if (selectionGuide == null) {
217
+ // selectionGuide = document.createElementNS("http://www.w3.org/2000/svg", "g");
218
+ // selectionGuide.id = selectionGuideId;
219
+ // selectionGuide.classList.add("selectionGuide");
220
+ // chartContent.appendChild(selectionGuide);
221
+ // }
222
+
223
+ // const opacityAttr = element.getAttribute("opacity");
224
+ // let opacity = 1;
225
+ // if (opacityAttr) {
226
+ // opacity = Number(opacityAttr);
227
+ // }
228
+ // element.classList.add("non-framed-mark");
229
+ // element.setAttribute("opacity", (opacity / 0.3).toString());
230
+ // // selectionGuide.removeChild(document.getElementById("qwert" + element.id))
226
231
} ;
227
232
//svgToPngBase64
228
- export const svgToPngLink = ( svgElement : HTMLElement | SVGElement ) => {
233
+ export const svgToPngLink = ( svgElement : Element ) => {
229
234
const canvas = document . createElement ( "canvas" ) ;
230
235
canvas . width = svgElement . clientWidth ;
231
236
canvas . height = svgElement . clientHeight ;
232
237
const ctx = canvas . getContext ( "2d" ) ;
233
238
const img = new Image ( ) ;
234
- ctx . drawImage ( img , 0 , 0 ) ;
235
- let pngLink = ''
236
- const link = document . createElement ( 'a' ) ;
237
- link . download = 'my-image.png' ;
238
- link . href = canvas . toDataURL ( "image/png" ) ;
239
+ img . onload = function ( ) {
240
+ ctx . drawImage ( img , 0 , 0 ) ;
241
+ const link = document . createElement ( 'a' ) ;
242
+ link . download = 'my-image.png' ;
243
+ link . href = canvas . toDataURL ( "image/png" ) ;
244
+ // link.click();
245
+ } ;
239
246
img . src = "data:image/svg+xml," + encodeURIComponent ( new XMLSerializer ( ) . serializeToString ( svgElement ) ) ;
240
- const matches = link . href . match ( / ^ d a t a : i m a g e \/ p n g ; b a s e 6 4 , ( .+ ) $ / ) ;
241
- return matches ;
242
- }
247
+ return img . src ;
248
+ }
0 commit comments