Chores: add debug

This commit is contained in:
Paulo Gustavo Veiga 2021-03-01 18:06:20 -08:00
parent bcf77d4714
commit f3661aa2e0

View File

@ -332,7 +332,7 @@ export default class RestClient implements Client {
const maps: MapInfo[] = (data.mindmapsInfo as any[]).map((m) => { const maps: MapInfo[] = (data.mindmapsInfo as any[]).map((m) => {
return { return {
id: m.id, id: m.id,
starred: Boolean(m.starred), starred: m.starred,
title: m.title, title: m.title,
labels: m.labels, labels: m.labels,
createdBy: m.creator, createdBy: m.creator,
@ -347,8 +347,7 @@ export default class RestClient implements Client {
success(maps); success(maps);
}) })
.catch((error) => { .catch((error) => {
const response = error.response; const errorInfo = this.parseResponseOnError(error.response);
const errorInfo = this.parseResponseOnError(response);
reject(errorInfo); reject(errorInfo);
}); });
}; };
@ -429,8 +428,7 @@ export default class RestClient implements Client {
} }
updateStarred(id: number, starred: boolean): Promise<void> { updateStarred(id: number, starred: boolean): Promise<void> {
console.debug(`Starred => ${starred}`)
console.debug(`Starred ${starred}`)
const handler = (success: () => void, reject: (error: ErrorInfo) => void) => { const handler = (success: () => void, reject: (error: ErrorInfo) => void) => {
axios axios
.put(`${this.baseUrl}/c/restful/maps/${id}/starred`, starred, { .put(`${this.baseUrl}/c/restful/maps/${id}/starred`, starred, {