106 lines
3.6 KiB
Vue
106 lines
3.6 KiB
Vue
<template>
|
|
<div :class="`page-container-grouped-styles questions-page`">
|
|
<loadingModal ref="loadingModal" />
|
|
<funnelHeader cmsWidgetName="FunnelHeaderWidget" />
|
|
<vehicleBanner cmsWidgetName="VehicleBannerWidget" :displayGenericVehicleImage="false" />
|
|
<funnelSubHeader cmsWidgetName="FunnelSubHeaderWidget" />
|
|
<div class="fade-on-route-transition sub-container make-tall">
|
|
<alert
|
|
ref="alertFewMoreQuestions"
|
|
cmsWidgetName="alertWidget"
|
|
class="my-5"
|
|
alertClass="alert-warning"
|
|
:manualHeadline="alertFewMoreQuestionsHeader"
|
|
:manualCopy="alertFewMoreQuestionsCopy"
|
|
v-bind:isDismissible="false" />
|
|
<div v-for="(questionsDatum, i) in questionsData" :key="questionsDatum.key">
|
|
<questionChain
|
|
ref="questionChain"
|
|
v-model="selectedAnswers[questionsDatum.answerKey]"
|
|
:questionData="questionsDatum.questions"
|
|
:index="i"
|
|
v-if="showThisQuestionChain(questionsDatum, i)"
|
|
:answerKey="questionsDatum.answerKey"
|
|
:validationRules="validationRules" />
|
|
</div>
|
|
<funnel-footer
|
|
ref="funnelFooter"
|
|
cmsWidgetName="FunnelFooterWidget"
|
|
:isForwardActionDisabled="!isMetaValid"
|
|
@back-clicked="handleBackButtonClicked"
|
|
@ForwardClicked="handleForwardButtonAction" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// Components
|
|
import funnelHeader from "@/common-components/funnel-header/funnel-header";
|
|
import vehicleBanner from "@/common-components/vehicle-banner/vehicle-banner";
|
|
import alert from "@/ux-components/alert/alert";
|
|
import questionChain from "@/common-components/question-chain/question-chain";
|
|
import funnelSubHeader from "@/common-components/funnel-sub-header/funnel-sub-header";
|
|
import funnelFooter from "@/common-components/funnel-footer/funnel-footer";
|
|
import loadingModal from "@/common-components/loading-modal/loading-modal.vue";
|
|
|
|
export default {
|
|
name: "questions-page",
|
|
props: {
|
|
isMetaValid: Boolean,
|
|
alertFewMoreQuestionsHeader: String,
|
|
alertFewMoreQuestionsCopy: String,
|
|
questionsData: Array,
|
|
validationRules: String,
|
|
modelValue: Array,
|
|
index: Number,
|
|
},
|
|
computed: {
|
|
selectedAnswers: {
|
|
get() {
|
|
return this.modelValue;
|
|
},
|
|
set(newValue) {
|
|
this.$emit("update:modelValue", newValue);
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
showThisQuestionChain(glass, i) {
|
|
if (!glass.questions || glass.questions?.length < 1 || glass.isSuppressedPart) {
|
|
return false;
|
|
} // return false if no questions or if suppressed
|
|
return this.index === i || glass.answerData?.answerResult?.length > 0;
|
|
},
|
|
handleForwardButtonAction() {
|
|
this.$emit("forwardButtonAction");
|
|
},
|
|
handleBackButtonAction() {
|
|
this.$emit("back-click");
|
|
},
|
|
showLoadingModal() {
|
|
this.$refs.loadingModal.showModal();
|
|
},
|
|
},
|
|
components: {
|
|
funnelHeader,
|
|
vehicleBanner,
|
|
alert,
|
|
questionChain,
|
|
funnelSubHeader,
|
|
funnelFooter,
|
|
loadingModal,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.questions-page {
|
|
.question-text {
|
|
margin-bottom: 0.5rem;
|
|
|
|
span {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
</style>
|