128 lines
2.9 KiB
TypeScript
128 lines
2.9 KiB
TypeScript
|
import { customElement, LitElement, TemplateResult, property, html } from 'lit-element';
|
||
|
import * as domtools from '@designestate/dees-domtools';
|
||
|
|
||
|
@customElement('dees-input-checkbox')
|
||
|
export class DeesInputCheckbox extends LitElement {
|
||
|
public static demo = () => html`<dees-input-checkbox></dees-input-checkbox>`;
|
||
|
|
||
|
@property()
|
||
|
public key: string;
|
||
|
|
||
|
@property()
|
||
|
public label: string = 'Label';
|
||
|
|
||
|
@property()
|
||
|
public value: boolean = false;
|
||
|
|
||
|
public render(): TemplateResult {
|
||
|
return html`
|
||
|
${domtools.elementBasic.styles}
|
||
|
<style>
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
:host {
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
margin: 20px 0px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.maincontainer {
|
||
|
display: grid;
|
||
|
grid-template-columns: 25px auto;
|
||
|
padding: 5px 0px;
|
||
|
color: #ccc;
|
||
|
}
|
||
|
|
||
|
.maincontainer:hover {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
.label {
|
||
|
margin-left: 15px;
|
||
|
line-height: 25px;
|
||
|
font-size: 14px;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
input:focus {
|
||
|
outline: none;
|
||
|
border-bottom: 1px solid #e4002b;
|
||
|
}
|
||
|
|
||
|
.checkbox {
|
||
|
transition: all 0.1s;
|
||
|
box-sizing: border-box;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
height: 24px;
|
||
|
width: 24px;
|
||
|
display: inline-block;
|
||
|
background: #222;
|
||
|
}
|
||
|
|
||
|
.checkbox.selected {
|
||
|
background: #039BE5;
|
||
|
border: 1px solid #039BE5;
|
||
|
}
|
||
|
|
||
|
.checkmark {
|
||
|
display: inline-block;
|
||
|
width: 22px;
|
||
|
height: 22px;
|
||
|
-ms-transform: rotate(45deg); /* IE 9 */
|
||
|
-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
|
||
|
.checkmark_stem {
|
||
|
position: absolute;
|
||
|
width: 3px;
|
||
|
height: 9px;
|
||
|
background-color: #ccc;
|
||
|
left: 11px;
|
||
|
top: 6px;
|
||
|
}
|
||
|
|
||
|
.checkmark_kick {
|
||
|
position: absolute;
|
||
|
width: 3px;
|
||
|
height: 3px;
|
||
|
background-color: #fff;
|
||
|
left: 8px;
|
||
|
top: 12px;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
padding: 4px;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="maincontainer" @click="${this.toggleSelected}">
|
||
|
<div class="checkbox ${this.value ? 'selected' : ''}">
|
||
|
${this.value
|
||
|
? html`
|
||
|
<span class="checkmark">
|
||
|
<div class="checkmark_stem"></div>
|
||
|
<div class="checkmark_kick"></div>
|
||
|
</span>
|
||
|
`
|
||
|
: html``}
|
||
|
</div>
|
||
|
<div class="label">${this.label}</div>
|
||
|
</div>
|
||
|
`;
|
||
|
}
|
||
|
|
||
|
public async toggleSelected() {
|
||
|
this.value = !this.value;
|
||
|
this.dispatchEvent(
|
||
|
new CustomEvent('newValue', {
|
||
|
detail: this.value,
|
||
|
bubbles: true,
|
||
|
})
|
||
|
);
|
||
|
}
|
||
|
}
|