mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
refactor(editor): extract common components (#9282)
This commit is contained in:
89
blocksuite/affine/components/src/toggle-switch/index.ts
Normal file
89
blocksuite/affine/components/src/toggle-switch/index.ts
Normal file
@@ -0,0 +1,89 @@
|
||||
import { css, html, LitElement } from 'lit';
|
||||
import { property } from 'lit/decorators.js';
|
||||
|
||||
const styles = css`
|
||||
:host {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.switch {
|
||||
height: 0;
|
||||
width: 0;
|
||||
visibility: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
cursor: pointer;
|
||||
text-indent: -9999px;
|
||||
width: 38px;
|
||||
height: 20px;
|
||||
background: var(--affine-icon-color);
|
||||
border: 1px solid var(--affine-black-10);
|
||||
display: block;
|
||||
border-radius: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
label:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
left: 1px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
background: var(--affine-white);
|
||||
border: 1px solid var(--affine-black-10);
|
||||
border-radius: 16px;
|
||||
transition: 0.1s;
|
||||
}
|
||||
|
||||
label.on {
|
||||
background: var(--affine-primary-color);
|
||||
}
|
||||
|
||||
label.on:after {
|
||||
left: calc(100% - 1px);
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
label:active:after {
|
||||
width: 24px;
|
||||
}
|
||||
`;
|
||||
|
||||
export class ToggleSwitch extends LitElement {
|
||||
static override styles = styles;
|
||||
|
||||
private _toggleSwitch() {
|
||||
this.on = !this.on;
|
||||
if (this.onChange) {
|
||||
this.onChange(this.on);
|
||||
}
|
||||
}
|
||||
|
||||
override render() {
|
||||
return html`
|
||||
<label class=${this.on ? 'on' : ''}>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="switch"
|
||||
?checked=${this.on}
|
||||
@change=${this._toggleSwitch}
|
||||
/>
|
||||
</label>
|
||||
`;
|
||||
}
|
||||
|
||||
@property({ attribute: false })
|
||||
accessor on = false;
|
||||
|
||||
@property({ attribute: false })
|
||||
accessor onChange: ((on: boolean) => void) | undefined = undefined;
|
||||
}
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
'toggle-switch': ToggleSwitch;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user