mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 10:02:47 +03:00
link fe: refactor link-view subscriptions api
This commit is contained in:
parent
4222ebbfb3
commit
182d2c3a07
@ -16,6 +16,9 @@ class UrbitApi {
|
|||||||
decline: this.inviteDecline.bind(this),
|
decline: this.inviteDecline.bind(this),
|
||||||
invite: this.inviteInvite.bind(this)
|
invite: this.inviteInvite.bind(this)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.bind = this.bind.bind(this);
|
||||||
|
this.bindLinkView = this.bindLinkView.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
bind(path, method, ship = this.authTokens.ship, app, success, fail, quit) {
|
bind(path, method, ship = this.authTokens.ship, app, success, fail, quit) {
|
||||||
@ -39,6 +42,13 @@ class UrbitApi {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bindLinkView(path, result, fail, quit) {
|
||||||
|
this.bind.bind(this)(
|
||||||
|
path, 'PUT', this.authTokens.ship, 'link-view',
|
||||||
|
result, fail, quit
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
action(appl, mark, data) {
|
action(appl, mark, data) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
window.urb.poke(ship, appl, mark, data,
|
window.urb.poke(ship, appl, mark, data,
|
||||||
@ -91,14 +101,10 @@ class UrbitApi {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
getComments(path, url) {
|
|
||||||
return this.getCommentsPage.bind(this)(path, url, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
getCommentsPage(path, url, page) {
|
getCommentsPage(path, url, page) {
|
||||||
const strictUrl = this.encodeUrl(url);
|
const strictUrl = this.encodeUrl(url);
|
||||||
const endpoint = '/json/' + page + '/discussions/' + strictUrl + path;
|
const endpoint = '/json/' + page + '/discussions/' + strictUrl + path;
|
||||||
this.bind.bind(this)(endpoint, 'PUT', this.authTokens.ship, 'link-view',
|
this.bindLinkView(endpoint,
|
||||||
(res) => {
|
(res) => {
|
||||||
if (res.data['initial-discussions']) {
|
if (res.data['initial-discussions']) {
|
||||||
// these aren't returned with the response,
|
// these aren't returned with the response,
|
||||||
@ -115,7 +121,7 @@ class UrbitApi {
|
|||||||
|
|
||||||
getPage(path, page) {
|
getPage(path, page) {
|
||||||
const endpoint = '/json/' + page + '/submissions' + path;
|
const endpoint = '/json/' + page + '/submissions' + path;
|
||||||
this.bind.bind(this)(endpoint, 'PUT', this.authTokens.ship, 'link-view',
|
this.bindLinkView(endpoint,
|
||||||
(dat)=>{store.handleEvent(dat)},
|
(dat)=>{store.handleEvent(dat)},
|
||||||
console.error,
|
console.error,
|
||||||
()=>{} // no-op on quit
|
()=>{} // no-op on quit
|
||||||
@ -125,7 +131,7 @@ class UrbitApi {
|
|||||||
getSubmission(path, url, callback) {
|
getSubmission(path, url, callback) {
|
||||||
const strictUrl = this.encodeUrl(url);
|
const strictUrl = this.encodeUrl(url);
|
||||||
const endpoint = '/json/0/submission/' + strictUrl + path;
|
const endpoint = '/json/0/submission/' + strictUrl + path;
|
||||||
this.bind.bind(this)(endpoint, 'PUT', this.authTokens.ship, 'link-view',
|
this.bindLinkView(endpoint,
|
||||||
(res) => {
|
(res) => {
|
||||||
if (res.data.submission) {
|
if (res.data.submission) {
|
||||||
callback(res.data.submission)
|
callback(res.data.submission)
|
||||||
|
Loading…
Reference in New Issue
Block a user