import {LitElement, html, unsafeHTML} from './lit-all.min.js'; import * as tfrpc from '/static/tfrpc.js'; import * as tfutils from './tf-utils.js'; import {styles} from './tf-styles.js'; class TfProfileElement extends LitElement { static get properties() { return { editing: {type: Object}, whoami: {type: String}, id: {type: String}, users: {type: Object}, size: {type: Number}, server_follows_me: {type: Boolean}, following: {type: Boolean}, blocking: {type: Boolean}, }; } static styles = styles; constructor() { super(); let self = this; this.editing = null; this.whoami = null; this.id = null; this.users = {}; this.size = 0; this.server_follows_me = undefined; } async load() { if (this.whoami !== this._follow_whoami) { this._follow_whoami = this.whoami; this.following = undefined; this.blocking = undefined; let result = await tfrpc.rpc.query( ` SELECT json_extract(content, '$.following') AS following FROM messages WHERE author = ? AND json_extract(content, '$.type') = 'contact' AND json_extract(content, '$.contact') = ? AND following IS NOT NULL ORDER BY sequence DESC LIMIT 1 `, [this.whoami, this.id] ); this.following = result?.[0]?.following ?? false; result = await tfrpc.rpc.query( ` SELECT json_extract(content, '$.blocking') AS blocking FROM messages WHERE author = ? AND json_extract(content, '$.type') = 'contact' AND json_extract(content, '$.contact') = ? AND blocking IS NOT NULL ORDER BY sequence DESC LIMIT 1 `, [this.whoami, this.id] ); this.blocking = result?.[0]?.blocking ?? false; } } async initial_load() { this.server_follows_me = undefined; let server_id = await tfrpc.rpc.getServerIdentity(); let followed = await tfrpc.rpc.query( ` SELECT json_extract(content, '$.following') AS following FROM messages WHERE author = ? AND json_extract(content, '$.type') = 'contact' AND json_extract(content, '$.contact') = ? ORDER BY sequence DESC LIMIT 1 `, [server_id, this.whoami] ); let is_followed = false; for (let row of followed) { is_followed = row.following != 0; } this.server_follows_me = is_followed; } modify(change) { tfrpc.rpc .appendMessage( this.whoami, Object.assign( { type: 'contact', contact: this.id, }, change ) ) .catch(function (error) { alert(error?.message); }); } follow() { this.modify({following: true}); } unfollow() { this.modify({following: false}); } block() { this.modify({blocking: true}); } unblock() { this.modify({blocking: false}); } edit() { let original = this.users[this.id]; this.editing = { name: original.name, description: original.description, image: original.image, publicWebHosting: original.publicWebHosting, }; console.log(this.editing); } save_edits() { let self = this; let message = { type: 'about', about: this.whoami, }; for (let key of Object.keys(this.editing)) { if (this.editing[key] !== this.users[this.id][key]) { message[key] = this.editing[key]; } } tfrpc.rpc .appendMessage(this.whoami, message) .then(function () { self.editing = null; }) .catch(function (error) { alert(error?.message); }); } discard_edits() { this.editing = null; } attach_image() { let self = this; let input = document.createElement('input'); input.type = 'file'; input.onchange = function (event) { let file = event.target.files[0]; file .arrayBuffer() .then(function (buffer) { let bin = Array.from(new Uint8Array(buffer)); return tfrpc.rpc.store_blob(bin); }) .then(function (id) { self.editing = Object.assign({}, self.editing, {image: id}); console.log(self.editing); }) .catch(function (e) { alert(e.message); }); }; input.click(); } async server_follow_me(follow) { try { await tfrpc.rpc.setServerFollowingMe(this.whoami, follow); } catch (e) { console.log(e); } try { await this.initial_load(); } catch (e) { console.log(e); } } copy_id() { navigator.clipboard.writeText(this.id); } render() { if ( this.id == this.whoami && this.editing && this.server_follows_me === undefined ) { this.initial_load(); } this.load(); let self = this; let profile = this.users[this.id] || {}; tfrpc.rpc .query( `SELECT SUM(LENGTH(content)) AS size FROM messages WHERE author = ?`, [this.id] ) .then(function (result) { self.size = result[0].size; }); let edit; let follow; let block; if (this.id === this.whoami) { if (this.editing) { let server_follow; if (this.server_follows_me === true) { server_follow = html``; } else if (this.server_follows_me === false) { server_follow = html``; } edit = html` ${server_follow} `; } else { edit = html``; } } if (this.id !== this.whoami && this.following !== undefined) { follow = this.following ? html`` : html``; } if (this.id !== this.whoami && this.blocking !== undefined) { block = this.blocking ? html`` : html``; } let edit_profile = this.editing ? html`
(this.editing = Object.assign({}, this.editing, {name: event.srcElement.value}))}>
(self.editing = Object.assign({}, self.editing, {publicWebHosting: event.srcElement.checked}))}>
` : null; let image = typeof profile.image == 'string' ? profile.image : profile.image?.link; image = this.editing?.image ?? image; let description = this.editing?.description ?? profile.description; return html`
(${tfutils.human_readable_size(this.size)})
${edit_profile}
${unsafeHTML(tfutils.markdown(description))}
Following ${profile.following} identities. Followed by ${profile.followed} identities. Blocking ${profile.blocking} identities. Blocked by ${profile.blocked} identities.
${edit} ${follow} ${block}
`; } } customElements.define('tf-profile', TfProfileElement);