Merging
This commit is contained in:
commit
1ef85885ca
214 changed files with 3857 additions and 2919 deletions
15
.eslintrc.js
15
.eslintrc.js
|
|
@ -4,11 +4,12 @@ module.exports = {
|
|||
jest: true
|
||||
},
|
||||
parserOptions: {
|
||||
ecmaVersion: 14
|
||||
ecmaVersion: 'latest'
|
||||
},
|
||||
extends: [
|
||||
'eslint-config-airbnb-base',
|
||||
'plugin:vue/vue3-recommended'
|
||||
'plugin:vue/vue3-recommended',
|
||||
'plugin:jsdoc/recommended'
|
||||
],
|
||||
rules: {
|
||||
'linebreak-style': 'off',
|
||||
|
|
@ -18,10 +19,10 @@ module.exports = {
|
|||
'vue/v-on-event-hyphenation': ['warn', 'never'],
|
||||
'object-curly-newline': ['error', { consistent: true }],
|
||||
'function-paren-newline': ['error', 'never'],
|
||||
'operator-linebreak': ['error', 'before'],
|
||||
'operator-linebreak': ['error', 'before', { overrides: { '=': 'after' }}],
|
||||
'implicit-arrow-linebreak': ['off'],
|
||||
'comma-dangle': ['error', 'never'],
|
||||
indent: ['error', 4],
|
||||
indent: ['error', 4, { SwitchCase: 1 }],
|
||||
'max-len': ['error', { code: 140 }],
|
||||
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
|
||||
'vue/html-indent': 'off',
|
||||
|
|
@ -29,6 +30,9 @@ module.exports = {
|
|||
singleline: 'never',
|
||||
multiline: 'never'
|
||||
}],
|
||||
'jsdoc/check-tag-names': ['error', {
|
||||
definedTags: ['store', 'endpoint', 'category', 'subcategory', 'remarks']
|
||||
}],
|
||||
'vue/html-self-closing': ['error', {
|
||||
html: {
|
||||
void: 'any',
|
||||
|
|
@ -38,7 +42,8 @@ module.exports = {
|
|||
svg: 'always',
|
||||
math: 'always'
|
||||
}],
|
||||
'import/extensions': ['error', 'always', { vue: 'never', js: 'ignorePackages' }]
|
||||
'import/extensions': ['error', 'always', { js: 'ignorePackages' }],
|
||||
'no-param-reassign': ['error', { props: true, ignorePropertyModificationsFor: ['item'] }]
|
||||
},
|
||||
settings: {
|
||||
'import/resolver': {
|
||||
|
|
|
|||
|
|
@ -88,7 +88,12 @@ stages:
|
|||
indexDeployVariables:
|
||||
__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__: $(__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__)
|
||||
__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__: $(__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__)
|
||||
cfDistributionId: $(cfDistributionId)
|
||||
- template: templates/digital/invalidate-cloudfront-cache.yml@AzureDevOps
|
||||
parameters:
|
||||
awsCliContainer: awscli
|
||||
distributionId: $(cfDistributionId)
|
||||
paths: /*
|
||||
awsProfile: $(devDeploymentProfile)
|
||||
|
||||
# Test Build/Deploy
|
||||
- stage: Test
|
||||
|
|
@ -132,6 +137,12 @@ stages:
|
|||
indexDeployVariables:
|
||||
__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__: $(__VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY__)
|
||||
__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__: $(__VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC__)
|
||||
- template: templates/digital/invalidate-cloudfront-cache.yml@AzureDevOps
|
||||
parameters:
|
||||
awsCliContainer: awscli
|
||||
distributionId: $(cfDistributionId)
|
||||
paths: /*
|
||||
awsProfile: $(sysDeploymentProfile)
|
||||
|
||||
# QA Build/Deploy
|
||||
- stage: QA
|
||||
|
|
@ -184,7 +195,7 @@ stages:
|
|||
|
||||
# Prod Build/Deploy
|
||||
- stage: Prod
|
||||
condition: succeeded('Qa')
|
||||
condition: succeeded('QA')
|
||||
variables:
|
||||
- group: ISS-Prod
|
||||
jobs:
|
||||
|
|
|
|||
|
|
@ -1,23 +1,26 @@
|
|||
module.exports = {
|
||||
verbose: true,
|
||||
coverageReporters: ["html", "text", "cobertura"],
|
||||
reporters: ["default", "jest-junit"],
|
||||
testResultsProcessor: "jest-junit",
|
||||
preset: "@vue/cli-plugin-unit-jest",
|
||||
transform: { "^.+\\.vue$": "@vue/vue3-jest" },
|
||||
moduleFileExtensions: ["js", "vue"],
|
||||
collectCoverageFrom: [
|
||||
"src/**/*.{js,vue}",
|
||||
"!src/main.js",
|
||||
"!src/constants/*.js",
|
||||
"!src/router/**/*.js",
|
||||
"!src/helpers/unit-test-helper.js"
|
||||
verbose: true,
|
||||
coverageReporters: ['html', 'text', 'cobertura'],
|
||||
reporters: ['default', 'jest-junit'],
|
||||
testResultsProcessor: 'jest-junit',
|
||||
preset: '@vue/cli-plugin-unit-jest',
|
||||
transform: { '^.+\\.vue$': '@vue/vue3-jest' },
|
||||
moduleFileExtensions: ['js', 'vue'],
|
||||
moduleNameMapper: {
|
||||
axios: 'axios/dist/browser/axios.cjs'
|
||||
},
|
||||
collectCoverageFrom: [
|
||||
'src/**/*.{js,vue}',
|
||||
'!src/main.js',
|
||||
'!src/constants/*.js',
|
||||
'!src/router/**/*.js',
|
||||
'!src/helpers/unit-test-helper.js'
|
||||
// END
|
||||
], // ! means exclude from coverage.
|
||||
testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],
|
||||
coverageThreshold: {
|
||||
// global: {
|
||||
// statements: 80,
|
||||
// },
|
||||
},
|
||||
], // ! means exclude from coverage.
|
||||
testMatch: ['**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'],
|
||||
coverageThreshold: {
|
||||
// global: {
|
||||
// statements: 80,
|
||||
// },
|
||||
}
|
||||
};
|
||||
|
|
|
|||
1873
package-lock.json
generated
1873
package-lock.json
generated
File diff suppressed because it is too large
Load diff
25
package.json
25
package.json
|
|
@ -15,38 +15,47 @@
|
|||
"test:unit:lite": "vue-cli-service test:unit --ci"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.27.2",
|
||||
"bootstrap": "^5.2.3",
|
||||
"axios": "^1.4.0",
|
||||
"axios-retry": "^3.5.0",
|
||||
"bootstrap": "^5.3",
|
||||
"maska": "^1.5.0",
|
||||
"pinia": "^2.0.22",
|
||||
"pinia": "^2.1.4",
|
||||
"pinia-plugin-persistedstate": "^2.2.0",
|
||||
"vee-validate": "^4.7.0",
|
||||
"vee-validate": "^4.5.7",
|
||||
"vue": "^3.3.4",
|
||||
"vue-plugin-load-script": "^2.1.0",
|
||||
"vue-router": "4.1.3"
|
||||
"vue-router": "4.2.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pinia/testing": "0.1.2",
|
||||
"@rushstack/eslint-patch": "^1.3.2",
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"@testing-library/user-event": "14.4.3",
|
||||
"@testing-library/vue": "6.6.1",
|
||||
"@vitejs/plugin-vue": "4.2.3",
|
||||
"@vitest/coverage-v8": "^0.34.1",
|
||||
"@vue/cli-plugin-babel": "^5.0.8",
|
||||
"@vue/cli-plugin-router": "~5.0.0",
|
||||
"@vue/cli-plugin-unit-jest": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"@vue/test-utils": "^2.0.0-0",
|
||||
"@vue/test-utils": "^2.4.1",
|
||||
"@vue/vue3-jest": "^27.0.0-alpha.1",
|
||||
"axios-mock-adapter": "^1.21.5",
|
||||
"babel-jest": "^27.0.6",
|
||||
"eslint": "8.29.0",
|
||||
"eslint": "8.45.0",
|
||||
"eslint-config-airbnb-base": "15.0.0",
|
||||
"eslint-import-resolver-alias": "1.1.2",
|
||||
"eslint-plugin-import": "2.26.0",
|
||||
"eslint-plugin-jsdoc": "^46.4.3",
|
||||
"eslint-plugin-vue": "^9.15.1",
|
||||
"jest": "^27.0.5",
|
||||
"jest-junit": "^13.0.0",
|
||||
"jsdoc": "^4.0.2",
|
||||
"jsdom": "^22.1.0",
|
||||
"sass": "^1.32.7",
|
||||
"sass-loader": "^12.0.0",
|
||||
"vitest": "^0.32.4"
|
||||
"vite": "^4.4.6",
|
||||
"vitest": "^0.33.0",
|
||||
"volar-service-vetur": "latest"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
const analyticsPageEvents = {
|
||||
const analyticsPageEvents = Object.freeze({
|
||||
ENTRY: 'ENTRY',
|
||||
EVENT: 'EVENT'
|
||||
};
|
||||
});
|
||||
|
||||
// GA Constants
|
||||
const GaEvents = {
|
||||
const GaEvents = Object.freeze({
|
||||
GENERIC_EVENT: 'event',
|
||||
PAGE_VIEW_EVENT: 'logPageview'
|
||||
};
|
||||
});
|
||||
|
||||
const GaCategories = {
|
||||
const GaCategories = Object.freeze({
|
||||
API_RESPONSE: 'Api_Response',
|
||||
EVOX: 'Evox'
|
||||
};
|
||||
});
|
||||
|
||||
const GaActions = {
|
||||
const GaActions = Object.freeze({
|
||||
RESULT: 'Result',
|
||||
CLICKED: 'Clicked',
|
||||
VIF: 'vif',
|
||||
SUBMITTED: 'Submitted'
|
||||
};
|
||||
});
|
||||
|
||||
const GaLabels = {
|
||||
const GaLabels = Object.freeze({
|
||||
SUCCESS: 'Success',
|
||||
ERROR: 'Error',
|
||||
LICENSE_PLATE_LOOKUP: 'License_Plate_Look_Up',
|
||||
VIN_LOOKUP: 'Vin_Look_Up',
|
||||
ADDRESS_LOOKUP: 'Address_Look_up'
|
||||
};
|
||||
});
|
||||
|
||||
const ValueToLogTypes = {
|
||||
const ValueToLogTypes = Object.freeze({
|
||||
LAST_5: 'last_5'
|
||||
};
|
||||
});
|
||||
|
||||
export { analyticsPageEvents, GaCategories, GaActions, GaLabels, GaEvents, ValueToLogTypes };
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
const applicationConfig = {
|
||||
/**
|
||||
* @module applicationConfig
|
||||
* @author T-Wrecks Team
|
||||
* @copyright Safelite
|
||||
*/
|
||||
const applicationConfig = Object.freeze({
|
||||
CURRENT_ENVIRONMENT: process.env.VUE_APP_CURRENT_ENVIRONMENT, // "Localhost", "Dev", "QA", and "Prod"
|
||||
CONSUMER_CF_DISTRO: process.env.VUE_APP_CONSUMER_CF_DISTRO,
|
||||
ANALYTICS_SESSION_TIMEOUT_MINUTES: 30,
|
||||
|
|
@ -12,6 +17,6 @@ const applicationConfig = {
|
|||
GOOGLE_PLACES_API_KEY: process.env.VUE_APP_GOOGLE_PLACES_API_KEY,
|
||||
ISS_DEV_CMS_DOMAIN: 'https://digitalisscms.dev.safelite.io',
|
||||
CASH_PARENT_ACCOUNT_NUMBER: 167132
|
||||
};
|
||||
});
|
||||
|
||||
export { applicationConfig };
|
||||
export default applicationConfig;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,18 @@
|
|||
import { applicationConfig } from '@/constants/application-config.js';
|
||||
import applicationConfig from '@/constants/application-config.js';
|
||||
|
||||
const cookieNames = {
|
||||
/**
|
||||
* @module cookieNames
|
||||
* @requires applicationConfig
|
||||
* @author T-Wrecks Team
|
||||
* @copyright Safelite
|
||||
*/
|
||||
const cookieNames = Object.freeze({
|
||||
ISS_SESSION_INFO: `ISSSessionInfo-${applicationConfig.CURRENT_ENVIRONMENT}`,
|
||||
|
||||
// Existing Safelite.com cookies
|
||||
DXDEV: 'dxdev',
|
||||
SESSION_ID: 'sid',
|
||||
SESSION_KEY: 'skey'
|
||||
};
|
||||
});
|
||||
|
||||
export { cookieNames };
|
||||
export default cookieNames;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
const coverageStatuses = {
|
||||
const coverageStatuses = Object.freeze({
|
||||
PENDING: 'Pending',
|
||||
NO_COMP: 'No Comp',
|
||||
VERIFIED: 'Verified'
|
||||
};
|
||||
});
|
||||
|
||||
export { coverageStatuses };
|
||||
export default coverageStatuses;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
const damageLocationsCms = {
|
||||
const damageLocationsCms = Object.freeze({
|
||||
WINDSHIELD: 'WINDSHIELD',
|
||||
SIDEDOOR: 'SIDEDOOR',
|
||||
REARWINDOW: 'REARWINDOW',
|
||||
DRIVERSIDE: 'DRIVERSIDE',
|
||||
PASSENGERSIDE: 'PASSENGERSIDE'
|
||||
};
|
||||
});
|
||||
|
||||
export { damageLocationsCms };
|
||||
export default damageLocationsCms;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const damageLocationsSelected = {
|
||||
const damageLocationsSelected = Object.freeze({
|
||||
WINDSHIELD: 'Windshield',
|
||||
SIDEDOOR: 'SideDoor',
|
||||
REARWINDOW: 'RearWindow',
|
||||
|
|
@ -16,6 +16,6 @@ const damageLocationsSelected = {
|
|||
PASSENGERSIDE: 'PassengerSide',
|
||||
STATIONARY: 'Stationary',
|
||||
SLIDER: 'Slider'
|
||||
};
|
||||
});
|
||||
|
||||
export { damageLocationsSelected };
|
||||
export default damageLocationsSelected;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
const dynamicStrings = {
|
||||
const dynamicStrings = Object.freeze({
|
||||
GLOBAL_STATE: 'globalState',
|
||||
CUSTOM: 'custom',
|
||||
ROUTER_LINK: 'routerLink:',
|
||||
MODAL_LINK: 'modalLink',
|
||||
TEXT_LINK: 'textLink',
|
||||
EXTERNAL_LINK: 'externalLink'
|
||||
};
|
||||
});
|
||||
|
||||
export { dynamicStrings };
|
||||
export default dynamicStrings;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
// Example: {custom:glassName}, each key in the array is the value after custom:, like 'glassname'
|
||||
// Please use lowercase only so that we don't have to worry about case sensitivity.
|
||||
|
||||
const customMappings = {
|
||||
const customMappings = Object.freeze({
|
||||
formattedglassname: [
|
||||
{ key: 'Windshield Single', transformedValue: 'windshield' },
|
||||
{ key: 'Windshield Driver', transformedValue: 'driver side split windshield' },
|
||||
|
|
@ -20,12 +20,12 @@ const customMappings = {
|
|||
{ key: 'Passenger Quarter', transformedValue: 'passenger side quarter panel' },
|
||||
{ key: 'Passenger SlideDoor', transformedValue: 'passenger side sliding door' }
|
||||
]
|
||||
};
|
||||
});
|
||||
|
||||
// Gets an instance of a string where the dynamic portion of the text {custom:KeyName}
|
||||
// is replaced by a value from the above map.
|
||||
// If the value isn't found, return the original dynamic string without replacement
|
||||
export function getCustomTransformValue(dynamicString, key) {
|
||||
const getCustomTransformValue = (dynamicString, key) => {
|
||||
// Get array key from the dynamic string
|
||||
const regexExp = /{(.*?):(.*?)}/g;
|
||||
const matches = [...dynamicString.matchAll(regexExp)];
|
||||
|
|
@ -53,4 +53,6 @@ export function getCustomTransformValue(dynamicString, key) {
|
|||
const finalString = dynamicString.replace(`{custom:${arrayKey}}`, mapObject.transformedValue);
|
||||
|
||||
return finalString;
|
||||
}
|
||||
};
|
||||
|
||||
export default getCustomTransformValue;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
const endorsementOptions = {
|
||||
const endorsementOptions = Object.freeze({
|
||||
EDUCATOR: 'Educator',
|
||||
OEM_APPROVED: 'OEM Approved',
|
||||
FULL_GLASS: 'Full Glass Coverage',
|
||||
PARKING_GUARD: 'Parking Guard',
|
||||
REPAIR_WAIVED: 'Repair Waived'
|
||||
};
|
||||
});
|
||||
|
||||
export { endorsementOptions };
|
||||
export default endorsementOptions;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const endpoints = {
|
||||
const endpoints = Object.freeze({
|
||||
GetRouteInfo: {
|
||||
url: (applicationAbbreviation) => `/content/api/v1/content/${applicationAbbreviation}/RouteInfo`,
|
||||
method: 'POST'
|
||||
|
|
@ -134,6 +134,6 @@ const endpoints = {
|
|||
url: '/order/api/v1/order/save-session',
|
||||
method: 'POST'
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
export { endpoints };
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
const errorMessages = {
|
||||
/**
|
||||
* @module errorMessages
|
||||
* @author T-Wrecks Team
|
||||
* @copyright Safelite
|
||||
*/
|
||||
const errorMessages = Object.freeze({
|
||||
DAMAGE_LOCATION_REQUIRED: 'Please select damage location',
|
||||
DAMAGE_SIDE_REQUIRED: 'Please select vehicle side',
|
||||
DRIVER_SIDE_OPTIONS_REQUIRED: 'Please select window',
|
||||
|
|
@ -28,7 +33,6 @@ const errorMessages = {
|
|||
POLICY_NUMBER_REQUIRED: 'Please enter your policy number',
|
||||
PHONE_NUMBER_REQUIRED: 'Please enter phone number',
|
||||
PHONE_NUMBER_FORMAT: 'Please enter your phone number. The format must be ###-###-####',
|
||||
PHONE_NUMBER_FORMAT_SHORT: 'Please enter a valid phone number',
|
||||
POLICY_ZIP_REQUIRED: 'Please enter your policy ZIP',
|
||||
POLICY_ZIP_FORMAT: 'Please enter a valid ZIP',
|
||||
LOSS_CAUSE_REQUIRED: 'Please enter loss cause',
|
||||
|
|
@ -46,6 +50,6 @@ const errorMessages = {
|
|||
MAKE_REQUIRED: 'Please select your vehicle make',
|
||||
MODEL_REQUIRED: 'Please select your vehicle model',
|
||||
STYLE_REQUIRED: 'Please select your vehicle style'
|
||||
};
|
||||
});
|
||||
|
||||
export { errorMessages };
|
||||
export default errorMessages;
|
||||
|
|
|
|||
|
|
@ -1,17 +1,17 @@
|
|||
const globalEvents = {
|
||||
const globalEvents = Object.freeze({
|
||||
Categories: {
|
||||
GLOBAL_ALERT: 'GLOBAL_ALERT'
|
||||
},
|
||||
SubCategories: {
|
||||
PAGE_NOT_FOUND: 'PAGE_NOT_FOUND'
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
const globalEventTypes = {
|
||||
const globalEventTypes = Object.freeze({
|
||||
Success: 'alert-success',
|
||||
Warning: 'alert-warning',
|
||||
Info: 'alert-info',
|
||||
Danger: 'alert-danger'
|
||||
};
|
||||
});
|
||||
|
||||
export { globalEvents, globalEventTypes };
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
const experimentUniverses = {
|
||||
const experimentUniverses = Object.freeze({
|
||||
ISS_FUNNEL: 'ISSFunnel'
|
||||
};
|
||||
});
|
||||
|
||||
const experimentSettings = {
|
||||
const experimentSettings = Object.freeze({
|
||||
GOOGLE_CUSTOM_DIMENSION_INDEX: 'Google Custom Dimension Index'
|
||||
};
|
||||
});
|
||||
|
||||
const experimentTriggers = {
|
||||
const experimentTriggers = Object.freeze({
|
||||
SITE_ENTRY: 'SiteEntry',
|
||||
PAGE_ENTRY: 'PageEntry'
|
||||
};
|
||||
});
|
||||
|
||||
export { experimentUniverses, experimentSettings, experimentTriggers };
|
||||
|
|
|
|||
|
|
@ -1,13 +1,10 @@
|
|||
/**
|
||||
* @file global-rules.js
|
||||
* @module globalRules
|
||||
* @summary Contains all the globally defined rules.
|
||||
* @author MB
|
||||
* @copyright Safelite
|
||||
*/
|
||||
|
||||
/**
|
||||
* @summary Contains all the globally defined rules.
|
||||
*/
|
||||
const globalRules = {
|
||||
const globalRules = Object.freeze({
|
||||
POLICYHOLDER_FIRST_NAME_REQUIRED: 'policyholder-first-name-required',
|
||||
POLICYHOLDER_LAST_NAME_REQUIRED: 'policyholder-last-name-required',
|
||||
FIRST_NAME_REQUIRED: 'first-name-required',
|
||||
|
|
@ -16,8 +13,7 @@ const globalRules = {
|
|||
EMAIL_ADDRESS_FORMAT: 'email-address-format',
|
||||
PHONE_NUMBER_REQUIRED: 'phone-number-required',
|
||||
PHONE_NUMBER_FORMAT: 'phone-number-format',
|
||||
PHONE_NUMBER_FORMAT_SHORT: 'phone-number-format-short',
|
||||
OPTION_REQUIRED: 'option-required'
|
||||
};
|
||||
});
|
||||
|
||||
export default globalRules;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
export const headerKeys = {
|
||||
const headerKeys = Object.freeze({
|
||||
EXPERIMENT: 'X-Experiment-Data'
|
||||
};
|
||||
});
|
||||
|
||||
export default headerKeys;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
// used until real services are available
|
||||
|
||||
const endpoints = {
|
||||
const endpoints = Object.seal({
|
||||
GetRouteInfo: {
|
||||
url: 'https://mockey.qa.sagaws.net/service/ISS/Content/RouteInfo',
|
||||
method: 'GET'
|
||||
}
|
||||
|
||||
};
|
||||
});
|
||||
|
||||
export { endpoints };
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
const partTypeStrings = {
|
||||
const partTypeStrings = Object.freeze({
|
||||
FRONT_WIPER: 'FRONT WIPER',
|
||||
REAR_WIPER: 'REAR WIPER',
|
||||
RAIN_DEFENSE: 'RAIN DEFENSE',
|
||||
RECALIBRATION: 'RECALIBRATION'
|
||||
};
|
||||
});
|
||||
|
||||
export { partTypeStrings };
|
||||
export default partTypeStrings;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
const queryStrings = {
|
||||
const queryStrings = Object.freeze({
|
||||
ISS_PAGE: 'issPage'
|
||||
};
|
||||
});
|
||||
|
||||
export { queryStrings };
|
||||
export default queryStrings;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
export const states = {
|
||||
/**
|
||||
* @module states
|
||||
* @author T-Wrecks Team
|
||||
* @copyright Safelite
|
||||
*/
|
||||
const states = Object.freeze({
|
||||
AL: 'Alabama',
|
||||
AK: 'Alaska',
|
||||
AZ: 'Arizona',
|
||||
|
|
@ -50,4 +55,6 @@ export const states = {
|
|||
WV: 'West Virginia',
|
||||
WI: 'Wisconsin',
|
||||
WY: 'Wyoming'
|
||||
};
|
||||
});
|
||||
|
||||
export default states;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// TintMap with array keys by location, lowercase to avoid as much string mismatching as possible.
|
||||
// Src assumes you have a @/assets/img/tints/, making the final value @/assets/img/tints/{Src} in the markup.
|
||||
// See vehicle-parts for implementation example.
|
||||
const tintMap = {
|
||||
const tintMap = Object.freeze({
|
||||
other: [
|
||||
// Blue Shade
|
||||
{ name: 'blue tint, blue shade', src: 'Glass-BlueShade-BlueTint.svg' },
|
||||
|
|
@ -71,23 +71,19 @@ const tintMap = {
|
|||
// No shade or tint
|
||||
{ name: 'clear', src: 'Windshield-NoShade-NoTint.svg' }
|
||||
]
|
||||
};
|
||||
});
|
||||
|
||||
// Gets the tint image source string given the glass location, and the tint description (like 'Green Tint')
|
||||
// Use lowered strings here to try to avoid mismatch. Returns an empty string if array key doesn't exist.
|
||||
// Returns undefined if no items are found.
|
||||
export function getTintImage(glassLocation, colorString) {
|
||||
const getTintImage = (glassLocation, colorString) => {
|
||||
// Windshield glass has special images, all other glass uses the same though.
|
||||
if (glassLocation.toLowerCase() !== 'windshield') {
|
||||
glassLocation = 'other';
|
||||
}
|
||||
|
||||
if (tintMap[glassLocation.toLowerCase()] === undefined) {
|
||||
const glassLoc = (glassLocation.toLowerCase() !== 'windshield') ? 'other' : 'windshield';
|
||||
if (tintMap[glassLoc] === undefined) {
|
||||
return '';
|
||||
}
|
||||
|
||||
const tintImageSource = tintMap[glassLocation.toLowerCase()]
|
||||
.find((item) => item.name.toLowerCase() === colorString.toLowerCase());
|
||||
return tintMap[glassLoc].find((item) => item.name.toLowerCase() === colorString.toLowerCase());
|
||||
};
|
||||
|
||||
return tintImageSource;
|
||||
}
|
||||
export default getTintImage;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
const vehicleCategories = {
|
||||
const vehicleCategories = Object.freeze({
|
||||
CAR: 'CAR',
|
||||
TRUCK: 'TRUCK',
|
||||
VAN: 'VAN',
|
||||
|
|
@ -6,6 +6,6 @@ const vehicleCategories = {
|
|||
SUV: 'SUV',
|
||||
MOTORHOME: 'MOTOR HOME',
|
||||
SEMI: 'SEMI'
|
||||
};
|
||||
});
|
||||
|
||||
export { vehicleCategories };
|
||||
export default vehicleCategories;
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ const vehicleSelectionOptions = Object.freeze({
|
|||
VEHICLE_NOT_LISTED: 'Vehicle not listed'
|
||||
});
|
||||
|
||||
export { vehicleSelectionOptions };
|
||||
export default vehicleSelectionOptions;
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ const vinLookupMethodSelections = Object.freeze({
|
|||
HOMEADDRESS: 'HomeAddress'
|
||||
});
|
||||
|
||||
export { vinLookupMethodSelections };
|
||||
export default vinLookupMethodSelections;
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ import {
|
|||
handleButtonComponentFocus,
|
||||
handleInputComponentBlur
|
||||
} from '@/helpers/button-question-focus-helper';
|
||||
import { inputButtonProps } from '@/digital-components/base-input-button/button-functionality-props';
|
||||
import inputButtonProps from '@/digital-components/base-input-button/button-functionality-props';
|
||||
|
||||
export default {
|
||||
name: 'base-input-button',
|
||||
|
|
@ -49,8 +49,8 @@ export default {
|
|||
validateOnMount: false
|
||||
};
|
||||
|
||||
const { handleChange, meta, errors }
|
||||
= useField(toRef(props, 'groupName'),
|
||||
const { handleChange, meta, errors } =
|
||||
useField(toRef(props, 'groupName'),
|
||||
toRef(props, 'validationRules'),
|
||||
fieldOptions);
|
||||
|
||||
|
|
@ -103,25 +103,25 @@ export default {
|
|||
handleEventAction(eventType, e) {
|
||||
if (this.isMultiSelect) {
|
||||
switch (eventType) {
|
||||
case this.eventTypes.CHANGE:
|
||||
this.handleClick(e);
|
||||
break;
|
||||
default:
|
||||
case this.eventTypes.CHANGE:
|
||||
this.handleClick(e);
|
||||
break;
|
||||
default:
|
||||
}
|
||||
} else {
|
||||
switch (eventType) {
|
||||
case this.eventTypes.CLICK:
|
||||
case this.eventTypes.ENTER:
|
||||
case this.eventTypes.SPACE:
|
||||
this.handleClick(e);
|
||||
break;
|
||||
case this.eventTypes.CHANGE:
|
||||
case this.eventTypes.CLICK:
|
||||
case this.eventTypes.ENTER:
|
||||
case this.eventTypes.SPACE:
|
||||
this.handleClick(e);
|
||||
break;
|
||||
case this.eventTypes.CHANGE:
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
this.selectingInitiatesLoad
|
||||
? this.handleSelectionChange(e)
|
||||
: this.handleClick(e);
|
||||
break;
|
||||
default:
|
||||
this.selectingInitiatesLoad
|
||||
? this.handleSelectionChange(e)
|
||||
: this.handleClick(e);
|
||||
break;
|
||||
default:
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
export const inputButtonProps = {
|
||||
const inputButtonProps = Object.seal({
|
||||
value: {
|
||||
type: [String, Number],
|
||||
required: true
|
||||
|
|
@ -35,4 +35,6 @@ export const inputButtonProps = {
|
|||
default: false
|
||||
},
|
||||
suppressError: Boolean
|
||||
};
|
||||
});
|
||||
|
||||
export default inputButtonProps;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,18 @@
|
|||
/* eslint-disable max-len */
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question.vue';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks(mountOptionsMockData = {}) {
|
||||
const defaultMountOptions = { route: { query: { issPage: 'page-name' } } };
|
||||
const baseMountOptions =
|
||||
getMountOptions(Object.assign(defaultMountOptions, mountOptionsMockData));
|
||||
const allMountOptions = Object.assign(defaultMountOptions, baseMountOptions);
|
||||
|
||||
return allMountOptions;
|
||||
}
|
||||
|
||||
describe('buttonQuestion.vue', () => {
|
||||
it('Fieldset classes should contain row if button type is listCard', () => {
|
||||
// Act
|
||||
|
|
@ -1009,12 +1020,3 @@ describe('buttonQuestion.vue', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
function setupMocks(mountOptionsMockData = {}) {
|
||||
const defaultMountOptions = { route: { query: { issPage: 'page-name' } } };
|
||||
const baseMountOptions
|
||||
= getMountOptions(Object.assign(defaultMountOptions, mountOptionsMockData));
|
||||
const allMountOptions = Object.assign(defaultMountOptions, baseMountOptions);
|
||||
|
||||
return allMountOptions;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -76,12 +76,12 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import listButton from '@/ux-components/list-button/list-button';
|
||||
import listButtonHorizontal from '@/ux-components/list-button-horizontal/list-button-horizontal';
|
||||
import listCard from '@/ux-components/list-card/list-card';
|
||||
import radio from '@/ux-components/radio/radio';
|
||||
import listButton from '@/ux-components/list-button/list-button.vue';
|
||||
import listButtonHorizontal from '@/ux-components/list-button-horizontal/list-button-horizontal.vue';
|
||||
import listCard from '@/ux-components/list-card/list-card.vue';
|
||||
import radio from '@/ux-components/radio/radio.vue';
|
||||
import { ErrorMessage } from 'vee-validate';
|
||||
import providerPrefRadio from '@/layouts/provider-preference/provider-pref-radio/provider-pref-radio';
|
||||
import providerPrefRadio from '@/layouts/provider-preference/provider-pref-radio/provider-pref-radio.vue';
|
||||
|
||||
export default {
|
||||
name: 'button-question',
|
||||
|
|
@ -160,28 +160,28 @@ export default {
|
|||
getComponentLoopWrapperClasses() {
|
||||
let classes;
|
||||
switch (this.buttonTypeString) {
|
||||
case 'listButton':
|
||||
classes = 'w-100';
|
||||
break;
|
||||
case 'listButtonHorizontal':
|
||||
classes = 'd-flex flex-row p-0';
|
||||
break;
|
||||
case 'listCard':
|
||||
classes = 'row g-2 justify-content-center';
|
||||
if (this.isWide) {
|
||||
classes += ' flex-column';
|
||||
}
|
||||
break;
|
||||
case 'radio':
|
||||
classes = 'ui-radio d-flex';
|
||||
break;
|
||||
case 'servicePackageRadio':
|
||||
classes = 'package-main';
|
||||
break;
|
||||
case 'providerPrefRadio':
|
||||
classes = 'option-main';
|
||||
break;
|
||||
default:
|
||||
case 'listButton':
|
||||
classes = 'w-100';
|
||||
break;
|
||||
case 'listButtonHorizontal':
|
||||
classes = 'd-flex flex-row p-0';
|
||||
break;
|
||||
case 'listCard':
|
||||
classes = 'row g-2 justify-content-center';
|
||||
if (this.isWide) {
|
||||
classes += ' flex-column';
|
||||
}
|
||||
break;
|
||||
case 'radio':
|
||||
classes = 'ui-radio d-flex';
|
||||
break;
|
||||
case 'servicePackageRadio':
|
||||
classes = 'package-main';
|
||||
break;
|
||||
case 'providerPrefRadio':
|
||||
classes = 'option-main';
|
||||
break;
|
||||
default:
|
||||
}
|
||||
return classes;
|
||||
},
|
||||
|
|
@ -191,16 +191,16 @@ export default {
|
|||
classes += this.isWide ? 'col-12' : 'col';
|
||||
|
||||
switch (this.buttonTypeString) {
|
||||
case 'radio':
|
||||
classes += ' radio-button-container';
|
||||
break;
|
||||
case 'servicePackageRadio':
|
||||
classes = 'package-wrapper';
|
||||
break;
|
||||
case 'providerPrefRadio':
|
||||
classes = 'option-wrapper';
|
||||
break;
|
||||
default:
|
||||
case 'radio':
|
||||
classes += ' radio-button-container';
|
||||
break;
|
||||
case 'servicePackageRadio':
|
||||
classes = 'package-wrapper';
|
||||
break;
|
||||
case 'providerPrefRadio':
|
||||
classes = 'option-wrapper';
|
||||
break;
|
||||
default:
|
||||
}
|
||||
|
||||
return classes;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import dropdownQuestion from './dropdown-question';
|
||||
import dropdownQuestion from '@/digital-components/dropdown-question/dropdown-question.vue';
|
||||
|
||||
// Mock CMS content
|
||||
const questionText = 'Question Text';
|
||||
|
|
@ -46,6 +46,7 @@ describe('dropdownQuestion.vue', () => {
|
|||
expect(label.text()).toContain(questionText);
|
||||
});
|
||||
|
||||
// eslint-disable-next-line max-len
|
||||
it("Should render the 'questionText' data value with '⁠' after the first character of each word in the label text when disableAutoFill is true.", async () => {
|
||||
// Arrange
|
||||
const wrapper = shallowMount(dropdownQuestion, {
|
||||
|
|
@ -154,6 +155,6 @@ describe('dropdownQuestion.vue', () => {
|
|||
wrapper.vm.$options.watch.selectedOption.call(wrapper.vm, 1);
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.handleChange).toHaveBeenCalled;
|
||||
expect(wrapper.vm.handleChange).toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
v-if="placeHolderText"
|
||||
value=""
|
||||
selected>
|
||||
{{ placeHolderText }}
|
||||
{{ placeHolderText }}
|
||||
</option>
|
||||
<option
|
||||
v-for="(value, name, index) in options"
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
</option>
|
||||
</select>
|
||||
<div
|
||||
v-show="errorMessage"
|
||||
v-show="errorMessage && !isDisabled"
|
||||
class="row mt-1 form-test-error">
|
||||
<span role="alert">{{ errorMessage }}</span>
|
||||
</div>
|
||||
|
|
@ -65,12 +65,12 @@ export default {
|
|||
let initialValue;
|
||||
|
||||
switch (typeof modelValue) {
|
||||
case 'number':
|
||||
initialValue = modelValue;
|
||||
break;
|
||||
default:
|
||||
initialValue = (modelValue && modelValue.length > 0) ? modelValue : '';
|
||||
break;
|
||||
case 'number':
|
||||
initialValue = modelValue;
|
||||
break;
|
||||
default:
|
||||
initialValue = modelValue && modelValue.length > 0 ? modelValue : '';
|
||||
break;
|
||||
}
|
||||
|
||||
const fieldOptions = {
|
||||
|
|
@ -79,9 +79,7 @@ export default {
|
|||
initialValue
|
||||
};
|
||||
|
||||
const { errorMessage, handleBlur, handleChange, meta, errors } = useField(props.inputId,
|
||||
props.validationRules,
|
||||
fieldOptions);
|
||||
const { errorMessage, handleBlur, handleChange, meta, errors } = useField(props.inputId, props.validationRules, fieldOptions);
|
||||
|
||||
return {
|
||||
errorMessage,
|
||||
|
|
@ -111,12 +109,8 @@ export default {
|
|||
const words = this.questionText.toString().split(/[ ]+/);
|
||||
words.forEach((word) => {
|
||||
const position = 1;
|
||||
word = [
|
||||
word.toString().slice(0, position),
|
||||
noBreakChar,
|
||||
word.toString().slice(position)
|
||||
].join('');
|
||||
questionText += `${word} `;
|
||||
const newWord = [word.toString().slice(0, position), noBreakChar, word.toString().slice(position)].join('');
|
||||
questionText += `${newWord} `;
|
||||
});
|
||||
|
||||
questionText = questionText.trimEnd();
|
||||
|
|
@ -146,9 +140,9 @@ export default {
|
|||
margin-bottom: 0.25rem;
|
||||
}
|
||||
.form-select {
|
||||
color: $gray-600;
|
||||
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8.89' xml:space='preserve'%3e%3cpath d='M8 8.89c-.24 0-.46-.09-.63-.26L.26 1.53a.901.901 0 0 1 0-1.27C.43.1.66 0 .9 0s.47.1.64.26L8 6.74 14.47.27c.17-.17.4-.27.64-.27s.47.1.63.27c.17.17.26.4.26.64s-.1.47-.27.63l-7.1 7.09a.86.86 0 0 1-.63.26z' fill='%231474a2'/%3e%3c/svg%3e");
|
||||
border: 1px solid $gray-500;
|
||||
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8.89' xml:space='preserve'%3e%3cpath d='M8 8.89c-.24 0-.46-.09-.63-.26L.26 1.53a.901.901 0 0 1 0-1.27C.43.1.66 0 .9 0s.47.1.64.26L8 6.74 14.47.27c.17-.17.4-.27.64-.27s.47.1.63.27c.17.17.26.4.26.64s-.1.47-.27.63l-7.1 7.09a.86.86 0 0 1-.63.26z' fill='%231474a2'/%3e%3c/svg%3e");
|
||||
color: $gray-600;
|
||||
border-radius: 0.5rem;
|
||||
min-height: 3rem;
|
||||
&:focus,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import { shallowMount } from '@vue/test-utils';
|
|||
import crypto from 'crypto';
|
||||
import { useForm } from 'vee-validate';
|
||||
import { Modal } from 'bootstrap';
|
||||
import modal from './modal';
|
||||
import modal from '@/digital-components/modal/modal.vue';
|
||||
|
||||
jest.mock('vee-validate', () => ({
|
||||
useForm: jest.fn()
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
loaderColor="white"
|
||||
:buttonText="footerButtonText"
|
||||
:class="(isButtonDisabled || isFooterButtonDisabled) && 'form-test-invalid'"
|
||||
@click-event="validateAndEmit" />
|
||||
@clickEvent="validateAndEmit" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import modalButtonMain from '@/ux-components/modal-button-main/modal-button-main';
|
||||
import modalButtonMain from '@/ux-components/modal-button-main/modal-button-main.vue';
|
||||
import { Modal } from 'bootstrap';
|
||||
import { useForm } from 'vee-validate';
|
||||
|
||||
|
|
@ -69,6 +69,7 @@ export default {
|
|||
|
||||
const { meta, validate, resetForm } = useForm();
|
||||
|
||||
// TODO: Correct Duplicate key 'modalId' issue.
|
||||
return {
|
||||
modalId,
|
||||
meta,
|
||||
|
|
|
|||
|
|
@ -1,8 +1,42 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import questionChain from '@/digital-components/question-chain/question-chain';
|
||||
import questionChain from '@/digital-components/question-chain/question-chain.vue';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
import { nextTick } from 'vue';
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
questionDataProp = [
|
||||
{
|
||||
questionSequence: 1,
|
||||
questionText: 'Does only your center sliding piece need to be replaced?',
|
||||
answers: [
|
||||
{
|
||||
answerResult: 'DB09410',
|
||||
answerText: 'Yes',
|
||||
nextQuestionSequence: null
|
||||
},
|
||||
{
|
||||
answerResult: 'DB10840',
|
||||
answerText: 'No',
|
||||
nextQuestionSequence: null
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}) {
|
||||
Element.prototype.scrollIntoView = jest.fn();
|
||||
|
||||
const mountOptions = getMountOptions({});
|
||||
mountOptions.propsData = {
|
||||
questionData: questionDataProp
|
||||
};
|
||||
mountOptions.attachTo = document.body;
|
||||
|
||||
const wrapper = shallowMount(questionChain, mountOptions);
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
||||
describe('Question Chain component', () => {
|
||||
describe('on create...', () => {
|
||||
test('Should populate questions data array', async () => {
|
||||
|
|
@ -205,7 +239,7 @@ describe('Question Chain component', () => {
|
|||
wrapper.vm.getQuestionChainAnswerIfComplete(testReturnedAnswer);
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.questions[1].answerSelected).toBeUndefined;
|
||||
expect(wrapper.vm.questions[1].answerSelected).toBeUndefined();
|
||||
});
|
||||
|
||||
test('should return false if returnedAnswer is a nextQuestion (not a final answer)', async () => {
|
||||
|
|
@ -279,36 +313,3 @@ describe('Question Chain component', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
function setupMocks({
|
||||
questionDataProp = [
|
||||
{
|
||||
questionSequence: 1,
|
||||
questionText: 'Does only your center sliding piece need to be replaced?',
|
||||
answers: [
|
||||
{
|
||||
answerResult: 'DB09410',
|
||||
answerText: 'Yes',
|
||||
nextQuestionSequence: null
|
||||
},
|
||||
{
|
||||
answerResult: 'DB10840',
|
||||
answerText: 'No',
|
||||
nextQuestionSequence: null
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}) {
|
||||
Element.prototype.scrollIntoView = jest.fn();
|
||||
|
||||
const mountOptions = getMountOptions({});
|
||||
mountOptions.propsData = {
|
||||
questionData: questionDataProp
|
||||
};
|
||||
mountOptions.attachTo = document.body;
|
||||
|
||||
const wrapper = shallowMount(questionChain, mountOptions);
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question.vue';
|
||||
import { useValidateForm } from 'vee-validate';
|
||||
|
||||
export default {
|
||||
|
|
@ -97,6 +97,7 @@ export default {
|
|||
"1|answer|DD11132|Yes"
|
||||
*/
|
||||
|
||||
// TODO: Assignment to parm
|
||||
question.answerSelected = returnedAnswer;
|
||||
const isQuestionChainComplete = this.getQuestionChainAnswerIfComplete(returnedAnswer);
|
||||
|
||||
|
|
@ -121,6 +122,7 @@ export default {
|
|||
const questionAnswerText = returnedAnswerArray[3];
|
||||
const answeredQuestions = [];
|
||||
|
||||
// TODO: This forEach could probably be converted into something more reactive
|
||||
this.questions.forEach((q) => {
|
||||
// find this question and mark it as "answered" by populating answerSelected
|
||||
if (q.questionSequence === questionNum) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import TextBlock from './text-block';
|
||||
import TextBlock from '@/digital-components/text-block/text-block.vue';
|
||||
|
||||
const mockCmsContent = {
|
||||
Text: 'Sample text here.'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Components
|
||||
import textareaQuestion from '@/digital-components/textarea-question/textarea-question';
|
||||
import textareaQuestion from '@/digital-components/textarea-question/textarea-question.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
|
|
|
|||
|
|
@ -89,8 +89,8 @@ export default {
|
|||
handleBlur,
|
||||
validate,
|
||||
errors,
|
||||
resetField }
|
||||
= useField(props.inputId,
|
||||
resetField } =
|
||||
useField(props.inputId,
|
||||
props.validationRules,
|
||||
fieldOptions);
|
||||
|
||||
|
|
@ -105,14 +105,16 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
/**
|
||||
* @summary Returns the number of characters in the textarea field.
|
||||
*/
|
||||
* @summary Returns the number of characters in the textarea field.
|
||||
* @returns {number}
|
||||
*/
|
||||
characterCount() {
|
||||
return this?.modelValue?.length ?? 0;
|
||||
},
|
||||
/**
|
||||
* @summary Returns the CMS text associated with the question.
|
||||
*/
|
||||
* @summary Returns the CMS text associated with the question.
|
||||
* @returns {string} QuestionText from cms data.
|
||||
*/
|
||||
questionText() {
|
||||
return this.getCmsContent(this.cmsWidgetName, 'QuestionText');
|
||||
},
|
||||
|
|
@ -127,8 +129,9 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
/**
|
||||
* @summary Removes whitespace from the end of pasted content.
|
||||
*/
|
||||
* @summary Removes whitespace from the end of pasted content.
|
||||
* @param {event} evt - Browser event
|
||||
*/
|
||||
trimOnPaste(evt) {
|
||||
evt.stopPropagation();
|
||||
evt.preventDefault();
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import textboxQuestion from './textbox-question';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
|
||||
// Mock CMS content
|
||||
const questionText = 'Question Text';
|
||||
|
|
@ -129,7 +129,8 @@ describe('textboxQuestion.vue', () => {
|
|||
expect(wrapper.emitted()).toHaveProperty('change');
|
||||
});
|
||||
|
||||
it('Should call this.handleChange with new value when the value is changed and the new value is valid', async () => {
|
||||
// TODO Correct test so it actually calls toHaveBeenCalled -> () <-
|
||||
it.skip('Should call this.handleChange with new value when the value is changed and the new value is valid', async () => {
|
||||
// Arrange
|
||||
const wrapper = shallowMount(textboxQuestion, {
|
||||
global: {
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@
|
|||
:maxlength="maxLength ? maxLength : '999'"
|
||||
:data-bs-toggle="includeSelectIcon ? 'modal' : ''"
|
||||
:data-bs-target="'#' + cmsWidgetName"
|
||||
@change="validationRules ? handleChange : () => {}"
|
||||
@blur="validationRules ? handleChange : () => {}"
|
||||
@change="handleChange"
|
||||
@blur="handleChange"
|
||||
@focus="$emit('focus', $event.target.value)"
|
||||
@paste="trimOnPaste"
|
||||
@drop="trimOnPaste" />
|
||||
|
|
@ -116,12 +116,12 @@ export default {
|
|||
let initialValue;
|
||||
|
||||
switch (typeof modelValue) {
|
||||
case 'number':
|
||||
initialValue = modelValue;
|
||||
break;
|
||||
default:
|
||||
initialValue = modelValue && modelValue.length > 0 ? modelValue : '';
|
||||
break;
|
||||
case 'number':
|
||||
initialValue = modelValue;
|
||||
break;
|
||||
default:
|
||||
initialValue = modelValue && modelValue.length > 0 ? modelValue : '';
|
||||
break;
|
||||
}
|
||||
|
||||
const fieldOptions = {
|
||||
|
|
@ -164,12 +164,12 @@ export default {
|
|||
const words = this.questionText.toString().split(/[ ]+/);
|
||||
words.forEach((word) => {
|
||||
const position = 1;
|
||||
word = [
|
||||
const newWord = [
|
||||
word.toString().slice(0, position),
|
||||
noBreakChar,
|
||||
word.toString().slice(position)
|
||||
].join('');
|
||||
questionText += `${word} `;
|
||||
questionText += `${newWord} `;
|
||||
});
|
||||
|
||||
questionText = questionText.trimEnd();
|
||||
|
|
@ -325,8 +325,8 @@ input[type='date']::-webkit-calendar-picker-indicator {
|
|||
border: 1px solid $gray-500;
|
||||
border-radius: 0.5rem;
|
||||
min-height: 3rem;
|
||||
max-height: 48px;
|
||||
padding: 12px 16px;
|
||||
max-height: 3rem;
|
||||
padding: 0.75rem 1rem;
|
||||
&::placeholder {
|
||||
color: $gray-500;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@ import axios from 'axios';
|
|||
import analyticsMixIn from '@/mixins/analytics-mixin.js';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
import { applicationConfig } from '@/constants/application-config.js';
|
||||
import applicationConfig from '@/constants/application-config.js';
|
||||
import { GaCategories, GaActions, GaLabels } from '@/constants/analytics';
|
||||
import { headerKeys } from '@/constants/header-keys';
|
||||
import headerKeys from '@/constants/header-keys';
|
||||
|
||||
export default {
|
||||
callHttpClient({ method, endpoint, payload, logApiCall = true}) {
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
import { useMainStore } from '@/store';
|
||||
|
||||
export function validateISSClientTag(clientTag) {
|
||||
const validateISSClientTag = (clientTag) => {
|
||||
const store = useMainStore();
|
||||
|
||||
return store.validateClientTag(clientTag)
|
||||
.then((response) =>
|
||||
// Success
|
||||
// Success
|
||||
response,
|
||||
(error) =>
|
||||
// Error
|
||||
null);
|
||||
}
|
||||
() => null);
|
||||
};
|
||||
|
||||
export default validateISSClientTag;
|
||||
|
|
|
|||
|
|
@ -1,38 +1,78 @@
|
|||
import { dynamicStrings } from '@/constants/dynamic-strings';
|
||||
import dynamicStrings from '@/constants/dynamic-strings';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
export function fetchCmsContentForPage(issPage) {
|
||||
const store = useMainStore();
|
||||
const { clientName } = store.issConfig;
|
||||
const { accountNumber } = store.issConfig;
|
||||
const clientOverride = (clientName.length > 0 && accountNumber > 0);
|
||||
// This function will process the widget item and replace any global state variables with their values.
|
||||
// This is a recursive function, it will call itself until it runs out of items to iterate on given the object.
|
||||
/**
|
||||
* @function processWidgetItemForReplacement
|
||||
* @param widgetModel
|
||||
* @param key
|
||||
*/
|
||||
function processWidgetItemForReplacement(widgetModel, key) {
|
||||
// If we have a string, and it needs to be replaced.
|
||||
if (typeof widgetModel[key] === 'string') {
|
||||
if (widgetModel[key].includes('{if:')) {
|
||||
widgetModel[key] = processIfStatements(widgetModel[key],
|
||||
dynamicStrings.GLOBAL_STATE,
|
||||
getStoreValueFromString);
|
||||
}
|
||||
|
||||
return store.getPageData(issPage)
|
||||
// Get the base/default page first.
|
||||
.then((baseResponse) => {
|
||||
if (!clientOverride) {
|
||||
// Return the base page if there are no client override.
|
||||
return processPageData(baseResponse, null);
|
||||
}
|
||||
// Else get the client override page.
|
||||
const pageName = `${issPage}_${clientName.toLowerCase().replace(/ /g, '')}`;
|
||||
if (widgetModel[key].includes(dynamicStrings.MODAL_LINK)) {
|
||||
widgetModel[key] = mapStringToModal(widgetModel[key]);
|
||||
}
|
||||
if (widgetModel[key].includes(dynamicStrings.EXTERNAL_LINK)) {
|
||||
widgetModel[key] = mapStringToLink(widgetModel[key]);
|
||||
}
|
||||
if (widgetModel[key].includes(dynamicStrings.GLOBAL_STATE)) {
|
||||
widgetModel[key] = mapStringToState(widgetModel[key]);
|
||||
}
|
||||
return widgetModel[key];
|
||||
}
|
||||
|
||||
return store.getPageData(pageName)
|
||||
.then((clientResponse) =>
|
||||
// Process the client override if it exists.
|
||||
processPageData(baseResponse, clientResponse),
|
||||
(error) => {
|
||||
console.error(error);
|
||||
// Process the just the base if no client override exists.
|
||||
return processPageData(baseResponse, null);
|
||||
});
|
||||
// If we have an object. array, etc
|
||||
if (typeof widgetModel[key] === 'object' && Object.keys(widgetModel[key]).length) {
|
||||
Object.keys(widgetModel[key]).forEach((item) => {
|
||||
processWidgetItemForReplacement(widgetModel[key], item);
|
||||
});
|
||||
|
||||
return widgetModel[key];
|
||||
}
|
||||
|
||||
// If we have something else like a number, boolean, etc. just return it
|
||||
return widgetModel[key];
|
||||
}
|
||||
|
||||
// Parent function for processWidgetItemForReplacement. This will loop through the parent
|
||||
// object and pass any objects that need additional processing to the processWidgetItemForReplacement function.
|
||||
/**
|
||||
* @function processWidgetItemForfindAndReplaceGlobalStateValuesReplacement
|
||||
* @param widgetModel
|
||||
* @param widgetName
|
||||
*/
|
||||
function findAndReplaceGlobalStateValues(widgetModel, widgetName) {
|
||||
const objWithReplacements = {
|
||||
Name: widgetName,
|
||||
Model: {}
|
||||
};
|
||||
|
||||
Object.keys(widgetModel).forEach((key) => {
|
||||
const modelWithReplacements = processWidgetItemForReplacement(widgetModel, key);
|
||||
|
||||
objWithReplacements.Model[key] = modelWithReplacements;
|
||||
});
|
||||
|
||||
return objWithReplacements;
|
||||
}
|
||||
|
||||
// Support method for processing the page data from the CMS call.
|
||||
// widgets = current widget collection used by page.
|
||||
// baseResponse = contains the widgets from the base page.
|
||||
// clientResponse = contains the widgets from the client override page. (null if none)
|
||||
/**
|
||||
* @function processPageData
|
||||
* @param baseResponse
|
||||
* @param clientResponse
|
||||
*/
|
||||
function processPageData(baseResponse, clientResponse) {
|
||||
const pageDataFromCms = {};
|
||||
let widgets = [];
|
||||
|
|
@ -44,7 +84,7 @@ function processPageData(baseResponse, clientResponse) {
|
|||
if (!clientResponse?.data?.Result) {
|
||||
widgets = baseResponse.data.Result;
|
||||
} else {
|
||||
// Override any base widgets with the client override widgets if found.
|
||||
// Override any base widgets with the client override widgets if found.
|
||||
baseResponse.data.Result.forEach((baseWidget) => {
|
||||
let found = false;
|
||||
clientResponse.data.Result.forEach((clientWidget) => {
|
||||
|
|
@ -75,9 +115,8 @@ function processPageData(baseResponse, clientResponse) {
|
|||
}
|
||||
|
||||
widgets.forEach((widget) => {
|
||||
// Global state value replacement.
|
||||
const widgetWithReplacements = findAndReplaceGlobalStateValues(widget.Model,
|
||||
widget.Name);
|
||||
// Global state value replacement.
|
||||
const widgetWithReplacements = findAndReplaceGlobalStateValues(widget.Model, widget.Name);
|
||||
|
||||
// If we already have this widget, push it on the collection
|
||||
if (widgetWithReplacements.Name in pageDataFromCms) {
|
||||
|
|
@ -85,9 +124,7 @@ function processPageData(baseResponse, clientResponse) {
|
|||
return;
|
||||
}
|
||||
|
||||
pageDataFromCms[widgetWithReplacements.Name] = [
|
||||
widgetWithReplacements.Model
|
||||
];
|
||||
pageDataFromCms[widgetWithReplacements.Name] = [widgetWithReplacements.Model];
|
||||
});
|
||||
|
||||
Object.keys(pageDataFromCms).forEach((key) => {
|
||||
|
|
@ -99,71 +136,54 @@ function processPageData(baseResponse, clientResponse) {
|
|||
return pageDataFromCms;
|
||||
}
|
||||
|
||||
// Parent function for processWidgetItemForReplacement. This will loop through the parent
|
||||
// object and pass any objects that need additional processing to the processWidgetItemForReplacement function.
|
||||
function findAndReplaceGlobalStateValues(widgetModel, widgetName) {
|
||||
const objWithReplacements = {
|
||||
Name: widgetName,
|
||||
Model: {}
|
||||
};
|
||||
/**
|
||||
*
|
||||
* @param issPage
|
||||
*/
|
||||
export function fetchCmsContentForPage(issPage) {
|
||||
const store = useMainStore();
|
||||
const { clientName } = store.issConfig;
|
||||
const { accountNumber } = store.issConfig;
|
||||
const clientOverride = clientName.length > 0 && accountNumber > 0;
|
||||
|
||||
Object.keys(widgetModel).forEach((key) => {
|
||||
const modelWithReplacements = processWidgetItemForReplacement(widgetModel,
|
||||
key);
|
||||
return (
|
||||
store
|
||||
.getPageData(issPage)
|
||||
// Get the base/default page first.
|
||||
.then((baseResponse) => {
|
||||
if (!clientOverride) {
|
||||
// Return the base page if there are no client override.
|
||||
return processPageData(baseResponse, null);
|
||||
}
|
||||
// Else get the client override page.
|
||||
const pageName = `${issPage}_${clientName.toLowerCase().replace(/ /g, '')}`;
|
||||
|
||||
objWithReplacements.Model[key] = modelWithReplacements;
|
||||
});
|
||||
|
||||
return objWithReplacements;
|
||||
}
|
||||
|
||||
// This function will process the widget item and replace any global state variables with their values.
|
||||
// This is a recursive function, it will call itself until it runs out of items to iterate on given the object.
|
||||
function processWidgetItemForReplacement(widgetModel, key) {
|
||||
// If we have a string, and it needs to be replaced.
|
||||
if (typeof widgetModel[key] === 'string') {
|
||||
if (widgetModel[key].includes('{if:')) {
|
||||
widgetModel[key] = processIfStatements(widgetModel[key],
|
||||
dynamicStrings.GLOBAL_STATE,
|
||||
getStoreValueFromString);
|
||||
}
|
||||
|
||||
if (widgetModel[key].includes(dynamicStrings.MODAL_LINK)) {
|
||||
widgetModel[key] = mapStringToModal(widgetModel[key]);
|
||||
}
|
||||
if (widgetModel[key].includes(dynamicStrings.EXTERNAL_LINK)) {
|
||||
widgetModel[key] = mapStringToLink(widgetModel[key]);
|
||||
}
|
||||
if (widgetModel[key].includes(dynamicStrings.GLOBAL_STATE)) {
|
||||
widgetModel[key] = mapStringToState(widgetModel[key]);
|
||||
}
|
||||
return widgetModel[key];
|
||||
}
|
||||
|
||||
// If we have an object. array, etc
|
||||
if (typeof widgetModel[key] === 'object'
|
||||
&& Object.keys(widgetModel[key]).length) {
|
||||
Object.keys(widgetModel[key]).forEach((item) => {
|
||||
processWidgetItemForReplacement(widgetModel[key], item);
|
||||
});
|
||||
|
||||
return widgetModel[key];
|
||||
}
|
||||
|
||||
// If we have something else like a number, boolean, etc. just return it
|
||||
return widgetModel[key];
|
||||
return store.getPageData(pageName).then((clientResponse) =>
|
||||
// Process the client override if it exists.
|
||||
processPageData(baseResponse, clientResponse),
|
||||
(error) => {
|
||||
console.error(error);
|
||||
// Process the just the base if no client override exists.
|
||||
return processPageData(baseResponse, null);
|
||||
});
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @function mapStringToModal
|
||||
* @param str
|
||||
*/
|
||||
function mapStringToModal(str) {
|
||||
const startIndex = str.indexOf(`{${dynamicStrings.MODAL_LINK}`);
|
||||
let linkToReplace = str.substring(startIndex, str.length);
|
||||
linkToReplace = linkToReplace.substring(0, linkToReplace.indexOf('}') + 1);
|
||||
|
||||
const params = linkToReplace.substring((dynamicStrings.MODAL_LINK).length + 2, linkToReplace.length - 1);
|
||||
const params = linkToReplace.substring(dynamicStrings.MODAL_LINK.length + 2,
|
||||
linkToReplace.length - 1);
|
||||
const splitParams = params.split(',');
|
||||
|
||||
const bodyText
|
||||
= `<a href="#" modalTarget="${splitParams[0]}" class="modal-text" aria-label="Modal window">${splitParams[1]}</a>`;
|
||||
const bodyText = `<a href="#" modalTarget="${splitParams[0]}" class="modal-text" aria-label="Modal window">${splitParams[1]}</a>`;
|
||||
|
||||
let returnVal = str.replace(linkToReplace, bodyText);
|
||||
|
||||
|
|
@ -173,12 +193,17 @@ function mapStringToModal(str) {
|
|||
return returnVal;
|
||||
}
|
||||
|
||||
/**
|
||||
* @function mapStringToLink
|
||||
* @param str
|
||||
*/
|
||||
function mapStringToLink(str) {
|
||||
const startIndex = str.indexOf(`{${dynamicStrings.EXTERNAL_LINK}`);
|
||||
let linkToReplace = str.substring(startIndex, str.length);
|
||||
linkToReplace = linkToReplace.substring(0, linkToReplace.indexOf('}') + 1);
|
||||
|
||||
const params = linkToReplace.substring((dynamicStrings.EXTERNAL_LINK).length + 2, linkToReplace.length - 1);
|
||||
const params = linkToReplace.substring(dynamicStrings.EXTERNAL_LINK.length + 2,
|
||||
linkToReplace.length - 1);
|
||||
const splitParams = params.split(',');
|
||||
|
||||
const bodyText = `<a href="${splitParams[0]}" class="external-text" target="_blank">${splitParams[1]}</a>`;
|
||||
|
|
@ -192,6 +217,10 @@ function mapStringToLink(str) {
|
|||
}
|
||||
|
||||
// Function to convert a string, into a matching global state item.
|
||||
/**
|
||||
* @function mapStringToState
|
||||
* @param str
|
||||
*/
|
||||
function mapStringToState(str) {
|
||||
// Pull all matches out of the string.
|
||||
const regexExp = /{([^{}]*?):([^{}]*?)}/g;
|
||||
|
|
@ -201,6 +230,7 @@ function mapStringToState(str) {
|
|||
// Our final string value that will be built from the matches.
|
||||
const stringBuilder = '';
|
||||
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const match of globalStateMatches) {
|
||||
// Reset store state for each match.
|
||||
const valueFromStore = getStoreValueFromString(match[2]);
|
||||
|
|
@ -222,13 +252,18 @@ function mapStringToState(str) {
|
|||
return str.trimStart();
|
||||
}
|
||||
|
||||
/**
|
||||
* @function getStoreValueFromString
|
||||
* @param str
|
||||
*/
|
||||
function getStoreValueFromString(str) {
|
||||
if (!str) return '';
|
||||
|
||||
let storeOrStateObject = useMainStore();
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const s of str.split('.')) {
|
||||
if (s === 'getters') continue; // For backward compatibility
|
||||
if (storeOrStateObject[s] != undefined) {
|
||||
if (typeof storeOrStateObject[s] !== 'undefined') {
|
||||
storeOrStateObject = storeOrStateObject[s];
|
||||
} else {
|
||||
break;
|
||||
|
|
@ -251,7 +286,6 @@ function getStoreValueFromString(str) {
|
|||
export function processIfStatements(str, ifConditionKeyword, replacePlaceholderCallback) {
|
||||
const containsRelevantIfStatement = new RegExp(`{if:${ifConditionKeyword}:.+?}`, 'g').test(str);
|
||||
|
||||
const hasEmbeddedCrLf = /\r?\n|\r/g.test(str);
|
||||
if (!containsRelevantIfStatement) {
|
||||
return str;
|
||||
}
|
||||
|
|
@ -259,21 +293,27 @@ export function processIfStatements(str, ifConditionKeyword, replacePlaceholderC
|
|||
const ifStatementRegexMatches = [...str.matchAll(ifStatementRegexExpression)];
|
||||
const completeIfStatementArray = getAndFlagFirstNonNestedIfStatementWithKeyword(ifStatementRegexMatches,
|
||||
ifConditionKeyword);
|
||||
executeIfStatementAndSetProcessedStrings(completeIfStatementArray,
|
||||
replacePlaceholderCallback);
|
||||
executeIfStatementAndSetProcessedStrings(completeIfStatementArray, replacePlaceholderCallback);
|
||||
const reconstructedPostProcessedString = joinProcessedRegexArray(ifStatementRegexMatches);
|
||||
return processIfStatements(reconstructedPostProcessedString,
|
||||
ifConditionKeyword,
|
||||
replacePlaceholderCallback);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param matches
|
||||
* @param ifConditionKeyword
|
||||
*/
|
||||
function getAndFlagFirstNonNestedIfStatementWithKeyword(matches, ifConditionKeyword) {
|
||||
let index = 0;
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const match of matches) {
|
||||
if (match.groups.isIfStatement && match.groups.ifConditionType === ifConditionKeyword) {
|
||||
let interiorIndex = 0;
|
||||
let nestedLevel = 0;
|
||||
let elseStatementIndex = null;
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const interiorMatch of matches.slice(index + 1)) {
|
||||
if (interiorMatch.groups.isIfStatement) {
|
||||
if (interiorMatch.groups.ifConditionType === ifConditionKeyword) {
|
||||
|
|
@ -303,6 +343,11 @@ function getAndFlagFirstNonNestedIfStatementWithKeyword(matches, ifConditionKeyw
|
|||
return matches;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param matches
|
||||
* @param elseStatementIndex
|
||||
*/
|
||||
function flagMatchesForProcessing(matches, elseStatementIndex) {
|
||||
matches[0].isFlaggedForProcessing = true;
|
||||
matches[matches.length - 1].isFlaggedForProcessing = true;
|
||||
|
|
@ -311,6 +356,10 @@ function flagMatchesForProcessing(matches, elseStatementIndex) {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param regexMatches
|
||||
*/
|
||||
function joinProcessedRegexArray(regexMatches) {
|
||||
let processedString = '';
|
||||
regexMatches.forEach((match) => {
|
||||
|
|
@ -320,6 +369,11 @@ function joinProcessedRegexArray(regexMatches) {
|
|||
return processedString;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param ifStatementArray
|
||||
* @param replacePlaceholderCallback
|
||||
*/
|
||||
function executeIfStatementAndSetProcessedStrings(ifStatementArray, replacePlaceholderCallback) {
|
||||
const ifCondition = replacePlaceholderCallback(ifStatementArray[0].groups.ifCondition);
|
||||
let isInsideDesiredBlock = ifCondition;
|
||||
|
|
@ -334,6 +388,11 @@ function executeIfStatementAndSetProcessedStrings(ifStatementArray, replacePlace
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param entry
|
||||
* @param isInsideDesiredBlock
|
||||
*/
|
||||
function setProcessedStringOnEntry(entry, isInsideDesiredBlock) {
|
||||
if (!isInsideDesiredBlock) {
|
||||
entry.groups.processedString = '';
|
||||
|
|
@ -352,6 +411,9 @@ function setProcessedStringOnEntry(entry, isInsideDesiredBlock) {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
function getIfStatementRegexExpression() {
|
||||
// Matches but does not capture:
|
||||
// {if:...} or {else} or {end}
|
||||
|
|
@ -365,40 +427,36 @@ function getIfStatementRegexExpression() {
|
|||
+ '(?<ifConditionType>.*?):' // Match all chars up to and including next ':' - Capture all chars up to ':'
|
||||
+ '(?<ifCondition>.*?)}' // Match all chars up to and including next '}' - Capture all chars up to '}'
|
||||
+ '(?<ifTrailingString>.*?)' // Match and Capture all characters (lazy), can be empty
|
||||
+ `(?=${
|
||||
anyLogicOperatorNonCapture
|
||||
})`; // Looks ahead but does not capture the next logic operator
|
||||
+ `(?=${anyLogicOperatorNonCapture})`; // Looks ahead but does not capture the next logic operator
|
||||
const matchElseOperator
|
||||
= '(?<isElseStatement>{else})' // Match & Capture {else}
|
||||
+ '(?<elseTrailingString>.*?)' // Match & Capture all characters (lazy), can be empty
|
||||
+ `(?=${
|
||||
anyLogicOperatorNonCapture
|
||||
})`; // Looks ahead but does not capture the next logic operator
|
||||
+ `(?=${anyLogicOperatorNonCapture})`; // Looks ahead but does not capture the next logic operator
|
||||
const matchEndOperator
|
||||
= '(?<isEndStatement>{end})' // Match & Capture {end}
|
||||
+ '(?<endTrailingString>.*?)' // Match & Capture all characters (lazy), can be empty
|
||||
+ `(?=${
|
||||
anyLogicOperatorNonCapture
|
||||
}|$)`; // Looks ahead but does not capture the next logic operator
|
||||
+ `(?=${anyLogicOperatorNonCapture}|$)`; // Looks ahead but does not capture the next logic operator
|
||||
// Combine all matching patterns, separated by 'or' pipes
|
||||
return new RegExp(`${matchStartOfString
|
||||
}|${
|
||||
matchIfOperator
|
||||
}|${
|
||||
matchElseOperator
|
||||
}|${
|
||||
matchEndOperator}`,
|
||||
'g');
|
||||
return new RegExp(`${matchStartOfString}|${matchIfOperator}|${matchElseOperator}|${matchEndOperator}`,
|
||||
'g');
|
||||
}
|
||||
|
||||
/// ///////////////////////////////////////
|
||||
// End of If Statement Processing Logic //
|
||||
/// ///////////////////////////////////////
|
||||
|
||||
/**
|
||||
*
|
||||
* @param copy
|
||||
*/
|
||||
export function doesCopyContainTextLink(copy) {
|
||||
return copy.includes(dynamicStrings.TEXT_LINK);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param context
|
||||
*/
|
||||
export function setupModalLinks(context) {
|
||||
context.$nextTick(() => {
|
||||
const elements = document.getElementsByClassName('modal-text');
|
||||
|
|
@ -411,12 +469,17 @@ export function setupModalLinks(context) {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param copy
|
||||
*/
|
||||
export function doesCopyContainRouterLink(copy) {
|
||||
return copy.includes(this.dynamicStrings.ROUTER_LINK);
|
||||
}
|
||||
|
||||
/**
|
||||
* splits copy on { ... } such as {routerlink: ...}
|
||||
* @param copy
|
||||
* @returns array of strings
|
||||
*/
|
||||
export function splitCopyOnCMSPlaceHolder(copy) {
|
||||
|
|
@ -426,6 +489,7 @@ export function splitCopyOnCMSPlaceHolder(copy) {
|
|||
|
||||
/**
|
||||
* Returns string2 of input following this pattern: {string1:string2,string3}
|
||||
* @param copy
|
||||
* @returns string
|
||||
*/
|
||||
export function getRouterLinkRouteFromCopy(copy) {
|
||||
|
|
@ -437,6 +501,7 @@ export function getRouterLinkRouteFromCopy(copy) {
|
|||
|
||||
/**
|
||||
* Returns string3 of input following this pattern: { string1: string2, string3 }
|
||||
* @param copy
|
||||
* @returns string
|
||||
*/
|
||||
export function getRouterLinkDisplayTextFromCopy(copy) {
|
||||
|
|
@ -446,10 +511,23 @@ export function getRouterLinkDisplayTextFromCopy(copy) {
|
|||
return copy.split(':')[1].split(',')[1];
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a router link as an 'a' tag element
|
||||
* @param copy
|
||||
* @returns string
|
||||
*/
|
||||
export function getRouterLinkHtmlStringFromCopy(copy) {
|
||||
return `<a href='/?issPage=${getRouterLinkRouteFromCopy(copy)}' class='router-link'>${getRouterLinkDisplayTextFromCopy(copy)}</a>`;
|
||||
}
|
||||
|
||||
// Copy returned from the CMS that has newlines will return blocks wrapped in
|
||||
// <p ... >...</p>
|
||||
// This function returns an array of each paragraph, works with or without html
|
||||
// attributes present
|
||||
/**
|
||||
*
|
||||
* @param copy
|
||||
*/
|
||||
export function splitCMSCopyOnParagraphTag(copy) {
|
||||
// filter removes empty strings that are a result of string.split with regex
|
||||
return copy.split(/(?:<p(?:.*?)>)|(?:<\/p>)/g).filter((paragraph) => paragraph !== '');
|
||||
|
|
|
|||
|
|
@ -1,23 +1,75 @@
|
|||
import { cookieNames } from '@/constants/cookie-names';
|
||||
import { applicationConfig } from '@/constants/application-config';
|
||||
import cookieNames from '@/constants/cookie-names';
|
||||
import applicationConfig from '@/constants/application-config';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
/*
|
||||
Will update the cookie if present, or create a new one if not.
|
||||
*/
|
||||
export function updateOrCreateISSCookie() {
|
||||
const store = useMainStore();
|
||||
/**
|
||||
* @function isLocalhost
|
||||
*/
|
||||
function isLocalhost() {
|
||||
// eslint-disable-next-line no-restricted-globals
|
||||
return location.hostname.includes('localhost');
|
||||
}
|
||||
|
||||
// Set up cookie with all the props.
|
||||
setISSCookieProperties({
|
||||
LastTouched: new Date().toUTCString(),
|
||||
SavedSessionTimeoutDate: store.applicationUser.savedSessionTimeout,
|
||||
ShouldResetState: false,
|
||||
ReferralNumber: store.order.referralNumber,
|
||||
ReferralDate: store.order.referralDate,
|
||||
ReferralCorrelationId: store.order.referralCorrelationId,
|
||||
ReferralParentAccountNumber: store.order.accountNumber
|
||||
});
|
||||
/**
|
||||
* @function getCookieValueByName
|
||||
* @param {string} name
|
||||
* @summary
|
||||
* Gets cookie value by name, returns empty string if not found.
|
||||
*/
|
||||
function getCookieValueByName(name) {
|
||||
const value = `; ${document.cookie}`;
|
||||
const parts = value.split(`; ${name}=`);
|
||||
|
||||
if (parts.length === 2) {
|
||||
return parts.pop().split(';').shift();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
/*
|
||||
Gets current domain without the subdomain for cookie.
|
||||
*/
|
||||
function getDomainWithoutSubdomain() {
|
||||
// eslint-disable-next-line no-restricted-globals
|
||||
const url = location.hostname;
|
||||
if (isLocalhost()) {
|
||||
return 'localhost';
|
||||
}
|
||||
|
||||
const urlParts = url.split('.');
|
||||
|
||||
return `.${urlParts
|
||||
.slice(0)
|
||||
.slice(-(urlParts.length === 4 ? 3 : 2))
|
||||
.join('.')}`;
|
||||
}
|
||||
|
||||
/*
|
||||
Gets cookie domain value. Localhost will be empty "".
|
||||
*/
|
||||
export function getCookieDomainValue() {
|
||||
return isLocalhost() ? '' : `domain=${getDomainWithoutSubdomain()};`;
|
||||
}
|
||||
|
||||
/*
|
||||
Used to create a cookie.
|
||||
`useDefaultISSCookieAttributes` will set the path and domain to our defaults
|
||||
*/
|
||||
function createOrUpdateCookie(key, value = '',
|
||||
{ useDefaultISSCookieAttributes = true, maxAge, isSecure = true }) {
|
||||
let cookieToAdd = `${key}=${value}; `;
|
||||
|
||||
if (useDefaultISSCookieAttributes) {
|
||||
cookieToAdd += `path=${applicationConfig.COOKIE_PATH}; ${getCookieDomainValue()} `;
|
||||
}
|
||||
if (isSecure && !isLocalhost()) {
|
||||
cookieToAdd += 'secure; ';
|
||||
}
|
||||
if (!Number.isNaN(maxAge)) {
|
||||
cookieToAdd += `max-age=${maxAge};`;
|
||||
}
|
||||
|
||||
document.cookie = cookieToAdd;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -37,6 +89,43 @@ export function getISSCookie() {
|
|||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Used to set properties on the ISS cookie.
|
||||
Takes an object with properties to set. Will overwrite existing properties.
|
||||
*/
|
||||
function setISSCookieProperties(properties) {
|
||||
if (typeof properties === 'object') {
|
||||
const cookie = getISSCookie();
|
||||
|
||||
if (cookie !== null) {
|
||||
Object.keys(properties).forEach((key) => {
|
||||
cookie[key] = properties[key];
|
||||
});
|
||||
}
|
||||
|
||||
const cookieValueJson = JSON.stringify(cookie ?? {});
|
||||
createOrUpdateCookie(cookieNames.ISS_SESSION_INFO, cookieValueJson, {});
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Will update the cookie if present, or create a new one if not.
|
||||
*/
|
||||
export function updateOrCreateISSCookie() {
|
||||
const store = useMainStore();
|
||||
|
||||
// Set up cookie with all the props.
|
||||
setISSCookieProperties({
|
||||
LastTouched: new Date().toUTCString(),
|
||||
SavedSessionTimeoutDate: store.applicationUser.savedSessionTimeout,
|
||||
ShouldResetState: false,
|
||||
ReferralNumber: store.order.referralNumber,
|
||||
ReferralDate: store.order.referralDate,
|
||||
ReferralCorrelationId: store.order.referralCorrelationId,
|
||||
ReferralParentAccountNumber: store.order.accountNumber
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
Removes cookie from browser.
|
||||
*/
|
||||
|
|
@ -44,13 +133,6 @@ export function deleteISSCookie() {
|
|||
createOrUpdateCookie(cookieNames.ISS_SESSION_INFO, undefined, { maxAge: 0 });
|
||||
}
|
||||
|
||||
/*
|
||||
Gets cookie domain value. Localhost will be empty "".
|
||||
*/
|
||||
export function getCookieDomainValue() {
|
||||
return isLocalhost() ? '' : `domain=${getDomainWithoutSubdomain()};`;
|
||||
}
|
||||
|
||||
/*
|
||||
Gets value of dxdev cookie, and then extracts "did" value from it.
|
||||
Returns empty string if cookie not found or "did" string not present.
|
||||
|
|
@ -118,83 +200,3 @@ export function setCookieProperties(properties,
|
|||
});
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
===========================
|
||||
= PRIVATE FUNCTIONS =
|
||||
===========================
|
||||
*/
|
||||
|
||||
/*
|
||||
Used to set properties on the ISS cookie.
|
||||
Takes an object with properties to set. Will overwrite existing properties.
|
||||
*/
|
||||
function setISSCookieProperties(properties) {
|
||||
if (typeof properties === 'object') {
|
||||
const cookie = getISSCookie();
|
||||
|
||||
if (cookie !== null) {
|
||||
Object.keys(properties).forEach((key) => {
|
||||
cookie[key] = properties[key];
|
||||
});
|
||||
}
|
||||
|
||||
const cookieValueJson = JSON.stringify(cookie ?? {});
|
||||
createOrUpdateCookie(cookieNames.ISS_SESSION_INFO, cookieValueJson, {});
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Used to create a cookie.
|
||||
`useDefaultISSCookieAttributes` will set the path and domain to our defaults
|
||||
*/
|
||||
function createOrUpdateCookie(key, value = '',
|
||||
{ useDefaultISSCookieAttributes = true, maxAge, isSecure = true }) {
|
||||
let cookieToAdd = `${key}=${value}; `;
|
||||
|
||||
if (useDefaultISSCookieAttributes) {
|
||||
cookieToAdd += `path=${applicationConfig.COOKIE_PATH}; ${getCookieDomainValue()} `;
|
||||
}
|
||||
if (isSecure && !isLocalhost()) {
|
||||
cookieToAdd += 'secure; ';
|
||||
}
|
||||
if (!Number.isNaN(maxAge)) {
|
||||
cookieToAdd += `max-age=${maxAge};`;
|
||||
}
|
||||
|
||||
document.cookie = cookieToAdd;
|
||||
}
|
||||
|
||||
/*
|
||||
Gets current domain without the subdomain for cookie.
|
||||
*/
|
||||
function getDomainWithoutSubdomain() {
|
||||
const url = location.hostname;
|
||||
if (isLocalhost()) {
|
||||
return 'localhost';
|
||||
}
|
||||
|
||||
const urlParts = url.split('.');
|
||||
|
||||
return `.${urlParts
|
||||
.slice(0)
|
||||
.slice(-(urlParts.length === 4 ? 3 : 2))
|
||||
.join('.')}`;
|
||||
}
|
||||
|
||||
/*
|
||||
Gets cookie value by name, returns empty string if not found.
|
||||
*/
|
||||
function getCookieValueByName(name) {
|
||||
const value = `; ${document.cookie}`;
|
||||
const parts = value.split(`; ${name}=`);
|
||||
|
||||
if (parts.length === 2) {
|
||||
return parts.pop().split(';').shift();
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
function isLocalhost() {
|
||||
return location.hostname.includes('localhost');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import damageCustomLabels from '@/constants/damage-custom-labels';
|
||||
import { damageLocationsSelected } from '@/constants/damage-locations-selected';
|
||||
import damageLocationsSelected from '@/constants/damage-locations-selected';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
export function getDamageString() {
|
||||
|
|
@ -19,15 +19,15 @@ export function getDamageString() {
|
|||
const { glassLocation } = damageLocations[0];
|
||||
if (glassLocation) {
|
||||
switch (glassLocation) {
|
||||
case damageLocationsSelected.WINDSHIELD:
|
||||
return damageCustomLabels.WINDSHIELD;
|
||||
case damageLocationsSelected.DRIVER:
|
||||
case damageLocationsSelected.PASSENGER:
|
||||
return damageCustomLabels.SIDE_WINDOW;
|
||||
case damageLocationsSelected.REAR:
|
||||
return damageCustomLabels.REAR_WINDOW;
|
||||
default:
|
||||
return '';
|
||||
case damageLocationsSelected.WINDSHIELD:
|
||||
return damageCustomLabels.WINDSHIELD;
|
||||
case damageLocationsSelected.DRIVER:
|
||||
case damageLocationsSelected.PASSENGER:
|
||||
return damageCustomLabels.SIDE_WINDOW;
|
||||
case damageLocationsSelected.REAR:
|
||||
return damageCustomLabels.REAR_WINDOW;
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -44,6 +44,7 @@ function hasMatchingReplacementOption(vehicleDamageOptions, selectedGlassToRepla
|
|||
Rear: 'backGlassOptions'
|
||||
};
|
||||
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const glassToReplace of selectedGlassToReplace) {
|
||||
const propName = optionsMap[glassToReplace.glassLocation];
|
||||
const { availableReplacementOptions } = vehicleDamageOptions[propName];
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
import { randomUUID } from 'crypto';
|
||||
|
||||
export function getRandomInt(min = 0, max = 1000) {
|
||||
min = Math.ceil(min);
|
||||
max = Math.floor(max);
|
||||
return Math.floor(Math.random() * (max - min) + min); // The maximum is exclusive and the minimum is inclusive
|
||||
const minCeiling = Math.ceil(min);
|
||||
const maxFloor = Math.floor(max);
|
||||
return Math.floor(Math.random() * (maxFloor - minCeiling) + minCeiling); // The maximum is exclusive and the minimum is inclusive
|
||||
}
|
||||
|
||||
export function getRandomGuid() {
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ describe('event-bus.js', () => {
|
|||
it('removes items when readandpop is called', () => {
|
||||
useMainStore().eventBusItem.mockReturnValueOnce(event);
|
||||
|
||||
// TODO: Use or remove
|
||||
const eventValue = eventBus.readAndPopEventFromBus(globalEvents.Categories.GLOBAL_ALERT,
|
||||
globalEvents.SubCategories.PAGE_NOT_FOUND);
|
||||
|
||||
|
|
@ -35,6 +36,7 @@ describe('event-bus.js', () => {
|
|||
it("doesn't try to remove items when readandpop is called and item doesn't exist", () => {
|
||||
useMainStore().eventBusItem.mockReturnValueOnce(undefined);
|
||||
|
||||
// TODO: Use or remove
|
||||
const eventValue = eventBus.readAndPopEventFromBus(globalEvents.Categories.GLOBAL_ALERT,
|
||||
globalEvents.SubCategories.PAGE_NOT_FOUND);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { defineRule } from 'vee-validate';
|
||||
import { errorMessages } from '@/constants/error-messages';
|
||||
import errorMessages from '@/constants/error-messages';
|
||||
import globalRules from '@/constants/global-rules';
|
||||
import { required, regex } from '@/helpers/validation-rules';
|
||||
|
||||
|
|
@ -9,14 +9,10 @@ import { required, regex } from '@/helpers/validation-rules';
|
|||
function defineGlobalNameRules() {
|
||||
defineRule(globalRules.FIRST_NAME_REQUIRED, required(errorMessages.FIRST_NAME_REQUIRED));
|
||||
defineRule(globalRules.LAST_NAME_REQUIRED, required(errorMessages.LAST_NAME_REQUIRED));
|
||||
defineRule(
|
||||
globalRules.POLICYHOLDER_FIRST_NAME_REQUIRED,
|
||||
required(errorMessages.POLICYHOLDER_FIRST_NAME_REQUIRED)
|
||||
);
|
||||
defineRule(
|
||||
globalRules.POLICYHOLDER_LAST_NAME_REQUIRED,
|
||||
required(errorMessages.POLICYHOLDER_LAST_NAME_REQUIRED)
|
||||
);
|
||||
defineRule(globalRules.POLICYHOLDER_FIRST_NAME_REQUIRED,
|
||||
required(errorMessages.POLICYHOLDER_FIRST_NAME_REQUIRED));
|
||||
defineRule(globalRules.POLICYHOLDER_LAST_NAME_REQUIRED,
|
||||
required(errorMessages.POLICYHOLDER_LAST_NAME_REQUIRED));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -24,13 +20,9 @@ function defineGlobalNameRules() {
|
|||
*/
|
||||
function defineGlobalEmailRules() {
|
||||
defineRule(globalRules.EMAIL_ADDRESS_REQUIRED, required(errorMessages.EMAIL_ADDRESS_REQUIRED));
|
||||
defineRule(
|
||||
globalRules.EMAIL_ADDRESS_FORMAT,
|
||||
regex(
|
||||
/^([a-zA-Z0-9_\-.+]+)@([a-zA-Z0-9_\-.]+)\.([a-zA-Z]{2,})$/,
|
||||
errorMessages.EMAIL_ADDRESS_FORMAT
|
||||
)
|
||||
);
|
||||
defineRule(globalRules.EMAIL_ADDRESS_FORMAT,
|
||||
regex(/^([a-zA-Z0-9_\-.+]+)@([a-zA-Z0-9_\-.]+)\.([a-zA-Z]{2,})$/,
|
||||
errorMessages.EMAIL_ADDRESS_FORMAT));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -38,23 +30,13 @@ function defineGlobalEmailRules() {
|
|||
*/
|
||||
function defineGlobalPhoneNumberRules() {
|
||||
defineRule(globalRules.PHONE_NUMBER_REQUIRED, required(errorMessages.PHONE_NUMBER_REQUIRED));
|
||||
defineRule(
|
||||
globalRules.PHONE_NUMBER_FORMAT,
|
||||
regex(
|
||||
/^(\([0-9]{3}\)|[0-9]{3}) *[-.]? *[0-9]{3} *[-.]? *[0-9]{4}$/,
|
||||
errorMessages.PHONE_NUMBER_FORMAT
|
||||
)
|
||||
);
|
||||
defineRule(
|
||||
globalRules.PHONE_NUMBER_FORMAT_SHORT,
|
||||
regex(
|
||||
/^(\([0-9]{3}\)|[0-9]{3}) *[-.]? *[0-9]{3} *[-.]? *[0-9]{4}$/,
|
||||
errorMessages.PHONE_NUMBER_FORMAT_SHORT
|
||||
)
|
||||
);
|
||||
defineRule(globalRules.PHONE_NUMBER_FORMAT,
|
||||
regex(/^(\([0-9]{3}\)|[0-9]{3}) *[-.]? *[0-9]{3} *[-.]? *[0-9]{4}$/,
|
||||
errorMessages.PHONE_NUMBER_FORMAT));
|
||||
}
|
||||
|
||||
/**
|
||||
* @function defineGlobalRules
|
||||
* @summary Define all global rules
|
||||
*/
|
||||
export default function defineGlobalRules() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { applicationConfig } from '@/constants/application-config';
|
||||
import applicationConfig from '@/constants/application-config';
|
||||
import { getISSCookie } from '@/helpers/cookie-helper.js';
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import {
|
|||
isSavedSessionStillActive,
|
||||
getDateForSavedSessionTimeout
|
||||
} from '@/helpers/session-helper';
|
||||
import { applicationConfig } from '@/constants/application-config';
|
||||
import applicationConfig from '@/constants/application-config';
|
||||
|
||||
describe('isAnalyticsSessionStillActive', () => {
|
||||
test('isAnalyticsSessionStillActive, should return true', () => {
|
||||
|
|
|
|||
11
src/helpers/text-helper.js
Normal file
11
src/helpers/text-helper.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* @function stripRteStyle
|
||||
* @summary
|
||||
* Returns string with inline style tag stripped out
|
||||
* @param {string} stringWithStyleTag
|
||||
* @returns {string}
|
||||
*/
|
||||
export default function stripRteStyle(stringWithStyleTag) {
|
||||
const regexExp = /[\s*]style="(.*?)"/g;
|
||||
return stringWithStyleTag.replace(regexExp, '');
|
||||
}
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios.js';
|
||||
import { RouterLinkStub } from '@vue/test-utils';
|
||||
import { vehicleCategories } from '@/constants/vehicle-categories.js';
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values';
|
||||
import { cookieNames } from '@/constants/cookie-names';
|
||||
import { createTestingPinia } from '@pinia/testing';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
||||
import vehicleCategories from '@/constants/vehicle-categories.js';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
import cookieNames from '@/constants/cookie-names';
|
||||
import { Form } from 'vee-validate';
|
||||
import baseMixin from '@/mixins/base-mixin';
|
||||
import {
|
||||
|
|
@ -10,10 +11,9 @@ import {
|
|||
setCookieProperties
|
||||
} from '@/helpers/cookie-helper';
|
||||
import { GaActions } from '@/constants/analytics';
|
||||
import { queryStrings } from '@/constants/query-strings';
|
||||
import queryStrings from '@/constants/query-strings';
|
||||
import { useMainStore } from '@/store';
|
||||
import { mapStores } from 'pinia';
|
||||
import { createTestingPinia } from '@pinia/testing';
|
||||
|
||||
const pinia = createTestingPinia();
|
||||
useMainStore(pinia);
|
||||
|
|
@ -147,10 +147,6 @@ export function getMountOptions(mockData) {
|
|||
return { global };
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export function getMockOrderInfo(
|
||||
mockReferralNumber,
|
||||
mockCorrelationId,
|
||||
|
|
@ -169,7 +165,4 @@ export function getMockOrderInfo(
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
*/
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
import { required } from '@/helpers/validation-rules';
|
||||
import { regex } from '@/helpers/validation-rules';
|
||||
import { regex, required } from '@/helpers/validation-rules';
|
||||
|
||||
describe('validation-rules.vue', () => {
|
||||
test('required rules should return error if value missing', () => {
|
||||
|
|
|
|||
|
|
@ -1,11 +1,78 @@
|
|||
// Components
|
||||
import addressQuestions from '@/iss-components/address-questions/address-questions';
|
||||
import addressQuestions from '@/iss-components/address-questions/address-questions.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { mount, shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
||||
let autocompleteElement;
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
mountOptions,
|
||||
props,
|
||||
isShallowMount = true,
|
||||
querySelectorFunction,
|
||||
geocoderResult = ['1234 Test Street']
|
||||
}) {
|
||||
const resultingMountOptions = getMountOptions({
|
||||
...mountOptions,
|
||||
router: {
|
||||
navigate: jest.fn()
|
||||
},
|
||||
loadScript: jest.fn().mockResolvedValue()
|
||||
});
|
||||
|
||||
window.google = {
|
||||
maps: {
|
||||
event: {
|
||||
addListener: jest
|
||||
.fn()
|
||||
.mockImplementation((element, eventName, callbackFunction) => {
|
||||
/** @ignore */
|
||||
function interceptedCallbackFunction(e) {
|
||||
callbackFunction(e.detail);
|
||||
}
|
||||
// selectedPlace = "Woogly";
|
||||
element.addEventListener(eventName, interceptedCallbackFunction);
|
||||
}),
|
||||
removeListener: jest.fn(),
|
||||
clearInstanceListeners: jest.fn()
|
||||
},
|
||||
places: {
|
||||
Autocomplete: jest.fn().mockImplementation((el) => el)
|
||||
},
|
||||
Geocoder: class Geocoder {
|
||||
// constructor();
|
||||
|
||||
geocode(request, callback) {
|
||||
callback([geocoderResult], true);
|
||||
}
|
||||
},
|
||||
GeocoderStatus: {
|
||||
OK: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if (props) resultingMountOptions.propsData = props;
|
||||
|
||||
const wrapper = isShallowMount
|
||||
? shallowMount(addressQuestions, resultingMountOptions)
|
||||
: mount(addressQuestions, resultingMountOptions);
|
||||
document.querySelector = jest.fn().mockImplementation((query) => {
|
||||
let result = null;
|
||||
if (query === '.pac-container') result = document.createElement('div');
|
||||
else if (querySelectorFunction) {
|
||||
result = querySelectorFunction(query);
|
||||
}
|
||||
|
||||
return result ?? null;
|
||||
});
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
||||
describe('address-questions.vue', () => {
|
||||
beforeEach(() => {
|
||||
// Create the `addressField1` element (autocomplete's input)
|
||||
|
|
@ -456,80 +523,3 @@ describe('address-questions.vue', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
/**
|
||||
*
|
||||
* @param root0
|
||||
* @param root0.mountOptions
|
||||
* @param root0.props
|
||||
* @param root0.isShallowMount
|
||||
* @param root0.querySelectorFunction
|
||||
* @param root0.geocoderResult
|
||||
*/
|
||||
function setupMocks({
|
||||
mountOptions,
|
||||
props,
|
||||
isShallowMount = true,
|
||||
querySelectorFunction,
|
||||
geocoderResult = ['1234 Test Street']
|
||||
}) {
|
||||
const resultingMountOptions = getMountOptions({
|
||||
...mountOptions,
|
||||
router: {
|
||||
navigate: jest.fn()
|
||||
},
|
||||
loadScript: jest.fn().mockResolvedValue()
|
||||
});
|
||||
|
||||
window.google = {
|
||||
maps: {
|
||||
event: {
|
||||
addListener: jest
|
||||
.fn()
|
||||
.mockImplementation((element, eventName, callbackFunction) => {
|
||||
/**
|
||||
*
|
||||
* @param e
|
||||
*/
|
||||
function interceptedCallbackFunction(e) {
|
||||
callbackFunction(e.detail);
|
||||
}
|
||||
// selectedPlace = "Woogly";
|
||||
element.addEventListener(eventName, interceptedCallbackFunction);
|
||||
}),
|
||||
removeListener: jest.fn(),
|
||||
clearInstanceListeners: jest.fn()
|
||||
},
|
||||
places: {
|
||||
Autocomplete: jest.fn().mockImplementation((el) => el)
|
||||
},
|
||||
Geocoder: class Geocoder {
|
||||
// constructor();
|
||||
|
||||
geocode(request, callback) {
|
||||
callback([geocoderResult], true);
|
||||
}
|
||||
},
|
||||
GeocoderStatus: {
|
||||
OK: true
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if (props) resultingMountOptions.propsData = props;
|
||||
|
||||
const wrapper = isShallowMount
|
||||
? shallowMount(addressQuestions, resultingMountOptions)
|
||||
: mount(addressQuestions, resultingMountOptions);
|
||||
document.querySelector = jest.fn().mockImplementation((query) => {
|
||||
let result = null;
|
||||
if (query === '.pac-container') result = document.createElement('div');
|
||||
else if (querySelectorFunction) {
|
||||
result = querySelectorFunction(query);
|
||||
}
|
||||
|
||||
return result ?? null;
|
||||
});
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,14 +89,14 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import dropdownQuestion from '@/digital-components/dropdown-question/dropdown-question';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import { applicationConfig } from '@/constants/application-config.js';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
import dropdownQuestion from '@/digital-components/dropdown-question/dropdown-question.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
import applicationConfig from '@/constants/application-config.js';
|
||||
import { defineRule } from 'vee-validate';
|
||||
import { required, regex } from '@/helpers/validation-rules';
|
||||
import { errorMessages } from '@/constants/error-messages';
|
||||
import { states } from '@/constants/states';
|
||||
import errorMessages from '@/constants/error-messages';
|
||||
import states from '@/constants/states';
|
||||
import { endpoints } from '@/constants/endpoints';
|
||||
|
||||
// DEFINE VALIDATION RULES
|
||||
|
|
@ -125,6 +125,7 @@ export default {
|
|||
})
|
||||
},
|
||||
validationRules: String,
|
||||
// TODO: fix this property definition (something like Boolean, default: false) - be sure to test it.
|
||||
includeStreetAddress2: false
|
||||
},
|
||||
emits: ['update:modelValue'],
|
||||
|
|
@ -220,8 +221,7 @@ export default {
|
|||
|
||||
// Make place results box stick to the input on scroll
|
||||
const streetAddressField = document.getElementById('streetAddressField');
|
||||
const autocompleteResultsContainer
|
||||
= document.getElementsByClassName('pac-container')[0];
|
||||
const autocompleteResultsContainer = document.getElementsByClassName('pac-container')[0];
|
||||
if (autocompleteResultsContainer) {
|
||||
streetAddressField.appendChild(autocompleteResultsContainer);
|
||||
}
|
||||
|
|
@ -293,32 +293,33 @@ export default {
|
|||
self.matchFound = true;
|
||||
self.addressModel.streetAddress = '';
|
||||
self.$nextTick(() => {
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const component of place.address_components) {
|
||||
const componentType = component.types[0];
|
||||
|
||||
switch (componentType) {
|
||||
case 'street_number': {
|
||||
self.addressModel.streetAddress = component.long_name;
|
||||
break;
|
||||
}
|
||||
case 'route': {
|
||||
self.addressModel.streetAddress
|
||||
case 'street_number': {
|
||||
self.addressModel.streetAddress = component.long_name;
|
||||
break;
|
||||
}
|
||||
case 'route': {
|
||||
self.addressModel.streetAddress
|
||||
+= ` ${component.short_name}`;
|
||||
break;
|
||||
}
|
||||
case 'locality': {
|
||||
self.addressModel.city = component.long_name;
|
||||
break;
|
||||
}
|
||||
case 'administrative_area_level_1': {
|
||||
self.addressModel.state = component.short_name;
|
||||
break;
|
||||
}
|
||||
case 'postal_code': {
|
||||
self.addressModel.zipCode = component.long_name;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
case 'locality': {
|
||||
self.addressModel.city = component.long_name;
|
||||
break;
|
||||
}
|
||||
case 'administrative_area_level_1': {
|
||||
self.addressModel.state = component.short_name;
|
||||
break;
|
||||
}
|
||||
case 'postal_code': {
|
||||
self.addressModel.zipCode = component.long_name;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -340,7 +341,7 @@ export default {
|
|||
})
|
||||
.catch(() => {
|
||||
// Failed to fetch script
|
||||
console.log('Unable to load Google Places API script');
|
||||
window.console.warn('Unable to load Google Places API script');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import ButtonQuestionModal from './button-question-modal';
|
||||
import ButtonQuestionModal from '@/iss-components/button-question-modal/button-question-modal.vue';
|
||||
|
||||
const mockCmsContent = {
|
||||
QuestionText: 'What caused damage.',
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
suppressLoader
|
||||
:buttonText="ModalSelectButtonText"
|
||||
data-bs-dismiss="modal"
|
||||
@click-event="buttonClick" />
|
||||
@clickEvent="buttonClick" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -46,8 +46,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import buttonMain from '@/ux-components/button-main/button-main';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question';
|
||||
import buttonMain from '@/ux-components/button-main/button-main.vue';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question.vue';
|
||||
|
||||
export default {
|
||||
name: 'button-question-modal',
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import crypto from 'crypto';
|
||||
import contentGroupModal from './content-group-modal';
|
||||
import contentGroupModal from '@/iss-components/content-group-modal/content-group-modal.vue';
|
||||
|
||||
global.crypto = crypto;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
:ref="ModalName"
|
||||
:modalId="ModalName"
|
||||
:footerButtonText="ModalCloseButtonText"
|
||||
@footer-button-event="footerButtonClick">
|
||||
@footerButtonEvent="footerButtonClick">
|
||||
<img
|
||||
:src="ModalImage"
|
||||
class="mw-100 d-flex mx-auto mb-4"
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import modal from '@/digital-components/modal/modal';
|
||||
import modal from '@/digital-components/modal/modal.vue';
|
||||
|
||||
export default {
|
||||
name: 'content-group-modal',
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import loadingModal from './loading-modal';
|
||||
import loadingModal from '@/iss-components/loading-modal/loading-modal.vue';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
||||
jest.mock('@/assets/img/loader.gif', () => 'loader.gif');
|
||||
jest.mock('@/assets/img/windshield.png', () => 'windshield.png');
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks() {
|
||||
const mountOptions = getMountOptions({
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import navButton from './nav-button';
|
||||
import navButton from '@/iss-components/nav-button/nav-button.vue';
|
||||
|
||||
describe('NavButton', () => {
|
||||
it('should display input when type is button', () => {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
/* eslint-disable max-len */
|
||||
// Components
|
||||
import questionsPageLayout from '@/iss-components/questions-page-layout/questions-page-layout';
|
||||
import questionsPageLayout from '@/iss-components/questions-page-layout/questions-page-layout.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
|
|
@ -17,6 +18,70 @@ jest.mock('@/helpers/cms-content-helper', () => ({
|
|||
fetchCmsContentForPage: jest.fn()
|
||||
}));
|
||||
|
||||
function setupMocks() {
|
||||
// TODO: Use or delete these
|
||||
const unused1 = () => ({
|
||||
partsOrQuestions: [
|
||||
{
|
||||
parts: null,
|
||||
partQuestions: [
|
||||
{
|
||||
questionSequence: 1,
|
||||
questionText:
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
answers: [
|
||||
{
|
||||
answerResult: '',
|
||||
answerText: 'Yes',
|
||||
nextQuestionSequence: 2
|
||||
},
|
||||
{
|
||||
answerResult: '',
|
||||
answerText: 'No',
|
||||
nextQuestionSequence: 3
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
glassLocation: 'Windshield',
|
||||
glassName: 'Single',
|
||||
answerKey: 'Windshield-Single',
|
||||
answerData: null
|
||||
}
|
||||
]
|
||||
});
|
||||
const unused2 = () => ({
|
||||
partsQuestionAnswers: [
|
||||
{
|
||||
glassLocation: 'Windshield',
|
||||
glassName: 'Single',
|
||||
result: 'FW04848',
|
||||
answeredQuestions: [
|
||||
{
|
||||
questionText:
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
selectedAnswerText: 'Yes',
|
||||
questionNum: 1
|
||||
},
|
||||
{
|
||||
questionText:
|
||||
'Is your vehicle equipped with a heated windshield that melts snow and ice from underneath the windshield wiper blades?',
|
||||
selectedAnswerText: 'Yes',
|
||||
questionNum: 2
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
});
|
||||
const mountOptions = getMountOptions({
|
||||
mixins: [baseMixin, vehicleQuestionsMixin]
|
||||
});
|
||||
mountOptions.attachTo = document.body;
|
||||
const wrapper = shallowMount(questionsPageLayout, mountOptions);
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
||||
describe('questionsPageLayout.vue', () => {
|
||||
describe('method showThisQuestionChain...', () => {
|
||||
test('Should return true if index prop and passed index match', async () => {
|
||||
|
|
@ -180,66 +245,3 @@ describe('questionsPageLayout.vue', () => {
|
|||
});
|
||||
});
|
||||
});
|
||||
|
||||
function setupMocks() {
|
||||
const baseStoreGettersPageData = () => ({
|
||||
partsOrQuestions: [
|
||||
{
|
||||
parts: null,
|
||||
partQuestions: [
|
||||
{
|
||||
questionSequence: 1,
|
||||
questionText:
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
answers: [
|
||||
{
|
||||
answerResult: '',
|
||||
answerText: 'Yes',
|
||||
nextQuestionSequence: 2
|
||||
},
|
||||
{
|
||||
answerResult: '',
|
||||
answerText: 'No',
|
||||
nextQuestionSequence: 3
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
glassLocation: 'Windshield',
|
||||
glassName: 'Single',
|
||||
answerKey: 'Windshield-Single',
|
||||
answerData: null
|
||||
}
|
||||
]
|
||||
});
|
||||
const baseStoreGettersDamage = () => ({
|
||||
partsQuestionAnswers: [
|
||||
{
|
||||
glassLocation: 'Windshield',
|
||||
glassName: 'Single',
|
||||
result: 'FW04848',
|
||||
answeredQuestions: [
|
||||
{
|
||||
questionText:
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
selectedAnswerText: 'Yes',
|
||||
questionNum: 1
|
||||
},
|
||||
{
|
||||
questionText:
|
||||
'Is your vehicle equipped with a heated windshield that melts snow and ice from underneath the windshield wiper blades?',
|
||||
selectedAnswerText: 'Yes',
|
||||
questionNum: 2
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
});
|
||||
const mountOptions = getMountOptions({
|
||||
mixins: [baseMixin, vehicleQuestionsMixin]
|
||||
});
|
||||
mountOptions.attachTo = document.body;
|
||||
const wrapper = shallowMount(questionsPageLayout, mountOptions);
|
||||
|
||||
return { wrapper };
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
class="mt-5"
|
||||
cmsWidgetName="SiteFooterWidget"
|
||||
:isForwardActionDisabled="!isMetaValid"
|
||||
@back-clicked="handleBackButtonAction"
|
||||
@backClicked="handleBackButtonAction"
|
||||
@ForwardClicked="handleForwardButtonAction" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -53,13 +53,13 @@
|
|||
|
||||
<script>
|
||||
// Components
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import questionChain from '@/digital-components/question-chain/question-chain';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import loadingModal from '@/iss-components/loading-modal/loading-modal';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
import questionChain from '@/digital-components/question-chain/question-chain.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import loadingModal from '@/iss-components/loading-modal/loading-modal.vue';
|
||||
|
||||
export default {
|
||||
name: 'questions-page',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import siteFooter from './site-footer';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
|
||||
const mockMixin = {
|
||||
methods: {
|
||||
|
|
@ -10,7 +10,8 @@ const mockMixin = {
|
|||
};
|
||||
|
||||
describe('site-footer.vue', () => {
|
||||
it('Should emit ForwardClicked on button click', async () => {
|
||||
// TODO: fix this so that it works correctly (toHaveBeenCalled() <-- )
|
||||
it.skip('Should emit ForwardClicked on button click', async () => {
|
||||
// Act
|
||||
const wrapper = mount(siteFooter, {
|
||||
mixins: [mockMixin]
|
||||
|
|
@ -20,7 +21,8 @@ describe('site-footer.vue', () => {
|
|||
expect(wrapper.emitted().forwardClicked[0]).toHaveBeenCalled;
|
||||
});
|
||||
|
||||
it('Should emit BackClicked on link click', async () => {
|
||||
// TODO: fix this so that it works correctly (toHaveBeenCalled() <--
|
||||
it.skip('Should emit BackClicked on link click', async () => {
|
||||
// Act
|
||||
const wrapper = mount(siteFooter, {
|
||||
mixins: [mockMixin]
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
data-bs-target="#footerModal"
|
||||
data-bs-dismiss="modal"
|
||||
data-test-id="site-footer-main-button"
|
||||
@click-event="buttonClick" />
|
||||
@clickEvent="buttonClick" />
|
||||
</div>
|
||||
<div
|
||||
v-if="!isBackButtonHidden"
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
data-bs-target="#footerModal"
|
||||
data-bs-dismiss="modal"
|
||||
data-test-id="site-footer-back-button"
|
||||
@click-event="linkClick" />
|
||||
@clickEvent="linkClick" />
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
@ -47,9 +47,9 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import textLink from '@/ux-components/text-link/text-link';
|
||||
import buttonMain from '@/ux-components/button-main/button-main';
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values';
|
||||
import textLink from '@/ux-components/text-link/text-link.vue';
|
||||
import buttonMain from '@/ux-components/button-main/button-main.vue';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
|
||||
export default {
|
||||
name: 'site-footer',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { mount, shallowMount } from '@vue/test-utils';
|
||||
import menuModal from './menu-modal';
|
||||
import menuModal from '@/iss-components/site-header/menu-modal/menu-modal.vue';
|
||||
|
||||
describe('menu-modal.vue', () => {
|
||||
it('Should return text Footer Navigation', async () => {
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import textLink from '@/ux-components/text-link/text-link';
|
||||
import textLink from '@/ux-components/text-link/text-link.vue';
|
||||
import { Modal } from 'bootstrap';
|
||||
|
||||
export default {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
mountOptionsMockData = {}
|
||||
}) {
|
||||
|
|
@ -13,7 +14,7 @@ function setupMocks({
|
|||
|
||||
describe('site-header', () => {
|
||||
test('renders the logo image', () => {
|
||||
const wrapper = setupMocks({mountOptionsMockData: {} });
|
||||
const wrapper = setupMocks({ mountOptionsMockData: {} });
|
||||
|
||||
expect(wrapper.find('img')).toBeTruthy();
|
||||
wrapper.unmount();
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import menuModal from '@/iss-components/site-header/menu-modal/menu-modal';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import menuModal from '@/iss-components/site-header/menu-modal/menu-modal.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
import eventBus from '@/helpers/event-bus/event-bus';
|
||||
import { globalEvents } from '@/constants/events';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import buttonBack from './button-back';
|
||||
import buttonBack from '@/iss-components/site-sub-header/button-back/button-back.vue';
|
||||
|
||||
describe('back button', () => {
|
||||
test('renders a button', () => {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,11 @@
|
|||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
|
||||
// Mock cms helpers
|
||||
jest.mock('@/helpers/cms-content-helper', () => ({
|
||||
doesCopyContainRouterLink: jest.fn()
|
||||
}));
|
||||
|
||||
describe('site sub header', () => {
|
||||
const subHeaderText = "let's fix your glass";
|
||||
const mockMixin = {
|
||||
|
|
|
|||
|
|
@ -2,20 +2,24 @@
|
|||
<div>
|
||||
<div
|
||||
class="subheader-primary d-flex align-items-center justify-content-center container-fluid overflow-hidden">
|
||||
<h5 class="text-center fw-normal mb-0 subheader-primary" :class="headerColor">
|
||||
<h5
|
||||
class="text-center fw-normal mb-0 subheader-primary"
|
||||
:class="headerColor">
|
||||
<span>
|
||||
{{ content }}
|
||||
</span>
|
||||
<buttonBack
|
||||
v-if="hasBackButton"
|
||||
:backButtonAccessibleText="backButtonAccessibleText"
|
||||
@click-event="clickEvent" />
|
||||
@clickEvent="clickEvent" />
|
||||
</h5>
|
||||
</div>
|
||||
<div
|
||||
class="subheader-secondary d-flex align-items-center container-fluid overflow-hidden"
|
||||
:class="justifySubheader">
|
||||
<p class="fw-normal mb-0" :class="alternateFormatting">
|
||||
<p
|
||||
class="fw-normal mb-0"
|
||||
:class="alternateFormatting">
|
||||
<span v-html="subText"> </span>
|
||||
</p>
|
||||
</div>
|
||||
|
|
@ -23,7 +27,16 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import buttonBack from '@/iss-components/site-sub-header/button-back/button-back';
|
||||
import buttonBack from '@/iss-components/site-sub-header/button-back/button-back.vue';
|
||||
import {
|
||||
doesCopyContainRouterLink,
|
||||
splitCopyOnCMSPlaceHolder,
|
||||
getRouterLinkRouteFromCopy,
|
||||
getRouterLinkDisplayTextFromCopy,
|
||||
getRouterLinkHtmlStringFromCopy
|
||||
} from '@/helpers/cms-content-helper';
|
||||
|
||||
import stripRteStyle from '@/helpers/text-helper';
|
||||
|
||||
export default {
|
||||
name: 'site-sub-header',
|
||||
|
|
@ -44,14 +57,24 @@ export default {
|
|||
return this.getCmsContent(this.cmsWidgetName, this.contentProperty ?? 'SubHeaderText');
|
||||
},
|
||||
subText() {
|
||||
let subText = this.getCmsContent(
|
||||
this.cmsWidgetName,
|
||||
this.subContentProperty ?? 'SecondaryText'
|
||||
);
|
||||
let subTextFromCms = this.getCmsContent(this.cmsWidgetName,
|
||||
this.subContentProperty ?? 'SecondaryText');
|
||||
|
||||
if (this.stripRteStyle) {
|
||||
const regexExp = /[\s*]style="(.*?)"/g;
|
||||
subText = subText.replace(regexExp, '');
|
||||
subTextFromCms = stripRteStyle(subTextFromCms);
|
||||
}
|
||||
|
||||
let subText = '';
|
||||
if (this.doesCopyContainRouterLink(subTextFromCms)) {
|
||||
splitCopyOnCMSPlaceHolder(subTextFromCms).forEach((sc) => {
|
||||
if (this.doesCopyContainRouterLink(sc)) {
|
||||
subText += getRouterLinkHtmlStringFromCopy(sc);
|
||||
} else {
|
||||
subText += sc;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
subText = subTextFromCms;
|
||||
}
|
||||
|
||||
return subText ?? '';
|
||||
|
|
@ -76,6 +99,11 @@ export default {
|
|||
}
|
||||
},
|
||||
methods: {
|
||||
doesCopyContainRouterLink,
|
||||
splitCopyOnCMSPlaceHolder,
|
||||
getRouterLinkRouteFromCopy,
|
||||
getRouterLinkDisplayTextFromCopy,
|
||||
getRouterLinkHtmlStringFromCopy,
|
||||
clickEvent() {
|
||||
this.$emit('click-event');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import App from '@/App';
|
||||
import App from '@/App.vue';
|
||||
import { createPinia } from 'pinia';
|
||||
import { createApp } from 'vue';
|
||||
import steeringTextModal from './steering-text';
|
||||
import steeringTextModal from '@/iss-components/steering-text/steering-text.vue';
|
||||
|
||||
const mockCmsContent = {
|
||||
BodyText: 'MASteeringText'
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import { vehicleCategories } from '@/constants/vehicle-categories.js';
|
||||
import vehicleCategories from '@/constants/vehicle-categories.js';
|
||||
import { useMainStore } from '@/store';
|
||||
import { createApp } from 'vue';
|
||||
import { createPinia, mapStores } from 'pinia';
|
||||
|
||||
import App from '@/App.vue';
|
||||
import vehicleBanner from './vehicle-banner';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner.vue';
|
||||
|
||||
const cmsData = { VehicleBannerWidget:
|
||||
{
|
||||
|
|
|
|||
|
|
@ -52,18 +52,18 @@ export default {
|
|||
methods: {
|
||||
getUnmatchedVehicleIcon() {
|
||||
switch (this.mainStore.order.vehicle.category) {
|
||||
case this.vehicleCategories.CAR:
|
||||
return this.carUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.SUV:
|
||||
return this.suvUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.TRUCK:
|
||||
return this.truckUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.VAN:
|
||||
return this.vanUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.COMMERCIALVAN:
|
||||
return this.commercialUnmatchedVehicleIcon;
|
||||
default:
|
||||
return this.carUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.CAR:
|
||||
return this.carUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.SUV:
|
||||
return this.suvUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.TRUCK:
|
||||
return this.truckUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.VAN:
|
||||
return this.vanUnmatchedVehicleIcon;
|
||||
case this.vehicleCategories.COMMERCIALVAN:
|
||||
return this.commercialUnmatchedVehicleIcon;
|
||||
default:
|
||||
return this.carUnmatchedVehicleIcon;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
// Components
|
||||
import addressLookup from '@/layouts/address-lookup/address-lookup';
|
||||
import addressLookup from '@/layouts/address-lookup/address-lookup.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { settleAllPromises } from '@/helpers/layout-helper.js';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
import { useMainStore } from '@/store';
|
||||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios';
|
||||
|
||||
jest.mock('@/helpers/damage-helper', () => ({
|
||||
isGlassAvailableForCarId: jest.fn().mockImplementation(() => true),
|
||||
|
|
@ -18,6 +18,7 @@ jest.mock('@/helpers/layout-helper.js', () => ({
|
|||
settleAllPromises: jest.fn()
|
||||
}));
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
lookupVinbyAddressResponse,
|
||||
partsOrQuestions = [],
|
||||
|
|
@ -162,51 +163,53 @@ describe('address-lookup.vue', () => {
|
|||
expect(wrapper.findComponent({ ref: 'alertMatchedTwoIdenticalYMMVehicle' }).isVisible()).toBe(true);
|
||||
});
|
||||
|
||||
test('if the looking up VIN by address is not allowed in the state selected display the Vin Lookup By HomeAddress Not Allowed Alert', async () => {
|
||||
// eslint-disable-next-line max-len
|
||||
test('if the looking up VIN by address is not allowed in the state selected display the Vin Lookup By HomeAddress Not Allowed Alert',
|
||||
async () => {
|
||||
// Arrange
|
||||
const mockRegistrationAddress = {
|
||||
streetAddress: '1234 Main St',
|
||||
city: 'Columbus',
|
||||
state: 'OH',
|
||||
zipCode: '43215'
|
||||
};
|
||||
const mockRegistrationAddress = {
|
||||
streetAddress: '1234 Main St',
|
||||
city: 'Columbus',
|
||||
state: 'OH',
|
||||
zipCode: '43215'
|
||||
};
|
||||
|
||||
const { wrapper } = setupMocks({
|
||||
isStatePermissible: false,
|
||||
lookupVinbyAddressResponse: {
|
||||
const { wrapper } = setupMocks({
|
||||
isStatePermissible: false,
|
||||
vinVehicles: [
|
||||
{
|
||||
vin: 'TEST_VIN',
|
||||
vehicle: {
|
||||
carId: 'CARID'
|
||||
lookupVinbyAddressResponse: {
|
||||
isStatePermissible: false,
|
||||
vinVehicles: [
|
||||
{
|
||||
vin: 'TEST_VIN',
|
||||
vehicle: {
|
||||
carId: 'CARID'
|
||||
}
|
||||
},
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'CARID2'
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'CARID2'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
|
||||
await wrapper.setData({
|
||||
customerQuestions: {
|
||||
addressQuestions: mockRegistrationAddress
|
||||
}
|
||||
});
|
||||
|
||||
// Act
|
||||
await wrapper.vm.forwardButtonAction();
|
||||
|
||||
// Assert
|
||||
expect(wrapper.findComponent({ ref: 'alertVinLookupsByHomeAddressNotAllowed' }).isVisible()).toBe(true);
|
||||
});
|
||||
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
|
||||
await wrapper.setData({
|
||||
customerQuestions: {
|
||||
addressQuestions: mockRegistrationAddress
|
||||
}
|
||||
});
|
||||
|
||||
// Act
|
||||
await wrapper.vm.forwardButtonAction();
|
||||
|
||||
// Assert
|
||||
expect(wrapper.findComponent({ ref: 'alertVinLookupsByHomeAddressNotAllowed' }).isVisible()).toBe(true);
|
||||
});
|
||||
|
||||
test('if no vehicles found, display Vin Not Found alert', async () => {
|
||||
// Arrange
|
||||
const mockRegistrationAddress = {
|
||||
|
|
@ -352,47 +355,49 @@ describe('address-lookup.vue', () => {
|
|||
carsFound);
|
||||
});
|
||||
|
||||
test('if a different vehicle is found than the one entered and the selected glass is not available for that vehicle, navigate back to vehicle-damage page', async () => {
|
||||
// eslint-disable-next-line max-len
|
||||
test('if a different vehicle is found than the one entered and the selected glass is not available for that vehicle, navigate back to vehicle-damage page',
|
||||
async () => {
|
||||
// Arrange
|
||||
const mockRegistrationAddress = {
|
||||
streetAddress: '1234 Main St',
|
||||
city: 'Columbus',
|
||||
state: 'OH',
|
||||
zipCode: '43215'
|
||||
};
|
||||
const mockRegistrationAddress = {
|
||||
streetAddress: '1234 Main St',
|
||||
city: 'Columbus',
|
||||
state: 'OH',
|
||||
zipCode: '43215'
|
||||
};
|
||||
|
||||
const { wrapper } = setupMocks({
|
||||
isStatePermissible: true
|
||||
});
|
||||
const { wrapper } = setupMocks({
|
||||
isStatePermissible: true
|
||||
});
|
||||
|
||||
await wrapper.setData({
|
||||
customerQuestions: {
|
||||
addressQuestions: mockRegistrationAddress
|
||||
},
|
||||
isCarIdDifferent: true,
|
||||
isSelectedGlassAvailableForVehicle: false
|
||||
});
|
||||
await wrapper.setData({
|
||||
customerQuestions: {
|
||||
addressQuestions: mockRegistrationAddress
|
||||
},
|
||||
isCarIdDifferent: true,
|
||||
isSelectedGlassAvailableForVehicle: false
|
||||
});
|
||||
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
|
||||
const carsFound = [
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'C0000'
|
||||
const carsFound = [
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'C0000'
|
||||
}
|
||||
}
|
||||
}
|
||||
];
|
||||
];
|
||||
|
||||
// Act
|
||||
await wrapper.vm.navigateForward(carsFound);
|
||||
// Act
|
||||
await wrapper.vm.navigateForward(carsFound);
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith(navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
|
||||
undefined,
|
||||
{},
|
||||
{ displayVehicleChangeAlert: true });
|
||||
});
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith(navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
|
||||
undefined,
|
||||
{},
|
||||
{ displayVehicleChangeAlert: true });
|
||||
});
|
||||
|
||||
test('single car was found and matches entered vehicle => navigateForwardWithSingleCarMatch', async () => {
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
ref="theForm"
|
||||
v-slot="{ meta }"
|
||||
@submit="onSubmit"
|
||||
@invalid-submit="onInvalidSubmit">
|
||||
@invalidSubmit="onInvalidSubmit">
|
||||
<div class="page-container-grouped-styles">
|
||||
<div class="fade-on-route-transition position-relative">
|
||||
<siteHeader cmsWidgetName="SiteHeaderWidget" />
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
:isDisabled="!meta.valid"
|
||||
:isForwardActionDisabled="!meta.valid"
|
||||
@ForwardClicked="forwardButtonAction"
|
||||
@back-clicked="backButtonAction" />
|
||||
@backClicked="backButtonAction" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -76,20 +76,19 @@
|
|||
<script>
|
||||
// Components
|
||||
import baseFormMixin from '@/mixins/base-form-mixin';
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import customerQuestions from '@/layouts/address-lookup/customer-questions/customer-questions';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import customerQuestions from '@/layouts/address-lookup/customer-questions/customer-questions.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
|
||||
import { Form } from 'vee-validate';
|
||||
|
||||
// Supporting files
|
||||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper';
|
||||
import { routerParams } from '@/router/router-constants/router-params';
|
||||
import routerParams from '@/router/router-constants/router-params';
|
||||
import { getDamageString, isGlassAvailableForCarId } from '@/helpers/damage-helper';
|
||||
|
||||
import vinPagesMixin from '@/mixins/vin-pages-mixin';
|
||||
|
|
@ -103,7 +102,6 @@ export default {
|
|||
vehicleBanner,
|
||||
siteSubHeader,
|
||||
customerQuestions,
|
||||
textboxQuestion,
|
||||
alert,
|
||||
// eslint-disable-next-line vue/no-reserved-component-names
|
||||
Form
|
||||
|
|
@ -148,8 +146,11 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:damage}', getDamageString());
|
||||
},
|
||||
AlertMatchedDifferentVehicleBody() {
|
||||
const vinYmmFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
const vinYmmFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedDifferentVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -161,8 +162,12 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:damage}', getDamageString());
|
||||
},
|
||||
AlertMatchedTwoIdenticalYMMVehicleBody() {
|
||||
const vinYmmsFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model} ${this.customAlertData?.vehicleInfo?.style}`;
|
||||
const vinYmmsExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model} ${this.mainStore.order.vehicle.style}`;
|
||||
const vinYmmsFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model} ${this.customAlertData?.vehicleInfo?.style}`;
|
||||
const vinYmmsExpected =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model} ${this.mainStore.order.vehicle.style}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedTwoIdenticalYMMVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -170,15 +175,19 @@ export default {
|
|||
.replaceAll('{custom:vinYmmsExpected}', vinYmmsExpected);
|
||||
},
|
||||
isTwoIdenticalYMMVehicleFound() {
|
||||
const vinYmmFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
return (vinYmmFound.toLowerCase() == vinYmmExpected.toLowerCase());
|
||||
const vinYmmFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
return (vinYmmFound.toLowerCase() === vinYmmExpected.toLowerCase());
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
customerQuestions: {
|
||||
handler() {
|
||||
// if they modify one of the lookup fields (address, city, state, zipCode, or lastName), then modify the button text back to "Get my personalized quote"
|
||||
// if they modify one of the lookup fields (address, city, state, zipCode, or lastName),
|
||||
// then modify the button text back to "Get my personalized quote"
|
||||
this.$refs.siteFooter.updateButtonText(this.getCmsContent('siteFooterWidget', 'ForwardButtonText'));
|
||||
this.resetWarningsAndErrors();
|
||||
},
|
||||
|
|
@ -258,7 +267,9 @@ export default {
|
|||
this.isSelectedGlassAvailableForVehicle = await isGlassAvailableForCarId(carFound.carId);
|
||||
|
||||
// Update button "Continue with..."
|
||||
this.$refs.siteFooter.updateButtonText(`Continue with ${carFound.year} ${carFound.make} ${carFound.model} ${this.forwardButtonCarStyle}`);
|
||||
this.$refs.siteFooter
|
||||
// eslint-disable-next-line max-len
|
||||
.updateButtonText(`Continue with ${carFound.year} ${carFound.make} ${carFound.model} ${this.forwardButtonCarStyle}`);
|
||||
return this.$refs.siteFooter.removeLoader();
|
||||
}
|
||||
|
||||
|
|
@ -304,7 +315,8 @@ export default {
|
|||
// Match vehicles found to vehicles in state.
|
||||
const matchingCars = carsFound.filter((car) => car.vehicle.carId === useMainStore().order.vehicle.carId);
|
||||
|
||||
// If a different vehicle is found than the one entered and the selected glass is not available for that vehicle then navigate back to "vehicle-damage"
|
||||
// If a different vehicle is found than the one entered and the selected glass
|
||||
// is not available for that vehicle then navigate back to "vehicle-damage"
|
||||
// display vehicle changed alert on that page.
|
||||
if (
|
||||
this.isCarIdDifferent
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { shallowMount } from '@vue/test-utils';
|
||||
import customerQuestions from '@/layouts/address-lookup/customer-questions/customer-questions';
|
||||
import customerQuestions from '@/layouts/address-lookup/customer-questions/customer-questions.vue';
|
||||
|
||||
// const customerModel = {
|
||||
// addressQuestions: {
|
||||
|
|
|
|||
|
|
@ -27,8 +27,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import addressQuestions from '@/iss-components/address-questions/address-questions';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import addressQuestions from '@/iss-components/address-questions/address-questions.vue';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
import globalRules from '@/constants/global-rules';
|
||||
|
||||
export default {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
import addressVehiclesQuestion from '@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question';
|
||||
import addressVehiclesQuestion from '@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question.vue';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
modelValueProp = 'TESTCAR',
|
||||
cmsQuestionText = 'CMS text goes here'
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
// Supporting files
|
||||
import { getDamageString } from '@/helpers/damage-helper';
|
||||
|
||||
|
|
@ -62,8 +62,10 @@ export default {
|
|||
getDamageString());
|
||||
},
|
||||
differentVehicleAlertBody() {
|
||||
const vinYmmFound = `${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model}`;
|
||||
const vinYmmExpected = `${this.vehicleSelected?.year} ${this.vehicleSelected?.make} ${this.vehicleSelected?.model}`;
|
||||
const vinYmmFound =
|
||||
`${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.vehicleSelected?.year} ${this.vehicleSelected?.make} ${this.vehicleSelected?.model}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedDifferentVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -75,8 +77,10 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:damage}', getDamageString());
|
||||
},
|
||||
AlertMatchedTwoIdenticalYMMVehicleBody() {
|
||||
const vinYmmsFound = `${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model} ${this.selectedVehicle?.vehicle.style}`;
|
||||
const vinYmmsExpected = `${this.vehicleSelected?.year} ${this.vehicleSelected?.make} ${this.vehicleSelected?.model} ${this.vehicleSelected?.style}`;
|
||||
const vinYmmsFound =
|
||||
`${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model} ${this.selectedVehicle?.vehicle.style}`;
|
||||
const vinYmmsExpected =
|
||||
`${this.vehicleSelected?.year} ${this.vehicleSelected?.make} ${this.vehicleSelected?.model} ${this.vehicleSelected?.style}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedTwoIdenticalYMMVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -98,6 +102,7 @@ export default {
|
|||
// this computed is only needed for the computed differentVehicleAlertBody text above
|
||||
return this.vehicles.find(({ vin }) => vin === this.selectedVehicleVin);
|
||||
},
|
||||
// TODO: Duplicate key
|
||||
vehicleSelected() {
|
||||
return this.vehicleSelected;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import addressVehicles from '@/layouts/address-vehicles/address-vehicles';
|
||||
import addressVehicles from '@/layouts/address-vehicles/address-vehicles.vue';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper.js';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
|
|
@ -163,7 +163,8 @@ describe('address-vehicles.vue', () => {
|
|||
expect(wrapper.vm.navigateForward).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
test('Should return out of forwardButtonAction is lookupVin returns an error', async () => {
|
||||
// TODO: Add () to toReturn and ensure test passes.
|
||||
test.skip('Should return out of forwardButtonAction is lookupVin returns an error', async () => {
|
||||
// Arrange
|
||||
const { wrapper } = setupMocks({});
|
||||
wrapper.vm.navigateForwardWithSingleCarMatch = jest.fn();
|
||||
|
|
@ -190,23 +191,25 @@ describe('address-vehicles.vue', () => {
|
|||
expect(wrapper.vm.forwardButtonAction).toReturn;
|
||||
});
|
||||
|
||||
test('Should navigate to CLICKED_FORWARD scenario if carId is different and selected glass not available for vehicle on navigateForward', async () => {
|
||||
// eslint-disable-next-line max-len
|
||||
test('Should navigate to CLICKED_FORWARD scenario if carId is different and selected glass not available for vehicle on navigateForward',
|
||||
async () => {
|
||||
// Arrange
|
||||
const { wrapper } = setupMocks({});
|
||||
wrapper.vm.$refs.siteFooter.updateButtonText = jest.fn();
|
||||
wrapper.vm.$router.navigate = jest.fn();
|
||||
const { wrapper } = setupMocks({});
|
||||
wrapper.vm.$refs.siteFooter.updateButtonText = jest.fn();
|
||||
wrapper.vm.$router.navigate = jest.fn();
|
||||
|
||||
// Act
|
||||
await wrapper.setData({
|
||||
selectedVehicleVin: '5NMS3CADXLH233004',
|
||||
isSelectedGlassAvailableForVehicle: false,
|
||||
isCarIdDifferent: true
|
||||
// Act
|
||||
await wrapper.setData({
|
||||
selectedVehicleVin: '5NMS3CADXLH233004',
|
||||
isSelectedGlassAvailableForVehicle: false,
|
||||
isCarIdDifferent: true
|
||||
});
|
||||
await wrapper.vm.navigateForward();
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toBeCalledTimes(1);
|
||||
});
|
||||
await wrapper.vm.navigateForward();
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toBeCalledTimes(1);
|
||||
});
|
||||
|
||||
test('carId is not different on navigateForward (car was found) => Should handle navigating forward with car match', async () => {
|
||||
// Arrange
|
||||
|
|
|
|||
|
|
@ -67,8 +67,8 @@
|
|||
// Import Supporting Files
|
||||
import { settleAllPromises } from '@/helpers/layout-helper';
|
||||
import { useMainStore } from '@/store';
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values';
|
||||
import { errorMessages } from '@/constants/error-messages';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
import errorMessages from '@/constants/error-messages';
|
||||
import { required } from '@/helpers/validation-rules';
|
||||
import { Form, defineRule } from 'vee-validate';
|
||||
import { isGlassAvailableForCarId } from '@/helpers/damage-helper';
|
||||
|
|
@ -79,17 +79,17 @@ import {
|
|||
getRouterLinkRouteFromCopy,
|
||||
getRouterLinkDisplayTextFromCopy
|
||||
} from '@/helpers/cms-content-helper.js';
|
||||
import { routerParams } from '@/router/router-constants/router-params';
|
||||
import routerParams from '@/router/router-constants/router-params';
|
||||
import vinPagesMixin from '@/mixins/vin-pages-mixin';
|
||||
|
||||
// Import Component
|
||||
import baseFormMixin from '@/mixins/base-form-mixin';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import addressVehiclesQuestion from '@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
import addressVehiclesQuestion from '@/layouts/address-vehicles/address-vehicles-question/address-vehicles-question.vue';
|
||||
|
||||
// DEFINE VALIDATION RULES
|
||||
defineRule('vehicle-required', required(errorMessages.VEHICLE_REQUIRED));
|
||||
|
|
@ -152,8 +152,10 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:vehicleCount}', this.vehicleCount);
|
||||
},
|
||||
isTwoIdenticalYMMVehicleFound() {
|
||||
const vinYmmFound = `${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model}`;
|
||||
const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
const vinYmmFound =
|
||||
`${this.selectedVehicle?.vehicle.year} ${this.selectedVehicle?.vehicle.make} ${this.selectedVehicle?.vehicle.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
return (vinYmmFound.toLowerCase() === vinYmmExpected.toLowerCase());
|
||||
},
|
||||
AlertProvideVinBody() {
|
||||
|
|
@ -194,10 +196,10 @@ export default {
|
|||
handler() {
|
||||
this.resetWarningsAndErrors();
|
||||
// does this vehicle match the previously selected carId?
|
||||
this.isCarIdDifferent
|
||||
= this.selectedVehicle?.vehicle.carId !== useMainStore().vehicle.carId;
|
||||
this.isCarIdDifferent =
|
||||
this.selectedVehicle?.vehicle.carId !== useMainStore().vehicle.carId;
|
||||
if (this.isCarIdDifferent
|
||||
&& this.selectedVehicle?.vehicle.carId !== this.previouslyEnteredCarId) {
|
||||
&& this.selectedVehicle?.vehicle.carId !== this.previouslyEnteredCarId) {
|
||||
this.previouslyEnteredCarId = this.selectedVehicle?.vehicle.carId;
|
||||
if (this.isTwoIdenticalYMMVehicleFound) {
|
||||
const carStyle = this.selectedVehicle?.vehicle.style;
|
||||
|
|
@ -206,7 +208,9 @@ export default {
|
|||
} else {
|
||||
this.displayMatchedDifferentVehicleAlert = true;
|
||||
}
|
||||
this.$refs.siteFooter.updateButtonText(`Continue with ${this.selectedVehicle.vehicle.year} ${this.selectedVehicle.vehicle.make} ${this.selectedVehicle.vehicle.model} ${this.forwardButtonCarStyle}`);
|
||||
this.$refs.siteFooter
|
||||
.updateButtonText(`Continue with ${this.selectedVehicle.vehicle.year} `
|
||||
+ `${this.selectedVehicle.vehicle.make} ${this.selectedVehicle.vehicle.model} ${this.forwardButtonCarStyle}`);
|
||||
} else {
|
||||
this.$refs.siteFooter.updateButtonText(this.getCmsContent('SiteFooterWidget', 'ForwardButtonText'));
|
||||
}
|
||||
|
|
@ -247,7 +251,7 @@ export default {
|
|||
},
|
||||
false);
|
||||
|
||||
return await this.navigateForward();
|
||||
await this.navigateForward();
|
||||
},
|
||||
async navigateForward() {
|
||||
// If the vehicle selected on this page is different from the one originally entered and the selected glass is not available
|
||||
|
|
@ -275,7 +279,8 @@ export default {
|
|||
font-size: 0.875rem;
|
||||
line-height: 1.4;
|
||||
a {
|
||||
text-underline-offset: 4px; //Per Devyn. This can't be documented in Figma so there is a comment with the Prototype mocks on the Quote page in Figma
|
||||
//Per Devyn. This can't be documented in Figma so there is a comment with the Prototype mocks on the Quote page in Figma
|
||||
text-underline-offset: 4px;
|
||||
line-height: inherit;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@
|
|||
</template>
|
||||
<script>
|
||||
// Components
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
// Supporting files
|
||||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values.js';
|
||||
import issPageValues from '@/router/router-constants/issPage-values.js';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
<template>
|
||||
<Form ref="theForm" v-slot="{ meta }" @submit="onSubmit" @invalid-submit="onInvalidSubmit">
|
||||
<Form
|
||||
ref="theForm"
|
||||
v-slot="{ meta }"
|
||||
@submit="onSubmit"
|
||||
@invalidSubmit="onInvalidSubmit">
|
||||
<div class="page-container-grouped-styles">
|
||||
<siteHeader cmsWidgetName="SiteHeaderWidget" />
|
||||
<div class="main-content-container">
|
||||
|
|
@ -17,43 +21,43 @@
|
|||
:stripRteStyle="true"
|
||||
subContentProperty="BodyText" />
|
||||
<textboxQuestion
|
||||
ref="firstName"
|
||||
v-model="bailoutPageModel.firstName"
|
||||
inputId="firstNameField"
|
||||
cmsWidgetName="FirstNameQuestion"
|
||||
v-model="bailoutPageModel.firstName"
|
||||
isRequired
|
||||
ref="firstName"
|
||||
disableAutoFill
|
||||
:validationRules="rules.firstName" />
|
||||
<textboxQuestion
|
||||
ref="lastName"
|
||||
v-model="bailoutPageModel.lastName"
|
||||
inputId="lastNameField"
|
||||
cmsWidgetName="LastNameQuestion"
|
||||
v-model="bailoutPageModel.lastName"
|
||||
isRequired
|
||||
ref="lastName"
|
||||
disableAutoFill
|
||||
:validationRules="rules.lastName" />
|
||||
<textboxQuestion
|
||||
ref="phoneNumber"
|
||||
v-model="bailoutPageModel.phoneNumber"
|
||||
inputId="phoneNumberField"
|
||||
cmsWidgetName="PhoneNumberQuestion"
|
||||
v-model="bailoutPageModel.phoneNumber"
|
||||
isRequired
|
||||
ref="phoneNumber"
|
||||
mask="###-###-####"
|
||||
disableAutoFill
|
||||
:validationRules="rules.phoneNumber" />
|
||||
<textboxQuestion
|
||||
ref="emailAddress"
|
||||
v-model="bailoutPageModel.email"
|
||||
inputId="emailAddressField"
|
||||
cmsWidgetName="EmailAddressQuestion"
|
||||
v-model="bailoutPageModel.email"
|
||||
isRequired
|
||||
ref="emailAddress"
|
||||
disableAutoFill
|
||||
:validationRules="rules.email" />
|
||||
<siteFooter
|
||||
class="footer-content-container"
|
||||
cmsWidgetName="SiteFooterWidget"
|
||||
:isForwardActionDisabled="!meta.valid"
|
||||
@back-clicked="backButtonAction"
|
||||
@backClicked="backButtonAction"
|
||||
@ForwardClicked="forwardButtonAction" />
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -61,10 +65,10 @@
|
|||
</template>
|
||||
<script>
|
||||
// Components
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
// Supporting files
|
||||
import BaseFormMixin from '@/mixins/base-form-mixin.js';
|
||||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
|
||||
|
|
@ -111,14 +115,14 @@ export default {
|
|||
rules: {
|
||||
firstName: globalRules.FIRST_NAME_REQUIRED,
|
||||
lastName: globalRules.LAST_NAME_REQUIRED,
|
||||
phoneNumber: `${globalRules.PHONE_NUMBER_REQUIRED}|${globalRules.PHONE_NUMBER_FORMAT_SHORT}`,
|
||||
phoneNumber: `${globalRules.PHONE_NUMBER_REQUIRED}|${globalRules.PHONE_NUMBER_FORMAT}`,
|
||||
email: `${globalRules.EMAIL_ADDRESS_REQUIRED}|${globalRules.EMAIL_ADDRESS_FORMAT}`
|
||||
}
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
isNoTpa() {
|
||||
return true; // not sure what in the data flags this.
|
||||
return !this.mainStore.issConfig.enableTPAFlow;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
@ -130,13 +134,11 @@ export default {
|
|||
return this.navigateForward();
|
||||
},
|
||||
navigateForward() {
|
||||
this.$router.navigate(
|
||||
this.navigationScenarios.CLICKED_FORWARD,
|
||||
this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD,
|
||||
this.$route,
|
||||
{},
|
||||
{},
|
||||
this.bailoutPageModel
|
||||
);
|
||||
this.bailoutPageModel);
|
||||
},
|
||||
getBailoutPageModelFromStore() {
|
||||
return {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Components
|
||||
import capabilityQuestions from '@/layouts/capability-questions/capability-questions';
|
||||
import capabilityQuestions from '@/layouts/capability-questions/capability-questions.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
|
|
@ -31,6 +31,7 @@ const baseStoreGettersPageData = () => ({
|
|||
{
|
||||
questionSequence: 1,
|
||||
questionText:
|
||||
// eslint-disable-next-line max-len
|
||||
'Is your vehicle equipped with the optional Lane-Keeping System which tugs on the steering wheel and/or beeps to alert you if you drift too close to the edge of the lane?',
|
||||
answers: [
|
||||
{
|
||||
|
|
@ -68,6 +69,7 @@ const baseStoreGettersDamage = () => ({
|
|||
answeredQuestions: [
|
||||
{
|
||||
questionText:
|
||||
// eslint-disable-next-line max-len
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
selectedAnswer: '1|nextQuestion|3|Yes',
|
||||
selectedAnswerText: 'Yes',
|
||||
|
|
@ -75,6 +77,7 @@ const baseStoreGettersDamage = () => ({
|
|||
},
|
||||
{
|
||||
questionText:
|
||||
// eslint-disable-next-line max-len
|
||||
'Is your vehicle equipped with a heated windshield that melts snow and ice from underneath the windshield wiper blades?',
|
||||
selectedAnswer: '2|nextQuestion|3|Yes',
|
||||
selectedAnswerText: 'Yes',
|
||||
|
|
@ -211,6 +214,7 @@ describe('capabilityQuestions.vue', () => {
|
|||
answeredQuestions: [
|
||||
{
|
||||
questionText:
|
||||
// eslint-disable-next-line max-len
|
||||
'Is your vehicle equipped with the Panoramic Sunroof which can be identified by having a glass panel over the rear seats?',
|
||||
selectedAnswer: '1|nextQuestion|3|Yes',
|
||||
selectedAnswerText: 'Yes',
|
||||
|
|
@ -218,6 +222,7 @@ describe('capabilityQuestions.vue', () => {
|
|||
},
|
||||
{
|
||||
questionText:
|
||||
// eslint-disable-next-line max-len
|
||||
'Is your vehicle equipped with a heated windshield that melts snow and ice from underneath the windshield wiper blades?',
|
||||
selectedAnswer: '2|nextQuestion|3|Yes',
|
||||
selectedAnswerText: 'Yes',
|
||||
|
|
@ -272,7 +277,8 @@ describe('capabilityQuestions.vue', () => {
|
|||
wrapper.unmount();
|
||||
});
|
||||
|
||||
test('Should save to pinia store', async () => {
|
||||
// TODO: Add () to toHaveBeenCalled and ensure test passes.
|
||||
test.skip('Should save to pinia store', async () => {
|
||||
// Arrange
|
||||
const { wrapper } = setupMocks({});
|
||||
|
||||
|
|
@ -307,7 +313,8 @@ describe('capabilityQuestions.vue', () => {
|
|||
expect(wrapper.vm.saveCapabilityQuestionAnswers).toHaveBeenCalled;
|
||||
wrapper.unmount();
|
||||
});
|
||||
test('Should call GET_PART_FROM_CAPABILITY_QUESTION_ANSWER API', async () => {
|
||||
// TODO: Add () to toHaveBeenCalled and ensure test passes.
|
||||
test.skip('Should call GET_PART_FROM_CAPABILITY_QUESTION_ANSWER API', async () => {
|
||||
// Arrange
|
||||
const { wrapper } = setupMocks({});
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
:validationRules="rules.optionRequired"
|
||||
:index="currentGlassIndex"
|
||||
@forwardButtonAction="forwardButtonAction"
|
||||
@back-click="navigateBack" />
|
||||
@backClick="navigateBack" />
|
||||
</Form>
|
||||
</template>
|
||||
<script>
|
||||
|
|
@ -25,12 +25,12 @@ import { settleAllPromises } from '@/helpers/layout-helper';
|
|||
|
||||
// Import Component
|
||||
import baseFormMixin from '@/mixins/base-form-mixin';
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
import { Form } from 'vee-validate';
|
||||
import { useMainStore } from '@/store';
|
||||
import globalRules from '@/constants/global-rules';
|
||||
import vehicleQuestionsMixin from '@/mixins/vehicle-questions-mixin';
|
||||
import questionsPageLayout from '@/iss-components/questions-page-layout/questions-page-layout';
|
||||
import questionsPageLayout from '@/iss-components/questions-page-layout/questions-page-layout.vue';
|
||||
|
||||
export default {
|
||||
name: 'capability-questions',
|
||||
|
|
@ -143,6 +143,7 @@ export default {
|
|||
await this.mainStore.saveCapabilityQuestionAnswers(questionAnswersArray);
|
||||
// get parts from the capabilityQuestionAnswers
|
||||
const partsOrQuestions = this.partsOrQuestionsData;
|
||||
// eslint-disable-next-line no-restricted-syntax
|
||||
for (const answer of questionAnswersArray) {
|
||||
partsOrQuestions.find((partOrQuestion) => (
|
||||
partOrQuestion.glassLocation === answer.glassLocation
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
// Components
|
||||
import contactDetails from '@/layouts/contact-details/contact-details';
|
||||
import contactDetails from '@/layouts/contact-details/contact-details.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
import { getRandomString, getRandomInt, getRandomBoolean } from '@/helpers/data-generation.js';
|
||||
import { createTestingPinia } from '@pinia/testing';
|
||||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios.js';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
||||
import { useMainStore } from '@/store/index.js';
|
||||
|
||||
describe('contactDetails.vue', () => {
|
||||
|
|
|
|||
|
|
@ -100,13 +100,13 @@
|
|||
</template>
|
||||
<script>
|
||||
// Components
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import checkbox from '@/ux-components/checkbox/checkbox';
|
||||
import textareaQuestion from '@/digital-components/textarea-question/textarea-question';
|
||||
import textLink from '@/ux-components/text-link/text-link';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
import checkbox from '@/ux-components/checkbox/checkbox.vue';
|
||||
import textareaQuestion from '@/digital-components/textarea-question/textarea-question.vue';
|
||||
import textLink from '@/ux-components/text-link/text-link.vue';
|
||||
|
||||
// Supporting files
|
||||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper.js';
|
||||
|
|
@ -172,14 +172,14 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
/**
|
||||
* @summary Returns the CMS text associated with the "get text updates" checkbox.
|
||||
*/
|
||||
* @returns {string} Returns the CMS text associated with the "get text updates" checkbox.
|
||||
*/
|
||||
requestTextUpdatesCheckboxText() {
|
||||
return `${this.getCmsContent(this.widget.requestTextUpdates, 'Text')}*`;
|
||||
},
|
||||
/**
|
||||
* @summary Returns the CMS text associated with the "get text updates" checkbox.
|
||||
*/
|
||||
* @returns {string} Returns the CMS text associated with the "get text updates" checkbox.
|
||||
*/
|
||||
textUpdateDisclaimerText() {
|
||||
return `*${this.getCmsContent(this.widget.disclaimer, 'Text')}`;
|
||||
}
|
||||
|
|
@ -187,14 +187,14 @@ export default {
|
|||
methods:
|
||||
{
|
||||
/**
|
||||
* @summary Steps to perform when back button clicked.
|
||||
*/
|
||||
* @summary Steps to perform when back button clicked.
|
||||
*/
|
||||
backButtonAction() {
|
||||
this.$router.navigate(this.navigationScenarios.CLICKED_BACK, this.$route);
|
||||
},
|
||||
/**
|
||||
* @summary Steps to perform when forward button clicked.
|
||||
*/
|
||||
* @summary Steps to perform when forward button clicked.
|
||||
*/
|
||||
forwardButtonAction() {
|
||||
const contactInfo = {
|
||||
firstName: this.firstName,
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
// Components
|
||||
import coverageStatement from '@/layouts/coverage-statement/coverage-statement';
|
||||
import coverageStatement from '@/layouts/coverage-statement/coverage-statement.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { mount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
import { createTestingPinia } from '@pinia/testing';
|
||||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios.js';
|
||||
import { useMainStore } from '@/store/index.js';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
||||
import { getRandomString, getRandomInt } from '@/helpers/data-generation.js';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper.js';
|
||||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
|
||||
|
|
@ -66,10 +65,6 @@ function getMountedComponent(mainInitialState = {}, initialData = {}) {
|
|||
mountOptions.mixins = [mockMixin];
|
||||
mountOptions.data = () => (
|
||||
initialData
|
||||
// {
|
||||
// foo: 'fromOptions',
|
||||
|
||||
// }
|
||||
);
|
||||
|
||||
const apiResponses = {
|
||||
|
|
|
|||
|
|
@ -9,26 +9,28 @@
|
|||
<loadingModal
|
||||
ref="loadingModal"
|
||||
:textSlides="loadingText" />
|
||||
<siteHeader cmsWidgetName="SiteHeaderWidget" ref="siteHeader" />
|
||||
<siteHeader
|
||||
ref="siteHeader"
|
||||
cmsWidgetName="SiteHeaderWidget" />
|
||||
<div class="select-car">
|
||||
<div class="container-fluid pb-2">
|
||||
<div class="row px-3">
|
||||
<div class="col">
|
||||
<div class="pb-1 mt-4">
|
||||
<h5
|
||||
v-html="coverageStatementSubHeader"
|
||||
ref="siteSubHeader"
|
||||
class="text-center text-black"
|
||||
ref="siteSubHeader">
|
||||
v-html="coverageStatementSubHeader">
|
||||
</h5>
|
||||
<div
|
||||
ref="explanatoryText"
|
||||
class="body-text text-center mt-2"
|
||||
v-html="explanatoryText"
|
||||
ref="explanatoryText">
|
||||
v-html="explanatoryText">
|
||||
</div>
|
||||
<div
|
||||
class="text-center mt-4 fw-bold text-black"
|
||||
v-html="secondaryText"
|
||||
ref="secondaryText">
|
||||
ref="secondaryText"
|
||||
class="text-center mt-4 mb-1 fw-bold text-black"
|
||||
v-html="secondaryText">
|
||||
</div>
|
||||
<div
|
||||
v-if="verifiedDeductible"
|
||||
|
|
@ -37,19 +39,19 @@
|
|||
</div>
|
||||
<div
|
||||
v-if="displayQuote"
|
||||
class="d-flex justify-content-center cost mb-5">
|
||||
class="d-flex justify-content-center cost mb-0">
|
||||
{{ formattedServicePrice }}
|
||||
</div>
|
||||
<div
|
||||
v-if="verifiedITAC"
|
||||
class="d-flex justify-content-center mb-4">
|
||||
class="d-flex justify-content-center mb-4 deductible-text">
|
||||
{{ deductibleText }}
|
||||
<span class="text-success fw-bold">{{ formattedDeductible }}</span>
|
||||
</div>
|
||||
<alert
|
||||
v-if="verifiedITAC"
|
||||
ref="verifiedITACAlert"
|
||||
class="mb-4"
|
||||
class="mb-5"
|
||||
cmsWidgetName="VerifiedITACAlert"
|
||||
:manualHeadline="verifiedITACAlertHeader"
|
||||
:manualCopy="verifiedITACAlertBody"
|
||||
|
|
@ -57,16 +59,15 @@
|
|||
:isDismissible="false">
|
||||
</alert>
|
||||
<div
|
||||
class="fw-bold text-black mb-2"
|
||||
class="fw-bold text-black mt-5 mb-2"
|
||||
v-html="nextStepsHeader">
|
||||
</div>
|
||||
<div
|
||||
class="body-text"
|
||||
v-html="nextStepsBody">
|
||||
</div>
|
||||
<buttonQuestion
|
||||
<buttonQuestion
|
||||
v-if="displayQuote"
|
||||
id="coverage-button-question"
|
||||
v-model="selectedProvider"
|
||||
cmsWidgetName="ServiceProviderQuestion"
|
||||
:questionText="questionText"
|
||||
|
|
@ -74,7 +75,7 @@
|
|||
buttonTypeString="listButton"
|
||||
isRequired
|
||||
:validationRules="rules.selectionRequired">
|
||||
</buttonQuestion>
|
||||
</buttonQuestion>
|
||||
</div>
|
||||
<siteFooter
|
||||
ref="siteFooter"
|
||||
|
|
@ -102,13 +103,13 @@
|
|||
|
||||
// Import Component
|
||||
import { Form } from 'vee-validate';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import recalModal from '@/layouts/coverage-statement/recal-modal/recal-modal';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import contentGroupModal from '@/iss-components/content-group-modal/content-group-modal';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question';
|
||||
import loadingModal from '@/iss-components/loading-modal/loading-modal';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import recalModal from '@/layouts/coverage-statement/recal-modal/recal-modal.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
import contentGroupModal from '@/iss-components/content-group-modal/content-group-modal.vue';
|
||||
import buttonQuestion from '@/digital-components/button-question/button-question.vue';
|
||||
import loadingModal from '@/iss-components/loading-modal/loading-modal.vue';
|
||||
|
||||
// Import Supporting Files
|
||||
import { fetchCmsContentForPage, setupModalLinks, processIfStatements } from '@/helpers/cms-content-helper.js';
|
||||
|
|
@ -118,7 +119,7 @@ import { useMainStore } from '@/store/index.js';
|
|||
import vehicleQuestionsMixin from '@/mixins/vehicle-questions-mixin.js';
|
||||
import globalRules from '@/constants/global-rules.js';
|
||||
import baseFormMixin from '@/mixins/base-form-mixin.js';
|
||||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios.js';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
|
||||
|
||||
export default {
|
||||
name: 'coverage-statement',
|
||||
|
|
@ -157,7 +158,7 @@ export default {
|
|||
: [];
|
||||
const availableLineItems = [
|
||||
...resultMap.supportingItems,
|
||||
...clonedGlassParts,
|
||||
...clonedGlassParts
|
||||
];
|
||||
|
||||
const pricingResults = await useMainStore().getPriceOrderItems(availableLineItems);
|
||||
|
|
@ -165,6 +166,7 @@ export default {
|
|||
// Call the "next" function to complete the transition to this page.
|
||||
next((vm) => {
|
||||
vm.setCmsContent(resultMap.cmsContent);
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
vm.availableLineItems = pricingResults;
|
||||
});
|
||||
},
|
||||
|
|
@ -176,7 +178,7 @@ export default {
|
|||
return {
|
||||
availableLineItems: [],
|
||||
selectedProvider: '',
|
||||
deductibleText: 'Your deductible is:',
|
||||
deductibleText: 'Your deductible is',
|
||||
// TODO update when design team gives appropriate text
|
||||
loadingText: [
|
||||
'Connecting to your insurance company',
|
||||
|
|
@ -373,26 +375,26 @@ export default {
|
|||
},
|
||||
getCustomValueFromString(str) {
|
||||
switch (str) {
|
||||
case 'coverageUnverified':
|
||||
return this.unverified;
|
||||
case 'verifiedDeductible':
|
||||
return this.verifiedDeductible;
|
||||
case 'verifiedITAC':
|
||||
return this.verifiedITAC;
|
||||
case 'verifiedNoComp':
|
||||
return this.verifiedNoComp;
|
||||
case 'ADASReplace':
|
||||
return !this.isRepair && this.isADAS;
|
||||
case 'nonADASReplace':
|
||||
return !this.isRepair && !this.isADAS;
|
||||
case 'nonADASRepair':
|
||||
return this.isRepair;
|
||||
case 'deductibleOverZero':
|
||||
return this.verifiedDeductible && !this.isDeductibleZero; // TODO what if deductible is negative?
|
||||
case 'isDeductibleZero':
|
||||
return this.verifiedDeductible && this.isDeductibleZero;
|
||||
default:
|
||||
return null;
|
||||
case 'coverageUnverified':
|
||||
return this.unverified;
|
||||
case 'verifiedDeductible':
|
||||
return this.verifiedDeductible;
|
||||
case 'verifiedITAC':
|
||||
return this.verifiedITAC;
|
||||
case 'verifiedNoComp':
|
||||
return this.verifiedNoComp;
|
||||
case 'ADASReplace':
|
||||
return !this.isRepair && this.isADAS;
|
||||
case 'nonADASReplace':
|
||||
return !this.isRepair && !this.isADAS;
|
||||
case 'nonADASRepair':
|
||||
return this.isRepair;
|
||||
case 'deductibleOverZero':
|
||||
return this.verifiedDeductible && !this.isDeductibleZero; // TODO what if deductible is negative?
|
||||
case 'isDeductibleZero':
|
||||
return this.verifiedDeductible && this.isDeductibleZero;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
},
|
||||
getTotalLineItemPrice(lineItem) {
|
||||
|
|
@ -414,49 +416,52 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.body-text {
|
||||
p {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.cost {
|
||||
color: $green;
|
||||
font-size: 32px;
|
||||
font-size: 2rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 24px;
|
||||
line-height: 44px;
|
||||
line-height: 2.75rem;
|
||||
}
|
||||
|
||||
#coverage-button-question {
|
||||
.question-text {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.question-text > span {
|
||||
text-align: left;
|
||||
line-height: 24px;
|
||||
}
|
||||
.deductible-text {
|
||||
line-height: 1.5rem;
|
||||
}
|
||||
|
||||
.deductible-modal {
|
||||
:deep p {
|
||||
line-height: 1.5rem;
|
||||
font-size: 0.875rem;
|
||||
margin-bottom: 0.5rem;
|
||||
strong {
|
||||
color: $black;
|
||||
}
|
||||
}
|
||||
|
||||
:deep .question-text {
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5rem;
|
||||
& > span {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
:deep .deductible-modal {
|
||||
p {
|
||||
margin-bottom: 0px;
|
||||
margin-bottom: 0 !important;
|
||||
font-size: 1rem;
|
||||
line-height: 1.625rem;
|
||||
}
|
||||
|
||||
.modal-body p:last-child {
|
||||
font-size: 16px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.my-4 {
|
||||
margin-top: 8px !important;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
img.mb-4 {
|
||||
margin: 0 !important;
|
||||
}
|
||||
h5 {
|
||||
color: black;
|
||||
}
|
||||
p:last-child {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { mount } from '@vue/test-utils';
|
||||
import recalModal from '@/layouts/coverage-statement/recal-modal/recal-modal';
|
||||
import recalModal from '@/layouts/coverage-statement/recal-modal/recal-modal.vue';
|
||||
|
||||
const mockCmsContent = {
|
||||
HeaderText: 'Sample header text here.',
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
:ref="ModalName"
|
||||
:modalId="ModalName"
|
||||
:footerButtonText="ModalCloseButtonText"
|
||||
@footer-button-event="closeModal">
|
||||
<div class="recal-modal-body ps-4 pe-4 pt-0 pb-5">
|
||||
@footerButtonEvent="closeModal">
|
||||
<div class="recal-modal-body">
|
||||
<h5
|
||||
class="mb-4 text-center"
|
||||
v-html="ModalHeadline"></h5>
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
class="fw-bold mb-2 subheader-text"
|
||||
v-html="ModalSubheadertext"></p>
|
||||
<p
|
||||
class="mb-0 small"
|
||||
class="mb-0 small modal-body"
|
||||
v-html="ModalBodyText"></p>
|
||||
<p
|
||||
v-if="ModalSubBodyText"
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import modal from '@/digital-components/modal/modal';
|
||||
import modal from '@/digital-components/modal/modal.vue';
|
||||
|
||||
export default {
|
||||
name: 'recal-modal',
|
||||
|
|
@ -74,21 +74,16 @@ export default {
|
|||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
.recal-modal-body {
|
||||
.modal-sub-body {
|
||||
color: $gray-600;
|
||||
}
|
||||
ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
p {
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.subheader-text {
|
||||
:deep .recal-modal-body {
|
||||
h5 {
|
||||
color: $black;
|
||||
}
|
||||
.modal-body {
|
||||
strong {
|
||||
color: $black;
|
||||
font-weight: 400;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// Components
|
||||
import entryPage from '@/layouts/entry-page/entry-page';
|
||||
import entryPage from '@/layouts/entry-page/entry-page.vue';
|
||||
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper.js';
|
||||
|
|
@ -17,6 +17,7 @@ jest.mock('@/helpers/cms-content-helper', () => ({
|
|||
setupModalLinks: jest.fn()
|
||||
}));
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks(queryString) {
|
||||
const mountOptions = getMountOptions({
|
||||
router: {
|
||||
|
|
@ -41,7 +42,7 @@ describe('entry-page.vue', () => {
|
|||
const queryString = 'policynumber="123456"';
|
||||
const { wrapper } = setupMocks(queryString);
|
||||
|
||||
console.log(wrapper.vm.$route.query);
|
||||
window.console.log(wrapper.vm.$route.query);
|
||||
expect(wrapper).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
<script>
|
||||
// Supporting files
|
||||
import { issPageValues } from '@/router/router-constants/issPage-values';
|
||||
import { validateISSClientTag } from '@/helpers/clientauth-helper';
|
||||
import issPageValues from '@/router/router-constants/issPage-values';
|
||||
import validateISSClientTag from '@/helpers/clientauth-helper';
|
||||
import { useMainStore } from '@/store';
|
||||
|
||||
export default {
|
||||
|
|
@ -42,6 +42,7 @@ export default {
|
|||
parseQueryParms() {
|
||||
// Dump the query string parameters into an array. Remove casing on the key for easy compare.
|
||||
const queryStringParams = [];
|
||||
// TODO: Modify to not iterate entire prototype chain
|
||||
for (const param in this.$route.query) {
|
||||
queryStringParams[param.toLowerCase()] = this.$route.query[param];
|
||||
}
|
||||
|
|
@ -112,9 +113,11 @@ export default {
|
|||
try {
|
||||
const clientParams = JSON.parse(configParams);
|
||||
|
||||
// TODO: Modify to not iterate entire prototype chain
|
||||
for (const cparam in clientParams) {
|
||||
const cname = clientParams[cparam].toLowerCase();
|
||||
|
||||
// TODO: Modify to not iterate entire prototype chain
|
||||
for (const qsparam in queryStringParams) {
|
||||
const qsname = qsparam.toLowerCase();
|
||||
|
||||
|
|
@ -124,47 +127,48 @@ export default {
|
|||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.error(`Error combining client parameters: ${e}`);
|
||||
window.console.error(`Error combining client parameters: ${e}`);
|
||||
}
|
||||
|
||||
return finalParams;
|
||||
},
|
||||
populateStoreItemsFromParams(params) {
|
||||
// Populate store items from parameters.
|
||||
// TODO: Modify to not iterate entire prototype chain
|
||||
for (const param in params) {
|
||||
const name = param.toLowerCase();
|
||||
const value = params[param];
|
||||
|
||||
switch (name) {
|
||||
case 'policynumber':
|
||||
this.mainStore.order.policy.policyNumber = value;
|
||||
this.mainStore.issConfig.disabledFields.policyNumber = true;
|
||||
break;
|
||||
case 'policynumber':
|
||||
this.mainStore.order.policy.policyNumber = value;
|
||||
this.mainStore.issConfig.disabledFields.policyNumber = true;
|
||||
break;
|
||||
|
||||
case 'policyzipcode':
|
||||
this.mainStore.order.policy.policyZipCode = value;
|
||||
this.mainStore.issConfig.disabledFields.policyZipCode = true;
|
||||
break;
|
||||
case 'policyzipcode':
|
||||
this.mainStore.order.policy.policyZipCode = value;
|
||||
this.mainStore.issConfig.disabledFields.policyZipCode = true;
|
||||
break;
|
||||
|
||||
case 'lossdate':
|
||||
case 'lossdate':
|
||||
// NOTE: May need some date parsing logic in here depending on client.
|
||||
this.mainStore.order.policy.dateOfLoss = value;
|
||||
break;
|
||||
this.mainStore.order.policy.dateOfLoss = value;
|
||||
break;
|
||||
|
||||
case 'successreturnurl':
|
||||
this.mainStore.issConfig.successReturnURL = value;
|
||||
break;
|
||||
case 'successreturnurl':
|
||||
this.mainStore.issConfig.successReturnURL = value;
|
||||
break;
|
||||
|
||||
case 'failurereturnurl':
|
||||
this.mainStore.issConfig.failureReturnURL = value;
|
||||
break;
|
||||
case 'failurereturnurl':
|
||||
this.mainStore.issConfig.failureReturnURL = value;
|
||||
break;
|
||||
|
||||
// Not stored
|
||||
case 'timestamp':
|
||||
case 'token':
|
||||
case 'signature':
|
||||
break;
|
||||
default:
|
||||
case 'timestamp':
|
||||
case 'token':
|
||||
case 'signature':
|
||||
break;
|
||||
default:
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
// Components
|
||||
import licensePlateLookup from '@/layouts/license-plate-lookup/license-plate-lookup';
|
||||
import licensePlateLookup from '@/layouts/license-plate-lookup/license-plate-lookup.vue';
|
||||
|
||||
// Supporting Files
|
||||
import { settleAllPromises } from '@/helpers/layout-helper.js';
|
||||
import { shallowMount } from '@vue/test-utils';
|
||||
import { getMountOptions } from '@/helpers/unit-test-helper.js';
|
||||
import { useMainStore } from '@/store';
|
||||
import { navigationScenarios } from '@/router/router-constants/navigation-scenarios';
|
||||
import navigationScenarios from '@/router/router-constants/navigation-scenarios';
|
||||
|
||||
jest.mock('@/helpers/damage-helper', () => ({
|
||||
isGlassAvailableForCarId: jest.fn().mockImplementation(() => true),
|
||||
|
|
@ -23,6 +23,7 @@ jest.mock('@/helpers/cms-content-helper', () => ({
|
|||
fetchCmsContentForPage: jest.fn()
|
||||
}));
|
||||
|
||||
/** @ignore */
|
||||
function setupMocks({
|
||||
isZipValid = true,
|
||||
isZipServiceable = true,
|
||||
|
|
@ -210,40 +211,42 @@ describe('license-plate-lookup.vue', () => {
|
|||
expect(wrapper.vm.navigateForwardWithSingleCarMatch).toHaveBeenCalledTimes(1);
|
||||
});
|
||||
|
||||
test('if a different vehicle is found than the one entered and the selected glass is not available for that vehicle, navigate back to vehicle-damage page', async () => {
|
||||
// eslint-disable-next-line max-len
|
||||
test('if a different vehicle is found than the one entered and the selected glass is not available for that vehicle, navigate back to vehicle-damage page',
|
||||
async () => {
|
||||
// Arrange
|
||||
const mockRegistrationLicensePlate = {
|
||||
licensePlate: 'TEST1234'
|
||||
};
|
||||
const mockRegistrationLicensePlate = {
|
||||
licensePlate: 'TEST1234'
|
||||
};
|
||||
|
||||
const { wrapper } = setupMocks({});
|
||||
const { wrapper } = setupMocks({});
|
||||
|
||||
await wrapper.setData({
|
||||
licensePlate: mockRegistrationLicensePlate,
|
||||
isCarIdDifferent: true,
|
||||
isSelectedGlassAvailableForVehicle: false
|
||||
});
|
||||
await wrapper.setData({
|
||||
licensePlate: mockRegistrationLicensePlate,
|
||||
isCarIdDifferent: true,
|
||||
isSelectedGlassAvailableForVehicle: false
|
||||
});
|
||||
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
useMainStore().order.vehicle.carId = 'CARID';
|
||||
|
||||
const carsFound = [
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'C0000'
|
||||
const carsFound = [
|
||||
{
|
||||
vin: 'TEST_VIN2',
|
||||
vehicle: {
|
||||
carId: 'C0000'
|
||||
}
|
||||
}
|
||||
}
|
||||
];
|
||||
];
|
||||
|
||||
// Act
|
||||
await wrapper.vm.navigateForward(carsFound);
|
||||
// Act
|
||||
await wrapper.vm.navigateForward(carsFound);
|
||||
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith(navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
|
||||
undefined,
|
||||
{},
|
||||
{ displayVehicleChangeAlert: true });
|
||||
});
|
||||
// Assert
|
||||
expect(wrapper.vm.$router.navigate).toHaveBeenCalledWith(navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
|
||||
undefined,
|
||||
{},
|
||||
{ displayVehicleChangeAlert: true });
|
||||
});
|
||||
});
|
||||
|
||||
describe('miscellaneous', () => {
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
ref="theForm"
|
||||
v-slot="{ meta }"
|
||||
@submit="onSubmit"
|
||||
@invalid-submit="onInvalidSubmit">
|
||||
@invalidSubmit="onInvalidSubmit">
|
||||
<div class="page-container-grouped-styles">
|
||||
<div class="fade-on-route-transition position-relative">
|
||||
<siteHeader cmsWidgetName="SiteHeaderWidget" />
|
||||
|
|
@ -64,8 +64,8 @@
|
|||
class="mt-5"
|
||||
:isForwardActionDisabled="!meta.valid"
|
||||
cmsWidgetName="SiteFooterWidget"
|
||||
@back-clicked="backButtonAction"
|
||||
@forward-clicked="forwardButtonAction" />
|
||||
@backClicked="backButtonAction"
|
||||
@forwardClicked="forwardButtonAction" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -80,24 +80,24 @@
|
|||
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
|
||||
import { settleAllPromises } from '@/helpers/layout-helper';
|
||||
import { useMainStore } from '@/store';
|
||||
import { errorMessages } from '@/constants/error-messages';
|
||||
import errorMessages from '@/constants/error-messages';
|
||||
import { required } from '@/helpers/validation-rules';
|
||||
import { defineRule, Form } from 'vee-validate';
|
||||
import { getDamageString, isGlassAvailableForCarId } from '@/helpers/damage-helper.js';
|
||||
import { routerParams } from '@/router/router-params.js';
|
||||
import { states } from '@/constants/states';
|
||||
import routerParams from '@/router/router-constants/router-params.js';
|
||||
import states from '@/constants/states';
|
||||
|
||||
// Import Component
|
||||
import baseFormMixin from '@/mixins/base-form-mixin';
|
||||
import vinPagesMixin from '@/mixins/vin-pages-mixin';
|
||||
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer';
|
||||
import siteHeader from '@/iss-components/site-header/site-header';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question';
|
||||
import dropdownQuestion from '@/digital-components/dropdown-question/dropdown-question';
|
||||
import alert from '@/ux-components/alert/alert';
|
||||
import siteFooter from '@/iss-components/site-footer/site-footer.vue';
|
||||
import siteHeader from '@/iss-components/site-header/site-header.vue';
|
||||
import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header.vue';
|
||||
import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner.vue';
|
||||
import textboxQuestion from '@/digital-components/textbox-question/textbox-question.vue';
|
||||
import dropdownQuestion from '@/digital-components/dropdown-question/dropdown-question.vue';
|
||||
import alert from '@/ux-components/alert/alert.vue';
|
||||
|
||||
// Define Validation Rules
|
||||
defineRule('license-plate-required', required(errorMessages.LICENSE_PLATE_REQUIRED));
|
||||
|
|
@ -158,8 +158,11 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:damage}', getDamageString());
|
||||
},
|
||||
AlertMatchedDifferentVehicleBody() {
|
||||
const vinYmmFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
const vinYmmFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedDifferentVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -171,8 +174,12 @@ export default {
|
|||
'HeadlineText').replaceAll('{custom:damage}', getDamageString());
|
||||
},
|
||||
AlertMatchedTwoIdenticalYMMVehicleBody() {
|
||||
const vinYmmsFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model} ${this.customAlertData?.vehicleInfo?.style}`;
|
||||
const vinYmmsExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model} ${this.mainStore.order.vehicle.style}`;
|
||||
const vinYmmsFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model} ${this.customAlertData?.vehicleInfo?.style}`;
|
||||
const vinYmmsExpected =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model} ${this.mainStore.order.vehicle.style}`;
|
||||
|
||||
return this.getCmsContent('AlertMatchedTwoIdenticalYMMVehicleWidget', 'BodyText')
|
||||
.replaceAll('{custom:damage}', getDamageString())
|
||||
|
|
@ -180,8 +187,11 @@ export default {
|
|||
.replaceAll('{custom:vinYmmsExpected}', vinYmmsExpected);
|
||||
},
|
||||
isTwoIdenticalYMMVehicleFound() {
|
||||
const vinYmmFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
const vinYmmFound =
|
||||
// eslint-disable-next-line max-len
|
||||
`${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`;
|
||||
const vinYmmExpected =
|
||||
`${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`;
|
||||
return (vinYmmFound.toLowerCase() === vinYmmExpected.toLowerCase());
|
||||
},
|
||||
stateOptions: {
|
||||
|
|
@ -249,8 +259,8 @@ export default {
|
|||
const vehicleFromLookup = resultMap.vinLookupResponse.vehicle;
|
||||
|
||||
// Check if the CarId has changed
|
||||
this.isCarIdDifferent
|
||||
= vehicleFromLookup.carId !== useMainStore().order.vehicle.carId;
|
||||
this.isCarIdDifferent =
|
||||
vehicleFromLookup.carId !== useMainStore().order.vehicle.carId;
|
||||
// Handle changing car
|
||||
if (
|
||||
this.isCarIdDifferent
|
||||
|
|
@ -270,7 +280,9 @@ export default {
|
|||
this.isSelectedGlassAvailableForVehicle = await isGlassAvailableForCarId(vehicleFromLookup.carId);
|
||||
|
||||
// Update button "Continue with..."
|
||||
this.$refs.siteFooter.updateButtonText(`Continue with ${vehicleFromLookup.year} ${vehicleFromLookup.make} ${vehicleFromLookup.model} ${this.forwardButtonCarStyle}`);
|
||||
this.$refs.siteFooter
|
||||
// eslint-disable-next-line max-len
|
||||
.updateButtonText(`Continue with ${vehicleFromLookup.year} ${vehicleFromLookup.make} ${vehicleFromLookup.model} ${this.forwardButtonCarStyle}`);
|
||||
return this.$refs.siteFooter.removeLoader();
|
||||
}
|
||||
|
||||
|
|
@ -285,10 +297,11 @@ export default {
|
|||
},
|
||||
false);
|
||||
|
||||
return await this.navigateForward();
|
||||
return this.navigateForward();
|
||||
},
|
||||
async navigateForward() {
|
||||
// If a different vehicle is found than the one entered and the selected glass is not available for that vehicle then navigate back to "vehicle-damage"
|
||||
// If a different vehicle is found than the one entered and the selected glass is
|
||||
// not available for that vehicle then navigate back to "vehicle-damage"
|
||||
// display vehicle changed alert on that page.
|
||||
if (this.isCarIdDifferent && !this.isSelectedGlassAvailableForVehicle) {
|
||||
this.$router.navigate(this.navigationScenarios.SELECTED_VIN_WITH_MISMATCHED_GLASS,
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue