CSR-347: finish building address-vehicles page

This commit is contained in:
Adam Caouette 2022-05-11 09:33:26 -04:00
parent 4e349eaee4
commit 3a75745764
10 changed files with 336 additions and 316 deletions

View file

@ -19,15 +19,16 @@ module.exports = {
"!src/layouts/part-questions/**/*.vue",
"!src/layouts/reveal/**/*.vue",
"!src/layouts/estimate/**/*.vue",
// REMOVE THESE AFTER WRITING UNIT TESTS
// TODO REMOVE THESE AFTER WRITING UNIT TESTS
"!src/layouts/address-lookup/address-lookup.vue",
"!src/layouts/address-lookup/customer-questions/customer-questions.vue",
"!src/layouts/address-lookup/customer-questions/address-questions/address-questions.vue",
"!src/layouts/address-vehicles/address-vehicles.vue",
"!src/common-components/dropdown-question/dropdown-question.vue",
"!src/common-components/textbox-question/textbox-question.vue",
"!src/helpers/validation-rules.js",
// END
], //! means exclude from coverage.
], // ! means exclude from coverage.
testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],
coverageThreshold: {
global: {

View file

@ -1,8 +1,8 @@
<!-- Documented in confluence https://safelite.atlassian.net/wiki/spaces/DC/pages/76644418/Button+Question+Component -->
<template>
<div :class="isOverflowScrollable ? 'button-question button-question-overflow' : 'button-question'">
<div v-if="questionText" :class="[this.buttonType === 'radio' ? ['mt-2', 'mb-0'] : ['mt-5', 'mb-4'], 'd-flex']">
<span class="fs-5 fw-bold w-100" :class="this.buttonType === 'radio' ? 'text-start' : 'text-center'">{{ questionText }}</span>
<div v-if="questionText" class="question-text d-flex">
<span class="fs-5 fw-bold w-100">{{ questionText }}</span>
</div>
<div class="w-100 d-flex justify-content-center">
<fieldset class="w-100" :aria-required=isRequired :class="getFieldSetClasses" :role="isMultiSelect ? 'group' : 'radiogroup'" :aria-labelledby="groupName ? groupName + '-radio-group' : ''">
@ -40,8 +40,8 @@
</div>
</fieldset>
</div>
<div class="row mt-2 form-test-error">
<error-message :name="groupName" v-if="!suppressError"></error-message>
<div class="row form-test-error">
<error-message class="mt-2" :name="groupName" v-if="!suppressError"></error-message>
</div>
</div>
</template>
@ -160,7 +160,7 @@ export default {
};
</script>
<style lang="scss" scoped>
<style lang="scss">
.button-question-overflow {
height: calc(100vh - 274px);
@ -174,4 +174,12 @@ export default {
.button-question {
color: $black;
}
.question-text {
margin-top: 1.5rem;
margin-bottom: 1rem;
& > span {
text-align: center;
}
}
</style>

View file

@ -51,7 +51,6 @@ export default {
isForwardActionDisabled: Boolean,
isBackButtonHidden: {type: Boolean, default: false},
cmsWidgetName: String,
},
components: {
textLink,
@ -106,7 +105,12 @@ export default {
linkClick() {
this.$emit("BackClicked");
},
}
},
watch: {
isForwardActionDisabled(newValue) {
this.customButtontext = !newValue ? 'Continue with VIN YMM' : '';
}
},
};
</script>

View file

@ -22,6 +22,7 @@ const errorMessages = {
VIN_REQUIRED: "Please enter your VIN",
VIN_FORMAT: "Please enter a valid VIN",
OPTION_REQUIRED: "Please select an option",
VEHICLE_REQUIRED: "Please select a vehicle",
};
export { errorMessages };

View file

@ -5,7 +5,10 @@ import { storeActions } from "@/constants/store-actions";
export function getDamageString() {
const damageLocations = store.getters.damage.glassToReplace;
let returnString;
if(damageLocations.length > 1){
if (!damageLocations) {
return;
}
if (damageLocations.length > 1) {
returnString = "match"
} else {
switch(damageLocations[0]?.location) {

View file

@ -0,0 +1,113 @@
import { shallowMount } from "@vue/test-utils";
import addressVehiclesQuestion from "@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question";
import { getMountOptions } from "@/helpers/unit-test-helper.js";
// import store from "@/store";
// jest.mock("@/store", () => { return {}; }, { virtual: true });
describe("addressVehiclesQuestion.vue", () => {
it("Should include button-question component", () => {
// Arrange
const wrapper = shallowMount(addressVehiclesQuestion, {
propsData: {
// vehicles: [
// {
// "Name": "testname",
// "Text": "testtext",
// }
// ]
}
});
// console.log('wrapper.html: ', wrapper.html());
// Assert
const buttonQuestion = wrapper.find('button-question-stub');
expect(buttonQuestion).toBe;
});
it("on initialize should pass in questionText", () => {
// Arrange
const wrapper = shallowMount(addressVehiclesQuestion, {
propsData: {},
});
//Act
addressVehiclesQuestion.methods.initializeComponent.call(wrapper.vm, {QuestionText: 'Testing question text'});
// console.log('wrapper.html: ', wrapper.html());
// console.log('wrapper.vm.questionText: ', wrapper.vm.questionText);
// Assert
expect(wrapper.vm.questionText).toEqual('Testing question text');
});
// it("Alert should show if prop isCarIdDifferent is true", () => {
// // Arrange
// const wrapper = shallowMount(addressVehiclesQuestion, setupMountOptions({
// propsData: {
// isCarIdDifferent: true,
// }
// }));
// //Act
// const alert = wrapper.find('alert');
// console.log('wrapper.html: ', wrapper.html());
// console.log('wrapper.vm.questionText: ', wrapper.vm.questionText);
// // Assert
// // expect(wrapper.vm.questionText).toEqual('Testing question text');
// });
});
function setupMountOptions(mountOptionsMockData = {}) {
// //Mock store
// store.dispatch = jest.fn(() => {});
// store.getters = {};
// const mockMixin = {
// methods: {
// getCmsContent: jest.fn().mockImplementation(() => {
// return '';
// }),
// getDamageString: jest.fn().mockImplementation(() => {
// return '';
// })
// },
// store: {
// dispatch: store.dispatch,
// getters: store.getters,
// },
// }
const mockGetCmsContent = jest.fn();
mockGetCmsContent((cmsWidget, field) => {
return field
});
const defaultMountOptions = {
// route: { query: { fmgPage: 'page-name' } },
mixins: {
methods: {
getCmsContent: mockGetCmsContent,
},
},
global: {
mocks: {
store: {
dispatch: store.dispatch,
getters: store.getters,
},
},
},
};
const baseMountOptions = getMountOptions(Object.assign(defaultMountOptions, mountOptionsMockData));
const allMountOptions = Object.assign(defaultMountOptions, baseMountOptions);
console.log('what are allMountOptions??? ', allMountOptions);
return allMountOptions;
}

View file

@ -1,76 +1,100 @@
<template>
<buttonQuestion
class="radioQuestion"
class="address-vehicles-question"
buttonType="listButton"
groupName="ChooseAddressVehicle"
:questionText="questionText"
:answers="vehicles"
groupName="ChooseAddressVehicle"
textPosition="text-start"
v-model="selectedValueAsArray"
v-model="selectedVehicleVin"
isRequired=true
:validation-rules="validationRules"
/>
<alert
ref="differentVehicleAlert"
v-if="isCarIdDifferent"
class="my-3"
alertClass="alert-warning"
:manualHeadline="differentVehicleAlertHeader"
:manualCopy="differentVehicleAlertBody"
v-bind:isDismissible="false"
/>
</template>
<script>
import buttonQuestion from "@/common-components/button-question/button-question";
import alert from "@/ux-components/alert/alert";
// Supporting files
import store from "@/store";
import { storeActions } from "@/constants/store-actions.js";
import baseMixin from "@/mixins/base-mixin.js";
import { getDamageString } from "@/helpers/damage-helper";
export default {
name: "address-vehicles-question",
data() {
return {
// makes: Array,
// questionText: String,
questionText: String,
customAlertData: {},
};
},
props: {
vehicles: Array,
modelValue: String,
cmsWidgetName: String,
validationRules: String,
isCarIdDifferent: Boolean,
selectedVehicle: Object,
},
computed: {
differentVehicleAlertHeader() {
return [];
return this.getCmsContent("FoundWindshield", "HeadlineText").replaceAll("{custom:damage}", getDamageString());
},
differentVehicleAlertBody() {
return [];
return this.getCmsContent(
"FoundWindshield",
"BodyText"
)
.replaceAll("{custom:damage}", getDamageString())
.replaceAll(
"{custom:vinlookupYear}",
this.selectedVehicle?.vehicle.year
)
.replaceAll(
"{custom:vinlookupMake}",
this.selectedVehicle?.vehicle.make
)
.replaceAll(
"{custom:vinlookupModel}",
this.selectedVehicle?.vehicle.model
);
},
selectedValue() {
return [];
selectedVehicleVin: {
get: function() {
return this.modelValue;
},
set: function(newValue) {
this.$emit("update:modelValue", newValue);
}
},
questionText(){
return this.getCmsContent(this.cmsWidgetName, 'QuestionText');
},
methods: {
initializeComponent(VehicleConfirmationQuestion) {
this.questionText = VehicleConfirmationQuestion.QuestionText;
},
// selectedValueAsArray: {
// get: function() {
// const modelValueAsArray = this.modelValue ? [this.modelValue] : [];
// return modelValueAsArray;
// },
// set: function(newValue) {
// const newValueAsScalar = newValue && newValue.length > 0 ? newValue[0] : null;
// this.$emit("update:modelValue", newValueAsScalar);
// }
// }
},
components: {
buttonQuestion,
},
methods: {
loadInitialData() {
return baseMixin.methods.dispatchStoreAction(
storeActions.GET_VEHICLE_MAKES,
{ year: store.getters.vehicle.year }
);
},
// initializeComponent(initialData) {
// this.makes = initialData;
// },
initializeComponent(initialData) {
console.log('initializeComponent... initialData: ', initialData)
// this.makes = initialData;
},
alert,
},
};
</script>
<style lang="scss">
.address-vehicles-question {
.question-text {
margin-bottom: .5rem;
& > span {
text-align: left;
}
}
}
</style>

View file

@ -0,0 +1,26 @@
import { shallowMount } from "@vue/test-utils";
import addressVehicles from "@/layouts/address-vehicles/address-vehicles";
describe("addressVehicles.vue", () => {
it("Should include address-vehicles-question component", () => {
// Arrange
const wrapper = shallowMount(addressVehicles, {
propsData: {
vehicles: [
{
"Name": "testname",
"Text": "testtext",
}
]
}
});
// console.log('wrapper.html: ', wrapper.html());
// Assert
const addressVehiclesQuestion = wrapper.find('address-vehicles-question-stub');
expect(addressVehiclesQuestion).toBe;
});
});

View file

@ -5,110 +5,40 @@
ref="theForm"
v-slot="{ meta }"
>
<div class="container-fluid shadow rounded-3 p-2 position-relative make-tall px-5">
<div class="page-container-grouped-styles">
<loadingModal ref="loadingModal"/>
<funnelHeader cmsWidgetName="FunnelHeaderWidget" />
<vehicleBanner cmsWidgetName="VehicleBannerWidget" :displayGenericVehicleImage="false" />
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
<alert
ref="alertFoundMultipleVehicles"
class="my-3"
class="my-5"
alertClass="alert-warning"
:manualHeadline="AlertFoundMultipleVehiclesHeader"
manualCopy=""
v-bind:isDismissible="false"
/>
<addressVehiclesQuestion cmsWidgetName="VehicleConfirmationQuestion" :vehicles="VehiclesForQuestions" />
<div class="alert-provide-vin" v-if="splitAlertProvideVinBodyForLink.length">
<addressVehiclesQuestion
ref="addressVehiclesQuestion"
cmsWidgetName="VehicleConfirmationQuestion"
:vehicles="VehiclesForQuestions"
validationRules="vehicle-required"
v-model="selectedVehicleVin"
:selectedVehicle="selectedVehicle"
:isCarIdDifferent="isCarIdDifferent"
/>
<div class="alert-provide-vin my-5" v-if="splitAlertProvideVinBodyForLink.length">
<span v-for="copy in splitAlertProvideVinBodyForLink" :key="copy">
<span v-if="copy.includes('routerLink:')" class="m-0 text-body small">
<span v-if="copy.includes('routerLink:')" class="text-body">
<router-link :to="{query: {fmgPage: `${copy.split(':')[1].split(',')[0]}`}, name: 'root'}">{{ copy.split(':')[1].split(',')[1] }}</router-link>
</span>
<span v-else class="m-0 text-body small" v-html="copy"></span>
<span v-else class="m-0 text-body" v-html="copy"></span>
</span>
</div>
<!-- <div class="row my-2">
<div class="col">
<textboxQuestion cmsWidgetName="VinNumber" v-model="vin" inputId="vin" isRequired disableAutoFill validationRules="vin-required|vin-format" :isDisabled=isVinFieldReadOnly />
</div>
</div>
<div class="row my-2">
<div class="col">
<vinInformation />
</div>
</div>
<div class="row my-2">
<div class="col">
<textboxQuestion cmsWidgetName="ServiceZIP" v-model="zip" inputId="zip" mask="#####" isRequired disableAutoFill validationRules="zip-required" />
</div>
</div>
<div class="row my-2">
<div class="col">
<textboxQuestion cmsWidgetName="EmailAddress" v-model="email" inputId="email" isRequired disableAutoFill validationRules="email-address-required|email-address-format" />
</div>
</div>
<alert
class="my-3"
v-model="customAlertData"
v-if="matchedDifferentVehicle"
alertClass="alert-danger"
cmsWidgetName="MatchedDifferentVehicle"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="noMatchAlert"
alertClass="alert-warning"
cmsWidgetName="NoMatchAlertWidget"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="noServiceZip"
alertClass="alert-warning"
cmsWidgetName="NoServiceZipWidget"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="vinFound"
alertClass="alert-warning"
cmsWidgetName="VinFoundWidget"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="vinFoundReadOnly"
alertClass="alert-warning"
cmsWidgetName="VinFoundReadOnlyWidget"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="foundWindshieldAlert"
alertClass="alert-warning"
cmsWidgetName="FoundWindshieldAlert"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="vinNotFound"
alertClass="alert-warning"
cmsWidgetName="VinNotFound"
/>
<alert
class="my-3"
v-model="customAlertData"
v-if="perfectMatchNewVinAlert"
alertClass="alert-warning"
cmsWidgetName="PerfectMatchNewVinAlert"
/> -->
<funnelFooter
cmsWidgetName="FunnelFooterWidget"
ref="funnelFooter"
:isDisabled="!meta.valid"
:isForwardActionDisabled="!meta.valid"
@back-clicked="backButtonAction"
@ForwardClicked="forwardButtonAction"
/>
@ -123,9 +53,8 @@ import funnelFooter from "@/common-components/funnel-footer/funnel-footer";
import vehicleBanner from "@/common-components/vehicle-banner/vehicle-banner";
import funnelSubHeader from "@/common-components/funnel-sub-header/funnel-sub-header";
import alert from "@/ux-components/alert/alert";
import textboxQuestion from "@/common-components/textbox-question/textbox-question";
import vinInformation from "@/layouts/vin-lookup/vin-information/vin-information";
import addressVehiclesQuestion from "@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question";
import loadingModal from '@/common-components/loading-modal/loading-modal.vue';
// Supporting files
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
@ -136,15 +65,13 @@ import { storeActions } from "@/constants/store-actions";
import { storeMutations } from "@/constants/store-mutations";
import { fmgPageValues } from "@/router/router-constants/fmgPage-values";
import { errorMessages } from "@/constants/error-messages";
import { required, regex } from "@/helpers/validation-rules";
import { required } from "@/helpers/validation-rules";
import { Form, defineRule } from "vee-validate";
import { navigateAfterSaveToHeritageFunnel } from "@/helpers/heritage-integration/navigation-helper";
import { isGlassAvailableForCarId } from "@/helpers/damage-helper";
// DEFINE VALIDATION RULES
defineRule("zip-required", required(errorMessages.ZIP_REQUIRED));
defineRule("email-address-required", required(errorMessages.EMAIL_ADDRESS_REQUIRED));
defineRule("email-address-format", regex(/^([a-zA-Z0-9_\-.+]+)@([a-zA-Z0-9_\-.]+).([a-zA-Z]{2,})$/, errorMessages.EMAIL_ADDRESS_FORMAT));
defineRule("vin-required", required(errorMessages.VIN_REQUIRED));
defineRule("vin-format", regex(/^[A-HJ-NPR-Z0-9]{17}$/, errorMessages.VIN_FORMAT));
defineRule("vehicle-required", required(errorMessages.VEHICLE_REQUIRED));
export default {
name: "address-vehicles",
@ -152,7 +79,6 @@ export default {
// Call APIs
const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage);
// Settle promises and get results
const promiseResultMap = [
{
@ -163,61 +89,10 @@ export default {
const resultMap = await settleAllPromises(promiseResultMap);
console.log('resultMap.cmsContent: ', resultMap.cmsContent);
// resultMap.cmsContent =
// {
// "FunnelHeaderWidget": {
// "ImageId": "2da72d7b-340b-4c7c-94f4-76fb77e30b7e",
// "LogoImage": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/safelite-logo.svg?sfvrsn=45e7ed06_3"
// },
// "VehicleBannerWidget": {
// "BlurredImageId": "28452dcb-7762-4cc9-ab09-7643d0b89203",
// "CarIconImageId": "76a3cdf2-87e7-48e3-9e2e-7a607a9af487",
// "TruckIconImageId": "27c777e4-ae72-4877-9cab-c4b74583c1ec",
// "VanIconImageId": "06a2512c-df43-4379-8af8-b6b2409f0e3f",
// "CommercialVanIconImageId": "601401c8-323e-46c6-bdf5-54ab67310db4",
// "SuvIconImageId": "a411185f-51a5-486a-a26b-0aec40114074",
// "GenericVehicleImage": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/blurred-image.jpg?sfvrsn=a6ce3034_3",
// "GenericVehicleImageFilePath": "images/default-source/default-album/blurred-image.jpg",
// "CarUnmatchedVehicleIcon": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/icons/car-placeholder.jpg?sfvrsn=25acf847_6",
// "TruckUnmatchedVehicleIcon": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/icons/truck-placeholder.jpg?sfvrsn=a001f519_6",
// "VanUnmatchedVehicleIcon": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/icons/van-placeholder.jpg?sfvrsn=fcf77dd5_6",
// "CommercialVanUnmatchedVehicleIcon": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/icons/commercial-placeholder.jpg?sfvrsn=3aedc8d2_6",
// "SuvUnmatchedVehicleIcon": "https://digitalconsumercms-dev.safelite.com/images/default-source/default-album/icons/suv-placeholder.jpg?sfvrsn=4bdeea2b_6"
// },
// "FunnelSubHeaderWidget": {
// "HeaderText": "2014 Jeep Cherokee",
// "HeaderSubText": "4 door utility"
// },
// "FoundMultipleVehicles": {
// "HeadlineText": "We found {custom:vehicleCount} vehicles linked to the address you provided.",
// "BodyText": "",
// "OptionalImage": ""
// },
// "VehicleConfirmationQuestion": {
// "QuestionText": "Confirm which vehicle has glass damage",
// "Answers": []
// },
// "FoundWindshield": {
// "HeadlineText": "We found a {custom:damage}!",
// "BodyText": "<p style=\"text-align:center;\">We found a {custom:damage}, but the vehicle you selected is not the same vehicle you originally entered.</p><p style=\"text-align:center;\">If this selection is correct, please continue scheduling with your {custom:vinlookupYear} {custom:vinlookupMake} {custom:vinlookupModel}.</p>",
// "OptionalImage": ""
// },
// "ProvideVinAlert": {
// "HeadlineText": "",
// "BodyText": "<p style=\"text-align:center;\">Don't see your vehicle? Re-enter the information on the previous page or {routerLink:clickedChangeVinLookupMethod,provide your VIN} in a different way.</p>",
// "OptionalImage": ""
// },
// "FunnelFooterWidget": {
// "BackButtonText": "Back",
// "ForwardButtonText": "Get my personalized quote"
// }
// }
// Call the "next" function to complete the transition to this page.
next((vm) => {
vm.setCmsContent(resultMap.cmsContent);
vm.$refs.addressVehiclesQuestion.initializeComponent(resultMap.cmsContent.VehicleConfirmationQuestion);
});
},
props: {
@ -225,37 +100,24 @@ export default {
},
data() {
return {
matchedDifferentVehicle: false,
noMatchAlert: false,
noServiceZip: false,
vinFound: false,
vinFoundReadOnly: false,
foundWindshieldAlert: false,
vinNotFound: false,
perfectMatchNewVinAlert: false,
vin: '',
zip: '',
email: '',
customAlertData: {},
selectedVehicleVin: null,
selectedVehicle: {},
isCarIdDifferent: false,
isSelectedGlassAvailableForVehicle: true,
};
},
computed: {
vehicleCount() {
return this.VehiclesForQuestions.length;
},
AlertFoundMultipleVehiclesHeader(){
// let zip = this.serviceZip ? this.serviceZip : this.customerQuestions.addressQuestions.zip;
let count = 88;
AlertFoundMultipleVehiclesHeader() {
let text = this.getCmsContent("FoundMultipleVehicles", "HeadlineText").replaceAll("{custom:vehicleCount}", this.vehicleCount);
return text;
},
AlertProvideVinBody(){
// let text = this.getCmsContent("ProvideVinAlert", "BodyText").replaceAll("{routerLink:clickedChangeVinLookupMethod,provide your VIN}", "LINKHERE");
let text = this.getCmsContent("ProvideVinAlert", "BodyText");
return text;
AlertProvideVinBody() {
return this.getCmsContent("ProvideVinAlert", "BodyText");
},
splitAlertProvideVinBodyForLink(){
splitAlertProvideVinBodyForLink() {
// Splits content when brackets are found in text so that text can be looped through and router-link can be injected when needed
return this.AlertProvideVinBody.split(/{(.*?)}/g);
},
@ -263,146 +125,124 @@ export default {
const vehiclesData = this.VehiclesFromApi;
console.log('vehiclesData: ', vehiclesData)
// Map API result data, to address-vehicles data structure
const mappedData = vehiclesData.map((v) => {
const maskSymbol = "X";
const vinStart = maskSymbol.repeat(v.vin.length-4);
const vinEnd = v.vin.substring(v.vin.length-4);
return vehiclesData;
return {
vin: v.vin,
vehicle: v.vehicle,
Text: v.vehicle.year + " " + v.vehicle.make + " " + v.vehicle.model,
Name: v.vin,
SubText: "VIN " + vinStart + vinEnd,
};
// // Map API result data, to address-vehicles data structure
// const mappedData = vehiclesData.partsOrQuestions.map((g) => {
// return {
// glassName: g.glassName,
// glassLocation: g.glassLocation,
// colorAnswers: g.parts.reduce((arr, p) => {
// arr.push({
// ColorAnswerText: p.color,
// FeatureAnswers: [
// {
// FeatureAnswerText:
// p.description === "" ? p.color : p.description,
// PartNumber: p.partNumber,
// },
// ],
// });
// return arr;
// }, []),
// };
// });
});
// return mappedData;
return mappedData;
},
VehiclesFromApi() {
return store.getters.pageData(fmgPageValues.ADDRESS_VEHICLES);
},
isVinFieldReadOnly(){
return this.$store.getters.payment.insuranceCoverage.isVerified;
}
},
methods: {
arePagePrerequisitesValid() {
if (
store.getters.order.vehicle.carId
// && store.getters.order.serviceLocation.zip // TODO - NEEDS TO BE INCLUDED
// && store.getters.order.customer.emailAddress // TODO - NEEDS TO BE INCLUDED
// && vehicles passed in via pageData // TODO - NEEDS TO BE INCLUDED
&& store.getters.order.serviceLocation.zipCode
&& store.getters.order.customer.emailAddress
&& store.getters.pageData(fmgPageValues.ADDRESS_VEHICLES)
) {
return true;
}
return false;
},
// resetDependentState() {
// store.commit(storeMutations.UPDATE_REGISTRATION_ADDRESS, null);
// store.commit(storeMutations.UPDATE_REGISTRATION_CITY, null);
// store.commit(storeMutations.UPDATE_REGISTRATION_FIRST_NAME, null);
// store.commit(storeMutations.UPDATE_REGISTRATION_LAST_NAME, null);
// store.dispatch(storeActions.RESET_PARTS_STATE_AND_DEPENDENCIES);
// },
backButtonAction() {
this.$router.navigate(this.navigationScenarios.CLICKED_BACK, this.$route);
},
async forwardButtonAction() {
const zipValidation = await this.validateZip(this.zip);
if (!zipValidation.data.isServiceable) {
this.customAlertData.zip = this.zip;
const vinLookup = await this.lookupVin(this.selectedVehicle.vin).catch(() => {
this.$refs.funnelFooter.removeLoader();
this.noServiceZip = true;
return;
}
const vinLookup = await this.lookupVin(this.vin).catch(() => {
this.$refs.funnelFooter.removeLoader();
this.noMatchAlert = true;
return;
});
if (vinLookup.data.carId !== store.getters.vehicle.carId) {
this.customAlertData.vehicleInfo = vinLookup.data.vehicle;
this.$refs.funnelFooter.removeLoader();
this.foundWindshieldAlert = true;
this.isSelectedGlassAvailableForVehicle = await isGlassAvailableForCarId(vinLookup.data.carId);
this.updateCustomerInfo(this.selectedVehicle.vin, this.selectedVehicle.vehicle);
this.navigateForward();
},
navigateForward() {
if (this.isCarIdDifferent && !this.isSelectedGlassAvailableForVehicle) {
this.$router.navigateAfterSave(
this.navigationScenarios.CLICKED_FORWARD,
this.$route,
{},
{ displayVehicleChangeAlert: true },
);
return;
} else {
this.$refs.loadingModal.showModal();
navigateAfterSaveToHeritageFunnel(this.$route);
return;
}
const carInfo = this.vinDoesNotMatchCarId ? vinLookup.data : store.getters.vehicle;
this.updateStore(carInfo)
const partsData = await baseMixin.methods.dispatchNonBlockingStoreAction(
this.storeActions.GET_PARTS_OR_QUESTIONS,
{
carId: store.getters.vehicle.carId,
glassArray: store.getters.damage.glassToReplace,
zipCode: this.zip,
vin: vinLookup.vin
},
false
);
this.navigateForward(partsData);
},
navigateForward(partsData){
if(partsData.data.partsOrQuestions[0].partQuestions && partsData.data.partsOrQuestions[0].partQuestions.length > 0){
this.$router.navigateAfterSave(this.navigationScenarios.CONTINUING_WITH_PARTS_QUESTION, this.$route, {}, {}, partsData.data);
return;
} else if((!partsData.data.partsOrQuestions[0].partQuestions || partsData.data.partsOrQuestions[0].partQuestions.length < 1) && partsData.data.partsOrQuestions[0].parts.length > 1) {
this.$router.navigateAfterSave(this.navigationScenarios.CONTINUING_WITH_MULTIPLE_PARTS, this.$route, {}, {}, partsData.data);
return;
} else {
this.$router.navigate(this.navigationScenarios.CONTINUING_WITH_SINGLE_PART, this.$route);
}
},
validateZip(zip) {
return baseMixin.methods.dispatchNonBlockingStoreAction(
storeActions.VALIDATE_ZIP,
{ zip }
);
},
lookupVin(vin) {
return baseMixin.methods.dispatchNonBlockingStoreAction(
return baseMixin.methods.dispatchStoreAction(
storeActions.LOOKUP_VEHICLE_BY_VIN,
{ vin }
);
},
updateStore(carInfo) {
// if(vehicleDamage){
// store.dispatch(storeActions.RESET_DAMAGE_STATE_AND_DEPENDENCIES);
// }
store.commit(storeMutations.UPDATE_VEHICLE_VIN, this.vin);
store.commit(storeMutations.UPDATE_YEAR, carInfo.year);
store.commit(storeMutations.UPDATE_MAKE, carInfo.make);
store.commit(storeMutations.UPDATE_MODEL, carInfo.model);
store.commit(storeMutations.UPDATE_STYLE, carInfo.style);
store.commit(storeMutations.UPDATE_CAR_ID, carInfo.carId);
store.commit(storeMutations.UPDATE_VEHICLE_CATEGORY, carInfo.category);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_URL, carInfo.imageUrl);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_VIF_NUMBER, carInfo.imageVifNumber);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_COLOR, carInfo.imageColor);
store.commit(storeMutations.UPDATE_SERVICE_LOCATION_ZIP, this.zip);
store.commit(storeMutations.UPDATE_CUSTOMER_EMAIL_ADDRESS, this.email);
resetDependentState() { // needed because navigateAfterSaveToHeritageFunnel calls it
store.dispatch(storeActions.RESET_PARTS_STATE_AND_DEPENDENCIES);
},
updateCustomerInfo(vin, vehicle) {
if (this.isCarIdDifferent && !this.isSelectedGlassAvailableForVehicle) {
store.dispatch(storeActions.RESET_DAMAGE_STATE_AND_DEPENDENCIES);
}
store.commit(storeMutations.UPDATE_VEHICLE_VIN, vin);
store.commit(storeMutations.UPDATE_YEAR, vehicle.year);
store.commit(storeMutations.UPDATE_MAKE, vehicle.make);
store.commit(storeMutations.UPDATE_MODEL, vehicle.model);
store.commit(storeMutations.UPDATE_STYLE, vehicle.style);
store.commit(storeMutations.UPDATE_CAR_ID, vehicle.carId);
store.commit(storeMutations.UPDATE_VEHICLE_CATEGORY, vehicle.category);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_URL, vehicle.imageUrl);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_VIF_NUMBER, vehicle.imageVifNumber);
store.commit(storeMutations.UPDATE_VEHICLE_IMAGE_COLOR, vehicle.imageColor);
},
},
watch: {
selectedVehicleVin(vehicleVin) {
const selectedVin = vehicleVin[0];
this.selectedVehicle = this.VehiclesForQuestions.find( ({ vin }) => vin === selectedVin );
// does this vehicle match the previously selected carId?
this.isCarIdDifferent = this.selectedVehicle.vehicle.carId !== store.getters.vehicle.carId;
this.$refs.funnelFooter.updateButtonText(`Continue with ${this.selectedVehicle.vehicle.year} ${this.selectedVehicle.vehicle.make} ${this.selectedVehicle.vehicle.model}`);
},
},
components: {
Form,
funnelHeader,
vehicleBanner,
funnelSubHeader,
// textboxQuestion,
alert,
funnelFooter,
// vinInformation,
addressVehiclesQuestion,
loadingModal,
},
};
</script>
<style lang="scss">
.alert-provide-vin {
font-size: 0.875rem;
line-height: 1.4;
a {
text-underline-offset: .2em;
line-height: inherit;
}
}
</style>