Cory McWilliams
391da742fd
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4593 ed5197a5-7fde-0310-b194-c3ffbd925b24
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import {LitElement, html} from './lit-all.min.js';
|
|
import * as tfrpc from '/static/tfrpc.js';
|
|
|
|
class TfWikiDocElement extends LitElement {
|
|
static get properties() {
|
|
return {
|
|
whoami: {type: String},
|
|
value: {type: Object},
|
|
blob: {type: String},
|
|
blob_original: {type: String},
|
|
blob_for_value: {type: String},
|
|
};
|
|
}
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
async load_blob() {
|
|
this.blob = await tfrpc.rpc.get_blob(this.value?.blob);
|
|
this.blob_original = this.blob;
|
|
}
|
|
|
|
on_edit(event) {
|
|
this.blob = event.srcElement.value;
|
|
}
|
|
|
|
async publish() {
|
|
let id = await tfrpc.rpc.store_blob(this.blob);
|
|
this.dispatchEvent(new CustomEvent('publish', {
|
|
bubbles: true,
|
|
detail: {
|
|
id: id,
|
|
},
|
|
}));
|
|
}
|
|
|
|
render() {
|
|
let value = JSON.stringify(this.value);
|
|
if (this.blob_for_value != value) {
|
|
this.blob_for_value = value;
|
|
this.blob = undefined;
|
|
this.blob_original = undefined;
|
|
this.load_blob();
|
|
}
|
|
return html`
|
|
<div>WIKI DOC ${this.value.name}</div>
|
|
<pre>${JSON.stringify(this.value, null, 2)}</pre>
|
|
<div>
|
|
<textarea @input=${this.on_edit} .value=${this.blob ?? ''}></textarea>
|
|
<div>${this.blob}</div>
|
|
<button ?disabled=${this.blob == this.blob_original} @click=${this.publish}>Publish</button>
|
|
`;
|
|
}
|
|
}
|
|
|
|
customElements.define('tf-wiki-doc', TfWikiDocElement); |