81 lines
2 KiB
Vue
81 lines
2 KiB
Vue
<template>
|
|
<a v-if="linkType === 'navigation'" @click="handleClick" class="navigation-link" :href="href"
|
|
>{{ text }}<slot name="after-text"></slot
|
|
></a>
|
|
<a
|
|
v-else-if="linkType === 'footer'"
|
|
@click="handleClick"
|
|
class="footer-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>
|
|
export default {
|
|
name: "textLink",
|
|
props: {
|
|
linkType: String,
|
|
text: String,
|
|
href: {
|
|
type: String,
|
|
},
|
|
},
|
|
methods: {
|
|
handleClick(event) {
|
|
this.pushEventToGA(
|
|
this.$route.query[this.queryStrings.FMG_PAGE],
|
|
this.GaActions.CLICKED,
|
|
this.text,
|
|
true
|
|
);
|
|
this.$emit("click-event");
|
|
},
|
|
},
|
|
};
|
|
</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 {
|
|
color: $black;
|
|
line-height: 26px;
|
|
white-space: nowrap;
|
|
align-items: center;
|
|
}
|
|
&.footer-link {
|
|
color: $gray-600;
|
|
text-decoration: none;
|
|
line-height: 20px;
|
|
padding: 0 0 2px 0;
|
|
font-weight: 400;
|
|
font-size: 0.75rem;
|
|
&:hover {
|
|
padding: 0 0 2px 0;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
</style>
|