2022-09-11 13:42:41 -04:00
|
|
|
import {LitElement, html, css, guard, until} from './lit-all.min.js';
|
2022-09-06 19:26:43 -04:00
|
|
|
import * as tfrpc from '/static/tfrpc.js';
|
2022-09-09 22:56:15 -04:00
|
|
|
import {styles} from './tf-styles.js';
|
2022-09-06 19:26:43 -04:00
|
|
|
|
|
|
|
class TfElement extends LitElement {
|
|
|
|
static get properties() {
|
|
|
|
return {
|
|
|
|
whoami: {type: String},
|
|
|
|
hash: {type: String},
|
|
|
|
unread: {type: Array},
|
2022-09-09 22:56:15 -04:00
|
|
|
tab: {type: String},
|
|
|
|
broadcasts: {type: Array},
|
|
|
|
connections: {type: Array},
|
2022-09-14 19:33:57 -04:00
|
|
|
loading: {type: Boolean},
|
|
|
|
loaded: {type: Boolean},
|
|
|
|
following: {type: Array},
|
|
|
|
users: {type: Object},
|
2022-11-09 19:03:39 -05:00
|
|
|
ids: {type: Array},
|
2023-06-21 20:27:27 -04:00
|
|
|
tags: {type: Array},
|
2022-09-06 19:26:43 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-09-09 22:56:15 -04:00
|
|
|
static styles = styles;
|
|
|
|
|
2022-09-06 19:26:43 -04:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
let self = this;
|
|
|
|
this.hash = '#';
|
|
|
|
this.unread = [];
|
2022-09-09 22:56:15 -04:00
|
|
|
this.tab = 'news';
|
|
|
|
this.broadcasts = [];
|
|
|
|
this.connections = [];
|
2022-09-14 19:33:57 -04:00
|
|
|
this.following = [];
|
|
|
|
this.users = {};
|
|
|
|
this.loaded = false;
|
2023-06-21 20:27:27 -04:00
|
|
|
this.tags = [];
|
2023-03-29 18:02:12 -04:00
|
|
|
tfrpc.rpc.getBroadcasts().then(b => { self.broadcasts = b || []; });
|
|
|
|
tfrpc.rpc.getConnections().then(c => { self.connections = c || []; });
|
2022-09-14 20:16:37 -04:00
|
|
|
tfrpc.rpc.getHash().then(hash => self.set_hash(hash));
|
2022-09-06 19:26:43 -04:00
|
|
|
tfrpc.register(function hashChanged(hash) {
|
2022-09-14 20:16:37 -04:00
|
|
|
self.set_hash(hash);
|
2022-09-06 19:26:43 -04:00
|
|
|
});
|
|
|
|
tfrpc.register(async function notifyNewMessage(id) {
|
|
|
|
await self.fetch_new_message(id);
|
|
|
|
});
|
2022-09-09 22:56:15 -04:00
|
|
|
tfrpc.register(function set(name, value) {
|
|
|
|
if (name === 'broadcasts') {
|
|
|
|
self.broadcasts = value;
|
|
|
|
} else if (name === 'connections') {
|
|
|
|
self.connections = value;
|
|
|
|
}
|
|
|
|
});
|
2022-11-16 19:30:58 -05:00
|
|
|
this.initial_load();
|
|
|
|
}
|
|
|
|
|
|
|
|
async initial_load() {
|
|
|
|
let whoami = await tfrpc.rpc.localStorageGet('whoami');
|
|
|
|
let ids = (await tfrpc.rpc.getIdentities()) || [];
|
|
|
|
this.whoami = whoami ?? (ids.length ? ids[0] : undefined);
|
|
|
|
this.ids = ids;
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
2022-09-14 20:16:37 -04:00
|
|
|
set_hash(hash) {
|
|
|
|
this.hash = hash || '#';
|
|
|
|
if (this.hash.startsWith('#q=')) {
|
|
|
|
this.tab = 'search';
|
2022-09-25 08:33:54 -04:00
|
|
|
} else if (this.hash === '#connections') {
|
|
|
|
this.tab = 'connections';
|
2023-06-14 18:51:58 -04:00
|
|
|
} else if (this.hash === '#mentions') {
|
|
|
|
this.tab = 'mentions';
|
2022-09-14 20:16:37 -04:00
|
|
|
} else {
|
|
|
|
this.tab = 'news';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-06 19:26:43 -04:00
|
|
|
async contacts_internal(id, last_row_id, following, max_row_id) {
|
|
|
|
let result = Object.assign({}, following[id] || {});
|
|
|
|
result.following = result.following || {};
|
|
|
|
result.blocking = result.blocking || {};
|
|
|
|
let contacts = await tfrpc.rpc.query(
|
|
|
|
`
|
|
|
|
SELECT content FROM messages
|
|
|
|
WHERE author = ? AND
|
|
|
|
rowid > ? AND
|
|
|
|
rowid <= ? AND
|
2023-03-21 19:08:04 -04:00
|
|
|
json_extract(content, '$.type') = 'contact'
|
2022-09-06 19:26:43 -04:00
|
|
|
ORDER BY sequence
|
|
|
|
`,
|
|
|
|
[id, last_row_id, max_row_id]);
|
|
|
|
for (let row of contacts) {
|
|
|
|
let contact = JSON.parse(row.content);
|
|
|
|
if (contact.following === true) {
|
|
|
|
result.following[contact.contact] = true;
|
|
|
|
} else if (contact.following === false) {
|
|
|
|
delete result.following[contact.contact];
|
|
|
|
} else if (contact.blocking === true) {
|
|
|
|
result.blocking[contact.contact] = true;
|
|
|
|
} else if (contact.blocking === false) {
|
|
|
|
delete result.blocking[contact.contact];
|
|
|
|
}
|
|
|
|
}
|
2022-09-14 19:33:57 -04:00
|
|
|
following[id] = result;
|
2022-09-06 19:26:43 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-09-14 19:33:57 -04:00
|
|
|
async contact(id, last_row_id, following, max_row_id) {
|
|
|
|
return await this.contacts_internal(id, last_row_id, following, max_row_id);
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
2022-09-14 19:33:57 -04:00
|
|
|
async following_deep_internal(ids, depth, blocking, last_row_id, following, max_row_id) {
|
|
|
|
let contacts = await Promise.all([...new Set(ids)].map(x => this.contact(x, last_row_id, following, max_row_id)));
|
2022-09-06 19:26:43 -04:00
|
|
|
let result = {};
|
|
|
|
for (let i = 0; i < ids.length; i++) {
|
|
|
|
let id = ids[i];
|
|
|
|
let contact = contacts[i];
|
2023-01-21 14:30:00 -05:00
|
|
|
let all_blocking = Object.assign({}, contact.blocking, blocking);
|
|
|
|
let found = Object.keys(contact.following).filter(y => !all_blocking[y]);
|
|
|
|
let deeper = depth > 1 ? await this.following_deep_internal(found, depth - 1, all_blocking, last_row_id, following, max_row_id) : [];
|
2022-09-06 19:26:43 -04:00
|
|
|
result[id] = [id, ...found, ...deeper];
|
|
|
|
}
|
|
|
|
return [...new Set(Object.values(result).flat())];
|
|
|
|
}
|
|
|
|
|
|
|
|
async following_deep(ids, depth, blocking) {
|
2022-09-14 19:33:57 -04:00
|
|
|
const k_cache_version = 5;
|
2022-09-06 19:26:43 -04:00
|
|
|
let cache = await tfrpc.rpc.databaseGet('following');
|
|
|
|
cache = cache ? JSON.parse(cache) : {};
|
|
|
|
if (cache.version !== k_cache_version) {
|
|
|
|
cache = {
|
|
|
|
version: k_cache_version,
|
|
|
|
following: {},
|
|
|
|
last_row_id: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let max_row_id = (await tfrpc.rpc.query(`
|
|
|
|
SELECT MAX(rowid) AS max_row_id FROM messages
|
|
|
|
`, []))[0].max_row_id;
|
2022-09-14 19:33:57 -04:00
|
|
|
let result = await this.following_deep_internal(ids, depth, blocking, cache.last_row_id, cache.following, max_row_id);
|
2022-09-06 19:26:43 -04:00
|
|
|
cache.last_row_id = max_row_id;
|
2023-02-22 20:29:54 -05:00
|
|
|
let store = JSON.stringify(cache);
|
|
|
|
/* 2023-02-20: Exceeding message size. */
|
2023-03-19 19:31:08 -04:00
|
|
|
//if (store.length < 512 * 1024) {
|
2023-02-22 20:29:54 -05:00
|
|
|
await tfrpc.rpc.databaseSet('following', store);
|
2023-03-19 19:31:08 -04:00
|
|
|
//}
|
2022-09-14 19:33:57 -04:00
|
|
|
return [result, cache.following];
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
2022-09-11 13:42:41 -04:00
|
|
|
async fetch_about(ids, users) {
|
2022-09-06 19:26:43 -04:00
|
|
|
const k_cache_version = 1;
|
|
|
|
let cache = await tfrpc.rpc.databaseGet('about');
|
|
|
|
cache = cache ? JSON.parse(cache) : {};
|
|
|
|
if (cache.version !== k_cache_version) {
|
|
|
|
cache = {
|
|
|
|
version: k_cache_version,
|
|
|
|
about: {},
|
|
|
|
last_row_id: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let max_row_id = (await tfrpc.rpc.query(`
|
|
|
|
SELECT MAX(rowid) AS max_row_id FROM messages
|
|
|
|
`, []))[0].max_row_id;
|
|
|
|
for (let id of Object.keys(cache.about)) {
|
|
|
|
if (ids.indexOf(id) == -1) {
|
|
|
|
delete cache.about[id];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let abouts = await tfrpc.rpc.query(
|
|
|
|
`
|
|
|
|
SELECT
|
|
|
|
messages.*
|
|
|
|
FROM
|
|
|
|
messages,
|
|
|
|
json_each(?1) AS following
|
|
|
|
WHERE
|
|
|
|
messages.author = following.value AND
|
|
|
|
messages.rowid > ?3 AND
|
|
|
|
messages.rowid <= ?4 AND
|
|
|
|
json_extract(messages.content, '$.type') = 'about'
|
|
|
|
UNION
|
|
|
|
SELECT
|
|
|
|
messages.*
|
|
|
|
FROM
|
|
|
|
messages,
|
|
|
|
json_each(?2) AS following
|
|
|
|
WHERE
|
|
|
|
messages.author = following.value AND
|
|
|
|
messages.rowid <= ?4 AND
|
|
|
|
json_extract(messages.content, '$.type') = 'about'
|
|
|
|
ORDER BY messages.author, messages.sequence
|
|
|
|
`,
|
|
|
|
[
|
|
|
|
JSON.stringify(ids.filter(id => cache.about[id])),
|
|
|
|
JSON.stringify(ids.filter(id => !cache.about[id])),
|
|
|
|
cache.last_row_id,
|
|
|
|
max_row_id,
|
|
|
|
]);
|
|
|
|
for (let about of abouts) {
|
|
|
|
let content = JSON.parse(about.content);
|
|
|
|
if (content.about === about.author) {
|
|
|
|
delete content.type;
|
|
|
|
delete content.about;
|
|
|
|
cache.about[about.author] = Object.assign(cache.about[about.author] || {}, content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cache.last_row_id = max_row_id;
|
|
|
|
await tfrpc.rpc.databaseSet('about', JSON.stringify(cache));
|
2022-09-11 13:42:41 -04:00
|
|
|
users = users || {};
|
2022-09-06 19:26:43 -04:00
|
|
|
for (let id of Object.keys(cache.about)) {
|
|
|
|
users[id] = Object.assign(users[id] || {}, cache.about[id]);
|
|
|
|
}
|
2022-09-11 13:42:41 -04:00
|
|
|
return Object.assign({}, users);
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async fetch_new_message(id) {
|
|
|
|
let messages = await tfrpc.rpc.query(
|
|
|
|
`
|
|
|
|
SELECT messages.*
|
|
|
|
FROM messages
|
|
|
|
JOIN json_each(?) AS following ON messages.author = following.value
|
|
|
|
WHERE messages.id = ?
|
|
|
|
`,
|
|
|
|
[
|
2022-09-14 19:33:57 -04:00
|
|
|
JSON.stringify(this.following),
|
2022-09-06 19:26:43 -04:00
|
|
|
id,
|
|
|
|
]);
|
2022-09-14 19:33:57 -04:00
|
|
|
if (messages && messages.length) {
|
|
|
|
this.unread = [...this.unread, ...messages];
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 19:30:58 -05:00
|
|
|
async _handle_whoami_changed(event) {
|
|
|
|
let old_id = this.whoami;
|
|
|
|
let new_id = event.srcElement.selected;
|
|
|
|
console.log('received', new_id);
|
|
|
|
if (this.whoami !== new_id) {
|
|
|
|
console.log(event);
|
|
|
|
this.whoami = new_id;
|
|
|
|
console.log(`whoami ${old_id} => ${new_id}`);
|
|
|
|
await tfrpc.rpc.localStorageSet('whoami', new_id);
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-11 13:42:41 -04:00
|
|
|
async create_identity() {
|
|
|
|
if (confirm("Are you sure you want to create a new identity?")) {
|
|
|
|
await tfrpc.rpc.createIdentity();
|
2022-11-09 19:03:39 -05:00
|
|
|
this.ids = (await tfrpc.rpc.getIdentities()) || [];
|
2023-08-02 20:30:48 -04:00
|
|
|
if (this.ids && !this.whoami) {
|
|
|
|
this.whoami = this.ids[0];
|
|
|
|
}
|
2022-09-09 22:56:15 -04:00
|
|
|
}
|
2022-09-06 19:26:43 -04:00
|
|
|
}
|
|
|
|
|
2022-11-16 19:30:58 -05:00
|
|
|
render_id_picker() {
|
2022-09-11 13:42:41 -04:00
|
|
|
return html`
|
2022-11-09 19:03:39 -05:00
|
|
|
<tf-id-picker id="picker" selected=${this.whoami} .ids=${this.ids} @change=${this._handle_whoami_changed}></tf-id-picker>
|
2023-08-02 20:30:48 -04:00
|
|
|
<button @click=${this.create_identity} id="create_identity">Create Identity</button>
|
2022-09-11 13:42:41 -04:00
|
|
|
`;
|
2022-09-10 14:23:58 -04:00
|
|
|
}
|
|
|
|
|
2023-06-21 20:27:27 -04:00
|
|
|
async load_recent_tags() {
|
2023-07-05 20:37:16 -04:00
|
|
|
let start = new Date();
|
2023-06-21 20:27:27 -04:00
|
|
|
this.tags = await tfrpc.rpc.query(`
|
2023-07-05 20:37:16 -04:00
|
|
|
WITH
|
2023-07-16 19:41:41 -04:00
|
|
|
recent AS (SELECT id, content FROM messages
|
2023-07-05 20:37:16 -04:00
|
|
|
WHERE messages.timestamp > ? AND json_extract(content, '$.type') = 'post'
|
|
|
|
ORDER BY timestamp DESC LIMIT 1024),
|
2023-07-16 19:41:41 -04:00
|
|
|
recent_channels AS (SELECT recent.id, '#' || json_extract(content, '$.channel') AS tag
|
2023-07-05 20:37:16 -04:00
|
|
|
FROM recent
|
|
|
|
WHERE json_extract(content, '$.channel') IS NOT NULL),
|
2023-07-16 19:41:41 -04:00
|
|
|
recent_mentions AS (SELECT recent.id, json_extract(mention.value, '$.link') AS tag
|
2023-07-05 20:37:16 -04:00
|
|
|
FROM recent, json_each(recent.content, '$.mentions') AS mention
|
|
|
|
WHERE json_valid(mention.value) AND tag LIKE '#%'),
|
2023-07-26 19:56:40 -04:00
|
|
|
combined AS (SELECT id, tag FROM recent_channels UNION ALL SELECT id, tag FROM recent_mentions),
|
|
|
|
by_message AS (SELECT DISTINCT id, tag FROM combined)
|
|
|
|
SELECT tag, COUNT(*) AS count FROM by_message GROUP BY tag ORDER BY count DESC LIMIT 10
|
2023-07-05 20:37:16 -04:00
|
|
|
`, [new Date() - 7 * 24 * 60 * 60 * 1000]);
|
|
|
|
console.log('tags took', (new Date() - start) / 1000.0, 'seconds');
|
2023-06-21 20:27:27 -04:00
|
|
|
}
|
|
|
|
|
2022-09-14 19:33:57 -04:00
|
|
|
async load() {
|
|
|
|
let whoami = this.whoami;
|
2023-06-21 20:27:27 -04:00
|
|
|
let tags = this.load_recent_tags();
|
2022-09-14 19:33:57 -04:00
|
|
|
let [following, users] = await this.following_deep([whoami], 2, {});
|
|
|
|
users = await this.fetch_about(following.sort(), users);
|
|
|
|
this.following = following;
|
|
|
|
this.users = users;
|
2023-06-21 20:27:27 -04:00
|
|
|
await tags;
|
2022-11-16 19:30:58 -05:00
|
|
|
console.log(`load finished ${whoami} => ${this.whoami}`);
|
2022-09-14 19:33:57 -04:00
|
|
|
this.whoami = whoami;
|
|
|
|
this.loaded = whoami;
|
|
|
|
}
|
|
|
|
|
|
|
|
render_tab() {
|
|
|
|
let following = this.following;
|
|
|
|
let users = this.users;
|
2022-09-11 13:42:41 -04:00
|
|
|
if (this.tab === 'news') {
|
|
|
|
return html`
|
2023-08-02 20:30:48 -04:00
|
|
|
<tf-tab-news id="tf-tab-news" .following=${this.following} whoami=${this.whoami} .users=${this.users} hash=${this.hash} .unread=${this.unread} @refresh=${() => this.unread = []}></tf-tab-news>
|
2022-09-11 13:42:41 -04:00
|
|
|
`;
|
|
|
|
} else if (this.tab === 'connections') {
|
|
|
|
return html`
|
2022-09-14 19:33:57 -04:00
|
|
|
<tf-tab-connections .users=${this.users} .connections=${this.connections} .broadcasts=${this.broadcasts}></tf-tab-connections>
|
2022-09-11 13:42:41 -04:00
|
|
|
`;
|
2023-06-14 18:51:58 -04:00
|
|
|
} else if (this.tab === 'mentions') {
|
|
|
|
return html`
|
|
|
|
<tf-tab-mentions .following=${this.following} whoami=${this.whoami} .users=${this.users}}></tf-tab-mentions>
|
|
|
|
`;
|
2022-09-11 13:42:41 -04:00
|
|
|
} else if (this.tab === 'search') {
|
|
|
|
return html`
|
2022-09-14 20:16:37 -04:00
|
|
|
<tf-tab-search .following=${this.following} whoami=${this.whoami} .users=${this.users} query=${this.hash?.startsWith('#q=') ? decodeURIComponent(this.hash.substring(3)) : null}></tf-tab-search>
|
2022-09-11 13:42:41 -04:00
|
|
|
`;
|
2022-09-10 14:23:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-25 08:33:54 -04:00
|
|
|
async set_tab(tab) {
|
|
|
|
this.tab = tab;
|
|
|
|
if (tab === 'news') {
|
|
|
|
await tfrpc.rpc.setHash('#');
|
|
|
|
} else if (tab === 'connections') {
|
|
|
|
await tfrpc.rpc.setHash('#connections');
|
2023-06-14 18:51:58 -04:00
|
|
|
} else if (tab === 'mentions') {
|
|
|
|
await tfrpc.rpc.setHash('#mentions');
|
2022-09-25 08:33:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-06 19:26:43 -04:00
|
|
|
render() {
|
2022-09-09 22:56:15 -04:00
|
|
|
let self = this;
|
2022-09-14 19:33:57 -04:00
|
|
|
|
|
|
|
if (!this.loading && this.whoami && this.loaded !== this.whoami) {
|
|
|
|
this.loading = true;
|
|
|
|
this.load().finally(function() {
|
|
|
|
self.loading = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-09-09 22:56:15 -04:00
|
|
|
let tabs = html`
|
|
|
|
<div>
|
2022-11-16 19:56:09 -05:00
|
|
|
<input type="button" class="tab" value="News" ?disabled=${self.tab == 'news'} @click=${() => self.set_tab('news')}></input>
|
|
|
|
<input type="button" class="tab" value="Connections" ?disabled=${self.tab == 'connections'} @click=${() => self.set_tab('connections')}></input>
|
2023-06-14 18:51:58 -04:00
|
|
|
<input type="button" class="tab" value="Mentions" ?disabled=${self.tab == 'mentions'} @click=${() => self.set_tab('mentions')}></input>
|
2022-11-16 19:56:09 -05:00
|
|
|
<input type="button" class="tab" value="Search" ?disabled=${self.tab == 'search'} @click=${() => self.set_tab('search')}></input>
|
2022-09-09 22:56:15 -04:00
|
|
|
</div>
|
|
|
|
`;
|
2022-10-15 09:39:45 -04:00
|
|
|
let contents =
|
|
|
|
!this.loaded ?
|
|
|
|
this.loading ?
|
|
|
|
html`<div>Loading...</div>` :
|
2022-11-16 19:35:25 -05:00
|
|
|
html`<div>Select or create an identity.</div>` :
|
2022-10-15 09:39:45 -04:00
|
|
|
this.render_tab();
|
2022-09-11 13:42:41 -04:00
|
|
|
return html`
|
2022-11-16 19:30:58 -05:00
|
|
|
${this.render_id_picker()}
|
2022-09-11 13:42:41 -04:00
|
|
|
${tabs}
|
2023-06-21 20:27:27 -04:00
|
|
|
${this.tags.map(x => html`<tf-tag tag=${x.tag} count=${x.count}></tf-tag>`)}
|
2022-09-14 19:33:57 -04:00
|
|
|
${contents}
|
2022-09-06 19:26:43 -04:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-02 20:30:48 -04:00
|
|
|
customElements.define('tf-app', TfElement);
|