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 new team dashboard stats
- Loading branch information
1 parent
43f7476
commit 46f20bd
Showing
10 changed files
with
158 additions
and
4 deletions.
There are no files selected for viewing
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
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,79 @@ | ||
@use "~@conversionxl/cxl-lumo-styles/scss/mq"; | ||
@use "./mixins"; | ||
|
||
:host { | ||
display: flex; | ||
justify-content: center; | ||
width: 100%; | ||
|
||
.container { | ||
position: relative; | ||
display: flex; | ||
flex-direction: column; | ||
gap: calc(2 * var(--lumo-space-m)); | ||
width: 100%; | ||
max-width: var(--cxl-content-max-width-wide); | ||
padding: var(--lumo-space-m); | ||
background-color: var(--cxl-color-light-gray); | ||
|
||
@include mixins.pesudo-element-full-width(var(--cxl-color-light-gray)); | ||
|
||
@media #{mq.$small} { | ||
padding: var(--lumo-space-xl) 0; | ||
padding-bottom: calc(var(--lumo-space-xl) + var(--lumo-space-l)); | ||
} | ||
|
||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
|
||
.title { | ||
margin-block: 0; | ||
font-weight: 900; | ||
} | ||
|
||
.actions { | ||
display: none; | ||
} | ||
|
||
.team-settings { | ||
--_lumo-button-primary-color: var(--lumo-primary-color); | ||
--_lumo-button-primary-background-color: var(--lumo-tint); | ||
} | ||
|
||
@media #{mq.$small} { | ||
.actions { | ||
display: flex; | ||
} | ||
} | ||
} | ||
|
||
.content { | ||
display: flex; | ||
flex-direction: column-reverse; | ||
justify-content: space-between; | ||
|
||
.progress { | ||
min-width: 320px; | ||
} | ||
|
||
.progress-subtitle { | ||
margin-block: 0; | ||
} | ||
|
||
::slotted(.stats) { | ||
padding: 0; | ||
grid-template-columns: repeat(2, 1fr); | ||
gap: calc(2 * var(--lumo-space-l)); | ||
} | ||
|
||
@media #{mq.$small} { | ||
flex-direction: row; | ||
|
||
::slotted(.stats) { | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
} | ||
} | ||
} | ||
} |
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
44 changes: 44 additions & 0 deletions
44
packages/cxl-ui/src/components/cxl-dashboard-team-stats.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,44 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
import { LitElement, html } from 'lit'; | ||
import { customElement, property } from 'lit/decorators.js'; | ||
import '@vaadin/progress-bar'; | ||
import '@vaadin/button'; | ||
import '@conversionxl/cxl-lumo-styles'; | ||
import CXLDashboardTeamStatsStyles from '../styles/cxl-dashboard-team-stats-css.js'; | ||
|
||
@customElement('cxl-dashboard-team-stats') | ||
export class CxlDashboardTeamStats extends LitElement { | ||
static get styles() { | ||
return [CXLDashboardTeamStatsStyles]; | ||
} | ||
|
||
@property({ type: Number }) progress = 0; | ||
|
||
render() { | ||
return html` | ||
<div class="container"> | ||
<header> | ||
<h1 class="title">Team progress & stats</h1> | ||
<div class="actions"> | ||
<a> | ||
<vaadin-button class="team-settings" theme="primary"> | ||
<vaadin-icon icon="lumo:edit"></vaadin-icon> | ||
Manage team roadmaps | ||
</vaadin-button> | ||
</a> | ||
</div> | ||
</header> | ||
<section class="content"> | ||
<div class="progress"> | ||
<span class="progress-title">Team roadmap progress</span> | ||
<vaadin-progress-bar value="${this.progress}"></vaadin-progress-bar> | ||
<h2 class="progress-subtitle">${100 * this.progress}% complete</h2> | ||
</div> | ||
<div class="stats"> | ||
<slot></slot> | ||
</div> | ||
</section> | ||
</div> | ||
`; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
packages/storybook/cxl-ui/cxl-team-dashboard/cxl-dashboard-team-header.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
15 changes: 15 additions & 0 deletions
15
packages/storybook/cxl-ui/cxl-team-dashboard/cxl-dashboard-team-stats.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 { TeamDashboardStatsTemplate, ArgTypes } from './stats-template'; | ||
|
||
export default { | ||
title: 'CXL UI/cxl-team-dashboard', | ||
}; | ||
|
||
export const CXLDashboardTeamStats = TeamDashboardStatsTemplate.bind({}); | ||
|
||
CXLDashboardTeamStats.argTypes = { | ||
...ArgTypes, | ||
}; | ||
|
||
CXLDashboardTeamStats.args = { | ||
progress: 0.65, | ||
}; |
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
File renamed without changes.
13 changes: 13 additions & 0 deletions
13
packages/storybook/cxl-ui/cxl-team-dashboard/stats-template.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,13 @@ | ||
import { html } from 'lit'; | ||
import '@conversionxl/cxl-ui/src/components/cxl-dashboard-team-stats.js'; | ||
import { CXLStats } from '../cxl-stats/default.stories'; | ||
|
||
export const TeamDashboardStatsTemplate = (args) => html` | ||
<cxl-dashboard-team-stats progress=${args.progress}> | ||
${CXLStats({ statsCount: 3 })} | ||
</cxl-dashboard-team-stats> | ||
`; | ||
|
||
export const ArgTypes = { | ||
progress: { type: Number }, | ||
}; |