Last active
February 22, 2023 13:02
-
-
Save andyjessop/d5fca09247cd7f1940aad62d83e5dcae to your computer and use it in GitHub Desktop.
Definition and usage of a custom element that creates equal spaces between child elements
This file contains hidden or 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
cx-space { | |
--cx-space-gap-small: 2rem; | |
--cx-space-gap-default: 2.5rem; | |
--cx-space-gap-large: 5rem; | |
} |
This file contains hidden or 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
import { LitElement, css, html } from 'lit'; | |
import { property } from 'lit/decorators.js'; | |
import { cx } from '@crux/utils'; | |
export class CruxSpaced extends LitElement { | |
@property({ type: String }) | |
size: string = 'default'; | |
@property({ type: Boolean }) | |
vertical: boolean = false; | |
static styles = css` | |
.space { | |
display: inline-flex; | |
flex-direction: row; | |
align-items: center; | |
gap: var(--cx-space-gap-default, 1rem); | |
} | |
.space.small { | |
gap: var(--cx-space-gap-small, 0.5rem); | |
} | |
.space.large { | |
gap: var(--cx-space-gap-large, 2rem); | |
} | |
.space.vertical { | |
flex-direction: column; | |
} | |
`; | |
render() { | |
const className = cx( | |
'space', | |
this.size, | |
this.vertical ? 'vertical' : '', | |
); | |
return html` | |
<div class=${className}> | |
<slot></slot> | |
</div> | |
`; | |
} | |
} | |
customElements.define('cx-spaced', CruxSpaced); | |
declare global { | |
interface HTMLElementTagNameMap { | |
'cx-spaced': CruxSpaced; | |
} | |
} |
This file contains hidden or 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
import { html, render } from 'lit'; | |
import './cx-spaced'; | |
import './customisation.css'; | |
const root = document.getElementById('root'); | |
render(template(), root); | |
export function template() { | |
return html` | |
<cx-space> | |
<span>1</span> | |
<span>2</span> | |
</cx-space> | |
<cx-space size="large" vertical> | |
<span>1</span> | |
<span>2</span> | |
</cx-space> | |
<cx-space vertical> | |
<span>1</span> | |
<span>2</span> | |
</cx-space> | |
`; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment