@asd20/ui 3.2.844 → 3.2.846
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -327,13 +327,14 @@ export default {
|
|
|
327
327
|
&__time,
|
|
328
328
|
&__location {
|
|
329
329
|
font-size: 0.85rem !important;
|
|
330
|
-
font-weight:
|
|
330
|
+
font-weight: bold;
|
|
331
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
331
332
|
display: flex;
|
|
332
333
|
align-items: center;
|
|
333
334
|
margin-top: space(0.5);
|
|
334
335
|
margin-bottom: 0;
|
|
335
336
|
.asd20-icon {
|
|
336
|
-
--line-color: var(--website-
|
|
337
|
+
--line-color: var(--website-icon__line-color);
|
|
337
338
|
margin-left: -0.125em;
|
|
338
339
|
margin-right: space(0.25);
|
|
339
340
|
}
|
|
@@ -242,23 +242,29 @@ export default {
|
|
|
242
242
|
goBack() {
|
|
243
243
|
if (typeof window === 'undefined') return
|
|
244
244
|
const currentLocation = window.location.href
|
|
245
|
+
const currentURL = new URL(window.location.href)
|
|
246
|
+
|
|
245
247
|
if (
|
|
246
248
|
currentLocation.includes('schools') ||
|
|
247
249
|
currentLocation.includes('8080')
|
|
248
250
|
) {
|
|
249
|
-
const currentURL = new URL(window.location.href)
|
|
250
251
|
this.returnURL = currentURL.origin
|
|
251
252
|
return
|
|
252
253
|
}
|
|
253
|
-
|
|
254
|
+
|
|
255
|
+
if (document.referrer.includes('/auth/callback')) {
|
|
256
|
+
this.returnURL = currentURL.origin
|
|
257
|
+
return
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
if (
|
|
261
|
+
document.referrer.startsWith('http') ||
|
|
262
|
+
document.referrer.startsWith('/')
|
|
263
|
+
) {
|
|
254
264
|
this.returnURL = document.referrer
|
|
255
265
|
} else {
|
|
256
|
-
const currentURL = new URL(window.location.href)
|
|
257
266
|
this.returnURL = currentURL.origin
|
|
258
267
|
}
|
|
259
|
-
// window.history.back()
|
|
260
|
-
// const url = window.location.href
|
|
261
|
-
// return url.slice(0, url.lastIndexOf('/'))
|
|
262
268
|
},
|
|
263
269
|
truncatedDescription(description) {
|
|
264
270
|
return truncate(description, { length: 60, separator: /,? +/ })
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
<div class="salary-calculator">
|
|
86
86
|
<h2 ref="scrollToMe">Licensed Teacher Starting Salary Calculator</h2>
|
|
87
87
|
<p>(Includes Special Services Providers)</p>
|
|
88
|
+
<p class="selectionHeading">Years of Experience:</p>
|
|
88
89
|
<asd20-select-input
|
|
89
90
|
class="years-selector"
|
|
90
91
|
v-model="years"
|
|
@@ -93,6 +94,7 @@
|
|
|
93
94
|
:value="years"
|
|
94
95
|
:items="yearsOfExperience"
|
|
95
96
|
/>
|
|
97
|
+
<p class="selectionHeading">Education Level:</p>
|
|
96
98
|
<asd20-select-input
|
|
97
99
|
class="education-selector"
|
|
98
100
|
v-model="educationLevel"
|
|
@@ -126,16 +128,24 @@
|
|
|
126
128
|
<p v-if="minSalary !== 0">
|
|
127
129
|
Based on your answers, your starting salary would be:
|
|
128
130
|
</p>
|
|
129
|
-
<
|
|
131
|
+
<!-- <div v-if="showSalary">
|
|
132
|
+
<p>Estimated Salary Range: ${{ minSalary }} - ${{ maxSalary }}</p>
|
|
133
|
+
</div> -->
|
|
134
|
+
<h3 v-if="minSalary !== 0 && minSalary !== maxSalary && showSalary">
|
|
130
135
|
${{ String(minSalary).replace(/(.)(?=(\d{3})+$)/g, '$1,') }} – ${{
|
|
131
136
|
String(maxSalary).replace(/(.)(?=(\d{3})+$)/g, '$1,')
|
|
132
137
|
}}
|
|
133
138
|
</h3>
|
|
134
|
-
<h3 v-if="minSalary !== 0 && minSalary === maxSalary">
|
|
139
|
+
<h3 v-if="minSalary !== 0 && minSalary === maxSalary && showSalary">
|
|
135
140
|
${{ String(minSalary).replace(/(.)(?=(\d{3})+$)/g, '$1,') }}
|
|
136
141
|
</h3>
|
|
137
|
-
<br/>
|
|
138
|
-
<p>
|
|
142
|
+
<br />
|
|
143
|
+
<p>
|
|
144
|
+
This salary calculator is for estimation purposes only. Candidates
|
|
145
|
+
selected for employment will be presented an official offer based on
|
|
146
|
+
education and experience as described in the Non-Administrative Licensed
|
|
147
|
+
(Teacher) Staff Salary Information Procedure (GCBA-1-R).
|
|
148
|
+
</p>
|
|
139
149
|
</div>
|
|
140
150
|
|
|
141
151
|
<!-- Feeds -->
|
|
@@ -250,7 +260,8 @@ export default {
|
|
|
250
260
|
'16',
|
|
251
261
|
'17',
|
|
252
262
|
'18',
|
|
253
|
-
'19
|
|
263
|
+
'19',
|
|
264
|
+
'20+',
|
|
254
265
|
],
|
|
255
266
|
educationLevel: "Bachelor's Degree",
|
|
256
267
|
educationLevelOptions: [
|
|
@@ -272,8 +283,8 @@ export default {
|
|
|
272
283
|
requiredEducationLevel: "Bachelor's Degree",
|
|
273
284
|
minYearsOfExperience: 0,
|
|
274
285
|
maxYearsOfExperience: 4,
|
|
275
|
-
minSalary:
|
|
276
|
-
maxSalary:
|
|
286
|
+
minSalary: 51520,
|
|
287
|
+
maxSalary: 52570,
|
|
277
288
|
},
|
|
278
289
|
{
|
|
279
290
|
id: '1',
|
|
@@ -281,8 +292,8 @@ export default {
|
|
|
281
292
|
requiredEducationLevel: "Bachelor's Degree",
|
|
282
293
|
minYearsOfExperience: 5,
|
|
283
294
|
maxYearsOfExperience: 9,
|
|
284
|
-
minSalary:
|
|
285
|
-
maxSalary:
|
|
295
|
+
minSalary: 52859,
|
|
296
|
+
maxSalary: 54104,
|
|
286
297
|
},
|
|
287
298
|
{
|
|
288
299
|
id: '2',
|
|
@@ -290,8 +301,8 @@ export default {
|
|
|
290
301
|
requiredEducationLevel: "Bachelor's Degree",
|
|
291
302
|
minYearsOfExperience: 10,
|
|
292
303
|
maxYearsOfExperience: 14,
|
|
293
|
-
minSalary:
|
|
294
|
-
maxSalary:
|
|
304
|
+
minSalary: 54303,
|
|
305
|
+
maxSalary: 56412,
|
|
295
306
|
},
|
|
296
307
|
{
|
|
297
308
|
id: '3',
|
|
@@ -299,358 +310,480 @@ export default {
|
|
|
299
310
|
requiredEducationLevel: "Bachelor's Degree",
|
|
300
311
|
minYearsOfExperience: 15,
|
|
301
312
|
maxYearsOfExperience: 19,
|
|
302
|
-
minSalary:
|
|
303
|
-
maxSalary:
|
|
313
|
+
minSalary: 57220,
|
|
314
|
+
maxSalary: 60513,
|
|
304
315
|
},
|
|
305
316
|
{
|
|
306
317
|
id: '4',
|
|
307
318
|
scheduleTitle: 'Licensed Teacher',
|
|
319
|
+
requiredEducationLevel: "Bachelor's Degree",
|
|
320
|
+
minYearsOfExperience: 20,
|
|
321
|
+
maxYearsOfExperience: 100,
|
|
322
|
+
minSalary: 61351,
|
|
323
|
+
maxSalary: 62189,
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
id: '5',
|
|
327
|
+
scheduleTitle: 'Licensed Teacher',
|
|
308
328
|
requiredEducationLevel: "Bachelor's Degree + 16 Credits",
|
|
309
329
|
minYearsOfExperience: 0,
|
|
310
330
|
maxYearsOfExperience: 4,
|
|
311
|
-
minSalary:
|
|
312
|
-
maxSalary:
|
|
331
|
+
minSalary: 53121,
|
|
332
|
+
maxSalary: 54459,
|
|
313
333
|
},
|
|
314
334
|
{
|
|
315
|
-
id: '
|
|
335
|
+
id: '6',
|
|
316
336
|
scheduleTitle: 'Licensed Teacher',
|
|
317
337
|
requiredEducationLevel: "Bachelor's Degree + 16 Credits",
|
|
318
338
|
minYearsOfExperience: 5,
|
|
319
339
|
maxYearsOfExperience: 9,
|
|
320
|
-
minSalary:
|
|
321
|
-
maxSalary:
|
|
340
|
+
minSalary: 54747,
|
|
341
|
+
maxSalary: 55903,
|
|
322
342
|
},
|
|
323
343
|
{
|
|
324
|
-
id: '
|
|
344
|
+
id: '7',
|
|
325
345
|
scheduleTitle: 'Licensed Teacher',
|
|
326
346
|
requiredEducationLevel: "Bachelor's Degree + 16 Credits",
|
|
327
347
|
minYearsOfExperience: 10,
|
|
328
348
|
maxYearsOfExperience: 14,
|
|
329
|
-
minSalary:
|
|
330
|
-
maxSalary:
|
|
349
|
+
minSalary: 56192,
|
|
350
|
+
maxSalary: 58376,
|
|
331
351
|
},
|
|
332
352
|
{
|
|
333
|
-
id: '
|
|
353
|
+
id: '8',
|
|
334
354
|
scheduleTitle: 'Licensed Teacher',
|
|
335
355
|
requiredEducationLevel: "Bachelor's Degree + 16 Credits",
|
|
336
356
|
minYearsOfExperience: 15,
|
|
337
357
|
maxYearsOfExperience: 19,
|
|
338
|
-
minSalary:
|
|
339
|
-
maxSalary:
|
|
358
|
+
minSalary: 59211,
|
|
359
|
+
maxSalary: 62615,
|
|
340
360
|
},
|
|
341
361
|
{
|
|
342
|
-
id: '
|
|
362
|
+
id: '9',
|
|
363
|
+
scheduleTitle: 'Licensed Teacher',
|
|
364
|
+
requiredEducationLevel: "Bachelor's Degree + 16 Credits",
|
|
365
|
+
minYearsOfExperience: 20,
|
|
366
|
+
maxYearsOfExperience: 100,
|
|
367
|
+
minSalary: 63481,
|
|
368
|
+
maxSalary: 64348,
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
id: '10',
|
|
343
372
|
scheduleTitle: 'Licensed Teacher',
|
|
344
373
|
requiredEducationLevel: "Bachelor's Degree + 32 Credits",
|
|
345
374
|
minYearsOfExperience: 0,
|
|
346
375
|
maxYearsOfExperience: 4,
|
|
347
|
-
minSalary:
|
|
348
|
-
maxSalary:
|
|
376
|
+
minSalary: 54993,
|
|
377
|
+
maxSalary: 56348,
|
|
349
378
|
},
|
|
350
379
|
{
|
|
351
|
-
id: '
|
|
380
|
+
id: '11',
|
|
352
381
|
scheduleTitle: 'Licensed Teacher',
|
|
353
382
|
requiredEducationLevel: "Bachelor's Degree + 32 Credits",
|
|
354
383
|
minYearsOfExperience: 5,
|
|
355
384
|
maxYearsOfExperience: 9,
|
|
356
|
-
minSalary:
|
|
357
|
-
maxSalary:
|
|
385
|
+
minSalary: 56636,
|
|
386
|
+
maxSalary: 57792,
|
|
358
387
|
},
|
|
359
388
|
{
|
|
360
|
-
id: '
|
|
389
|
+
id: '12',
|
|
361
390
|
scheduleTitle: 'Licensed Teacher',
|
|
362
391
|
requiredEducationLevel: "Bachelor's Degree + 32 Credits",
|
|
363
392
|
minYearsOfExperience: 10,
|
|
364
393
|
maxYearsOfExperience: 14,
|
|
365
|
-
minSalary:
|
|
366
|
-
maxSalary:
|
|
394
|
+
minSalary: 58081,
|
|
395
|
+
maxSalary: 60340,
|
|
367
396
|
},
|
|
368
397
|
{
|
|
369
|
-
id: '
|
|
398
|
+
id: '13',
|
|
370
399
|
scheduleTitle: 'Licensed Teacher',
|
|
371
400
|
requiredEducationLevel: "Bachelor's Degree + 32 Credits",
|
|
372
401
|
minYearsOfExperience: 15,
|
|
373
402
|
maxYearsOfExperience: 19,
|
|
374
|
-
minSalary:
|
|
375
|
-
maxSalary:
|
|
403
|
+
minSalary: 61202,
|
|
404
|
+
maxSalary: 64717,
|
|
376
405
|
},
|
|
377
406
|
{
|
|
378
|
-
id: '
|
|
407
|
+
id: '14',
|
|
408
|
+
scheduleTitle: 'Licensed Teacher',
|
|
409
|
+
requiredEducationLevel: "Bachelor's Degree + 32 Credits",
|
|
410
|
+
minYearsOfExperience: 20,
|
|
411
|
+
maxYearsOfExperience: 100,
|
|
412
|
+
minSalary: 65611,
|
|
413
|
+
maxSalary: 66507,
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
id: '15',
|
|
379
417
|
scheduleTitle: 'Licensed Teacher',
|
|
380
418
|
requiredEducationLevel: "Bachelor's Degree + 48 Credits",
|
|
381
419
|
minYearsOfExperience: 0,
|
|
382
420
|
maxYearsOfExperience: 4,
|
|
383
|
-
minSalary:
|
|
384
|
-
maxSalary:
|
|
421
|
+
minSalary: 56864,
|
|
422
|
+
maxSalary: 58237,
|
|
385
423
|
},
|
|
386
424
|
{
|
|
387
|
-
id: '
|
|
425
|
+
id: '16',
|
|
388
426
|
scheduleTitle: 'Licensed Teacher',
|
|
389
427
|
requiredEducationLevel: "Bachelor's Degree + 48 Credits",
|
|
390
428
|
minYearsOfExperience: 5,
|
|
391
429
|
maxYearsOfExperience: 9,
|
|
392
|
-
minSalary:
|
|
393
|
-
maxSalary:
|
|
430
|
+
minSalary: 58525,
|
|
431
|
+
maxSalary: 59681,
|
|
394
432
|
},
|
|
395
433
|
{
|
|
396
|
-
id: '
|
|
434
|
+
id: '17',
|
|
397
435
|
scheduleTitle: 'Licensed Teacher',
|
|
398
436
|
requiredEducationLevel: "Bachelor's Degree + 48 Credits",
|
|
399
437
|
minYearsOfExperience: 10,
|
|
400
438
|
maxYearsOfExperience: 14,
|
|
401
|
-
minSalary:
|
|
402
|
-
maxSalary:
|
|
439
|
+
minSalary: 59970,
|
|
440
|
+
maxSalary: 62304,
|
|
403
441
|
},
|
|
404
442
|
{
|
|
405
|
-
id: '
|
|
443
|
+
id: '18',
|
|
406
444
|
scheduleTitle: 'Licensed Teacher',
|
|
407
445
|
requiredEducationLevel: "Bachelor's Degree + 48 Credits",
|
|
408
446
|
minYearsOfExperience: 15,
|
|
409
447
|
maxYearsOfExperience: 19,
|
|
410
|
-
minSalary:
|
|
411
|
-
maxSalary:
|
|
448
|
+
minSalary: 63192,
|
|
449
|
+
maxSalary: 66818,
|
|
412
450
|
},
|
|
413
451
|
{
|
|
414
|
-
id: '
|
|
452
|
+
id: '19',
|
|
453
|
+
scheduleTitle: 'Licensed Teacher',
|
|
454
|
+
requiredEducationLevel: "Bachelor's Degree + 48 Credits",
|
|
455
|
+
minYearsOfExperience: 20,
|
|
456
|
+
maxYearsOfExperience: 100,
|
|
457
|
+
minSalary: 67742,
|
|
458
|
+
maxSalary: 68666,
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
id: '20',
|
|
415
462
|
scheduleTitle: 'Licensed Teacher',
|
|
416
463
|
requiredEducationLevel: "Master's Degree",
|
|
417
464
|
minYearsOfExperience: 0,
|
|
418
465
|
maxYearsOfExperience: 4,
|
|
419
|
-
minSalary:
|
|
420
|
-
maxSalary:
|
|
466
|
+
minSalary: 58736,
|
|
467
|
+
maxSalary: 60126,
|
|
421
468
|
},
|
|
422
469
|
{
|
|
423
|
-
id: '
|
|
470
|
+
id: '21',
|
|
424
471
|
scheduleTitle: 'Licensed Teacher',
|
|
425
472
|
requiredEducationLevel: "Master's Degree",
|
|
426
473
|
minYearsOfExperience: 5,
|
|
427
474
|
maxYearsOfExperience: 9,
|
|
428
|
-
minSalary:
|
|
429
|
-
maxSalary:
|
|
475
|
+
minSalary: 60415,
|
|
476
|
+
maxSalary: 61571,
|
|
430
477
|
},
|
|
431
478
|
{
|
|
432
|
-
id: '
|
|
479
|
+
id: '22',
|
|
433
480
|
scheduleTitle: 'Licensed Teacher',
|
|
434
481
|
requiredEducationLevel: "Master's Degree",
|
|
435
482
|
minYearsOfExperience: 10,
|
|
436
483
|
maxYearsOfExperience: 14,
|
|
437
|
-
minSalary:
|
|
438
|
-
maxSalary:
|
|
484
|
+
minSalary: 61859,
|
|
485
|
+
maxSalary: 64268,
|
|
439
486
|
},
|
|
440
487
|
{
|
|
441
|
-
id: '
|
|
488
|
+
id: '23',
|
|
442
489
|
scheduleTitle: 'Licensed Teacher',
|
|
443
490
|
requiredEducationLevel: "Master's Degree",
|
|
444
491
|
minYearsOfExperience: 15,
|
|
445
492
|
maxYearsOfExperience: 19,
|
|
446
|
-
minSalary:
|
|
447
|
-
maxSalary:
|
|
493
|
+
minSalary: 65183,
|
|
494
|
+
maxSalary: 68920,
|
|
448
495
|
},
|
|
449
496
|
{
|
|
450
|
-
id: '
|
|
497
|
+
id: '24',
|
|
498
|
+
scheduleTitle: 'Licensed Teacher',
|
|
499
|
+
requiredEducationLevel: "Master's Degree",
|
|
500
|
+
minYearsOfExperience: 20,
|
|
501
|
+
maxYearsOfExperience: 100,
|
|
502
|
+
minSalary: 69873,
|
|
503
|
+
maxSalary: 70827,
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
id: '25',
|
|
451
507
|
scheduleTitle: 'Licensed Teacher',
|
|
452
508
|
requiredEducationLevel: "Master's Degree + 16 Credits",
|
|
453
509
|
minYearsOfExperience: 0,
|
|
454
510
|
maxYearsOfExperience: 4,
|
|
455
|
-
minSalary:
|
|
456
|
-
maxSalary:
|
|
511
|
+
minSalary: 60607,
|
|
512
|
+
maxSalary: 62015,
|
|
457
513
|
},
|
|
458
514
|
{
|
|
459
|
-
id: '
|
|
515
|
+
id: '26',
|
|
460
516
|
scheduleTitle: 'Licensed Teacher',
|
|
461
517
|
requiredEducationLevel: "Master's Degree + 16 Credits",
|
|
462
518
|
minYearsOfExperience: 5,
|
|
463
519
|
maxYearsOfExperience: 9,
|
|
464
|
-
minSalary:
|
|
465
|
-
maxSalary:
|
|
520
|
+
minSalary: 62304,
|
|
521
|
+
maxSalary: 63460,
|
|
466
522
|
},
|
|
467
523
|
{
|
|
468
|
-
id: '
|
|
524
|
+
id: '27',
|
|
469
525
|
scheduleTitle: 'Licensed Teacher',
|
|
470
526
|
requiredEducationLevel: "Master's Degree + 16 Credits",
|
|
471
527
|
minYearsOfExperience: 10,
|
|
472
528
|
maxYearsOfExperience: 14,
|
|
473
|
-
minSalary:
|
|
474
|
-
maxSalary:
|
|
529
|
+
minSalary: 63748,
|
|
530
|
+
maxSalary: 66233,
|
|
475
531
|
},
|
|
476
532
|
{
|
|
477
|
-
id: '
|
|
533
|
+
id: '28',
|
|
478
534
|
scheduleTitle: 'Licensed Teacher',
|
|
479
535
|
requiredEducationLevel: "Master's Degree + 16 Credits",
|
|
480
536
|
minYearsOfExperience: 15,
|
|
481
537
|
maxYearsOfExperience: 19,
|
|
482
|
-
minSalary:
|
|
483
|
-
maxSalary:
|
|
538
|
+
minSalary: 67174,
|
|
539
|
+
maxSalary: 71022,
|
|
484
540
|
},
|
|
485
541
|
{
|
|
486
|
-
id: '
|
|
542
|
+
id: '29',
|
|
543
|
+
scheduleTitle: 'Licensed Teacher',
|
|
544
|
+
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
545
|
+
minYearsOfExperience: 20,
|
|
546
|
+
maxYearsOfExperience: 100,
|
|
547
|
+
minSalary: 72003,
|
|
548
|
+
maxSalary: 72986,
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
id: '30',
|
|
487
552
|
scheduleTitle: 'Licensed Teacher',
|
|
488
553
|
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
489
554
|
minYearsOfExperience: 0,
|
|
490
555
|
maxYearsOfExperience: 4,
|
|
491
|
-
minSalary:
|
|
492
|
-
maxSalary:
|
|
556
|
+
minSalary: 62479,
|
|
557
|
+
maxSalary: 63904,
|
|
493
558
|
},
|
|
494
559
|
{
|
|
495
|
-
id: '
|
|
560
|
+
id: '31',
|
|
496
561
|
scheduleTitle: 'Licensed Teacher',
|
|
497
562
|
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
498
563
|
minYearsOfExperience: 5,
|
|
499
564
|
maxYearsOfExperience: 9,
|
|
500
|
-
minSalary:
|
|
501
|
-
maxSalary:
|
|
565
|
+
minSalary: 64193,
|
|
566
|
+
maxSalary: 65349,
|
|
502
567
|
},
|
|
503
568
|
{
|
|
504
|
-
id: '
|
|
569
|
+
id: '32',
|
|
505
570
|
scheduleTitle: 'Licensed Teacher',
|
|
506
571
|
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
507
572
|
minYearsOfExperience: 10,
|
|
508
573
|
maxYearsOfExperience: 14,
|
|
509
|
-
minSalary:
|
|
510
|
-
maxSalary:
|
|
574
|
+
minSalary: 65637,
|
|
575
|
+
maxSalary: 68197,
|
|
511
576
|
},
|
|
512
577
|
{
|
|
513
|
-
id: '
|
|
578
|
+
id: '33',
|
|
514
579
|
scheduleTitle: 'Licensed Teacher',
|
|
515
580
|
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
516
581
|
minYearsOfExperience: 15,
|
|
517
582
|
maxYearsOfExperience: 19,
|
|
518
|
-
minSalary:
|
|
519
|
-
maxSalary:
|
|
583
|
+
minSalary: 69165,
|
|
584
|
+
maxSalary: 73124,
|
|
520
585
|
},
|
|
521
586
|
{
|
|
522
|
-
id: '
|
|
587
|
+
id: '34',
|
|
588
|
+
scheduleTitle: 'Licensed Teacher',
|
|
589
|
+
requiredEducationLevel: "Master's Degree + 32 Credits",
|
|
590
|
+
minYearsOfExperience: 20,
|
|
591
|
+
maxYearsOfExperience: 100,
|
|
592
|
+
minSalary: 74134,
|
|
593
|
+
maxSalary: 75145,
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
id: '35',
|
|
523
597
|
scheduleTitle: 'Licensed Teacher',
|
|
524
598
|
requiredEducationLevel: "Master's Degree + 48 Credits",
|
|
525
599
|
minYearsOfExperience: 0,
|
|
526
600
|
maxYearsOfExperience: 4,
|
|
527
|
-
minSalary:
|
|
528
|
-
maxSalary:
|
|
601
|
+
minSalary: 64350,
|
|
602
|
+
maxSalary: 65794,
|
|
529
603
|
},
|
|
530
604
|
{
|
|
531
|
-
id: '
|
|
605
|
+
id: '36',
|
|
532
606
|
scheduleTitle: 'Licensed Teacher',
|
|
533
607
|
requiredEducationLevel: "Master's Degree + 48 Credits",
|
|
534
608
|
minYearsOfExperience: 5,
|
|
535
609
|
maxYearsOfExperience: 9,
|
|
536
|
-
minSalary:
|
|
537
|
-
maxSalary:
|
|
610
|
+
minSalary: 66082,
|
|
611
|
+
maxSalary: 67237,
|
|
538
612
|
},
|
|
539
613
|
{
|
|
540
|
-
id: '
|
|
614
|
+
id: '37',
|
|
541
615
|
scheduleTitle: 'Licensed Teacher',
|
|
542
616
|
requiredEducationLevel: "Master's Degree + 48 Credits",
|
|
543
617
|
minYearsOfExperience: 10,
|
|
544
618
|
maxYearsOfExperience: 14,
|
|
545
|
-
minSalary:
|
|
546
|
-
maxSalary:
|
|
619
|
+
minSalary: 67527,
|
|
620
|
+
maxSalary: 70161,
|
|
547
621
|
},
|
|
548
622
|
{
|
|
549
|
-
id: '
|
|
623
|
+
id: '38',
|
|
550
624
|
scheduleTitle: 'Licensed Teacher',
|
|
551
625
|
requiredEducationLevel: "Master's Degree + 48 Credits",
|
|
552
626
|
minYearsOfExperience: 15,
|
|
553
627
|
maxYearsOfExperience: 19,
|
|
554
|
-
minSalary:
|
|
555
|
-
maxSalary:
|
|
628
|
+
minSalary: 71155,
|
|
629
|
+
maxSalary: 75225,
|
|
556
630
|
},
|
|
557
631
|
{
|
|
558
|
-
id: '
|
|
632
|
+
id: '39',
|
|
633
|
+
scheduleTitle: 'Licensed Teacher',
|
|
634
|
+
requiredEducationLevel: "Master's Degree + 48 Credits",
|
|
635
|
+
minYearsOfExperience: 20,
|
|
636
|
+
maxYearsOfExperience: 100,
|
|
637
|
+
minSalary: 76264,
|
|
638
|
+
maxSalary: 77304,
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
id: '40',
|
|
559
642
|
scheduleTitle: 'Licensed Teacher',
|
|
560
643
|
requiredEducationLevel: "Master's Degree + 64 Credits",
|
|
561
644
|
minYearsOfExperience: 0,
|
|
562
645
|
maxYearsOfExperience: 4,
|
|
563
|
-
minSalary:
|
|
564
|
-
maxSalary:
|
|
646
|
+
minSalary: 66222,
|
|
647
|
+
maxSalary: 67683,
|
|
565
648
|
},
|
|
566
649
|
{
|
|
567
|
-
id: '
|
|
650
|
+
id: '41',
|
|
568
651
|
scheduleTitle: 'Licensed Teacher',
|
|
569
652
|
requiredEducationLevel: "Master's Degree + 64 Credits",
|
|
570
653
|
minYearsOfExperience: 5,
|
|
571
654
|
maxYearsOfExperience: 9,
|
|
572
|
-
minSalary:
|
|
573
|
-
maxSalary:
|
|
655
|
+
minSalary: 67971,
|
|
656
|
+
maxSalary: 69126,
|
|
574
657
|
},
|
|
575
658
|
{
|
|
576
|
-
id: '
|
|
659
|
+
id: '42',
|
|
577
660
|
scheduleTitle: 'Licensed Teacher',
|
|
578
661
|
requiredEducationLevel: "Master's Degree + 64 Credits",
|
|
579
662
|
minYearsOfExperience: 10,
|
|
580
663
|
maxYearsOfExperience: 14,
|
|
581
|
-
minSalary:
|
|
582
|
-
maxSalary:
|
|
664
|
+
minSalary: 69416,
|
|
665
|
+
maxSalary: 72125,
|
|
583
666
|
},
|
|
584
667
|
{
|
|
585
|
-
id: '
|
|
668
|
+
id: '43',
|
|
586
669
|
scheduleTitle: 'Licensed Teacher',
|
|
587
670
|
requiredEducationLevel: "Master's Degree + 64 Credits",
|
|
588
671
|
minYearsOfExperience: 15,
|
|
589
672
|
maxYearsOfExperience: 19,
|
|
590
|
-
minSalary:
|
|
591
|
-
maxSalary:
|
|
673
|
+
minSalary: 73146,
|
|
674
|
+
maxSalary: 77327,
|
|
592
675
|
},
|
|
593
676
|
{
|
|
594
|
-
id: '
|
|
677
|
+
id: '44',
|
|
678
|
+
scheduleTitle: 'Licensed Teacher',
|
|
679
|
+
requiredEducationLevel: "Master's Degree + 64 Credits",
|
|
680
|
+
minYearsOfExperience: 20,
|
|
681
|
+
maxYearsOfExperience: 100,
|
|
682
|
+
minSalary: 78395,
|
|
683
|
+
maxSalary: 79463,
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
id: '45',
|
|
595
687
|
scheduleTitle: 'Licensed Teacher',
|
|
596
688
|
requiredEducationLevel: 'Ph.D./Ed.D. or higher',
|
|
597
689
|
minYearsOfExperience: 0,
|
|
598
690
|
maxYearsOfExperience: 4,
|
|
599
|
-
minSalary:
|
|
600
|
-
maxSalary:
|
|
691
|
+
minSalary: 68093,
|
|
692
|
+
maxSalary: 69572,
|
|
601
693
|
},
|
|
602
694
|
{
|
|
603
|
-
id: '
|
|
695
|
+
id: '46',
|
|
604
696
|
scheduleTitle: 'Licensed Teacher',
|
|
605
697
|
requiredEducationLevel: 'Ph.D./Ed.D. or higher',
|
|
606
698
|
minYearsOfExperience: 5,
|
|
607
699
|
maxYearsOfExperience: 9,
|
|
608
|
-
minSalary:
|
|
609
|
-
maxSalary:
|
|
700
|
+
minSalary: 69860,
|
|
701
|
+
maxSalary: 71015,
|
|
610
702
|
},
|
|
611
703
|
{
|
|
612
|
-
id: '
|
|
704
|
+
id: '47',
|
|
613
705
|
scheduleTitle: 'Licensed Teacher',
|
|
614
706
|
requiredEducationLevel: 'Ph.D./Ed.D. or higher',
|
|
615
707
|
minYearsOfExperience: 10,
|
|
616
708
|
maxYearsOfExperience: 14,
|
|
617
|
-
minSalary:
|
|
618
|
-
maxSalary:
|
|
709
|
+
minSalary: 71305,
|
|
710
|
+
maxSalary: 74089,
|
|
619
711
|
},
|
|
620
712
|
{
|
|
621
|
-
id: '
|
|
713
|
+
id: '48',
|
|
622
714
|
scheduleTitle: 'Licensed Teacher',
|
|
623
715
|
requiredEducationLevel: 'Ph.D./Ed.D. or higher',
|
|
624
716
|
minYearsOfExperience: 15,
|
|
625
717
|
maxYearsOfExperience: 19,
|
|
626
|
-
minSalary:
|
|
627
|
-
maxSalary:
|
|
718
|
+
minSalary: 75137,
|
|
719
|
+
maxSalary: 79428,
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
id: '49',
|
|
723
|
+
scheduleTitle: 'Licensed Teacher',
|
|
724
|
+
requiredEducationLevel: 'Ph.D./Ed.D. or higher',
|
|
725
|
+
minYearsOfExperience: 20,
|
|
726
|
+
maxYearsOfExperience: 100,
|
|
727
|
+
minSalary: 80526,
|
|
728
|
+
maxSalary: 81624,
|
|
628
729
|
},
|
|
629
730
|
],
|
|
630
731
|
minSalary: 0,
|
|
631
732
|
maxSalary: 0,
|
|
733
|
+
showSalary: false,
|
|
632
734
|
}
|
|
633
735
|
},
|
|
736
|
+
watch: {
|
|
737
|
+
years() {
|
|
738
|
+
this.showSalary = false // Hide the salary when years change
|
|
739
|
+
},
|
|
740
|
+
educationLevel() {
|
|
741
|
+
this.showSalary = false // Hide the salary when education level changes
|
|
742
|
+
},
|
|
743
|
+
},
|
|
634
744
|
methods: {
|
|
635
745
|
computedSalaryRange() {
|
|
746
|
+
// console.log('Computing salary range...')
|
|
636
747
|
const numberOfYears = parseInt(this.years, 10)
|
|
748
|
+
// console.log('Selected years of experience:', numberOfYears)
|
|
749
|
+
// console.log('Selected education level:', this.educationLevel)
|
|
750
|
+
|
|
637
751
|
const salaryRangesByEducationLevel = this.salaryRanges.filter(
|
|
638
752
|
s => s.requiredEducationLevel === this.educationLevel
|
|
639
753
|
)
|
|
640
|
-
// console.log(
|
|
641
|
-
//
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
.filter(smin => smin.minYearsOfExperience <= numberOfYears)
|
|
645
|
-
.filter(smax => smax.maxYearsOfExperience >= numberOfYears)
|
|
646
|
-
// console.log(this.years, numberOfYears)
|
|
647
|
-
// console.log(salaryRangesByExperience)
|
|
754
|
+
// console.log(
|
|
755
|
+
// 'Filtered salary ranges by education level:',
|
|
756
|
+
// salaryRangesByEducationLevel
|
|
757
|
+
// )
|
|
648
758
|
|
|
649
|
-
|
|
650
|
-
|
|
759
|
+
// Filter the salary ranges by experience
|
|
760
|
+
const salaryRangesByExperience = salaryRangesByEducationLevel.filter(
|
|
761
|
+
s =>
|
|
762
|
+
s.minYearsOfExperience <= numberOfYears &&
|
|
763
|
+
s.maxYearsOfExperience >= numberOfYears
|
|
764
|
+
)
|
|
765
|
+
// console.log(
|
|
766
|
+
// 'Filtered salary ranges by experience:',
|
|
767
|
+
// salaryRangesByExperience
|
|
768
|
+
// )
|
|
651
769
|
|
|
652
|
-
//
|
|
653
|
-
|
|
770
|
+
// Check if any salary range is found
|
|
771
|
+
if (salaryRangesByExperience.length > 0) {
|
|
772
|
+
this.minSalary = salaryRangesByExperience[0].minSalary
|
|
773
|
+
this.maxSalary = salaryRangesByExperience[0].maxSalary
|
|
774
|
+
this.showSalary = true // Show the salary after calculation
|
|
775
|
+
// console.log(
|
|
776
|
+
// 'Salary range found. Displaying salary:',
|
|
777
|
+
// this.minSalary,
|
|
778
|
+
// '-',
|
|
779
|
+
// this.maxSalary
|
|
780
|
+
// )
|
|
781
|
+
} else {
|
|
782
|
+
this.minSalary = 0
|
|
783
|
+
this.maxSalary = 0
|
|
784
|
+
this.showSalary = false // Hide the salary if no match found
|
|
785
|
+
// console.log('No matching salary range found. Hiding salary.')
|
|
786
|
+
}
|
|
654
787
|
},
|
|
655
788
|
scrollToElement() {
|
|
656
789
|
const el = this.$refs.scrollToMe
|
|
@@ -708,7 +841,13 @@ export default {
|
|
|
708
841
|
.years-selector,
|
|
709
842
|
.education-selector {
|
|
710
843
|
max-width: space(15);
|
|
711
|
-
margin: space(1) 0;
|
|
844
|
+
margin: 0 0 space(1) 0;
|
|
845
|
+
}
|
|
846
|
+
.selectionHeading {
|
|
847
|
+
margin-bottom: 0;
|
|
848
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
849
|
+
font-weight: 700;
|
|
850
|
+
font-size: 1rem !important;
|
|
712
851
|
}
|
|
713
852
|
}
|
|
714
853
|
}
|
|
@@ -757,7 +896,7 @@ export default {
|
|
|
757
896
|
.years-selector,
|
|
758
897
|
.education-selector {
|
|
759
898
|
max-width: space(15);
|
|
760
|
-
margin: space(1) 0;
|
|
899
|
+
// margin: space(1) 0;
|
|
761
900
|
}
|
|
762
901
|
}
|
|
763
902
|
.notification-group--inline {
|
|
@@ -209,7 +209,10 @@ export default {
|
|
|
209
209
|
if (coverImage) {
|
|
210
210
|
const coverImageFiles = coverImage.files || []
|
|
211
211
|
const coverImageFull = coverImageFiles.find(f => f.name === 'full')
|
|
212
|
-
if (
|
|
212
|
+
if (
|
|
213
|
+
coverImageFull.length > 0 &&
|
|
214
|
+
coverImageFull.filename.includes('headerimage')
|
|
215
|
+
) {
|
|
213
216
|
imageUrl = null
|
|
214
217
|
headerImageUrl = coverImageFull ? coverImageFull.url : coverImage.url || ''
|
|
215
218
|
} else {
|