forked from web-padawan/aybolit
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cxl-ui): add
cxl-course-card
component
- Loading branch information
1 parent
d30c005
commit 3e46d12
Showing
11 changed files
with
471 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,213 @@ | ||
:host { | ||
display: flex; | ||
position: relative; | ||
height: max-content; | ||
min-height: 270px; | ||
font-size: var(--lumo-font-size-s); | ||
padding: var(--lumo-space-m) var(--lumo-space-l); | ||
background: var(--lumo-tint); | ||
border: 1px solid var(--lumo-contrast-10pct); | ||
border-radius: var(--lumo-border-radius-l); | ||
box-shadow: var(--lumo-box-shadow-xs); | ||
break-inside: avoid; | ||
transform: translateZ(0); // CSS columns @see https://stackoverflow.com/a/55110789/35946 | ||
|
||
// These properties are set only in the scope of the cxl-course-card element, | ||
// until it's clear if they are going to be added to the global theme or a | ||
// shared solution comes from other's work on the redesign | ||
--video-background: hsla(355.8, 74.7%, 48%, 0.03); // --lumo-primary-color-2pct | ||
--training-background: hsla(0, 0%, 10%, 0.03); // --lumo-shade-3pct | ||
--playbook-background: hsla(213, 100%, 62%, 0.03); | ||
|
||
} | ||
|
||
:host(:hover) { | ||
border-color: var(--lumo-primary-color); | ||
} | ||
|
||
:host([hidden]) { | ||
display: none; | ||
} | ||
|
||
:host(:first-child) { | ||
margin-top: unset; | ||
} | ||
|
||
:host(:last-child) { | ||
margin-bottom: unset; | ||
} | ||
|
||
:host([theme~="dark"]) { | ||
background-color: var(--lumo-contrast); | ||
} | ||
|
||
:host { | ||
[empty] { | ||
user-select: none; | ||
visibility: hidden; | ||
} | ||
} | ||
|
||
:host([theme~="video"]) { | ||
background-color: var(--video-background); | ||
} | ||
|
||
:host([theme~="training"]) { | ||
background-color: var(--training-background); | ||
} | ||
|
||
:host([theme~="playbook"]) { | ||
background-color: var(--playbook-background); | ||
} | ||
|
||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
gap: var(--lumo-space-s); | ||
} | ||
|
||
header { | ||
display: flex; | ||
align-items: start; | ||
justify-content: space-between; | ||
|
||
gap: var(--lumo-space-m); | ||
|
||
.info { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: flex-start; | ||
gap: var(--lumo-space-xs); | ||
flex: 1 0 0; | ||
align-self: stretch; | ||
max-width: calc(100% - var(--lumo-space-m) - 80px); | ||
overflow: hidden; | ||
|
||
.title { | ||
color: #1A1A1A; | ||
font-size: var(--lumo-font-size-xl); | ||
font-family: Roboto; | ||
font-style: normal; | ||
font-weight: 700; | ||
line-height: var(--lumo-line-height-xs); | ||
} | ||
|
||
.attributes { | ||
display: flex; | ||
padding: var(--lumo-space-s) 0; | ||
align-items: flex-start; | ||
gap: var(--lumo-space-s); | ||
align-self: stretch; | ||
color: var(--lumo-shade-60pct); | ||
} | ||
} | ||
|
||
.instructor-image { | ||
height: 92px; | ||
width: 80px; | ||
|
||
img { | ||
height: 80px; | ||
border-radius: 100px; | ||
overflow: hidden; | ||
} | ||
} | ||
|
||
.tags span { | ||
&:first-child, &.new { | ||
color: var(--lumo-primary-color) | ||
} | ||
|
||
&:first-child { | ||
text-transform: capitalize; | ||
} | ||
} | ||
} | ||
|
||
.tags { | ||
display: flex; | ||
gap: var(--lumo-space-s); | ||
max-width: 100%; | ||
overflow: hidden; | ||
|
||
::slotted(span):not(:first-child) { | ||
overflow: hidden; | ||
text-overflow: ellipsis; | ||
} | ||
} | ||
|
||
.content { | ||
.tags { | ||
::slotted(span) { | ||
font-style: italic; | ||
} | ||
} | ||
} | ||
|
||
footer { | ||
position: relative; | ||
|
||
vaadin-details[theme="reverse"] { | ||
&::part(summary) { | ||
justify-content: flex-start; | ||
gap: var(--lumo-space-s); | ||
font-size: var(--lumo-font-size-s); | ||
} | ||
|
||
&::part(toggle) { | ||
padding: calc(var(--lumo-space-xs) / 4); | ||
margin-left: initial; | ||
font-size: var(--lumo-font-size-m); | ||
transform: rotate(90deg); | ||
} | ||
|
||
&[opened]::part(toggle) { | ||
transform: rotate(-90deg); | ||
} | ||
|
||
&::part(summary-content) { | ||
color: var(--lumo-contrast); | ||
font-weight: bold; | ||
} | ||
|
||
&::part(content) { | ||
padding-bottom: 0; | ||
} | ||
} | ||
|
||
vaadin-button.cta { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
font-weight: bold; | ||
|
||
vaadin-icon { | ||
background: var(--lumo-primary-color-10pct); | ||
border-radius: 100%; | ||
margin-left: var(--lumo-space-xs); | ||
height: var(--lumo-icon-size-s); | ||
width: var(--lumo-icon-size-s); | ||
padding: calc(var(--lumo-space-xs) / 2); | ||
} | ||
} | ||
} | ||
|
||
vaadin-icon.badge-new { | ||
display: none; | ||
} | ||
|
||
:host([new]) { | ||
vaadin-icon.badge-new { | ||
display: block; | ||
position: absolute; | ||
top: calc(-1 * var(--lumo-space-s)); | ||
right: calc(-1 * var(--lumo-space-s)); | ||
height: calc(2 * var(--lumo-space-m)); | ||
width: calc(2 * var(--lumo-space-m)); | ||
background: var(--lumo-primary-color); | ||
padding: 6px; | ||
color: var(--lumo-primary-contrast-color); | ||
border-radius: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import { LitElement, html } from 'lit'; | ||
import { customElement, property, state } from 'lit/decorators.js'; | ||
import '@vaadin/details'; | ||
import '@vaadin/button'; | ||
import cxlCourseCardStyles from '../styles/cxl-course-card-css.js'; | ||
|
||
@customElement('cxl-course-card') | ||
export class CXLCourseCardElement extends LitElement { | ||
static get styles() { | ||
return [cxlCourseCardStyles]; | ||
} | ||
|
||
separator = html`<span> | </span>`; | ||
|
||
@state() _tagsHasChildren = false; | ||
|
||
@state() _moreHasChildren = false; | ||
|
||
@property({ type: String }) id = ''; | ||
|
||
@property({ type: String }) theme = 'course'; | ||
|
||
@property({ type: String }) title = ''; | ||
|
||
@property({ type: String }) time = ''; | ||
|
||
@property({ type: String }) instructor = ''; | ||
|
||
@property({ type: String }) avatar = ''; | ||
|
||
@property({ type: Boolean, reflect: true }) new = false; | ||
|
||
@property({ type: String, attribute: 'cta-label' }) ctaLabel = 'View'; | ||
|
||
@property({ type: Boolean, attribute: 'cta-url' }) ctaUrl = false; | ||
|
||
_slotHasChildren (e) { | ||
const slot = e.target | ||
const { name } = slot | ||
const children = slot.assignedNodes() | ||
this[`_${name}HasChildren`] = !!children.length | ||
} | ||
|
||
render() { | ||
return html` | ||
<div class="container"> | ||
<div> | ||
<header> | ||
<div class="info"> | ||
<div class="tags"> | ||
${this.theme ? html`<span>${this.theme}</span>`: ''} | ||
${this.theme && this._tagsHasChildren ? this.separator : ''} | ||
<slot name="tags" @slotchange=${this._slotHasChildren}></slot> | ||
${this.new ? html`${this.theme ? this.separator : ''}<span class="new">NEW</span>` : '' } | ||
</div> | ||
<div class="title"> | ||
${this.title} | ||
</div> | ||
<div class="attributes"> | ||
<div class="time"> | ||
${this.theme.toLowerCase() === 'course' ? html`<vaadin-icon icon="lumo:clock"></vaadin-icon>` : ''} | ||
${this.time} | ||
</div> | ||
<div class="instructor"> | ||
By: ${this.instructor} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="instructor-image"> | ||
<img | ||
src=${this.avatar} | ||
alt="${this.instructor}" | ||
/> | ||
</div> | ||
</header> | ||
<section class="content"> | ||
<slot name="content"></slot> | ||
<div class="tags"> | ||
<slot name="content-tags"></slot> | ||
</div> | ||
</section> | ||
</div> | ||
<footer> | ||
<vaadin-details theme="reverse" ?empty=${!this._moreHasChildren}> | ||
<div slot="summary">Read more</div> | ||
<slot name="more" @slotchange=${this._slotHasChildren}></slot> | ||
</vaadin-details> | ||
<vaadin-button class="cta" theme="tertiary">${this.ctaLabel} ${this.theme}<vaadin-icon icon="lumo:angle-right"></vaadin-icon> </vaadin-button> | ||
</footer> | ||
<vaadin-icon class="badge-new" icon="cxl:new"></vaadin-icon> | ||
</div> | ||
`; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
packages/storybook/cxl-ui/cxl-course-card/[theme=course].stories.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { CourseCardTemplate, args } from './template.js' | ||
import '@conversionxl/cxl-ui/src/components/cxl-course-card.js'; | ||
import '@conversionxl/cxl-lumo-styles'; | ||
|
||
export default { | ||
title: 'CXL UI/cxl-course-card', | ||
parameters: { | ||
layout: 'centered' | ||
} | ||
}; | ||
|
||
|
||
export const CXLCourseCard = CourseCardTemplate.bind({}); | ||
|
||
CXLCourseCard.args = args; |
23 changes: 23 additions & 0 deletions
23
packages/storybook/cxl-ui/cxl-course-card/[theme=playbook].stories.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { CourseCardTemplate, args } from './template.js' | ||
import '@conversionxl/cxl-ui/src/components/cxl-course-card.js'; | ||
import '@conversionxl/cxl-lumo-styles'; | ||
|
||
export default { | ||
title: 'CXL UI/cxl-course-card', | ||
parameters: { | ||
layout: 'centered' | ||
} | ||
}; | ||
|
||
|
||
export const CXLCourseCardPlaybook = CourseCardTemplate.bind({}); | ||
|
||
CXLCourseCardPlaybook.args = { | ||
...args, | ||
theme: 'playbook', | ||
title: 'The Why’s and How’s of Marketing Attribution', | ||
time: '12 days ago', | ||
description: 'Master the strategies, tactics, metrics, and wisdom you need to become an ABM leader and accelerate the growth of your company and of your career.', | ||
contentTags: [], | ||
tags: ['Growth Marketing'] | ||
}; |
23 changes: 23 additions & 0 deletions
23
packages/storybook/cxl-ui/cxl-course-card/[theme=training].stories.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { CourseCardTemplate, args } from './template.js' | ||
import '@conversionxl/cxl-ui/src/components/cxl-course-card.js'; | ||
import '@conversionxl/cxl-lumo-styles'; | ||
|
||
export default { | ||
title: 'CXL UI/cxl-course-card', | ||
parameters: { | ||
layout: 'centered' | ||
} | ||
}; | ||
|
||
|
||
export const CXLCourseCardTraining = CourseCardTemplate.bind({}); | ||
|
||
CXLCourseCardTraining.args = { | ||
...args, | ||
theme: 'training', | ||
title: 'A/B testing mastery', | ||
description: 'Understand testing approaches that work (and pitfalls that don’t) to get more wins and insights from optimization efforts.', | ||
tags: ['CRO', 'Branding'], | ||
contentTags: [], | ||
more: '' | ||
}; |
Oops, something went wrong.