peertube-plugin-livechat/client/common/configuration/elements/configuration-row.ts

26 lines
683 B
TypeScript
Raw Normal View History

2024-05-23 15:09:58 +00:00
import { html } from 'lit'
2024-05-23 13:52:12 +00:00
import { customElement, property } from 'lit/decorators.js'
2024-05-23 15:09:58 +00:00
import { LivechatElement } from '../../lib/elements/livechat'
2024-05-23 13:52:12 +00:00
@customElement('livechat-configuration-row')
2024-05-23 15:09:58 +00:00
export class ConfigurationRowElement extends LivechatElement {
2024-05-23 13:52:12 +00:00
@property({ attribute: false })
public title: string = `title`
@property({ attribute: false })
public description: string = `Here's a description`
@property({ attribute: false })
public helpPage: string = 'documentation'
render() {
return html`
<h2>${this.title}</h2>
<p>${this.description}</p>
<livechat-help-button .page=${this.helpPage}>
</livechat-help-button>
`
}
}