2019-03-02 11:25:10 +01:00
|
|
|
import AbstractService from './abstractService'
|
|
|
|
import ListModel from '../models/list'
|
|
|
|
import TaskService from './task'
|
2020-03-02 21:55:22 +01:00
|
|
|
import {formatISO} from 'date-fns'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
export default class ListService extends AbstractService {
|
|
|
|
constructor() {
|
|
|
|
super({
|
2020-04-17 12:19:53 +02:00
|
|
|
create: '/namespaces/{namespaceId}/lists',
|
2019-03-02 11:25:10 +01:00
|
|
|
get: '/lists/{id}',
|
2020-04-18 14:39:56 +02:00
|
|
|
getAll: '/lists',
|
2019-03-02 11:25:10 +01:00
|
|
|
update: '/lists/{id}',
|
|
|
|
delete: '/lists/{id}',
|
|
|
|
})
|
|
|
|
}
|
2020-02-08 14:16:06 +01:00
|
|
|
|
|
|
|
processModel(model) {
|
2020-03-02 21:55:22 +01:00
|
|
|
model.created = formatISO(model.created)
|
|
|
|
model.updated = formatISO(model.updated)
|
2020-02-08 14:16:06 +01:00
|
|
|
return model
|
|
|
|
}
|
|
|
|
|
2019-03-02 11:25:10 +01:00
|
|
|
modelFactory(data) {
|
|
|
|
return new ListModel(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeUpdate(model) {
|
|
|
|
let taskService = new TaskService()
|
|
|
|
model.tasks = model.tasks.map(task => {
|
|
|
|
return taskService.beforeUpdate(task)
|
|
|
|
})
|
2020-04-12 23:54:46 +02:00
|
|
|
model.hexColor = model.hexColor.substring(1, 7)
|
2019-03-02 11:25:10 +01:00
|
|
|
return model
|
|
|
|
}
|
2020-03-25 22:27:29 +01:00
|
|
|
|
|
|
|
beforeCreate(list) {
|
2020-04-12 23:54:46 +02:00
|
|
|
list.hexColor = list.hexColor.substring(1, 7)
|
2020-03-25 22:27:29 +01:00
|
|
|
return list
|
|
|
|
}
|
2020-05-31 21:17:10 +02:00
|
|
|
|
|
|
|
background(list) {
|
|
|
|
if (list.background === null) {
|
|
|
|
return Promise.resolve('')
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.http({
|
|
|
|
url: `/lists/${list.id}/background`,
|
|
|
|
method: 'GET',
|
|
|
|
responseType: 'blob',
|
|
|
|
})
|
|
|
|
.then(response => {
|
|
|
|
return window.URL.createObjectURL(new Blob([response.data]))
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
return e
|
|
|
|
})
|
|
|
|
}
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|