about summary refs log tree commit diff
path: root/src/state/models/feeds/custom-feed.ts
blob: 5e550ec69433b07367426c0817e736e2da36a210 (plain) (blame)
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
107
108
109
110
111
112
import {AppBskyFeedDefs} from '@atproto/api'
import {makeAutoObservable, runInAction} from 'mobx'
import {RootStoreModel} from 'state/models/root-store'
import {sanitizeDisplayName} from 'lib/strings/display-names'

export class CustomFeedModel {
  // data
  _reactKey: string
  data: AppBskyFeedDefs.GeneratorView

  constructor(
    public rootStore: RootStoreModel,
    view: AppBskyFeedDefs.GeneratorView,
  ) {
    this._reactKey = view.uri
    this.data = view
    makeAutoObservable(
      this,
      {
        rootStore: false,
      },
      {autoBind: true},
    )
  }

  // local actions
  // =

  get uri() {
    return this.data.uri
  }

  get displayName() {
    if (this.data.displayName) {
      return sanitizeDisplayName(this.data.displayName)
    }
    return `Feed by @${this.data.creator.handle}`
  }

  get isSaved() {
    return this.data.viewer?.saved
  }

  get isLiked() {
    return this.data.viewer?.like
  }

  // public apis
  // =

  async save() {
    await this.rootStore.agent.app.bsky.feed.saveFeed({
      feed: this.uri,
    })
    runInAction(() => {
      this.data.viewer = this.data.viewer || {}
      this.data.viewer.saved = true
    })
  }

  async unsave() {
    await this.rootStore.agent.app.bsky.feed.unsaveFeed({
      feed: this.uri,
    })
    runInAction(() => {
      this.data.viewer = this.data.viewer || {}
      this.data.viewer.saved = false
    })
  }

  async like() {
    try {
      const res = await this.rootStore.agent.like(this.data.uri, this.data.cid)
      runInAction(() => {
        this.data.viewer = this.data.viewer || {}
        this.data.viewer.like = res.uri
        this.data.likeCount = (this.data.likeCount || 0) + 1
      })
    } catch (e: any) {
      this.rootStore.log.error('Failed to like feed', e)
    }
  }

  async unlike() {
    if (!this.data.viewer.like) {
      return
    }
    try {
      await this.rootStore.agent.deleteLike(this.data.viewer.like!)
      runInAction(() => {
        this.data.viewer = this.data.viewer || {}
        this.data.viewer.like = undefined
        this.data.likeCount = (this.data.likeCount || 1) - 1
      })
    } catch (e: any) {
      this.rootStore.log.error('Failed to unlike feed', e)
    }
  }

  async reload() {
    const res = await this.rootStore.agent.app.bsky.feed.getFeedGenerator({
      feed: this.data.uri,
    })
    runInAction(() => {
      this.data = res.data.view
    })
  }

  serialize() {
    return JSON.stringify(this.data)
  }
}