pinafore/src/routes/_actions/favorite.js

26 wiersze
1.0 KiB
JavaScript
Czysty Zwykły widok Historia

2018-02-24 02:23:36 +00:00
import { favoriteStatus, unfavoriteStatus } from '../_api/favorite'
import { store } from '../_store/store'
2018-12-22 23:37:51 +00:00
import { toast } from '../_components/toast/toast'
import { database } from '../_database/database'
2018-02-24 02:23:36 +00:00
2018-02-24 22:49:28 +00:00
export async function setFavorited (statusId, favorited) {
let { online } = store.get()
if (!online) {
2018-02-25 02:20:33 +00:00
toast.say(`You cannot ${favorited ? 'favorite' : 'unfavorite'} while offline.`)
2018-02-24 22:49:28 +00:00
return
}
let { currentInstance, accessToken } = store.get()
2018-03-21 00:41:39 +00:00
let networkPromise = favorited
? favoriteStatus(currentInstance, accessToken, statusId)
: unfavoriteStatus(currentInstance, accessToken, statusId)
store.setStatusFavorited(currentInstance, statusId, favorited) // optimistic update
2018-02-24 02:23:36 +00:00
try {
2018-03-21 00:41:39 +00:00
await networkPromise
await database.setStatusFavorited(currentInstance, statusId, favorited)
2018-02-24 02:23:36 +00:00
} catch (e) {
2018-02-24 22:49:28 +00:00
console.error(e)
2018-02-25 02:20:33 +00:00
toast.say(`Failed to ${favorited ? 'favorite' : 'unfavorite'}. ` + (e.message || ''))
store.setStatusFavorited(currentInstance, statusId, !favorited) // undo optimistic update
2018-02-24 02:23:36 +00:00
}
2018-02-24 22:49:28 +00:00
}