Merge remote-tracking branch 'origin/develop' into feature/CSR-1391.1
This commit is contained in:
commit
da764e57cf
9 changed files with 523 additions and 52 deletions
|
|
@ -91,6 +91,9 @@ const storeActions = {
|
||||||
SAVE_SERVICE_LOCATION_TECH_NOTES: "saveServiceLocationTechNotes",
|
SAVE_SERVICE_LOCATION_TECH_NOTES: "saveServiceLocationTechNotes",
|
||||||
SAVE_CCTOKEN: "saveCCToken",
|
SAVE_CCTOKEN: "saveCCToken",
|
||||||
SAVE_PAYPAL_TOKEN: "savePaypalToken",
|
SAVE_PAYPAL_TOKEN: "savePaypalToken",
|
||||||
|
|
||||||
|
CREATE_SUBMITTED_ORDER: "createSubmittedOrder",
|
||||||
|
RESET_SUBMITTED_ORDER: "resetSubmittedOrder",
|
||||||
};
|
};
|
||||||
|
|
||||||
export { storeActions };
|
export { storeActions };
|
||||||
|
|
|
||||||
369
src/fmg-components/cart/cart.spec.js
Normal file
369
src/fmg-components/cart/cart.spec.js
Normal file
|
|
@ -0,0 +1,369 @@
|
||||||
|
// Components
|
||||||
|
import cart from "@/fmg-components/cart/cart.vue";
|
||||||
|
|
||||||
|
// Supporting Files
|
||||||
|
import { shallowMount } from "@vue/test-utils";
|
||||||
|
import { getMountOptions } from "@/helpers/unit-test-helper.js";
|
||||||
|
|
||||||
|
describe("cart.vue", () => {
|
||||||
|
describe("cartItem computeds", () => {
|
||||||
|
test("if there are one or more front wipers on the order, a front wiper cart item should be added to the cart", () => {
|
||||||
|
// Arrange
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [],
|
||||||
|
vaps: [
|
||||||
|
{
|
||||||
|
cartItemType: "FRONT WIPERS",
|
||||||
|
description: 'WIPER BLADE STANDARD 18"',
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 0,
|
||||||
|
partNumber: "WB18",
|
||||||
|
partType: "FRONT WIPER",
|
||||||
|
salesTax: 2.44,
|
||||||
|
sellingPrice: 32.49,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cartItemType: "FRONT WIPERS",
|
||||||
|
description: 'WIPER BLADE STANDARD 26"',
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 0,
|
||||||
|
partNumber: "WB26",
|
||||||
|
partType: "FRONT WIPER",
|
||||||
|
salesTax: 2.44,
|
||||||
|
sellingPrice: 32.49,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.frontWipersCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.frontWipersCartItem.subTotal).toEqual(64.98);
|
||||||
|
expect(wrapper.vm.frontWipersCartItem.salesTax).toEqual(4.88);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.frontWipersCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("if there are one or more rear wipers on the order, a rear wiper cart item should be added to the cart", () => {
|
||||||
|
// Arrange
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [],
|
||||||
|
vaps: [
|
||||||
|
{
|
||||||
|
cartItemType: "REAR WIPERS",
|
||||||
|
description: 'REAR WIPER BLADE STANDARD 18"',
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 0,
|
||||||
|
partNumber: "EWB18",
|
||||||
|
partType: "REAR WIPER",
|
||||||
|
salesTax: 2.44,
|
||||||
|
sellingPrice: 32.49,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
cartItemType: "REAR WIPERS",
|
||||||
|
description: 'REAR WIPER BLADE STANDARD 26"',
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 0,
|
||||||
|
partNumber: "RWB26",
|
||||||
|
partType: "REAR WIPER",
|
||||||
|
salesTax: 2.44,
|
||||||
|
sellingPrice: 32.49,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.rearWipersCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.rearWipersCartItem.subTotal).toEqual(64.98);
|
||||||
|
expect(wrapper.vm.rearWipersCartItem.salesTax).toEqual(4.88);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.rearWipersCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("if there is Rain Defense on the order, a rain defense cart item should be added to the cart", () => {
|
||||||
|
// Arrange
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [],
|
||||||
|
vaps: [
|
||||||
|
{
|
||||||
|
cartItemType: "RAIN DEFENSE",
|
||||||
|
description: null,
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 0,
|
||||||
|
listPrice: "44.99",
|
||||||
|
partNumber: "RAIN DEFENSE",
|
||||||
|
partType: "RAIN DEFENSE",
|
||||||
|
salesTax: 3.37,
|
||||||
|
sellingPrice: 44.99,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.rainDefenseCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.rainDefenseCartItem.subTotal).toEqual(44.99);
|
||||||
|
expect(wrapper.vm.rainDefenseCartItem.salesTax).toEqual(3.37);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.rainDefenseCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
// test("if there are glass parts on the order, a glass part cart item should be added to the cart but should not be displayed", () => {
|
||||||
|
// // Arrange
|
||||||
|
// const windshieldWithChildParts = {
|
||||||
|
// canSafeliteRecalibrate: true,
|
||||||
|
// childParts: [
|
||||||
|
// {
|
||||||
|
// kitPrice: 0,
|
||||||
|
// laborAmount: 23.55,
|
||||||
|
// partNumber: "GGG FW4896",
|
||||||
|
// salesTax: 1.77,
|
||||||
|
// sellingPrice: 0,
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// color: "Green Tint",
|
||||||
|
// description:
|
||||||
|
// "solar, soundproofing, lane keep assist, lane departure warning system, w/adaptive cruise control",
|
||||||
|
// id: "db22fd44-10dd-456f-979b-ff88cf68cca6",
|
||||||
|
// kitPrice: 0,
|
||||||
|
// laborAmount: 60,
|
||||||
|
// partNumber: "FW04896GTYN",
|
||||||
|
// partType: "WINDSHIELD",
|
||||||
|
// recalibrationType: "STATIC",
|
||||||
|
// requiresCapabilityQuestions: false,
|
||||||
|
// requiresRecalibration: true,
|
||||||
|
// salesTax: 63.86,
|
||||||
|
// sellingPrice: 791.46,
|
||||||
|
// };
|
||||||
|
|
||||||
|
// const lineItems = {
|
||||||
|
// glassParts: [windshieldWithChildParts],
|
||||||
|
// supportingItems: [],
|
||||||
|
// vaps: [],
|
||||||
|
// promos: [],
|
||||||
|
// };
|
||||||
|
|
||||||
|
// const availableLineItems = [];
|
||||||
|
|
||||||
|
// // Act
|
||||||
|
// const { wrapper } = setupMocks({
|
||||||
|
// props: {
|
||||||
|
// modelValue: lineItems,
|
||||||
|
// availableLineItems: availableLineItems,
|
||||||
|
// },
|
||||||
|
// });
|
||||||
|
|
||||||
|
// // Assert
|
||||||
|
// expect(wrapper.vm.glassPartCartItems[0]).not.toBeNull();
|
||||||
|
// expect(wrapper.vm.glassPartCartItems[0].subTotal).toEqual(875.01);
|
||||||
|
// expect(wrapper.vm.glassPartCartItems[0].salesTax).toEqual(65.63);
|
||||||
|
// expect(wrapper.vm.glassPartCartItems[0].isDisplayed).toEqual(false);
|
||||||
|
|
||||||
|
// const found =
|
||||||
|
// wrapper.vm.cartItems.findIndex(
|
||||||
|
// (cartItem) => cartItem == wrapper.vm.glassPartsCartItem
|
||||||
|
// ) >= 0;
|
||||||
|
|
||||||
|
// expect(found).toBe(true);
|
||||||
|
// });
|
||||||
|
|
||||||
|
// Recycle Fee Cart Item
|
||||||
|
test("if there is recycling fee on the order, a recycle fee cart item should be added to the cart", () => {
|
||||||
|
// Arrange
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [
|
||||||
|
{
|
||||||
|
description: null,
|
||||||
|
id: "9ff98501-03a4-432b-884e-e4e28f884a2f",
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 34.98,
|
||||||
|
partNumber: "RECYCLE FEE",
|
||||||
|
partType: "REPLACE FEE",
|
||||||
|
salesTax: 2.62,
|
||||||
|
sellingPrice: 0,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
vaps: [],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.recycleFeeCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.recycleFeeCartItem.subTotal).toEqual(34.98);
|
||||||
|
expect(wrapper.vm.recycleFeeCartItem.salesTax).toEqual(2.62);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.recycleFeeCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Mobile Fee Cart Item
|
||||||
|
test("if there is mobile fee on the order, a mobile fee cart item should be added to the cart", () => {
|
||||||
|
// Arrange
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [
|
||||||
|
{
|
||||||
|
description: null,
|
||||||
|
id: "9ff98501-03a4-432b-884e-e4e28f884a2f",
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 34.98,
|
||||||
|
partNumber: "MOBILE FEE",
|
||||||
|
partType: "REPLACE FEE",
|
||||||
|
salesTax: 2.62,
|
||||||
|
sellingPrice: 0,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
vaps: [],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.mobileFeeCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.mobileFeeCartItem.subTotal).toEqual(34.98);
|
||||||
|
expect(wrapper.vm.mobileFeeCartItem.salesTax).toEqual(2.62);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.mobileFeeCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Other Supporting Items Cart Item
|
||||||
|
test("if there are other supporting items on the order, an other supporting items cart item should be added to the cart but should not be displayed", () => {
|
||||||
|
// Arrange
|
||||||
|
const recalibrationLineItem = {
|
||||||
|
cartItemType: "SUPPORTING ITEMS",
|
||||||
|
description: null,
|
||||||
|
id: "8ab6ef9b-8620-430a-8a92-29f7d4bb8b00",
|
||||||
|
kitPrice: 0,
|
||||||
|
laborAmount: 450,
|
||||||
|
partNumber: "RECAL STATIC",
|
||||||
|
partType: "RECALIBRATION",
|
||||||
|
salesTax: 33.75,
|
||||||
|
sellingPrice: 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
const lineItems = {
|
||||||
|
glassParts: [],
|
||||||
|
supportingItems: [recalibrationLineItem],
|
||||||
|
vaps: [],
|
||||||
|
promos: [],
|
||||||
|
};
|
||||||
|
|
||||||
|
const availableLineItems = [];
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const { wrapper } = setupMocks({
|
||||||
|
props: {
|
||||||
|
modelValue: lineItems,
|
||||||
|
availableLineItems: availableLineItems,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(wrapper.vm.otherSupportingItemsCartItem).not.toBeNull();
|
||||||
|
expect(wrapper.vm.otherSupportingItemsCartItem.subTotal).toEqual(450);
|
||||||
|
expect(wrapper.vm.otherSupportingItemsCartItem.salesTax).toEqual(33.75);
|
||||||
|
expect(wrapper.vm.otherSupportingItemsCartItem.isDisplayed).toEqual(false);
|
||||||
|
|
||||||
|
const found =
|
||||||
|
wrapper.vm.cartItems.findIndex(
|
||||||
|
(cartItem) => cartItem == wrapper.vm.otherSupportingItemsCartItem
|
||||||
|
) >= 0;
|
||||||
|
expect(found).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function setupMocks({ options, props }) {
|
||||||
|
const mountOptions = getMountOptions({
|
||||||
|
...options,
|
||||||
|
});
|
||||||
|
|
||||||
|
const mockBaseMixin = {
|
||||||
|
methods: {
|
||||||
|
getTierOnePackagePrice: jest.fn(),
|
||||||
|
filterOutFees: jest.fn(),
|
||||||
|
getCmsContent: jest.fn(),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
if (props) mountOptions.propsData = props;
|
||||||
|
|
||||||
|
mountOptions.global.mixins = [mockBaseMixin];
|
||||||
|
|
||||||
|
const wrapper = shallowMount(cart, mountOptions);
|
||||||
|
|
||||||
|
return { wrapper };
|
||||||
|
}
|
||||||
|
|
@ -73,13 +73,18 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import baseMixin from "@/mixins/base-mixin.js";
|
// Components
|
||||||
import { getHighestFullySatisfiedTier, getPackageContents } from "@/helpers/service-package-helper";
|
|
||||||
|
|
||||||
import textLink from "@/ux-components/text-link/text-link";
|
import textLink from "@/ux-components/text-link/text-link";
|
||||||
import textBlock from "@/digital-components/text-block/text-block";
|
import textBlock from "@/digital-components/text-block/text-block";
|
||||||
import { LineItemUtilities } from "@/store";
|
|
||||||
|
// Mixins
|
||||||
|
import baseMixin from "@/mixins/base-mixin.js";
|
||||||
|
|
||||||
|
// Helpers
|
||||||
import { deepClone } from "@/helpers/object-helper";
|
import { deepClone } from "@/helpers/object-helper";
|
||||||
|
import { getHighestFullySatisfiedTier, getPackageContents } from "@/helpers/service-package-helper";
|
||||||
|
|
||||||
|
// Constants
|
||||||
import { partTypeStrings } from "@/constants/part-type-strings";
|
import { partTypeStrings } from "@/constants/part-type-strings";
|
||||||
import { cartItemCategories } from "@/constants/cart-item-categories";
|
import { cartItemCategories } from "@/constants/cart-item-categories";
|
||||||
import { cartItemTypes } from "@/constants/cart-item-types";
|
import { cartItemTypes } from "@/constants/cart-item-types";
|
||||||
|
|
@ -101,7 +106,6 @@ export default {
|
||||||
currency: "USD",
|
currency: "USD",
|
||||||
}),
|
}),
|
||||||
lineItems: deepClone(this.modelValue),
|
lineItems: deepClone(this.modelValue),
|
||||||
lineItemUtilities: new LineItemUtilities(),
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -114,7 +118,7 @@ export default {
|
||||||
let subTotal = 0;
|
let subTotal = 0;
|
||||||
|
|
||||||
vapsItems.forEach((item) => {
|
vapsItems.forEach((item) => {
|
||||||
subTotal += item.subTotal; // baseMixin.methods.getTotalLineItemPrice(item);
|
subTotal += item.subTotal;
|
||||||
});
|
});
|
||||||
|
|
||||||
return subTotal;
|
return subTotal;
|
||||||
|
|
@ -175,8 +179,10 @@ export default {
|
||||||
cartItems.push(this.rainDefenseCartItem);
|
cartItems.push(this.rainDefenseCartItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.glassPartsCartItem) {
|
if (this.glassPartCartItems) {
|
||||||
cartItems.push(this.glassPartsCartItem);
|
this.glassPartCartItems.forEach((glassPartCartItem) => {
|
||||||
|
cartItems.push(glassPartCartItem);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.otherSupportingItemsCartItem) {
|
if (this.otherSupportingItemsCartItem) {
|
||||||
|
|
@ -264,6 +270,10 @@ export default {
|
||||||
|
|
||||||
return this.damage.glassToReplace;
|
return this.damage.glassToReplace;
|
||||||
},
|
},
|
||||||
|
glassParts() {
|
||||||
|
const glassParts = this.lineItems?.glassParts;
|
||||||
|
return glassParts?.length > 0 ? glassParts : [];
|
||||||
|
},
|
||||||
vaps() {
|
vaps() {
|
||||||
const vaps = this.lineItems?.vaps;
|
const vaps = this.lineItems?.vaps;
|
||||||
return vaps?.length > 0 ? vaps : [];
|
return vaps?.length > 0 ? vaps : [];
|
||||||
|
|
@ -403,12 +413,12 @@ export default {
|
||||||
|
|
||||||
return cartItem;
|
return cartItem;
|
||||||
},
|
},
|
||||||
glassPartsCartItem() {
|
glassPartCartItems() {
|
||||||
let cartItem = null;
|
const glassPartCartItems = [];
|
||||||
|
|
||||||
if (this.lineItems?.glassParts?.length > 0) {
|
if (this.glassParts.length > 0) {
|
||||||
this.lineItems?.glassParts?.forEach((lineItem) => {
|
this.glassParts.forEach((lineItem) => {
|
||||||
cartItem = {
|
let glassPartCartItem = {
|
||||||
name: null,
|
name: null,
|
||||||
category: cartItemCategories.GLASS_PARTS,
|
category: cartItemCategories.GLASS_PARTS,
|
||||||
cartItemType: cartItemTypes.GLASS_PARTS,
|
cartItemType: cartItemTypes.GLASS_PARTS,
|
||||||
|
|
@ -417,24 +427,27 @@ export default {
|
||||||
(lineItem.kitPrice ?? 0) +
|
(lineItem.kitPrice ?? 0) +
|
||||||
(lineItem.laborAmount ?? 0) +
|
(lineItem.laborAmount ?? 0) +
|
||||||
(lineItem.sellingPrice ?? 0),
|
(lineItem.sellingPrice ?? 0),
|
||||||
|
|
||||||
salesTax: lineItem.salesTax ?? 0,
|
salesTax: lineItem.salesTax ?? 0,
|
||||||
lineItems: [],
|
lineItems: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
if (lineItem.childParts?.length > 0) {
|
if (lineItem.childParts?.length > 0) {
|
||||||
lineItem.childParts.forEach((childPartLineItem) => {
|
lineItem.childParts.forEach((childPartLineItem) => {
|
||||||
cartItem.subTotal +=
|
glassPartCartItem.subTotal +=
|
||||||
(childPartLineItem.kitPrice ?? 0) +
|
(childPartLineItem.kitPrice ?? 0) +
|
||||||
(childPartLineItem.laborAmount ?? 0) +
|
(childPartLineItem.laborAmount ?? 0) +
|
||||||
(childPartLineItem.sellingPrice ?? 0);
|
(childPartLineItem.sellingPrice ?? 0);
|
||||||
|
|
||||||
cartItem.salesTax += childPartLineItem.salesTax;
|
glassPartCartItem.salesTax += childPartLineItem.salesTax;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
glassPartCartItems.push(glassPartCartItem);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return cartItem;
|
return glassPartCartItems;
|
||||||
},
|
},
|
||||||
recycleFeeCartItemName() {
|
recycleFeeCartItemName() {
|
||||||
return this.getCmsContent("RecycleFeeTextWidget", "Text");
|
return this.getCmsContent("RecycleFeeTextWidget", "Text");
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,53 @@ beforeEach(() => {
|
||||||
jest.restoreAllMocks();
|
jest.restoreAllMocks();
|
||||||
jest.clearAllMocks();
|
jest.clearAllMocks();
|
||||||
store.getters = {
|
store.getters = {
|
||||||
|
submittedOrder: {
|
||||||
|
schedule: {
|
||||||
|
date: "2023-01-01",
|
||||||
|
startTime: "09:00",
|
||||||
|
endTime: "10:00",
|
||||||
|
routeCode: "000",
|
||||||
|
},
|
||||||
|
lineItems: {
|
||||||
|
glassParts: [
|
||||||
|
{
|
||||||
|
partNumber: "ABC123",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
supportingItems: [],
|
||||||
|
},
|
||||||
|
serviceLocation: {
|
||||||
|
address: "test",
|
||||||
|
address2: "123",
|
||||||
|
city: "test",
|
||||||
|
state: "AZ",
|
||||||
|
appointmentType: "Inshop",
|
||||||
|
zipCode: "12345",
|
||||||
|
zipCodeCtu: "01234",
|
||||||
|
provider: {
|
||||||
|
providerNumber: "123",
|
||||||
|
address: {
|
||||||
|
streetAddress: "test1",
|
||||||
|
city: "test",
|
||||||
|
state: "AZ",
|
||||||
|
zipCode: "12345",
|
||||||
|
zipCodeCtu: "01234",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
damage: {
|
||||||
|
isRepair: false,
|
||||||
|
},
|
||||||
|
referralNumber: "1234567",
|
||||||
|
vehicle: {
|
||||||
|
year: "2004",
|
||||||
|
make: "Ford",
|
||||||
|
model: "F Series F250",
|
||||||
|
},
|
||||||
|
customer: {
|
||||||
|
emailAddress: "test@test.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
order: {
|
order: {
|
||||||
schedule: {
|
schedule: {
|
||||||
date: "2023-01-01",
|
date: "2023-01-01",
|
||||||
|
|
@ -127,9 +174,10 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("ScheduleTimeFormatted should return mobile time in expected format.", () => {
|
test("ScheduleTimeFormatted should return mobile time in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
store.getters.order.schedule.startTime = "09:00";
|
AppointmentTypeStrings.MOBILE;
|
||||||
store.getters.order.schedule.endTime = "11:00";
|
store.getters.submittedOrder.schedule.startTime = "09:00";
|
||||||
|
store.getters.submittedOrder.schedule.endTime = "11:00";
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
|
|
@ -140,9 +188,10 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("ScheduleTimeFormatted should return DROP_OFF time in expected format.", () => {
|
test("ScheduleTimeFormatted should return DROP_OFF time in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.DROP_OFF;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
store.getters.order.schedule.startTime = "09:00";
|
AppointmentTypeStrings.DROP_OFF;
|
||||||
store.getters.order.schedule.endTime = "11:00";
|
store.getters.submittedOrder.schedule.startTime = "09:00";
|
||||||
|
store.getters.submittedOrder.schedule.endTime = "11:00";
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
|
|
@ -153,9 +202,10 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("ScheduleTimeFormatted should return Inshop time in expected format.", () => {
|
test("ScheduleTimeFormatted should return Inshop time in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.IN_SHOP;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
store.getters.order.schedule.startTime = "09:00";
|
AppointmentTypeStrings.IN_SHOP;
|
||||||
store.getters.order.schedule.endTime = "11:00";
|
store.getters.submittedOrder.schedule.startTime = "09:00";
|
||||||
|
store.getters.submittedOrder.schedule.endTime = "11:00";
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
|
|
@ -166,7 +216,8 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("AppointmentWordingText should return mobile text in expected format.", () => {
|
test("AppointmentWordingText should return mobile text in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.MOBILE;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
|
AppointmentTypeStrings.MOBILE;
|
||||||
|
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
// Act
|
// Act
|
||||||
|
|
@ -177,7 +228,8 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("AppointmentWordingText should return DROP_OFF text in expected format.", () => {
|
test("AppointmentWordingText should return DROP_OFF text in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.DROP_OFF;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
|
AppointmentTypeStrings.DROP_OFF;
|
||||||
|
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
|
@ -189,7 +241,8 @@ describe("computed properties...", () => {
|
||||||
});
|
});
|
||||||
test("AppointmentWordingText should return IN_SHOP text in expected format.", () => {
|
test("AppointmentWordingText should return IN_SHOP text in expected format.", () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
store.getters.order.serviceLocation.appointmentType = AppointmentTypeStrings.IN_SHOP;
|
store.getters.submittedOrder.serviceLocation.appointmentType =
|
||||||
|
AppointmentTypeStrings.IN_SHOP;
|
||||||
|
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,8 @@ import vehicleBanner from "@/fmg-components/vehicle-banner/vehicle-banner";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
||||||
import addToCalendar from "@/layouts/confirmation/add-to-calendar/add-to-calendar";
|
import addToCalendar from "@/layouts/confirmation/add-to-calendar/add-to-calendar";
|
||||||
//Supporting files
|
//Supporting files
|
||||||
|
import baseMixin from "@/mixins/base-mixin.js";
|
||||||
|
import { storeActions } from "@/constants/store-actions";
|
||||||
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
import { fetchCmsContentForPage } from "@/helpers/cms-content-helper";
|
||||||
import { AppointmentTypeStrings } from "@/constants/schedule-constants";
|
import { AppointmentTypeStrings } from "@/constants/schedule-constants";
|
||||||
import { settleAllPromises } from "@/helpers/layout-helper";
|
import { settleAllPromises } from "@/helpers/layout-helper";
|
||||||
|
|
@ -70,6 +72,8 @@ import { get12HourTimeFormat, get12HourTimeMobileFormat } from "@/helpers/date-h
|
||||||
export default {
|
export default {
|
||||||
name: "confirmation",
|
name: "confirmation",
|
||||||
async beforeRouteEnter(to, from, next) {
|
async beforeRouteEnter(to, from, next) {
|
||||||
|
await baseMixin.methods.dispatchStoreAction(storeActions.CREATE_SUBMITTED_ORDER);
|
||||||
|
|
||||||
// Call APIs
|
// Call APIs
|
||||||
const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage);
|
const cmsContentPromise = fetchCmsContentForPage(to.query.fmgPage);
|
||||||
|
|
||||||
|
|
@ -95,7 +99,7 @@ export default {
|
||||||
return this.getCmsContent("ScheduleConfirmationWidget", "Image");
|
return this.getCmsContent("ScheduleConfirmationWidget", "Image");
|
||||||
},
|
},
|
||||||
CustomerPortalLoginToken() {
|
CustomerPortalLoginToken() {
|
||||||
return store.getters.order.customerPortalLoginToken;
|
return store.getters.submittedOrder.customerPortalLoginToken;
|
||||||
},
|
},
|
||||||
ConfirmationEmailText() {
|
ConfirmationEmailText() {
|
||||||
return this.getCmsContent("ConfirmationEmailWidget", "BodyText")
|
return this.getCmsContent("ConfirmationEmailWidget", "BodyText")
|
||||||
|
|
@ -105,16 +109,16 @@ export default {
|
||||||
?.replaceAll(">", ">");
|
?.replaceAll(">", ">");
|
||||||
},
|
},
|
||||||
ScheduleDate() {
|
ScheduleDate() {
|
||||||
return store.getters.order.schedule.date;
|
return store.getters.submittedOrder.schedule.date;
|
||||||
},
|
},
|
||||||
AppointmentType() {
|
AppointmentType() {
|
||||||
return store.getters.order.serviceLocation.appointmentType;
|
return store.getters.submittedOrder.serviceLocation.appointmentType;
|
||||||
},
|
},
|
||||||
ScheduleStartTime() {
|
ScheduleStartTime() {
|
||||||
return store.getters.order.schedule.startTime;
|
return store.getters.submittedOrder.schedule.startTime;
|
||||||
},
|
},
|
||||||
ScheduleEndTime() {
|
ScheduleEndTime() {
|
||||||
return store.getters.order.schedule.endTime;
|
return store.getters.submittedOrder.schedule.endTime;
|
||||||
},
|
},
|
||||||
InShopWordingText() {
|
InShopWordingText() {
|
||||||
return this.getCmsContent("InShopWordingWidget", "BodyText");
|
return this.getCmsContent("InShopWordingWidget", "BodyText");
|
||||||
|
|
@ -126,31 +130,31 @@ export default {
|
||||||
return this.getCmsContent("DropOffWordingWidget", "BodyText");
|
return this.getCmsContent("DropOffWordingWidget", "BodyText");
|
||||||
},
|
},
|
||||||
ServiceLocationAddress() {
|
ServiceLocationAddress() {
|
||||||
return store.getters.order.serviceLocation.address;
|
return store.getters.submittedOrder.serviceLocation.address;
|
||||||
},
|
},
|
||||||
ServiceLocationAddress2() {
|
ServiceLocationAddress2() {
|
||||||
return store.getters.order.serviceLocation.address2;
|
return store.getters.submittedOrder.serviceLocation.address2;
|
||||||
},
|
},
|
||||||
ServiceLocationCity() {
|
ServiceLocationCity() {
|
||||||
return store.getters.order.serviceLocation.city;
|
return store.getters.submittedOrder.serviceLocation.city;
|
||||||
},
|
},
|
||||||
ServiceLocationState() {
|
ServiceLocationState() {
|
||||||
return store.getters.order.serviceLocation.state;
|
return store.getters.submittedOrder.serviceLocation.state;
|
||||||
},
|
},
|
||||||
ServiceLocationZipCode() {
|
ServiceLocationZipCode() {
|
||||||
return store.getters.order.serviceLocation.zipCode;
|
return store.getters.submittedOrder.serviceLocation.zipCode;
|
||||||
},
|
},
|
||||||
ProviderAddress() {
|
ProviderAddress() {
|
||||||
return store.getters.order.serviceLocation.provider.address.streetAddress;
|
return store.getters.submittedOrder.serviceLocation.provider.address.streetAddress;
|
||||||
},
|
},
|
||||||
ProviderCity() {
|
ProviderCity() {
|
||||||
return store.getters.order.serviceLocation.provider.address.city;
|
return store.getters.submittedOrder.serviceLocation.provider.address.city;
|
||||||
},
|
},
|
||||||
ProviderState() {
|
ProviderState() {
|
||||||
return store.getters.order.serviceLocation.provider.address.state;
|
return store.getters.submittedOrder.serviceLocation.provider.address.state;
|
||||||
},
|
},
|
||||||
ProviderZipCode() {
|
ProviderZipCode() {
|
||||||
return store.getters.order.serviceLocation.provider.address.zipCode;
|
return store.getters.submittedOrder.serviceLocation.provider.address.zipCode;
|
||||||
},
|
},
|
||||||
AppointmentWordingText() {
|
AppointmentWordingText() {
|
||||||
if (this.AppointmentType == AppointmentTypeStrings.MOBILE) {
|
if (this.AppointmentType == AppointmentTypeStrings.MOBILE) {
|
||||||
|
|
@ -204,6 +208,10 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
arePagePrerequisitesValid() {
|
arePagePrerequisitesValid() {
|
||||||
|
if (store.getters.hasSubmittedOrder) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Service Location
|
// Service Location
|
||||||
const serviceLocation = store.getters.order.serviceLocation;
|
const serviceLocation = store.getters.order.serviceLocation;
|
||||||
const mobileReqs = !!(
|
const mobileReqs = !!(
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,8 @@ export default {
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Match all available line items to the line items as they are in the store
|
||||||
|
// and rebuild the original structure.
|
||||||
const lineItems = mapTaxedAvailableLineItemsToStoreFormat(
|
const lineItems = mapTaxedAvailableLineItemsToStoreFormat(
|
||||||
availableLineItems,
|
availableLineItems,
|
||||||
lineItemsFromStore
|
lineItemsFromStore
|
||||||
|
|
|
||||||
|
|
@ -334,6 +334,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
async forwardButtonAction() {
|
async forwardButtonAction() {
|
||||||
|
await this.dispatchStoreAction(storeActions.RESET_SUBMITTED_ORDER);
|
||||||
this.dispatchStoreAction(
|
this.dispatchStoreAction(
|
||||||
storeActions.SAVE_VEHICLE,
|
storeActions.SAVE_VEHICLE,
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -55,8 +55,17 @@ const routes = [
|
||||||
await GoToFunnelStartOn404(next);
|
await GoToFunnelStartOn404(next);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Intercept all navigation if a submitted order exists in storage
|
||||||
|
if (store.getters.hasSubmittedOrder) {
|
||||||
|
if (to.query.fmgPage !== "vehicle") {
|
||||||
|
to.query.fmgPage = "confirmation";
|
||||||
|
}
|
||||||
|
}
|
||||||
// On entering the funnel "fresh", read cookie information, decide what to do next. payment pages used to return from safelitehop so exclude here
|
// On entering the funnel "fresh", read cookie information, decide what to do next. payment pages used to return from safelitehop so exclude here
|
||||||
if (from.redirectedFrom === undefined && !to.query.fmgPage.startsWith("payment")) {
|
else if (
|
||||||
|
from.redirectedFrom === undefined &&
|
||||||
|
!to.query.fmgPage.startsWith("payment")
|
||||||
|
) {
|
||||||
// clear the saveSessionPromise - if it exists in the vuex store but a new instance was created
|
// clear the saveSessionPromise - if it exists in the vuex store but a new instance was created
|
||||||
// the saveSessionPromise will no longer point to a valid promise
|
// the saveSessionPromise will no longer point to a valid promise
|
||||||
baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE);
|
baseMixin.methods.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE);
|
||||||
|
|
|
||||||
|
|
@ -691,6 +691,8 @@ export const getters = {
|
||||||
.filter((x) => !!x.isActive)
|
.filter((x) => !!x.isActive)
|
||||||
.map((x) => x.settings)
|
.map((x) => x.settings)
|
||||||
.reduce((r, c) => Object.assign(r, c), {}) ?? {},
|
.reduce((r, c) => Object.assign(r, c), {}) ?? {},
|
||||||
|
submittedOrder: (state) => JSON.parse(window.sessionStorage.getItem("submittedOrder")),
|
||||||
|
hasSubmittedOrder: (state) => window.sessionStorage.getItem("submittedOrder") !== null,
|
||||||
};
|
};
|
||||||
|
|
||||||
function getNonFalseValuesOfPropertyInArrayOfObjects(array, propertyName) {
|
function getNonFalseValuesOfPropertyInArrayOfObjects(array, propertyName) {
|
||||||
|
|
@ -2441,6 +2443,26 @@ export const actions = {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
createSubmittedOrder(context) {
|
||||||
|
if (context.getters.hasSubmittedOrder) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// create a submitted order object from vuex.
|
||||||
|
const submittedOrder = context.state.order;
|
||||||
|
|
||||||
|
// set to local storage
|
||||||
|
window.sessionStorage.setItem("submittedOrder", JSON.stringify(submittedOrder));
|
||||||
|
|
||||||
|
// clear vuex
|
||||||
|
context.commit(storeMutations.RESET_STATE);
|
||||||
|
},
|
||||||
|
|
||||||
|
resetSubmittedOrder(context) {
|
||||||
|
// clear from local storage
|
||||||
|
window.sessionStorage.removeItem("submittedOrder");
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default createStore({
|
export default createStore({
|
||||||
|
|
@ -2576,15 +2598,6 @@ function addTaxesToPricedLineItems(pricedLineItems, taxingLineItems = []) {
|
||||||
return pricedLineItems;
|
return pricedLineItems;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class LineItemUtilities {
|
|
||||||
constructor() {
|
|
||||||
this.getArrayOfAllLineItems = getArrayOfAllLineItems;
|
|
||||||
this.getFlattenedArrayOfLineItemsWithChildParts =
|
|
||||||
getFlattenedArrayOfLineItemsWithChildParts;
|
|
||||||
this.addGuidToLineItemsIfNotAlreadyThere = addGuidToLineItemsIfNotAlreadyThere;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function mapTaxedAvailableLineItemsToStoreFormat(availableLineItems, storeLineItems) {
|
export function mapTaxedAvailableLineItemsToStoreFormat(availableLineItems, storeLineItems) {
|
||||||
// clone the lineItems array because what we're passing in is referencing the store directly
|
// clone the lineItems array because what we're passing in is referencing the store directly
|
||||||
const lineItems = deepClone(storeLineItems);
|
const lineItems = deepClone(storeLineItems);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue