-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsingle-document-details.js
128 lines (108 loc) · 3.48 KB
/
single-document-details.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import { action } from "@ember/object";
import { inject as service } from "@ember/service";
import { tracked } from "@glimmer/tracking";
import { restartableTask, dropTask } from "ember-concurrency";
import lang from "flatpickr/dist/l10n";
import { DateTime } from "luxon";
import DocumentCard from "./document-card";
import { ErrorHandler } from "ember-alexandria/helpers/error-handler";
// TODO: This should be refactored and the SingleDocumentDetailsComponent should NOT
// be inheriting from DocumentCard
export default class SingleDocumentDetailsComponent extends DocumentCard {
@service("alexandria-documents") documents;
@service("alexandria-config") config;
@service("alexandria-side-panel") sidePanel;
@service router;
@service intl;
@service store;
@service fetch;
@tracked editTitle = false;
@tracked editDescription = false;
@tracked editDate = false;
@tracked validTitle = true;
get locale() {
return this.intl.primaryLocale.split("-")[0];
}
get flatpickrLocale() {
return lang[this.locale];
}
get dateFormat() {
const defaultFormat = "m/d/Y";
const formats = { de: "d.m.Y", fr: "d.m.Y", en: defaultFormat };
return formats[this.locale] ?? defaultFormat;
}
get displayConvertButton() {
return (
this.config.enablePDFConversion &&
[
"application/vnd.oasis.opendocument.text",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
].includes(this.args.document.latestFile?.value?.mimeType)
);
}
@action updateDocumentTitle({ target: { value: title } }) {
this.validTitle = Boolean(title);
this.args.document.title = title;
}
@action updateDocumentDescription({ target: { value: description } }) {
this.args.document.description = description;
}
@action async updateDate([date]) {
this.args.document.date = date
? DateTime.fromJSDate(date).toISODate()
: null;
await this.saveDocument.perform();
}
@action toggle(name) {
this[name] = !this[name];
if (this[name]) {
this.documents.disableShortcuts();
} else {
this.documents.enableShortcuts();
}
}
@action resetState() {
this.editTitle = false;
this.validTitle = true;
this.editDescription = false;
this.editDate = false;
this.documents.enableShortcuts();
}
@restartableTask *saveDocument(event) {
event?.preventDefault();
try {
yield this.args.document.save();
this.resetState();
this.notification.success(this.intl.t("alexandria.success.update"));
} catch (error) {
this.args.document.rollbackAttributes();
new ErrorHandler(this, error).notify("alexandria.errors.update");
}
}
@dropTask *uploadReplacement(event) {
try {
const [file] = event.target.files;
yield this.documents.replace(this.args.document, file);
} catch (error) {
new ErrorHandler(this, error).notify(
"alexandria.errors.replace-document",
);
}
}
@dropTask
*convertDocument(event) {
event?.preventDefault();
try {
const modelName = "document";
const adapter = this.store.adapterFor(modelName);
const url = adapter.buildURL(modelName, this.args.document.id);
yield this.fetch.fetch(`${url}/convert`, {
method: "POST",
});
this.args.refreshDocumentList();
this.notification.success(this.intl.t("alexandria.success.convert-pdf"));
} catch (error) {
new ErrorHandler(this, error).notify("alexandria.errors.convert-pdf");
}
}
}