Newer
Older
import {Component, Host, h, Listen, Prop, Element} from '@stencil/core';
import {HeadingVarians, HeadingSectionVariants} from '../../utils/utils';
import {CtaLinkButtonVariants} from '../../utils/utils';
@Component({
tag: 'hy-hero',
styleUrl: 'hy-hero.scss',
shadow: false,
})
export class HyHero {
@Element() el: HTMLElement;
@Prop() colorVariant: HeroColorVariant = HeroColorVariant.blue;
@Prop() image: string;
@Prop() heading: string;
@Prop() description: string;
@Prop() url: string;
@Prop() urlTitle: string;
@Prop() scLabel?: string;
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@Prop() headerstyle: string = 'common';
componentDidLoad() {
let hyMainDiv = this.el.closest('.hy-main');
if (hyMainDiv) {
if (!hyMainDiv.classList.contains('with-sidebar')) {
this.headerstyle = 'large';
}
}
this.setContentDivPosition();
}
setContentDivPosition() {
const contentDiv = document.querySelectorAll('.hy-hero__content--container')[0];
if (contentDiv) {
if (document.body.scrollWidth <= 480) {
// mobile
(contentDiv as HTMLElement).style.left = '0px';
return;
} else if (document.body.scrollWidth <= 960) {
//tablet
(contentDiv as HTMLElement).style.left = '0px';
return;
} else if (document.body.scrollWidth <= 1200) {
//small desktop
(contentDiv as HTMLElement).style.left = '0px';
return;
} else if (document.body.scrollWidth >= 1201) {
const contentWrapper = document.querySelectorAll('div.hy-main-content-wrapper')[0];
if (contentWrapper) {
if (document.body.scrollWidth >= 1441) {
var ml = window.getComputedStyle(contentWrapper).getPropertyValue('margin-left');
if (ml !== '0px') {
(contentDiv as HTMLElement).style.left = ml;
return;
} else {
(contentDiv as HTMLElement).style.left = '32px';
const hyHero = document.querySelectorAll('.hy-hero')[0];
if (hyHero) {
(hyHero as HTMLElement).style.marginLeft = '-32px';
(hyHero as HTMLElement).style.marginRight = '-32px';
}
return;
}
} else {
var pl = window.getComputedStyle(contentWrapper).getPropertyValue('padding-left');
(contentDiv as HTMLElement).style.left = pl;
return;
}
}
}
}
}
@Listen('resize', {target: 'window'})
resizeEventListener(event) {
if (!event) return;
this.setContentDivPosition();
}
const classAttributes = ['hy-hero', `hy-hero--${this.headerstyle}`, `hy-hero--${this.colorVariant}`].join(' ');
const aspectRatioWidth = 8;
const aspectRatioHeight = 5;
const aspect = (aspectRatioHeight / aspectRatioWidth) * 100;
const aspectRatio = {
'--aspectRatio': `${aspect}%` as 'aspectRatio',
};
var variant = CtaLinkButtonVariants.onBlueBkgd;
if (this.colorVariant == HeroColorVariant.black) {
variant = CtaLinkButtonVariants.onBlackBkgd;
} else if (this.colorVariant == HeroColorVariant.white) {
variant = CtaLinkButtonVariants.onTransparentBkgd;
}
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<div>
<div class="hy-hero__desktop-container">
<div class="hy-hero__image-container" style={aspectRatio}>
<img alt={this.scLabel} class="hy-image__image" src={this.image} />
</div>
<div class="hy-hero__content"></div>
<div class="hy-hero__content-wrap-helper">
<div class="hy-hero__content--container">
<div class="hy-hero__title__container">
<hy-heading
class="hy-hero__title"
heading={HeadingVarians.default}
section={HeadingSectionVariants.introduction}
>
{this.heading}
</hy-heading>
</div>
<div class="hy-hero__content--bottom">
{this.description && (
<div class="hy-hero__description__container">
<div class="hy-hero__description">{this.description}</div>
</div>
)}
{this.url && (
<div class="hy-hero__cta-link__container">
<hy-cta-button
link-content={this.urlTitle}
sc-label={this.scLabel}
url={this.url}
is-external="false"
variant={variant}
/>
</div>
)}
</div>