bukopin-redemption-client-r.../src/common/stores/task.js
Rifqy Zacky Ariadhy 1a000700e6 Initial commit
2019-01-02 18:39:53 +07:00

57 lines
1.1 KiB
JavaScript

import { observable, action, computed } from 'mobx';
export default class Task {
@observable data = [];
@observable isLoading = false;
@observable isSearching = false;
@observable taskId = '';
@observable filterBy = 'all';
@observable selectedData = {};
// @observable taskData = {};
constructor(context) {
this.http = context.http;
this.context = context;
}
@action
changeFilterBy(v){
this.filterBy = v;
}
@action
getAll() {
this.isLoading = true;
return this.http.get("tasks")
.then(res => {
this.data = res.data;
this.isLoading = false;
})
.catch(err => {
this.isLoading = false;
throw err;
})
}
@action
getDetail(id) {
this.isLoading = true;
return this.http.get("tasks/"+id)
.then(res => {
this.selectedData = res;
this.isLoading = false;
})
.catch(err => {
this.isLoading = false;
throw err;
})
}
@computed
get isEmpty(){
if(this.tasks.length > 0){
return false;
}
return true;
}
}