@@ -8,16 +8,17 @@ const {
8
8
getScaledQuadrantWidth,
9
9
getScaledQuadrantHeightWithGap,
10
10
getScale,
11
+ uiConfig,
11
12
} = require ( '../config' )
12
13
13
14
const ANIMATION_DURATION = 1000
14
15
16
+ const { quadrantHeight, quadrantWidth, quadrantsGap, effectiveQuadrantWidth } = graphConfig
17
+
15
18
let prevLeft , prevTop
16
19
let quadrantScrollHandlerReference
17
20
function selectRadarQuadrant ( order , startAngle , name ) {
18
- window . scrollTo ( {
19
- top : 0 ,
20
- left : 0 ,
21
+ d3 . select ( '.graph-header' ) . node ( ) . scrollIntoView ( {
21
22
behavior : 'smooth' ,
22
23
} )
23
24
@@ -43,15 +44,16 @@ function selectRadarQuadrant(order, startAngle, name) {
43
44
const translateYAll = ( ( ( 1 + adjustY ) / 2 ) * size * scale ) / 2
44
45
45
46
const radarContainer = d3 . select ( '#radar' )
46
- const parentWidth = radarContainer . node ( ) . getBoundingClientRect ( ) . width
47
+ const parentWidth = getElementWidth ( radarContainer )
48
+
47
49
const translateLeftRightValues = {
48
50
first : {
49
- left : parentWidth - graphConfig . effectiveQuadrantWidth * scale ,
51
+ left : parentWidth - quadrantWidth * scale ,
50
52
top : 0 ,
51
53
right : 'unset' ,
52
54
} ,
53
55
second : {
54
- left : parentWidth - graphConfig . effectiveQuadrantWidth * scale ,
56
+ left : parentWidth - quadrantWidth * scale ,
55
57
top : 0 ,
56
58
right : 'unset' ,
57
59
} ,
@@ -70,30 +72,30 @@ function selectRadarQuadrant(order, startAngle, name) {
70
72
svg
71
73
. style (
72
74
'left' ,
73
- window . innerWidth < 1280
74
- ? `calc((100% - ${ graphConfig . effectiveQuadrantWidth * scale } px) / 2)`
75
+ window . innerWidth < uiConfig . tabletViewWidth
76
+ ? `calc((100% - ${ quadrantWidth * scale } px) / 2)`
75
77
: translateLeftRightValues [ order ] . left + 'px' ,
76
78
)
77
79
. style ( 'top' , translateLeftRightValues [ order ] . top + 'px' )
78
80
. style ( 'right' , translateLeftRightValues [ order ] . right )
79
81
. style ( 'box-sizing' , 'border-box' )
80
82
81
- if ( window . innerWidth < 1280 ) {
83
+ if ( window . innerWidth < uiConfig . tabletViewWidth ) {
82
84
svg . style ( 'margin' , 'unset' )
83
85
}
84
86
85
87
svg
86
88
. attr ( 'transform' , `scale(${ scale } )` )
87
89
. style ( 'transform-origin' , `0 0` )
88
- . attr ( 'width' , graphConfig . effectiveQuadrantWidth )
89
- . attr ( 'height' , graphConfig . effectiveQuadrantHeight + graphConfig . quadrantsGap )
90
+ . attr ( 'width' , quadrantWidth )
91
+ . attr ( 'height' , quadrantHeight + quadrantsGap )
90
92
svg . classed ( 'quadrant-view' , true )
91
93
92
94
const quadrantGroupTranslate = {
93
95
first : { x : 0 , y : 0 } ,
94
- second : { x : 0 , y : - 512 } ,
95
- third : { x : - 544 , y : 0 } ,
96
- fourth : { x : - 544 , y : - 512 } ,
96
+ second : { x : 0 , y : - quadrantHeight } ,
97
+ third : { x : - ( quadrantWidth + quadrantsGap ) , y : 0 } ,
98
+ fourth : { x : - ( quadrantWidth + quadrantsGap ) , y : - quadrantHeight } ,
97
99
}
98
100
99
101
d3 . select ( '.quadrant-group-' + order )
@@ -134,7 +136,7 @@ function selectRadarQuadrant(order, startAngle, name) {
134
136
d3 . select ( '.radar-legends' ) . classed ( 'left-view' , true )
135
137
}
136
138
137
- if ( window . innerWidth < 1280 ) {
139
+ if ( window . innerWidth < uiConfig . tabletViewWidth ) {
138
140
d3 . select ( '#radar' ) . style ( 'height' , null )
139
141
}
140
142
@@ -148,13 +150,14 @@ function selectRadarQuadrant(order, startAngle, name) {
148
150
149
151
d3 . selectAll ( '.blip-list__item-container__name' ) . attr ( 'aria-expanded' , 'false' )
150
152
151
- if ( window . innerWidth >= 1280 ) {
153
+ if ( window . innerWidth >= uiConfig . tabletViewWidth ) {
152
154
if ( order === 'first' || order === 'second' ) {
153
155
radarLegendsContainer . style (
154
156
'left' ,
155
- `${ parentWidth -
156
- getScaledQuadrantWidth ( scale ) +
157
- ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
157
+ `${
158
+ parentWidth -
159
+ getScaledQuadrantWidth ( scale ) +
160
+ ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
158
161
} px`,
159
162
)
160
163
} else {
@@ -203,13 +206,13 @@ function renderRadarQuadrantName(quadrant, parentGroup) {
203
206
ctaArrowXOffset = quadrantNameToDisplay . length * 11
204
207
} else {
205
208
anchor = 'end'
206
- translateX = graphConfig . quadrantWidth * 2 - 50
209
+ translateX = effectiveQuadrantWidth * 2 - 50
207
210
ctaArrowXOffset = 10
208
211
}
209
212
if ( adjustY < 0 ) {
210
213
translateY = 60
211
214
} else {
212
- translateY = graphConfig . quadrantWidth * 2 - 60
215
+ translateY = effectiveQuadrantWidth * 2 - 60
213
216
}
214
217
215
218
const quadrantName = quadrantNameGroup . append ( 'text' )
@@ -232,16 +235,28 @@ function renderRadarQuadrants(size, svg, quadrant, rings, ringCalculator) {
232
235
. on ( 'click' , selectRadarQuadrant . bind ( { } , quadrant . order , quadrant . startAngle , quadrant . quadrant . name ( ) ) )
233
236
234
237
const rectCoordMap = {
235
- first : { x : 0 , y : 0 , strokeDashArray : '0,512,1024,512' } ,
236
- second : { x : 0 , y : 544 , strokeDashArray : '1024,1024' } ,
237
- third : { x : 544 , y : 0 , strokeDashArray : '0,1024,1024' } ,
238
- fourth : { x : 544 , y : 544 , strokeDashArray : '512,1024,512' } ,
238
+ first : { x : 0 , y : 0 , strokeDashArray : `0, ${ quadrantWidth } , ${ quadrantHeight + quadrantWidth } , ${ quadrantHeight } ` } ,
239
+ second : {
240
+ x : 0 ,
241
+ y : quadrantHeight + quadrantsGap ,
242
+ strokeDashArray : `${ quadrantWidth + quadrantHeight } , ${ quadrantWidth + quadrantHeight } ` ,
243
+ } ,
244
+ third : {
245
+ x : quadrantWidth + quadrantsGap ,
246
+ y : 0 ,
247
+ strokeDashArray : `0, ${ quadrantWidth + quadrantHeight } , ${ quadrantWidth + quadrantHeight } ` ,
248
+ } ,
249
+ fourth : {
250
+ x : quadrantWidth + quadrantsGap ,
251
+ y : quadrantHeight + quadrantsGap ,
252
+ strokeDashArray : `${ quadrantWidth } , ${ quadrantWidth + quadrantHeight } , ${ quadrantHeight } ` ,
253
+ } ,
239
254
}
240
255
241
256
quadrantGroup
242
257
. append ( 'rect' )
243
- . attr ( 'width' , '512px' )
244
- . attr ( 'height' , '512px' )
258
+ . attr ( 'width' , ` ${ quadrantWidth } px` )
259
+ . attr ( 'height' , ` ${ quadrantHeight } px` )
245
260
. attr ( 'fill' , '#edf1f3' )
246
261
. attr ( 'x' , rectCoordMap [ quadrant . order ] . x )
247
262
. attr ( 'y' , rectCoordMap [ quadrant . order ] . y )
@@ -261,10 +276,11 @@ function renderRadarQuadrants(size, svg, quadrant, rings, ringCalculator) {
261
276
. attr ( 'class' , 'ring-arc-' + ring . order ( ) )
262
277
. attr ( 'transform' , 'translate(' + 528 + ', ' + 528 + ')' )
263
278
} )
279
+
264
280
quadrantGroup
265
281
. append ( 'rect' )
266
- . attr ( 'width' , '512px' )
267
- . attr ( 'height' , '512px' )
282
+ . attr ( 'width' , ` ${ quadrantWidth } px` )
283
+ . attr ( 'height' , ` ${ quadrantHeight } px` )
268
284
. attr ( 'fill' , 'transparent' )
269
285
. attr ( 'stroke' , 'black' )
270
286
. attr ( 'x' , rectCoordMap [ quadrant . order ] . x )
@@ -287,6 +303,7 @@ function renderRadarLegends(radarElement) {
287
303
. attr ( 'height' , '37px' )
288
304
. attr ( 'alt' , 'new blip legend icon' )
289
305
. node ( ) . outerHTML
306
+
290
307
const noChangeImage = legendsContainer
291
308
. append ( 'img' )
292
309
. attr ( 'src' , '/images/no-change.svg' )
@@ -341,16 +358,16 @@ function quadrantScrollHandler(
341
358
radarElement . classed ( 'sticky' , true )
342
359
radarLegendsContainer . classed ( 'sticky' , true )
343
360
344
- if ( window . scrollY + 60 + quadrantHeight >= quadrantTableOffset ) {
361
+ if ( window . scrollY + uiConfig . subnavHeight + quadrantHeight >= quadrantTableOffset ) {
345
362
radarElement . classed ( 'sticky' , false )
346
363
radarLegendsContainer . classed ( 'sticky' , false )
347
364
348
- radarElement . style ( 'top' , `${ quadrantTableHeight - quadrantHeight - 60 } px` )
365
+ radarElement . style ( 'top' , `${ quadrantTableHeight - quadrantHeight - uiConfig . subnavHeight } px` )
349
366
radarElement . style ( 'left' , prevLeft )
350
367
351
368
radarLegendsContainer . style (
352
369
'top' ,
353
- `${ quadrantTableHeight - quadrantHeight - 60 + getScaledQuadrantHeightWithGap ( scale ) } px` ,
370
+ `${ quadrantTableHeight - quadrantHeight - uiConfig . subnavHeight + getScaledQuadrantHeightWithGap ( scale ) } px` ,
354
371
)
355
372
radarLegendsContainer . style (
356
373
'left' ,
@@ -361,19 +378,21 @@ function quadrantScrollHandler(
361
378
radarElement . style ( 'left' , `${ leftQuadrantLeftValue } px` )
362
379
radarLegendsContainer . style (
363
380
'left' ,
364
- `${ leftQuadrantLeftValue + ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
381
+ `${
382
+ leftQuadrantLeftValue + ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
365
383
} px`,
366
384
)
367
385
} else {
368
386
radarElement . style ( 'left' , `${ rightQuadrantLeftValue } px` )
369
387
radarLegendsContainer . style (
370
388
'left' ,
371
- `${ rightQuadrantLeftValue + ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
389
+ `${
390
+ rightQuadrantLeftValue + ( getScaledQuadrantWidth ( scale ) / 2 - getElementWidth ( radarLegendsContainer ) / 2 )
372
391
} px`,
373
392
)
374
393
}
375
394
376
- radarLegendsContainer . style ( 'top' , `${ getScaledQuadrantHeightWithGap ( scale ) + 60 } px` )
395
+ radarLegendsContainer . style ( 'top' , `${ getScaledQuadrantHeightWithGap ( scale ) + uiConfig . subnavHeight } px` )
377
396
}
378
397
} else {
379
398
radarElement . style ( 'top' , prevTop )
@@ -397,13 +416,13 @@ function stickQuadrantOnScroll() {
397
416
const selectedQuadrantTable = d3 . select ( '.quadrant-table.selected' )
398
417
const radarLegendsContainer = d3 . select ( '.radar-legends' )
399
418
400
- const radarHeight = graphConfig . effectiveQuadrantHeight * scale + graphConfig . quadrantsGap * scale
401
- const offset = radarContainer . node ( ) . offsetTop - 60
419
+ const radarHeight = quadrantHeight * scale + quadrantsGap * scale
420
+ const offset = radarContainer . node ( ) . offsetTop - uiConfig . subnavHeight
402
421
const radarWidth = radarContainer . node ( ) . getBoundingClientRect ( ) . width
403
422
const selectedOrder = radarElement . attr ( 'data-quadrant-selected' )
404
423
405
424
const leftQuadrantLeftValue =
406
- ( window . innerWidth + radarWidth ) / 2 - graphConfig . quadrantWidth * scale + ( graphConfig . quadrantsGap / 2 ) * scale
425
+ ( window . innerWidth + radarWidth ) / 2 - effectiveQuadrantWidth * scale + ( quadrantsGap / 2 ) * scale
407
426
const rightQuadrantLeftValue = ( window . innerWidth - radarWidth ) / 2
408
427
409
428
const quadrantHeight = radarHeight
0 commit comments