Skip to content

Instantly share code, notes, and snippets.

@ErikHellman
Last active May 18, 2023 13:57
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ErikHellman/9e17f2ea6a78669294ef2af4bc3f5878 to your computer and use it in GitHub Desktop.
Save ErikHellman/9e17f2ea6a78669294ef2af4bc3f5878 to your computer and use it in GitHub Desktop.
Basic dialog example with LitElement
import { LitElement, html } from '@polymer/lit-element'
import { classMap } from 'lit-html/directives/classMap'
class MyDialog extends LitElement {
constructor () {
super()
this.opened = false
}
static get properties () {
return {
opened: {type: Boolean}
}
}
render () {
return html`
<style>
.opened {
display: flex;
}
.closed {
display: none;
}
.dialog {
flex-direction: column;
border: 2px outset black;
padding: 1em;
margin: 1em;
}
.buttons {
display: flex;
flex-direction: row;
}
.accept {
justify-content: space-around;
align-content: space-around;
}
.cancel {
justify-content: space-around;
align-content: space-around;
}
</style>
<div class="${classMap({dialog: true, opened: !this.opened, closed: this.opened})}">
<h1 class="title ">Title</h1>
<p class="content">This is a dialog</p>
<div class="buttons">
<button class="accept" @click="${() => this.dispatchEvent(new CustomEvent('dialog.accept'))}">Ok</button>
<button class="cancel" @click="${() => this.dispatchEvent(new CustomEvent('dialog.cancel'))}">Cancel</button>
</div>
</div>`
}
}
customElements.define('my-dialog', MyDialog)
class MyApp extends LitElement {
constructor () {
super()
this.dialogVisible = false
}
static get properties () {
return {
dialogVisible: {type: Boolean}
}
}
render () {
console.log('Dialog visible:', this.dialogVisible)
return html`
<div>
<button @click="${this.toggleDialog.bind(this)}">Toggle dialog</button>
<my-dialog ?opened="${this.dialogVisible}"
@dialog.accept="${this.closeDialog.bind(this)}"
@dialog.cancel="${this.closeDialog.bind(this)}"></my-dialog>
</div>`
}
toggleDialog (e) {
this.dialogVisible = !this.dialogVisible
console.log(this.dialogVisible)
}
closeDialog (e) {
console.log(e)
this.dialogVisible = false
}
}
customElements.define('my-app', MyApp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment