110 lines
2.3 KiB
TypeScript
110 lines
2.3 KiB
TypeScript
import {makeAutoObservable} from 'mobx'
|
|
import * as GetUserFollows from '../../third-party/api/src/types/todo/social/getUserFollows'
|
|
import {RootStoreModel} from './root-store'
|
|
|
|
type Subject = GetUserFollows.OutputSchema['subject']
|
|
export type FollowItem = GetUserFollows.OutputSchema['follows'][number] & {
|
|
_reactKey: string
|
|
}
|
|
|
|
export class UserFollowsViewModel {
|
|
// state
|
|
isLoading = false
|
|
isRefreshing = false
|
|
hasLoaded = false
|
|
error = ''
|
|
params: GetUserFollows.QueryParams
|
|
|
|
// data
|
|
subject: Subject = {did: '', name: '', displayName: ''}
|
|
follows: FollowItem[] = []
|
|
|
|
constructor(
|
|
public rootStore: RootStoreModel,
|
|
params: GetUserFollows.QueryParams,
|
|
) {
|
|
makeAutoObservable(
|
|
this,
|
|
{
|
|
rootStore: false,
|
|
params: false,
|
|
},
|
|
{autoBind: true},
|
|
)
|
|
this.params = params
|
|
}
|
|
|
|
get hasContent() {
|
|
return this.subject.did !== ''
|
|
}
|
|
|
|
get hasError() {
|
|
return this.error !== ''
|
|
}
|
|
|
|
get isEmpty() {
|
|
return this.hasLoaded && !this.hasContent
|
|
}
|
|
|
|
// public api
|
|
// =
|
|
|
|
async setup() {
|
|
await this._fetch()
|
|
}
|
|
|
|
async refresh() {
|
|
await this._fetch(true)
|
|
}
|
|
|
|
async loadMore() {
|
|
// TODO
|
|
}
|
|
|
|
// state transitions
|
|
// =
|
|
|
|
private _xLoading(isRefreshing = false) {
|
|
this.isLoading = true
|
|
this.isRefreshing = isRefreshing
|
|
this.error = ''
|
|
}
|
|
|
|
private _xIdle(err: string = '') {
|
|
this.isLoading = false
|
|
this.isRefreshing = false
|
|
this.hasLoaded = true
|
|
this.error = err
|
|
}
|
|
|
|
// loader functions
|
|
// =
|
|
|
|
private async _fetch(isRefreshing = false) {
|
|
this._xLoading(isRefreshing)
|
|
try {
|
|
const res = await this.rootStore.api.todo.social.getUserFollows(
|
|
this.params,
|
|
)
|
|
this._replaceAll(res)
|
|
this._xIdle()
|
|
} catch (e: any) {
|
|
this._xIdle(`Failed to load feed: ${e.toString()}`)
|
|
}
|
|
}
|
|
|
|
private _replaceAll(res: GetUserFollows.Response) {
|
|
this.subject.did = res.data.subject.did
|
|
this.subject.name = res.data.subject.name
|
|
this.subject.displayName = res.data.subject.displayName
|
|
this.follows.length = 0
|
|
let counter = 0
|
|
for (const item of res.data.follows) {
|
|
this._append({_reactKey: `item-${counter++}`, ...item})
|
|
}
|
|
}
|
|
|
|
private _append(item: FollowItem) {
|
|
this.follows.push(item)
|
|
}
|
|
}
|