88 lines
2.2 KiB
Vue
88 lines
2.2 KiB
Vue
<template>
|
|
<loadingModal v-if="useLoadingModal" notFullScreen ref="loadingModal" />
|
|
<a v-if="linkType === 'navigation'" @click="handleClick" class="navigation-link" :href="href"
|
|
>{{ text }}<slot name="after-text"></slot
|
|
></a>
|
|
<a
|
|
v-else-if="linkType === 'newWindowLink'"
|
|
@click="handleClick"
|
|
class="new-window-link"
|
|
:href="href"
|
|
target="_blank"
|
|
>{{ text }}<slot name="after-text"></slot
|
|
></a>
|
|
<a v-else-if="linkType === 'textSmall'" @click="handleClick" class="small" :href="href"
|
|
>{{ text }}<slot name="after-text"></slot
|
|
></a>
|
|
<a v-else-if="linkType === 'text'" @click="handleClick" :href="href"
|
|
>{{ text }}<slot name="after-text"></slot
|
|
></a>
|
|
</template>
|
|
|
|
<script>
|
|
import loadingModal from "@/fmg-components/loading-modal/loading-modal";
|
|
|
|
export default {
|
|
name: "textLink",
|
|
props: {
|
|
linkType: String,
|
|
text: String,
|
|
href: {
|
|
type: String,
|
|
},
|
|
useLoadingModal: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick(event) {
|
|
this.pushEventToGA(
|
|
this.$route.query[this.queryStrings.FMG_PAGE],
|
|
this.GaActions.CLICKED,
|
|
this.text,
|
|
true
|
|
);
|
|
|
|
if (this.useLoadingModal) {
|
|
this.$refs.loadingModal.showModal();
|
|
}
|
|
|
|
this.$emit("click-event");
|
|
},
|
|
},
|
|
components: {
|
|
loadingModal,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
a {
|
|
color: $blue;
|
|
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
|
|
line-height: 2;
|
|
padding: 0 0 4px 0;
|
|
font-weight: 500;
|
|
max-width: fit-content;
|
|
&:hover {
|
|
color: $blue-700;
|
|
}
|
|
&.small {
|
|
line-height: 24px;
|
|
&:hover {
|
|
color: $blue-700;
|
|
}
|
|
}
|
|
&.navigation-link,
|
|
&.new-window-link {
|
|
color: $black;
|
|
line-height: 26px;
|
|
white-space: nowrap;
|
|
align-items: center;
|
|
}
|
|
&.new-window-link {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
}
|
|
</style>
|