Skip to content
Snippets Groups Projects
link-box.tsx 1.71 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {Component, ComponentInterface, Prop, h} from '@stencil/core';
    
    import {LinkBoxVariants} from '../../utils/utils';
    
    
    @Component({
      tag: 'hy-link-box',
      styleUrl: 'link-box.scss',
    
    })
    export class LinkBox implements ComponentInterface {
    
      @Prop() variant: LinkBoxVariants = LinkBoxVariants.default;
    
      @Prop() imageUrl: string = null;
      @Prop() imageAlt: string = null;
      @Prop() textTitle?: string;
      @Prop() textDescription: string = null;
      @Prop() url?: string;
      @Prop() isExternal: boolean = false;
    
    
        const classAttributes = ['hy-link-box', this.variant, this.imageUrl ? 'hy-link-box--with-image' : null].join(' ');
    
        const classTextContainer = ['hy-link-box__text-container', this.imageUrl ? 'hy-link-box--with-image' : null].join(
          ' '
        );
    
        const aspectRatioWidth = 3;
        const aspectRatioHeight = 2;
        const aspect = (aspectRatioHeight / aspectRatioWidth) * 100;
        const aspectRatio = {
          '--aspectRatio': `${aspect}%` as 'aspectRatio'
        };
    
    
    Ekaterina Kondareva's avatar
    Ekaterina Kondareva committed
        return [
    
          <article>
            <a class={classAttributes} href={this.url} target={target}>
              <div class="hy-link-box__image-container" style={aspectRatio}>
                {this.imageUrl && <img aria-hidden="true" src={this.imageUrl} alt={this.imageAlt} />}
              </div>
              <div class={classTextContainer}>
                <h3 class="hy-link-box__text-container__title">{this.textTitle}</h3>
                {this.textDescription && <div class="hy-link-box__text-container__description">{this.textDescription}</div>}
    
              </div>
    
    Ekaterina Kondareva's avatar
    Ekaterina Kondareva committed
          </article>,
          <div class="hy-link-box__link">
            <hy-cta-link url={this.url} />
          </div>
        ];