import {LitElement, html, unsafeHTML, range} from './lit-all.min.js'; import * as tfrpc from '/static/tfrpc.js'; class TfJournalEntryElement extends LitElement { static get properties() { return { whoami: {type: String}, key: {type: String}, journals: {type: Object}, text: {type: String}, }; } constructor() { super(); this.journals = {}; this.key = new Date().toISOString().split('T')[0]; } markdown(md) { var reader = new commonmark.Parser({safe: true}); var writer = new commonmark.HtmlRenderer(); var parsed = reader.parse(md || ''); return writer.render(parsed); } on_discard(event) { this.text = undefined; } async on_publish() { console.log('publish', this.text); this.dispatchEvent( new CustomEvent('publish', { bubbles: true, detail: { key: this.shadowRoot.getElementById('date_picker').value, text: this.text, }, }) ); } back_dates(count) { let now = new Date(); let result = []; for (let i = 0; i < count; i++) { let next = new Date(now); next.setDate(now.getDate() - i); result.push(next.toISOString().split('T')[0]); } return result; } on_edit(event) { this.text = event.srcElement.value; } on_date_change(event) { this.key = event.srcElement.value; this.text = this.journals[this.key]?.text; } render() { console.log('RENDER ENTRY', this.key, this.journals?.[this.key]); return html`
${unsafeHTML( this.markdown(this.text ?? this.journals?.[this.key]?.text) )}
`; } } customElements.define('tf-journal-entry', TfJournalEntryElement);