all repos — underbbs @ 67ec0e18093f5b7f90f32e0a09907f5e6a1cc60a

decentralized social media client

frontend/ts/thread-summary-element.ts (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import util from "./util"
import { Message, Author } from "./message"
import { AdapterState } from "./adapter"

export class ThreadSummaryElement extends HTMLElement {
  static observedAttributes = [ "data-msg", "data-len", "data-author", "data-created", "data-latest", "data-new" ];
  
  private _len: number = 0;;
  private _msg: Message | null = null;;
  private _author: Author | null = null;
  private _adapter: string = "";
  private _created: number = 0;
  private _latest: number = 0;
  private _new: boolean = false;
  
  constructor() {
    super();
        this.innerHTML = "<div class='thread_summary'><div class='thread_author'></div><div class='thread_text'></div><div class='thread_metadata'></div></div>"
    
    // adapter shouldn't change, just set it here
    this._adapter = this.getAttribute("data-adapter") ?? "";
    this.addEventListener("click", this.viewThread(this), false);
  }
  
  connectedCallback() {

  }
  
  attributeChangedCallback(attr: string, prev: string, next: string) {

    const datastore = AdapterState._instance.data.get(this._adapter);
    if (!datastore) {
      return;
    }
    let metadataChanged = false;
    
    switch (attr) {
      case "data-msg":
        if (next && next != prev) {
          this._msg = datastore.messages.get(next) || null;
          if (this._msg) {
            // TODO: use attachment alttext or fallback text if no msg content
            // TODO: handle boosts, quotes properly
            
            const threadText = this.querySelector(".thread_text");
            if (threadText) {
              threadText.innerHTML = this._msg.content;
            }
            this.setAttribute("data-author", this._msg.author);
          }
        }
        break;
      case "data-author":
        if (next) {
          let authorData= datastore.profileCache.get(next);
          if (!authorData) {
            util.authorizedFetch(
              "GET", 
              `/api/adapters/${this._adapter}/fetch?entity_type=author&entity_id=${next}`, 
              null);
            this._author = <Author>{id: next};
            const threadAuthor = this.querySelector(".thread_author");
            if (threadAuthor) {
              threadAuthor.innerHTML = `<a id="thread_${this._adapter}_${(this._msg ? this._msg.id : 0)}_${this._author.id}" href="#author?id=${this._author.id}">${this._author.id}</a>`;
            }
          } else {
            this._author = authorData;
            const threadAuthor = this.querySelector(".thread_author");
            if (threadAuthor) {
              threadAuthor.innerHTML = `<img src="${this._author.profilePic}" alt="${this._author.id}"/> <a id="thread_${this._adapter}_${(this._msg ? this._msg.id : 0)}_${this._author.id}" href="#author?id=${this._author.id}">${this._author.id}</a>`
            }
          }
        } 
        break;
      case "data-len":
        this._len = parseInt(next);
        metadataChanged = true;
        break;
      case "data-latest":
        this._latest = parseInt(next);
        metadataChanged = true;
        break;
      case "data-new":
        this._new = next ? true : false;
        metadataChanged = true;
        break;
    }
    
    if (metadataChanged) {
      const threadMeta = this.querySelector(".thread_metadata");
      if (threadMeta) {
        threadMeta.innerHTML = `<span>${this._new ? "!" : ""}[${this._len}] created: ${new Date(this._created)}, updated: ${new Date(this._latest)}</span>`;
      }
    }
  }
  
  viewThread(self: ThreadSummaryElement) {
    return () => {
      const a = util.$(`adapter_${self._adapter}`);
      if (a && self._msg) {
        a.setAttribute("data-view", "thread");
        a.setAttribute("data-viewing", self._msg.id);
      }
    }
  }
}