From 89d32b6a5b09ff31b3adc7e656844a37907b1328 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Thu, 12 May 2022 16:52:40 -0400 Subject: [PATCH 01/16] ga event defect --- src/constants/analytics.js | 1 + src/layouts/address-lookup/address-lookup.vue | 14 ++++++++++++++ .../license-plate-lookup/license-plate-lookup.vue | 7 ++++--- src/layouts/vin-lookup/vin-lookup.vue | 14 +++++++++----- 4 files changed, 28 insertions(+), 8 deletions(-) diff --git a/src/constants/analytics.js b/src/constants/analytics.js index f6f6ff82e..a3f057150 100644 --- a/src/constants/analytics.js +++ b/src/constants/analytics.js @@ -26,6 +26,7 @@ const GaLabels = { ERROR: 'Error', LICENSE_PLATE_LOOKUP: 'License_Plate_Look_Up', VIN_LOOKUP: 'Vin_Look_Up', + ADDRESS_LOOKUP: 'Address_Look_up', }; diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index 54f096896..87278476a 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -152,6 +152,17 @@ export default { this.$route ); }, + attachCustomEvents() { + this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); + }, + logGAEventForVin(){ + this.pushEventToGA( + this.$route.query[this.queryStrings.FMG_PAGE], + this.GaActions.SUBMITTED, + this.GaLabels.ADDRESS_LOOKUP, + true + ); + }, getRegistrationAddressFromStore() { return store.getters.vehicle.registration.address; }, @@ -337,6 +348,9 @@ export default { }, }, + mounted() { + this.attachCustomEvents(); + }, computed: { AlertNonServiceableZipHeader(){ const zipCode = this.serviceZipCode ? this.serviceZipCode : this.customerQuestions.addressQuestions.zipCode; diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 5e7fdc2c1..13f50ecc4 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -187,14 +187,15 @@ export default { store.dispatch(storeActions.RESET_PARTS_STATE_AND_DEPENDENCIES); }, attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, () => { - this.pushEventToGA( + this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); + }, + logGAEventForVin(){ + this.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED, this.GaLabels.LICENSE_PLATE_LOOKUP, true ); - }); }, getLicensePlateFromStore() { return store.getters.vehicle.registration.licensePlate; diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 0294716af..4dc1f6382 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -192,6 +192,9 @@ export default { vinPopulatedOnPageLoad: this.getVinFromStore()?.length > 0, }; }, + mounted() { + this.attachCustomEvents(); + }, computed: { perfectMatchNewVinAlert() { return this.vinPopulatedOnPageLoad && this.vin === this.getVinFromStore(); @@ -255,15 +258,16 @@ export default { getZipFromStore(){ return store.getters.order.serviceLocation.zipCode; }, - attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, () => { - this.pushEventToGA( + attachCustomEvents() { + this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); + }, + logGAEventForVin(){ + this.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED, - this.GaLabels.VINLOOKUP, + this.GaLabels.VIN_LOOKUP, true ); - }); }, backButtonAction() { this.$router.navigate(this.navigationScenarios.CLICKED_BACK, this.$route); From 4ecf7b0d5acc8cdeb464d008e7c679dc3ecfc522 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Fri, 13 May 2022 13:40:15 -0400 Subject: [PATCH 02/16] will update tests later --- .../license-plate-lookup/license-plate-lookup.spec.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js index 9afd7e39a..33169e5e3 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js +++ b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js @@ -1,4 +1,4 @@ -// Components +/* // Components import licensePlateLookup from "@/layouts/license-plate-lookup/license-plate-lookup.vue"; // Supporting Files @@ -10,6 +10,7 @@ import { shallowMount, flushPromises } from "@vue/test-utils"; import { getMountOptions } from "@/helpers/unit-test-helper.js"; import { nextTick } from "vue"; import store from "@/store"; +import { mount } from "@vue/test-utils"; jest.mock('@/assets/img/loader.gif', () => 'loader.gif') jest.mock('@/assets/img/windshield.png', () => 'windshield.png') @@ -86,7 +87,6 @@ describe("license-plate-lookup.vue", () => { //Assert expect(wrapper.vm.$router.navigate).toHaveBeenCalled(); - }); }); @@ -466,3 +466,4 @@ function setupMocks({ return { wrapper, apiPromise }; } + */ \ No newline at end of file From 1c4d6099591b01347fc69341caf2dce553710236 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Fri, 13 May 2022 14:07:06 -0400 Subject: [PATCH 03/16] testing --- .../license-plate-lookup.spec.js | 40 +++++++++---------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js index 33169e5e3..2d613c47a 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js +++ b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js @@ -1,4 +1,4 @@ -/* // Components +// Components import licensePlateLookup from "@/layouts/license-plate-lookup/license-plate-lookup.vue"; // Supporting Files @@ -10,7 +10,6 @@ import { shallowMount, flushPromises } from "@vue/test-utils"; import { getMountOptions } from "@/helpers/unit-test-helper.js"; import { nextTick } from "vue"; import store from "@/store"; -import { mount } from "@vue/test-utils"; jest.mock('@/assets/img/loader.gif', () => 'loader.gif') jest.mock('@/assets/img/windshield.png', () => 'windshield.png') @@ -48,7 +47,7 @@ jest.mock("@/store", () => ({ }, })); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("CarId set, arePagePrerequisitesValid should be true ", async () => { //Arrange const { wrapper } = setupMocks({}); @@ -69,7 +68,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("BackButtonAction triggers a router.navigate change", async () => { //Arrange @@ -90,7 +89,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("getLicensePlateFromStore returns store license plate", async () => { // Arrange @@ -104,7 +103,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("getRegistrationZipFromStore returns store registration zip", async () => { // Arrange @@ -118,7 +117,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("getEmailFromStore returns store customer email", async () => { // Arrange @@ -132,7 +131,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("getServiceZipFromStore returns store service zip", async () => { // Arrange @@ -146,7 +145,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Navigate forward should be called and isCarId should be set to false when data entered matches store data on forwardButtonAction click", async () => { // Arrange @@ -180,7 +179,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Function should stop and datam isRegistrationZipServicable should be set to false when service zip entered returns false on forwardButtonAction click", async () => { // Arrange @@ -208,7 +207,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Function should stop and datam isCarIdDifferent should be set to true when carId entered doesn't match store carId or previously entered carId on forwardButtonAction click", async () => { // Arrange @@ -242,7 +241,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Navigate forward should be called and isCarId should be set to true when carId entered matches previously entered carId and rest of data entered matches store data on forwardButtonAction click", async () => { // Arrange @@ -277,7 +276,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when licensePlate textfield has new text", async () => { // Arrange @@ -294,7 +293,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when registrationZip textfield has new text", async () => { // Arrange @@ -311,7 +310,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when serviceZip textfield has new text", async () => { // Arrange @@ -328,7 +327,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("Dispatch reset damage and dependencies should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when updateCustomerInfo is called", async () => { // Arrange @@ -351,7 +350,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("NavigateAfterSave should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when navigateForward is called", async () => { // Arrange @@ -373,7 +372,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("navigateAfterSaveToHeritageFunnel should be called if isCarIdDifferent is false or isSelectedGlassAvailableForVehicle is true when navigateForward is called", async () => { // Arrange @@ -393,7 +392,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("dispatch non blocking store action called on validate zip", async () => { // Arrange @@ -408,7 +407,7 @@ describe("license-plate-lookup.vue", () => { }); }); -describe("license-plate-lookup.vue", () => { +describe.skip("license-plate-lookup.vue", () => { test("dispatch non blocking store action called on lookup vin", async () => { // Arrange @@ -466,4 +465,3 @@ function setupMocks({ return { wrapper, apiPromise }; } - */ \ No newline at end of file From b1e14f80df2d2ea2c6b7d13f832a165d9c4e2142 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Wed, 18 May 2022 08:43:06 -0400 Subject: [PATCH 04/16] ga event defect --- src/layouts/address-lookup/address-lookup.vue | 9 ++++----- .../license-plate-lookup/license-plate-lookup.vue | 7 +++---- src/layouts/vin-lookup/vin-lookup.vue | 7 +++---- src/mixins/analytics-mixin.js | 9 +++++++-- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index 87278476a..cebc7e414 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -153,16 +153,15 @@ export default { ); }, attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); - }, - logGAEventForVin(){ + this.prependActionToMethod(this, this.forwardButtonAction, () => { this.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED, this.GaLabels.ADDRESS_LOOKUP, true - ); - }, + ); + }); + }, getRegistrationAddressFromStore() { return store.getters.vehicle.registration.address; }, diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 13f50ecc4..e76f05435 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -187,15 +187,14 @@ export default { store.dispatch(storeActions.RESET_PARTS_STATE_AND_DEPENDENCIES); }, attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); - }, - logGAEventForVin(){ + this.prependActionToMethod(this, this.forwardButtonAction, () => { this.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED, this.GaLabels.LICENSE_PLATE_LOOKUP, true - ); + ); + }); }, getLicensePlateFromStore() { return store.getters.vehicle.registration.licensePlate; diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 4dc1f6382..1ef501829 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -259,15 +259,14 @@ export default { return store.getters.order.serviceLocation.zipCode; }, attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, this.logGAEventForVin()); - }, - logGAEventForVin(){ - this.pushEventToGA( + this.prependActionToMethod(this, this.forwardButtonAction, () => { + this.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED, this.GaLabels.VIN_LOOKUP, true ); + }); }, backButtonAction() { this.$router.navigate(this.navigationScenarios.CLICKED_BACK, this.$route); diff --git a/src/mixins/analytics-mixin.js b/src/mixins/analytics-mixin.js index d13e1b222..926c4764c 100644 --- a/src/mixins/analytics-mixin.js +++ b/src/mixins/analytics-mixin.js @@ -97,8 +97,13 @@ export default { }, prependActionToMethod(object, method, actionToPrepend) { - const baseMethod = object[method.name]; - object[method.name] = function () { + var baseMethod = object[method.name]; + if(method.name.startsWith('bound ')){ + baseMethod = method.name.substring(6); + }else{ + baseMethod = object[method.name]; + } + object[method.name.substring(6)] = function () { actionToPrepend.apply(this, arguments); return baseMethod.apply(object, arguments); }; From 9e2d5288f06a04f9f43e6861ac88ad0eff87cd06 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Wed, 18 May 2022 16:45:24 -0400 Subject: [PATCH 05/16] CSR-550 | Possible fix for safari cache --- public/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/public/index.html b/public/index.html index b8a80e384..8fa1e2793 100644 --- a/public/index.html +++ b/public/index.html @@ -3,6 +3,14 @@ From e04979829a8631adb0124d49a402eba820ddd849 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Wed, 18 May 2022 18:18:40 -0400 Subject: [PATCH 06/16] ga event defect --- src/layouts/address-lookup/address-lookup.vue | 11 +++--- .../license-plate-lookup.spec.js | 36 +++++++++---------- .../license-plate-lookup.vue | 9 ++--- src/layouts/vin-lookup/vin-lookup.vue | 9 ++--- src/mixins/analytics-mixin.js | 10 ++---- 5 files changed, 37 insertions(+), 38 deletions(-) diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index 71e91f11a..e4db3aee6 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -151,11 +151,12 @@ export default { ); }, attachCustomEvents() { - this.prependActionToMethod(this, this.forwardButtonAction, () => { - this.pushEventToGA( - this.$route.query[this.queryStrings.FMG_PAGE], - this.GaActions.SUBMITTED, - this.GaLabels.ADDRESS_LOOKUP, + this.prependActionToMethod(this, this.forwardButtonAction, () => { + const self = this; + self.pushEventToGA( + self.$route.query[self.queryStrings.FMG_PAGE], + self.GaActions.SUBMITTED, + self.GaLabels.ADDRESS_LOOKUP, true ); }); diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js index 2d613c47a..281947ae4 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js +++ b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js @@ -47,7 +47,7 @@ jest.mock("@/store", () => ({ }, })); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("CarId set, arePagePrerequisitesValid should be true ", async () => { //Arrange const { wrapper } = setupMocks({}); @@ -68,7 +68,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("BackButtonAction triggers a router.navigate change", async () => { //Arrange @@ -89,7 +89,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("getLicensePlateFromStore returns store license plate", async () => { // Arrange @@ -103,7 +103,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("getRegistrationZipFromStore returns store registration zip", async () => { // Arrange @@ -117,7 +117,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("getEmailFromStore returns store customer email", async () => { // Arrange @@ -131,7 +131,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("getServiceZipFromStore returns store service zip", async () => { // Arrange @@ -145,7 +145,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Navigate forward should be called and isCarId should be set to false when data entered matches store data on forwardButtonAction click", async () => { // Arrange @@ -179,7 +179,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Function should stop and datam isRegistrationZipServicable should be set to false when service zip entered returns false on forwardButtonAction click", async () => { // Arrange @@ -207,7 +207,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Function should stop and datam isCarIdDifferent should be set to true when carId entered doesn't match store carId or previously entered carId on forwardButtonAction click", async () => { // Arrange @@ -241,7 +241,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Navigate forward should be called and isCarId should be set to true when carId entered matches previously entered carId and rest of data entered matches store data on forwardButtonAction click", async () => { // Arrange @@ -276,7 +276,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when licensePlate textfield has new text", async () => { // Arrange @@ -293,7 +293,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when registrationZip textfield has new text", async () => { // Arrange @@ -310,7 +310,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Button Text should revert to initial value when serviceZip textfield has new text", async () => { // Arrange @@ -327,7 +327,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("Dispatch reset damage and dependencies should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when updateCustomerInfo is called", async () => { // Arrange @@ -350,7 +350,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("NavigateAfterSave should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when navigateForward is called", async () => { // Arrange @@ -372,7 +372,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("navigateAfterSaveToHeritageFunnel should be called if isCarIdDifferent is false or isSelectedGlassAvailableForVehicle is true when navigateForward is called", async () => { // Arrange @@ -392,7 +392,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("dispatch non blocking store action called on validate zip", async () => { // Arrange @@ -407,7 +407,7 @@ describe.skip("license-plate-lookup.vue", () => { }); }); -describe.skip("license-plate-lookup.vue", () => { +describe("license-plate-lookup.vue", () => { test("dispatch non blocking store action called on lookup vin", async () => { // Arrange diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 17aa1b632..3748ac776 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -229,10 +229,11 @@ export default { }, attachCustomEvents() { this.prependActionToMethod(this, this.forwardButtonAction, () => { - this.pushEventToGA( - this.$route.query[this.queryStrings.FMG_PAGE], - this.GaActions.SUBMITTED, - this.GaLabels.LICENSE_PLATE_LOOKUP, + const self = this; + self.pushEventToGA( + self.$route.query[self.queryStrings.FMG_PAGE], + self.GaActions.SUBMITTED, + self.GaLabels.LICENSE_PLATE_LOOKUP, true ); }); diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index e19a86e68..8e21e3d04 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -277,10 +277,11 @@ export default { }, attachCustomEvents() { this.prependActionToMethod(this, this.forwardButtonAction, () => { - this.pushEventToGA( - this.$route.query[this.queryStrings.FMG_PAGE], - this.GaActions.SUBMITTED, - this.GaLabels.VIN_LOOKUP, + const self = this; + self.pushEventToGA( + self.$route.query[self.queryStrings.FMG_PAGE], + self.GaActions.SUBMITTED, + self.GaLabels.VIN_LOOKUP, true ); }); diff --git a/src/mixins/analytics-mixin.js b/src/mixins/analytics-mixin.js index 926c4764c..6ceb3b48f 100644 --- a/src/mixins/analytics-mixin.js +++ b/src/mixins/analytics-mixin.js @@ -97,13 +97,9 @@ export default { }, prependActionToMethod(object, method, actionToPrepend) { - var baseMethod = object[method.name]; - if(method.name.startsWith('bound ')){ - baseMethod = method.name.substring(6); - }else{ - baseMethod = object[method.name]; - } - object[method.name.substring(6)] = function () { + let baseMethodName = method.name.startsWith('bound ') ? method.name.substring(6) : method.name ; + const baseMethod = object[baseMethodName]; + object[baseMethodName] = function () { actionToPrepend.apply(this, arguments); return baseMethod.apply(object, arguments); }; From e83710fb024653e3a0683d26da05c5e27c233da6 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Thu, 19 May 2022 08:30:54 -0400 Subject: [PATCH 07/16] ga defect --- src/layouts/address-lookup/address-lookup.vue | 9 ++++----- .../license-plate-lookup/license-plate-lookup.vue | 9 ++++----- src/layouts/vin-lookup/vin-lookup.vue | 9 ++++----- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index e4db3aee6..f6e0d2b3d 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -152,11 +152,10 @@ export default { }, attachCustomEvents() { this.prependActionToMethod(this, this.forwardButtonAction, () => { - const self = this; - self.pushEventToGA( - self.$route.query[self.queryStrings.FMG_PAGE], - self.GaActions.SUBMITTED, - self.GaLabels.ADDRESS_LOOKUP, + this.pushEventToGA( + this.$route.query[this.queryStrings.FMG_PAGE], + this.GaActions.SUBMITTED, + this.GaLabels.ADDRESS_LOOKUP, true ); }); diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 3748ac776..17aa1b632 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -229,11 +229,10 @@ export default { }, attachCustomEvents() { this.prependActionToMethod(this, this.forwardButtonAction, () => { - const self = this; - self.pushEventToGA( - self.$route.query[self.queryStrings.FMG_PAGE], - self.GaActions.SUBMITTED, - self.GaLabels.LICENSE_PLATE_LOOKUP, + this.pushEventToGA( + this.$route.query[this.queryStrings.FMG_PAGE], + this.GaActions.SUBMITTED, + this.GaLabels.LICENSE_PLATE_LOOKUP, true ); }); diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index 8e21e3d04..e19a86e68 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -277,11 +277,10 @@ export default { }, attachCustomEvents() { this.prependActionToMethod(this, this.forwardButtonAction, () => { - const self = this; - self.pushEventToGA( - self.$route.query[self.queryStrings.FMG_PAGE], - self.GaActions.SUBMITTED, - self.GaLabels.VIN_LOOKUP, + this.pushEventToGA( + this.$route.query[this.queryStrings.FMG_PAGE], + this.GaActions.SUBMITTED, + this.GaLabels.VIN_LOOKUP, true ); }); From 4715698f8e5cc1c750cad0fa67092493063b8ced Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Thu, 19 May 2022 08:36:22 -0400 Subject: [PATCH 08/16] ga defect --- src/mixins/analytics-mixin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixins/analytics-mixin.js b/src/mixins/analytics-mixin.js index 6ceb3b48f..133187797 100644 --- a/src/mixins/analytics-mixin.js +++ b/src/mixins/analytics-mixin.js @@ -97,7 +97,7 @@ export default { }, prependActionToMethod(object, method, actionToPrepend) { - let baseMethodName = method.name.startsWith('bound ') ? method.name.substring(6) : method.name ; + const baseMethodName = method.name.startsWith('bound ') ? method.name.substring(6) : method.name ; const baseMethod = object[baseMethodName]; object[baseMethodName] = function () { actionToPrepend.apply(this, arguments); From c8c48ebeb2e2716dfb819e486d24b406f91f4bbc Mon Sep 17 00:00:00 2001 From: bmauger Date: Thu, 19 May 2022 08:54:22 -0400 Subject: [PATCH 09/16] Update error styles per CSR-629 --- src/styles/common-error-styles.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/styles/common-error-styles.scss b/src/styles/common-error-styles.scss index 587900512..95985f7c4 100644 --- a/src/styles/common-error-styles.scss +++ b/src/styles/common-error-styles.scss @@ -88,12 +88,14 @@ html { border: 1px solid $gray-500; input:not(:focus) { + label { + border: none; box-shadow: 0 0 0 1px $gray-500; border-radius: .5rem; } } input:checked:focus { + label { + border: none; box-shadow: 0 0 0 2.5px $blue; border-radius: .5rem; } From 548310887bc790306d6d07f0cfe5904a782560b2 Mon Sep 17 00:00:00 2001 From: Donielle Austin Date: Thu, 19 May 2022 09:25:15 -0400 Subject: [PATCH 10/16] ga defect tests --- src/mixins/analytics-mixin.spec.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/mixins/analytics-mixin.spec.js b/src/mixins/analytics-mixin.spec.js index e63778466..8dd49045d 100644 --- a/src/mixins/analytics-mixin.spec.js +++ b/src/mixins/analytics-mixin.spec.js @@ -107,4 +107,17 @@ describe("analyticsMixin.js", () => { }]); }); + + test("Obj is not null after action prepended", () => { + //Arrange + const obj = {baseMethodName:"testMethodName", data:"testData"}; + const method = {name:"testMethodName", data:"testData" } + const action = "testAction"; + + //Act + analyticsMixin.methods.prependActionToMethod(obj, method, action); + + //Assert + expect(obj!=null); + }); }); \ No newline at end of file From f874e420dde1ffcbb0ef8b796afa93b9e50a50f9 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Thu, 19 May 2022 09:34:59 -0400 Subject: [PATCH 11/16] CSR-550 | Testing gif --- public/index.html | 8 -------- src/assets/img/wiper-loader.gif | Bin 0 -> 16045 bytes .../loading-modal/loading-modal.vue | 3 +++ 3 files changed, 3 insertions(+), 8 deletions(-) create mode 100644 src/assets/img/wiper-loader.gif diff --git a/public/index.html b/public/index.html index 8fa1e2793..b8a80e384 100644 --- a/public/index.html +++ b/public/index.html @@ -3,14 +3,6 @@ diff --git a/src/assets/img/wiper-loader.gif b/src/assets/img/wiper-loader.gif new file mode 100644 index 0000000000000000000000000000000000000000..e370b08734c00872743c3dcbc430b35cae88138a GIT binary patch literal 16045 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 +
+ +
From bfa2e96f5288f4618d23140f2dcc6e8101d86990 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Thu, 19 May 2022 09:48:46 -0400 Subject: [PATCH 12/16] CSR-5505 | Fixing unit tests for gif test --- src/common-components/loading-modal/loading-modal.spec.js | 1 + src/layouts/license-plate-lookup/license-plate-lookup.spec.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/common-components/loading-modal/loading-modal.spec.js b/src/common-components/loading-modal/loading-modal.spec.js index 7a500ce73..348604240 100644 --- a/src/common-components/loading-modal/loading-modal.spec.js +++ b/src/common-components/loading-modal/loading-modal.spec.js @@ -13,6 +13,7 @@ jest.mock( jest.mock('@/assets/img/loader.gif', () => 'loader.gif') jest.mock('@/assets/img/windshield.png', () => 'windshield.png') +jest.mock('@/assets/img/wiper-loader.gif', () => 'windshield.png') describe("loadingModal", () => { test("showModal sets modal visible", async () => { diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js index 9afd7e39a..d3258c41b 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.spec.js +++ b/src/layouts/license-plate-lookup/license-plate-lookup.spec.js @@ -13,6 +13,7 @@ import store from "@/store"; jest.mock('@/assets/img/loader.gif', () => 'loader.gif') jest.mock('@/assets/img/windshield.png', () => 'windshield.png') +jest.mock('@/assets/img/wiper-loader.gif', () => 'windshield.png') // Mock our module for promises. jest.mock("@/helpers/layout-helper.js", () => ({ From 5a9cb343a80c38ca083fe153a569d4b474565d66 Mon Sep 17 00:00:00 2001 From: bmauger Date: Thu, 19 May 2022 10:03:38 -0400 Subject: [PATCH 13/16] Temp lower coverage. --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 0749f4f71..839db4378 100644 --- a/jest.config.js +++ b/jest.config.js @@ -34,7 +34,7 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 85, + statements: 84, // Got the go ahead from Mark to temporarily lower this. Taking out initialize component made the year,make,model and style coverage drop a bit. Once unit tests for license plate lookup, vin lookup and address lookup are in the coverage should go back up to 90 }, }, From c52072faed3b188f7ced13f64c9611cd4ef00e57 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Thu, 19 May 2022 10:09:53 -0400 Subject: [PATCH 14/16] CSR-606: expand regex of vin-format validation rule to allow lowercase letters --- src/layouts/vin-lookup/vin-lookup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index e19a86e68..feb15adfc 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -162,7 +162,7 @@ defineRule( ); defineRule( "vin-format", - regex(/^[A-HJ-NPR-Z0-9]{17}$/, errorMessages.VIN_FORMAT) + regex(/^[a-hA-Hj-nJ-NpPr-zR-Z0-9]{17}$/, errorMessages.VIN_FORMAT) ); export default { From 6e24dc14170fda8667887cfd74a13943562003de Mon Sep 17 00:00:00 2001 From: bmauger Date: Thu, 19 May 2022 10:44:19 -0400 Subject: [PATCH 15/16] Test modal. --- src/common-components/loading-modal/loading-modal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common-components/loading-modal/loading-modal.vue b/src/common-components/loading-modal/loading-modal.vue index a44347860..ed3a48ddf 100644 --- a/src/common-components/loading-modal/loading-modal.vue +++ b/src/common-components/loading-modal/loading-modal.vue @@ -8,7 +8,7 @@
- + #eMBmJ8qcPAf4_to {animation: eMBmJ8qcPAf4_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf4_to__to { 0% {transform: translate(162.851563px,121.421875px)} 13.333333% {transform: translate(162.851563px,121.421875px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {transform: translate(162.851563px,101.421875px)} 100% {transform: translate(162.851563px,101.421875px)}} #eMBmJ8qcPAf4 {animation: eMBmJ8qcPAf4_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf4_c_o { 0% {opacity: 1} 13.333333% {opacity: 1;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf5_to {animation: eMBmJ8qcPAf5_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf5_to__to { 0% {transform: translate(150.339843px,121.421876px)} 6.666667% {transform: translate(150.339843px,121.421876px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 8.333333% {transform: translate(162.652343px,121.421876px)} 100% {transform: translate(162.652343px,121.421876px)}} #eMBmJ8qcPAf5 {animation: eMBmJ8qcPAf5_f_p 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf5_f_p { 0% {fill: #4d5151} 6.666667% {fill: #4d5151} 8.333333% {fill: #000} 100% {fill: #000}} #eMBmJ8qcPAf7_ts {animation: eMBmJ8qcPAf7_ts__ts 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf7_ts__ts { 0% {transform: translate(61.25px,121.25px) scale(0.5,0.5)} 6.666667% {transform: translate(61.25px,121.25px) scale(0.5,0.5);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 8.333333% {transform: translate(61.25px,121.25px) scale(1,1)} 100% {transform: translate(61.25px,121.25px) scale(1,1)}} #eMBmJ8qcPAf7 {animation: eMBmJ8qcPAf7_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf7_c_o { 0% {opacity: 0} 6.666667% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 8.333333% {opacity: 1} 100% {opacity: 1}} #eMBmJ8qcPAf10 {animation: eMBmJ8qcPAf10_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf10_c_o { 0% {opacity: 1} 13.333333% {opacity: 1} 15% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf14_to {animation: eMBmJ8qcPAf14_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf14_to__to { 0% {transform: translate(162.851563px,141.421875px)} 13.333333% {transform: translate(162.851563px,141.421875px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {transform: translate(162.851563px,121.421875px)} 28.333333% {transform: translate(163px,121.414063px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {transform: translate(162.851563px,101.421875px)} 100% {transform: translate(162.851563px,101.421875px)}} #eMBmJ8qcPAf14 {animation: eMBmJ8qcPAf14_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf14_c_o { 0% {opacity: 0} 13.333333% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {opacity: 1} 28.333333% {opacity: 1;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf15_to {animation: eMBmJ8qcPAf15_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf15_to__to { 0% {transform: translate(150.339843px,121.421876px)} 21.666667% {transform: translate(150.339843px,121.421876px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 23.333333% {transform: translate(162.652343px,121.421876px)} 100% {transform: translate(162.652343px,121.421876px)}} #eMBmJ8qcPAf15 {animation: eMBmJ8qcPAf15_f_p 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf15_f_p { 0% {fill: #4d5151} 21.666667% {fill: #4d5151} 23.333333% {fill: #000} 100% {fill: #000}} #eMBmJ8qcPAf17_ts {animation: eMBmJ8qcPAf17_ts__ts 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf17_ts__ts { 0% {transform: translate(61.25px,121.25px) scale(0.5,0.5)} 21.666667% {transform: translate(61.25px,121.25px) scale(0.5,0.5);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 23.333333% {transform: translate(61.25px,121.25px) scale(1,1)} 100% {transform: translate(61.25px,121.25px) scale(1,1)}} #eMBmJ8qcPAf17 {animation: eMBmJ8qcPAf17_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf17_c_o { 0% {opacity: 0} 21.666667% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 23.333333% {opacity: 1} 100% {opacity: 1}} #eMBmJ8qcPAf20 {animation: eMBmJ8qcPAf20_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf20_c_o { 0% {opacity: 0} 13.333333% {opacity: 0} 15% {opacity: 1} 28.333333% {opacity: 1} 30% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf31_to {animation: eMBmJ8qcPAf31_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf31_to__to { 0% {transform: translate(163px,141.421875px)} 28.333333% {transform: translate(163px,141.421875px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {transform: translate(163px,121.421876px)} 43.333333% {transform: translate(163px,121.414063px)} 100% {transform: translate(163px,121.414063px)}} #eMBmJ8qcPAf31 {animation: eMBmJ8qcPAf31_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf31_c_o { 0% {opacity: 0} 28.333333% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {opacity: 1} 43.333333% {opacity: 1} 100% {opacity: 1}} #eMBmJ8qcPAf37 {animation: eMBmJ8qcPAf37_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf37_c_o { 0% {opacity: 0} 28.333333% {opacity: 0} 30% {opacity: 1} 100% {opacity: 1}} #eMBmJ8qcPAf42_tr {animation: eMBmJ8qcPAf42_tr__tr 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf42_tr__tr { 0% {transform: translate(40px,40px) rotate(0deg)} 8.333333% {transform: translate(40px,40px) rotate(0deg);animation-timing-function: cubic-bezier(0.534019,0,0.824873,0.402208)} 13.333333% {transform: translate(40px,40px) rotate(0deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {transform: translate(40px,40px) rotate(360deg);animation-timing-function: cubic-bezier(0.895,0.03,0.685,0.22)} 23.333333% {transform: translate(40px,40px) rotate(360deg);animation-timing-function: cubic-bezier(0.956817,0,0.673808,0.650156)} 28.333333% {transform: translate(40px,40px) rotate(360deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {transform: translate(40px,40px) rotate(720deg);animation-timing-function: cubic-bezier(0.895,0.03,0.685,0.22)} 33.333333% {transform: translate(40px,40px) rotate(720deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 36.666667% {transform: translate(40px,40px) rotate(1080deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 40% {transform: translate(40px,40px) rotate(1080deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 43.333333% {transform: translate(40px,40px) rotate(1440deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 46.666667% {transform: translate(40px,40px) rotate(1440deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 50% {transform: translate(40px,40px) rotate(1800deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 53.333333% {transform: translate(40px,40px) rotate(1800deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 56.666667% {transform: translate(40px,40px) rotate(2160deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 60% {transform: translate(40px,40px) rotate(2160deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 63.333333% {transform: translate(40px,40px) rotate(2520deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {transform: translate(40px,40px) rotate(2520deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 70% {transform: translate(40px,40px) rotate(2880deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 73.333333% {transform: translate(40px,40px) rotate(2880deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 76.666667% {transform: translate(40px,40px) rotate(3240deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 80% {transform: translate(40px,40px) rotate(3240deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {transform: translate(40px,40px) rotate(3600deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 86.666667% {transform: translate(40px,40px) rotate(3600deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 90% {transform: translate(40px,40px) rotate(3960deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 93.333333% {transform: translate(40px,40px) rotate(3960deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 96.666667% {transform: translate(40px,40px) rotate(4320deg);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 100% {transform: translate(40px,40px) rotate(4320deg)}} #eMBmJ8qcPAf42 {animation: eMBmJ8qcPAf42_s_do 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf42_s_do { 0% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 8.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.534019,0,0.824873,0.402208)} 13.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 15% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 23.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.956817,0,0.673808,0.650156)} 28.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 30% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 33.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 36.666667% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 40% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 43.333333% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 46.666667% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 50% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 53.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 56.666667% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 60% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 63.333333% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 70% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 73.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 76.666667% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 80% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 86.666667% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 90% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 93.333333% {stroke-dashoffset: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 96.666667% {stroke-dashoffset: 219.91;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 100% {stroke-dashoffset: 0}} #eMBmJ8qcPAf43_to {animation: eMBmJ8qcPAf43_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf43_to__to { 0% {transform: translate(166.296875px,163.210937px)} 48.333333% {transform: translate(166.296875px,163.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 50% {transform: translate(166.296875px,153.210937px)} 65% {transform: translate(166.296875px,153.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {transform: translate(166.296875px,143.210937px)} 100% {transform: translate(166.296875px,143.210937px)}} #eMBmJ8qcPAf43 {animation: eMBmJ8qcPAf43_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf43_c_o { 0% {opacity: 0} 48.333333% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 50% {opacity: 1} 65% {opacity: 1;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf45_to {animation: eMBmJ8qcPAf45_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf45_to__to { 0% {transform: translate(166.296875px,163.210937px)} 65% {transform: translate(166.296875px,163.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {transform: translate(166.296875px,153.210937px)} 81.666667% {transform: translate(166.296875px,153.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {transform: translate(166.296875px,143.210937px)} 100% {transform: translate(166.296875px,143.210937px)}} #eMBmJ8qcPAf45 {animation: eMBmJ8qcPAf45_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf45_c_o { 0% {opacity: 0} 65% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 66.666667% {opacity: 1} 81.666667% {opacity: 1;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {opacity: 0} 100% {opacity: 0}} #eMBmJ8qcPAf47_to {animation: eMBmJ8qcPAf47_to__to 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf47_to__to { 0% {transform: translate(166.296875px,163.210937px)} 81.666667% {transform: translate(166.296875px,163.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {transform: translate(166.296875px,153.210937px)} 98.333333% {transform: translate(166.296875px,153.210937px);animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 100% {transform: translate(166.296875px,143.210937px)}} #eMBmJ8qcPAf47 {animation: eMBmJ8qcPAf47_c_o 30000ms linear 1 normal forwards}@keyframes eMBmJ8qcPAf47_c_o { 0% {opacity: 0} 81.666667% {opacity: 0;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 83.333333% {opacity: 1} 98.333333% {opacity: 1;animation-timing-function: cubic-bezier(0.77,0,0.175,1)} 100% {opacity: 0}}Assessing your damageFinding your glassGenerating your quoteAlmost done...Nearly there...Finishing up...@font-face {font-family: 'eMBmJ8qcPAf1:::Roboto';font-style: normal;font-weight: 400;src: url(data:font/ttf;charset=utf-8;base64,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) format('truetype');}
@@ -99,4 +99,4 @@ const FMGAnimatedTransition = require("@/assets/img/FMGTransitionAnimation.svg") width: 75px; height: 75px; } - \ No newline at end of file + From 02b67f93da6cc426de68ec80a152e48bba904cf4 Mon Sep 17 00:00:00 2001 From: bmauger Date: Thu, 19 May 2022 12:33:59 -0400 Subject: [PATCH 16/16] CSR-625,627 spacing fixes. --- src/common-components/button-question/button-question.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index 20ad2b2f8..c2eb72971 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -40,7 +40,7 @@ -
+
@@ -134,7 +134,7 @@ export default { return answer.Name ? answer.Name : answer; }, handleCheckedChanged(val) { - + this.pushEventToGA(this.$route.query[queryStrings.FMG_PAGE], this.GaActions.CLICKED, val.value, true); if(this.isMultiSelect && this.selectedValues) {