CASH-632 added cancel link button for insurance pages
CASH-632 added cancel link button for insurance pages
This commit is contained in:
parent
81476b5d43
commit
2e41499caf
9 changed files with 249 additions and 56 deletions
160
src/fmg-components/insurance-nav-bar/insurance-nav-bar.vue
Normal file
160
src/fmg-components/insurance-nav-bar/insurance-nav-bar.vue
Normal file
|
|
@ -0,0 +1,160 @@
|
||||||
|
<template>
|
||||||
|
<div class="row"></div>
|
||||||
|
<div class="insurance-nav-bar nav-bar container-fluid g-5 my-5 px-0" id="infoBox">
|
||||||
|
<div class="row d-flex justify-content-between align-items-center vw-100">
|
||||||
|
<div v-if="!isCancelButtonHidden" class="col-auto cancel-col py-1 text-break">
|
||||||
|
<textLink
|
||||||
|
linkType="navigation"
|
||||||
|
text="Cancel verification"
|
||||||
|
useLoadingModal
|
||||||
|
@click-event="cancelClick"
|
||||||
|
href="javascript:void(0)"
|
||||||
|
data-bs-target="#footerModal"
|
||||||
|
data-bs-dismiss="modal" />
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex justify-content-end align-items-center forward-group">
|
||||||
|
<div v-if="!isBackButtonHidden" class="link-col py-1 text-break">
|
||||||
|
<textLink
|
||||||
|
linkType="navigation"
|
||||||
|
:text="backLink"
|
||||||
|
useLoadingModal
|
||||||
|
@click-event="linkClick"
|
||||||
|
href="javascript:void(0)"
|
||||||
|
data-bs-target="#footerModal"
|
||||||
|
data-bs-dismiss="modal" />
|
||||||
|
</div>
|
||||||
|
<buttonMain
|
||||||
|
ref="buttonMain"
|
||||||
|
isPrimary
|
||||||
|
:buttonText="overrideButtonText || buttonText"
|
||||||
|
loaderColor="white"
|
||||||
|
:class="isForwardActionDisabled && 'form-test-invalid'"
|
||||||
|
:aria-disabled="isForwardActionDisabled"
|
||||||
|
:isDisabled="isForwardActionDisabled"
|
||||||
|
@click-event="buttonClick"
|
||||||
|
data-bs-target="#footerModal"
|
||||||
|
data-test-id="insurance-nav-bar-main-button"
|
||||||
|
data-bs-dismiss="modal"
|
||||||
|
v-if="!isSubmitHidden" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import textLink from "@/ux-components/text-link/text-link";
|
||||||
|
import buttonMain from "@/ux-components/button-main/button-main";
|
||||||
|
import analyticsMixin from "@/mixins/analytics-mixin";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "insurance-nav-bar",
|
||||||
|
emits: ["CancelClicked", "BackClicked", "ForwardClicked"],
|
||||||
|
props: {
|
||||||
|
isForwardActionDisabled: Boolean,
|
||||||
|
isBackButtonHidden: { type: Boolean, default: false },
|
||||||
|
isCancelButtonHidden: { type: Boolean, default: false },
|
||||||
|
cmsWidgetName: String,
|
||||||
|
buttonSize: { type: Boolean, default: false },
|
||||||
|
isSubmitHidden: { type: Boolean, default: false },
|
||||||
|
overrideButtonText: String,
|
||||||
|
overrideBackButtonText: String,
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
textLink,
|
||||||
|
buttonMain,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
customButtontext: "",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
unmounted() {
|
||||||
|
document.onkeydown = null;
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
backLink() {
|
||||||
|
return (
|
||||||
|
this.overrideBackButtonText ||
|
||||||
|
this.getCmsContent(this.cmsWidgetName, "BackButtonText")
|
||||||
|
);
|
||||||
|
},
|
||||||
|
buttonText() {
|
||||||
|
return this.customButtontext
|
||||||
|
? this.customButtontext
|
||||||
|
: this.getCmsContent(this.cmsWidgetName, "ForwardButtonText");
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
updateButtonText(newText) {
|
||||||
|
this.customButtontext = newText;
|
||||||
|
},
|
||||||
|
removeLoader() {
|
||||||
|
this.$refs.buttonMain.removeLoader();
|
||||||
|
document.onkeydown = function (e) {
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
buttonClick() {
|
||||||
|
//prevent keyboard input after button click
|
||||||
|
document.onkeydown = function (e) {
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
// check session expired and initSession to recreate cookies
|
||||||
|
if (analyticsMixin.methods.sessionExpired()) {
|
||||||
|
this.routeReturnUser();
|
||||||
|
} else {
|
||||||
|
this.$emit("ForwardClicked");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
linkClick() {
|
||||||
|
// check session expired and initSession to recreate cookies
|
||||||
|
if (analyticsMixin.methods.sessionExpired()) {
|
||||||
|
this.routeReturnUser();
|
||||||
|
} else {
|
||||||
|
this.$emit("BackClicked");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
cancelClick() {
|
||||||
|
// check session expired and initSession to recreate cookies
|
||||||
|
if (analyticsMixin.methods.sessionExpired()) {
|
||||||
|
this.routeReturnUser();
|
||||||
|
} else {
|
||||||
|
this.$emit("CancelClicked");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
routeReturnUser() {
|
||||||
|
this.$router.sendToReturnUser();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.nav-bar {
|
||||||
|
overflow: visible;
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
z-index: 2;
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
& > .container-fluid {
|
||||||
|
overflow-x: visible; // needed to fix hidden footer on some iphones
|
||||||
|
}
|
||||||
|
.forward-group {
|
||||||
|
gap: 1.5rem;
|
||||||
|
}
|
||||||
|
@media only screen and (min-width: 340px) {
|
||||||
|
.btn-primary {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
@ -43,10 +43,11 @@
|
||||||
isRequired
|
isRequired
|
||||||
v-model="startNewClaimSelectedValue" />
|
v-model="startNewClaimSelectedValue" />
|
||||||
|
|
||||||
<navbar
|
<insuranceNavBar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -57,7 +58,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import textBlock from "@/digital-components/text-block/text-block";
|
import textBlock from "@/digital-components/text-block/text-block";
|
||||||
import buttonQuestion from "@/digital-components/button-question/button-question";
|
import buttonQuestion from "@/digital-components/button-question/button-question";
|
||||||
|
|
@ -79,7 +80,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
textBlock,
|
textBlock,
|
||||||
buttonQuestion,
|
buttonQuestion,
|
||||||
|
|
@ -141,6 +142,12 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
cancelButtonAction() {
|
||||||
|
this.$router.navigateWithoutSaving(
|
||||||
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
this.pageName
|
||||||
|
);
|
||||||
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_BACK,
|
||||||
|
|
|
||||||
|
|
@ -40,10 +40,11 @@
|
||||||
isRequired
|
isRequired
|
||||||
v-model="parkingLotEndorsementSelectedValue" />
|
v-model="parkingLotEndorsementSelectedValue" />
|
||||||
|
|
||||||
<navbar
|
<insuranceNavBar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -54,7 +55,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import { Form } from "vee-validate";
|
import { Form } from "vee-validate";
|
||||||
|
|
||||||
|
|
@ -76,7 +77,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
buttonQuestion,
|
buttonQuestion,
|
||||||
textBlock,
|
textBlock,
|
||||||
|
|
@ -133,6 +134,12 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
cancelButtonAction() {
|
||||||
|
this.$router.navigateWithoutSaving(
|
||||||
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
this.pageName
|
||||||
|
);
|
||||||
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_BACK,
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,11 @@
|
||||||
<!--
|
<!--
|
||||||
... Page code goes here.
|
... Page code goes here.
|
||||||
-->
|
-->
|
||||||
<navbar
|
<insuranceNavBar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -26,7 +27,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import { Form } from "vee-validate";
|
import { Form } from "vee-validate";
|
||||||
|
|
||||||
|
|
@ -46,7 +47,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
},
|
},
|
||||||
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
||||||
|
|
@ -83,6 +84,12 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
cancelButtonAction() {
|
||||||
|
this.$router.navigateWithoutSaving(
|
||||||
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
this.pageName
|
||||||
|
);
|
||||||
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_BACK,
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,11 @@
|
||||||
<!--
|
<!--
|
||||||
... Page code goes here.
|
... Page code goes here.
|
||||||
-->
|
-->
|
||||||
<navbar
|
<insuranceNavBar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -26,7 +27,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import { Form } from "vee-validate";
|
import { Form } from "vee-validate";
|
||||||
|
|
||||||
|
|
@ -46,7 +47,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
},
|
},
|
||||||
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
||||||
|
|
@ -83,6 +84,12 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
cancelButtonAction() {
|
||||||
|
this.$router.navigateWithoutSaving(
|
||||||
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
this.pageName
|
||||||
|
);
|
||||||
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_BACK,
|
||||||
|
|
|
||||||
|
|
@ -191,15 +191,13 @@
|
||||||
v-model="morePolicyQuestions"
|
v-model="morePolicyQuestions"
|
||||||
groupName="MorePolicyQuestionsQuestion" />
|
groupName="MorePolicyQuestionsQuestion" />
|
||||||
|
|
||||||
<div class="policy-info-navbar">
|
<insuranceNavBar
|
||||||
<navbar
|
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
overrideBackButtonText="Cancel verification"
|
isBackButtonHidden
|
||||||
@back-clicked="backButtonAction"
|
@cancel-clicked="cancelButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
|
||||||
|
|
||||||
<span
|
<span
|
||||||
v-if="displayDisclaimerText"
|
v-if="displayDisclaimerText"
|
||||||
|
|
@ -213,7 +211,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import textBlock from "@/digital-components/text-block/text-block";
|
import textBlock from "@/digital-components/text-block/text-block";
|
||||||
import textboxQuestion from "@/digital-components/textbox-question/textbox-question";
|
import textboxQuestion from "@/digital-components/textbox-question/textbox-question";
|
||||||
|
|
@ -274,7 +272,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
textBlock,
|
textBlock,
|
||||||
textboxQuestion,
|
textboxQuestion,
|
||||||
|
|
@ -481,9 +479,9 @@ export default {
|
||||||
getLossLocationFromStore() {
|
getLossLocationFromStore() {
|
||||||
return store.getters.order.policy.lossLocation;
|
return store.getters.order.policy.lossLocation;
|
||||||
},
|
},
|
||||||
backButtonAction() {
|
cancelButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
this.pageName
|
this.pageName
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
@ -530,14 +528,6 @@ export default {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.policy-info-navbar {
|
|
||||||
.navigation-link {
|
|
||||||
font-family: inherit;
|
|
||||||
font-weight: 600;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.cc-page-title {
|
.cc-page-title {
|
||||||
font-size: 20px !important;
|
font-size: 20px !important;
|
||||||
line-height: 1.325;
|
line-height: 1.325;
|
||||||
|
|
|
||||||
|
|
@ -17,18 +17,11 @@
|
||||||
class="mb-3"
|
class="mb-3"
|
||||||
@click-event="forwardButtonAction" />
|
@click-event="forwardButtonAction" />
|
||||||
|
|
||||||
<textLink
|
<insuranceNavBar
|
||||||
class="pt-3"
|
|
||||||
useLoadingModal
|
|
||||||
linkType="text"
|
|
||||||
href="javascript:void(0)"
|
|
||||||
:text="cancelVerificationCopy"
|
|
||||||
@click-event="cancelVerificationAction" />
|
|
||||||
|
|
||||||
<navbar
|
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
|
|
||||||
|
|
@ -41,11 +34,10 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import store from "@/store";
|
import store from "@/store";
|
||||||
import buttonMain from "@/ux-components/button-main/button-main";
|
import buttonMain from "@/ux-components/button-main/button-main";
|
||||||
import textLink from "@/ux-components/text-link/text-link.vue";
|
|
||||||
import { parentAccountNumbers } from "@/constants/insurance";
|
import { parentAccountNumbers } from "@/constants/insurance";
|
||||||
import { debugLog } from "@/helpers/debug-log-helper";
|
import { debugLog } from "@/helpers/debug-log-helper";
|
||||||
|
|
||||||
|
|
@ -65,9 +57,8 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
textLink,
|
|
||||||
buttonMain,
|
buttonMain,
|
||||||
},
|
},
|
||||||
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
||||||
|
|
@ -104,9 +95,6 @@ export default {
|
||||||
vehicleNotListedQuestionText() {
|
vehicleNotListedQuestionText() {
|
||||||
return this.getCmsContent("VehicleNotListedWidget", "Text");
|
return this.getCmsContent("VehicleNotListedWidget", "Text");
|
||||||
},
|
},
|
||||||
cancelVerificationCopy() {
|
|
||||||
return this.getCmsContent("CancelVerificationWidget", "Text");
|
|
||||||
},
|
|
||||||
amFamDisclaimerWidget() {
|
amFamDisclaimerWidget() {
|
||||||
return this.getCmsContent("AmFamDisclaimerWidget", "Text");
|
return this.getCmsContent("AmFamDisclaimerWidget", "Text");
|
||||||
},
|
},
|
||||||
|
|
@ -122,7 +110,7 @@ export default {
|
||||||
parentAccountNumberFromStore() {
|
parentAccountNumberFromStore() {
|
||||||
return store.getters.order?.payment?.parentAccountNumber;
|
return store.getters.order?.payment?.parentAccountNumber;
|
||||||
},
|
},
|
||||||
cancelVerificationAction() {
|
cancelButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
this.pageName
|
this.pageName
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,11 @@
|
||||||
<!--
|
<!--
|
||||||
... Page code goes here.
|
... Page code goes here.
|
||||||
-->
|
-->
|
||||||
<navbar
|
<insuranceNavBar
|
||||||
cmsWidgetName="FunnelFooterWidget"
|
cmsWidgetName="FunnelFooterWidget"
|
||||||
ref="navbar"
|
ref="navbar"
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
|
@cancel-clicked="cancelButtonAction"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -26,7 +27,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
import funnelHeader from "@/fmg-components/funnel-header/funnel-header";
|
||||||
import navbar from "@/fmg-components/nav-bar/nav-bar";
|
import insuranceNavBar from "@/fmg-components/insurance-nav-bar/insurance-nav-bar";
|
||||||
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
import funnelSubHeader from "@/fmg-components/funnel-sub-header/funnel-sub-header";
|
||||||
import { Form } from "vee-validate";
|
import { Form } from "vee-validate";
|
||||||
|
|
||||||
|
|
@ -45,7 +46,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
Form,
|
Form,
|
||||||
funnelHeader,
|
funnelHeader,
|
||||||
navbar,
|
insuranceNavBar,
|
||||||
funnelSubHeader,
|
funnelSubHeader,
|
||||||
},
|
},
|
||||||
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
// Ensure CMS content is fetched during route navigation without depending on `to`/`from`
|
||||||
|
|
@ -82,6 +83,12 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
cancelButtonAction() {
|
||||||
|
this.$router.navigateWithoutSaving(
|
||||||
|
this.navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
this.pageName
|
||||||
|
);
|
||||||
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
this.$router.navigateWithoutSaving(
|
this.$router.navigateWithoutSaving(
|
||||||
this.navigationScenarios.CLICKED_BACK,
|
this.navigationScenarios.CLICKED_BACK,
|
||||||
|
|
|
||||||
|
|
@ -446,7 +446,7 @@ const routingTable = function () {
|
||||||
pageName: routeData.POLICY_INFO.name,
|
pageName: routeData.POLICY_INFO.name,
|
||||||
maps: [
|
maps: [
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
destinationPageData: routeData.INSURANCE_COMPANY,
|
destinationPageData: routeData.INSURANCE_COMPANY,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -471,6 +471,10 @@ const routingTable = function () {
|
||||||
{
|
{
|
||||||
pageName: routeData.DUPLICATE_CHECK.name,
|
pageName: routeData.DUPLICATE_CHECK.name,
|
||||||
maps: [
|
maps: [
|
||||||
|
{
|
||||||
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
destinationPageData: routeData.INSURANCE_COMPANY,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.POLICY_INFO,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
|
|
@ -486,7 +490,7 @@ const routingTable = function () {
|
||||||
maps: [
|
maps: [
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.DUPLICATE_CHECK,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_FORWARD,
|
scenario: navigationScenarios.CLICKED_FORWARD,
|
||||||
|
|
@ -501,9 +505,13 @@ const routingTable = function () {
|
||||||
{
|
{
|
||||||
pageName: routeData.POLICY_DRIVER.name,
|
pageName: routeData.POLICY_DRIVER.name,
|
||||||
maps: [
|
maps: [
|
||||||
|
{
|
||||||
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.POLICY_VEHICLE,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_FORWARD,
|
scenario: navigationScenarios.CLICKED_FORWARD,
|
||||||
|
|
@ -514,9 +522,13 @@ const routingTable = function () {
|
||||||
{
|
{
|
||||||
pageName: routeData.ENDORSEMENTS.name,
|
pageName: routeData.ENDORSEMENTS.name,
|
||||||
maps: [
|
maps: [
|
||||||
|
{
|
||||||
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.POLICY_DRIVER,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_FORWARD,
|
scenario: navigationScenarios.CLICKED_FORWARD,
|
||||||
|
|
@ -527,9 +539,13 @@ const routingTable = function () {
|
||||||
{
|
{
|
||||||
pageName: routeData.POLICY_INFO_SUBMITTED.name,
|
pageName: routeData.POLICY_INFO_SUBMITTED.name,
|
||||||
maps: [
|
maps: [
|
||||||
|
{
|
||||||
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.ENDORSEMENTS,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_FORWARD,
|
scenario: navigationScenarios.CLICKED_FORWARD,
|
||||||
|
|
@ -540,9 +556,13 @@ const routingTable = function () {
|
||||||
{
|
{
|
||||||
pageName: routeData.RECALIBRATION_INFO.name,
|
pageName: routeData.RECALIBRATION_INFO.name,
|
||||||
maps: [
|
maps: [
|
||||||
|
{
|
||||||
|
scenario: navigationScenarios.CLICKED_CANCEL_VERIFICATION,
|
||||||
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK,
|
scenario: navigationScenarios.CLICKED_BACK,
|
||||||
destinationPageData: routeData.POLICY_INFO_SUBMITTED,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_FORWARD,
|
scenario: navigationScenarios.CLICKED_FORWARD,
|
||||||
|
|
@ -559,7 +579,7 @@ const routingTable = function () {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK_RECALIBRATION_INFO,
|
scenario: navigationScenarios.CLICKED_BACK_RECALIBRATION_INFO,
|
||||||
destinationPageData: routeData.RECALIBRATION_INFO,
|
destinationPageData: routeData.POLICY_INFO,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
scenario: navigationScenarios.CLICKED_BACK_NON_CLAIM_AND_COVERAGE,
|
scenario: navigationScenarios.CLICKED_BACK_NON_CLAIM_AND_COVERAGE,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue