Add discard implementation on pages.meet actions
This commit is contained in:
parent
ddce1560bf
commit
7ce1522234
|
@ -136,13 +136,33 @@ app.pages.meet = {
|
|||
document.activeElement.blur();
|
||||
const current = app.pages.meet.dataCurrent();
|
||||
if (current === null)
|
||||
return console.error('TODO: add-to-toast: notify user an unknown error')
|
||||
return console.error('TODO: add-to-toast: notify user an unknown error');
|
||||
http.post(`/api/v1/accounts/follow?url=${current.account.url}`, {}, function(json) {
|
||||
if (json === undefined) return;
|
||||
if (json.error !== undefined)
|
||||
console.error('TODO: add-to-toast: notify user an unknown error')
|
||||
console.error('TODO: add-to-toast: notify user an unknown error');
|
||||
else if (json.result !== undefined && json.result === 1)
|
||||
console.log('TODO: add-to-toast: crush was marked succesfully!')
|
||||
})
|
||||
console.log('TODO: add-to-toast: crush was marked succesfully!');
|
||||
});
|
||||
},
|
||||
discard: function() {
|
||||
document.activeElement.blur();
|
||||
const current = app.pages.meet.dataCurrent();
|
||||
if (current === null)
|
||||
return console.error('TODO: add-to-toast: notify user an unknown error');
|
||||
http.post(`/api/v1/accounts/block?url=${current.account.url}`, {}, function(json) {
|
||||
if (json === undefined) return;
|
||||
if (json.error !== undefined)
|
||||
console.error('TODO: add-to-toast: notify user an unknown error');
|
||||
else if (json.result !== undefined && json.result === 1) {
|
||||
console.log('TODO: add-to-toast: person was blocked succesfully!');
|
||||
for (var i = app.pages.meet.data.length-1; i >= 0; i--)
|
||||
if (app.pages.meet.data[i].account.url === current.account.url)
|
||||
app.pages.meet.data.splice(i, 1);
|
||||
app.pages.meet.carousel.set(0);
|
||||
app.pages.meet.paint();
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
exit: function() {
|
||||
|
|
Loading…
Reference in New Issue