@stackoverflow/stacks 2.5.8 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,207 +1,207 @@
1
- import * as Stacks from "../../stacks";
2
-
3
- interface FilePreview {
4
- data?: string | ArrayBuffer;
5
- name: string;
6
- type: string;
7
- }
8
-
9
- export class UploaderController extends Stacks.StacksController {
10
- static targets = ["input", "previews", "uploader"];
11
-
12
- declare readonly inputTarget: HTMLInputElement;
13
- declare readonly previewsTarget: HTMLElement;
14
- declare readonly uploaderTarget: HTMLElement;
15
-
16
- private boundDragEnter!: () => void;
17
- private boundDragLeave!: () => void;
18
-
19
- private static readonly FILE_DISPLAY_LIMIT = 10;
20
- private static readonly MAX_FILE_SIZE = 1024 * 1024 * 10; // 10 MB
21
-
22
- connect() {
23
- super.connect();
24
- this.boundDragEnter = this.handleUploaderActive.bind(this, true);
25
- this.boundDragLeave = this.handleUploaderActive.bind(this, false);
26
-
27
- this.inputTarget.addEventListener("dragenter", this.boundDragEnter);
28
- this.inputTarget.addEventListener("dragleave", this.boundDragLeave);
29
- }
30
-
31
- disconnect() {
32
- this.inputTarget.removeEventListener("dragenter", this.boundDragEnter);
33
- this.inputTarget.removeEventListener("dragleave", this.boundDragLeave);
34
- super.disconnect();
35
- }
36
-
37
- /**
38
- * Handles rendering the file preview state on input change
39
- */
40
- handleInput() {
41
- this.previewsTarget.innerHTML = "";
42
-
43
- if (!this.inputTarget.files) {
44
- return;
45
- }
46
-
47
- const count = this.inputTarget.files.length;
48
- this.getDataURLs(
49
- this.inputTarget.files,
50
- UploaderController.FILE_DISPLAY_LIMIT
51
- )
52
- .then((res: FilePreview[]) => {
53
- this.handleVisible(true);
54
- const hasMultipleFiles = res.length > 1;
55
-
56
- if (hasMultipleFiles) {
57
- const headingElement = document.createElement("div");
58
- headingElement.classList.add(
59
- "s-uploader--previews-heading"
60
- );
61
- headingElement.innerText =
62
- res.length < count
63
- ? `Showing ${res.length} of ${count} files`
64
- : `${count} items`;
65
- this.previewsTarget.appendChild(headingElement);
66
- this.previewsTarget.classList.add("has-multiple");
67
- } else {
68
- this.previewsTarget.classList.remove("has-multiple");
69
- }
70
- res.forEach((file) => this.addFilePreview(file));
71
- this.handleUploaderActive(true);
72
- })
73
- // TODO consider rendering an error message
74
- .catch(() => null);
75
- }
76
-
77
- /**
78
- * Resets the Uploader to initial state
79
- */
80
- reset() {
81
- this.inputTarget.value = "";
82
- this.previewsTarget.innerHTML = "";
83
- this.handleVisible(false);
84
- }
85
-
86
- /**
87
- * Set hide/show and disabled state on elements depending on preview state
88
- * @param {boolean} shouldPreview - Uploader is entering a preview state
89
- */
90
- private handleVisible(shouldPreview: boolean) {
91
- const { scope } = this.targets;
92
- const hideElements = scope.findAllElements(
93
- "[data-s-uploader-hide-on-input]"
94
- );
95
- const showElements = scope.findAllElements(
96
- "[data-s-uploader-show-on-input]"
97
- );
98
- const enableElements = scope.findAllElements(
99
- "[data-s-uploader-enable-on-input]"
100
- );
101
-
102
- if (shouldPreview) {
103
- hideElements.forEach((el) => {
104
- el.classList.add("d-none");
105
- });
106
- showElements.forEach((el) => {
107
- el.classList.remove("d-none");
108
- });
109
- enableElements.forEach((el) => {
110
- el.removeAttribute("disabled");
111
- });
112
- } else {
113
- hideElements.forEach((el) => {
114
- el.classList.remove("d-none");
115
- });
116
- showElements.forEach((el) => {
117
- el.classList.add("d-none");
118
- });
119
- enableElements.forEach((el) => {
120
- el.setAttribute("disabled", "true");
121
- });
122
- this.handleUploaderActive(false);
123
- }
124
- }
125
-
126
- /**
127
- * Adds a DOM element to preview a selected file
128
- * @param {FilePreview} file
129
- */
130
- private addFilePreview(file: FilePreview) {
131
- if (!file) {
132
- return;
133
- }
134
-
135
- const previewElement = document.createElement("div");
136
- let thumbElement;
137
-
138
- if (file.type.match("image/*") && file.data) {
139
- thumbElement = document.createElement("img");
140
- // eslint-disable-next-line @typescript-eslint/no-base-to-string
141
- thumbElement.src = file.data.toString();
142
- thumbElement.alt = file.name;
143
- } else {
144
- thumbElement = document.createElement("div");
145
- thumbElement.innerText = file.name;
146
- }
147
-
148
- thumbElement.classList.add("s-uploader--preview-thumbnail");
149
- previewElement.appendChild(thumbElement);
150
- previewElement.classList.add("s-uploader--preview");
151
- previewElement.setAttribute("data-filename", file.name);
152
- this.previewsTarget.appendChild(previewElement);
153
- }
154
-
155
- /**
156
- * Toggles display and disabled state for select elements on valid input
157
- * @param {boolean} active - Uploader is in active state (typically on 'dragenter')
158
- */
159
- private handleUploaderActive(active: boolean) {
160
- this.uploaderTarget.classList.toggle("is-active", active);
161
- }
162
-
163
- /**
164
- * Converts the file data into a data URL
165
- * @param {File} file
166
- * @returns an object containing a FilePreview object
167
- */
168
- private fileToDataURL(file: File): Promise<FilePreview> {
169
- const reader = new FileReader();
170
- const { name, size, type } = file;
171
-
172
- if (
173
- size < UploaderController.MAX_FILE_SIZE &&
174
- type.indexOf("image") > -1
175
- ) {
176
- return new Promise((resolve, reject) => {
177
- reader.onload = (evt) => {
178
- const res = evt?.target?.result;
179
- if (res) {
180
- resolve({ data: res, name, type });
181
- } else {
182
- reject();
183
- }
184
- };
185
- reader.readAsDataURL(file);
186
- });
187
- } else {
188
- return Promise.resolve({ name, type });
189
- }
190
- }
191
-
192
- /**
193
- * Gets an array of FilePreviews from a FileList
194
- * @param {FileList|[]} files
195
- * @returns an array of FilePreview objects from a FileList
196
- */
197
- private getDataURLs(
198
- files: FileList,
199
- limit: number
200
- ): Promise<FilePreview[]> {
201
- const promises = Array.from(files)
202
- .slice(0, Math.min(limit, files.length))
203
- .map((f) => this.fileToDataURL(f));
204
-
205
- return Promise.all(promises);
206
- }
207
- }
1
+ import * as Stacks from "../../stacks";
2
+
3
+ interface FilePreview {
4
+ data?: string | ArrayBuffer;
5
+ name: string;
6
+ type: string;
7
+ }
8
+
9
+ export class UploaderController extends Stacks.StacksController {
10
+ static targets = ["input", "previews", "uploader"];
11
+
12
+ declare readonly inputTarget: HTMLInputElement;
13
+ declare readonly previewsTarget: HTMLElement;
14
+ declare readonly uploaderTarget: HTMLElement;
15
+
16
+ private boundDragEnter!: () => void;
17
+ private boundDragLeave!: () => void;
18
+
19
+ private static readonly FILE_DISPLAY_LIMIT = 10;
20
+ private static readonly MAX_FILE_SIZE = 1024 * 1024 * 10; // 10 MB
21
+
22
+ connect() {
23
+ super.connect();
24
+ this.boundDragEnter = this.handleUploaderActive.bind(this, true);
25
+ this.boundDragLeave = this.handleUploaderActive.bind(this, false);
26
+
27
+ this.inputTarget.addEventListener("dragenter", this.boundDragEnter);
28
+ this.inputTarget.addEventListener("dragleave", this.boundDragLeave);
29
+ }
30
+
31
+ disconnect() {
32
+ this.inputTarget.removeEventListener("dragenter", this.boundDragEnter);
33
+ this.inputTarget.removeEventListener("dragleave", this.boundDragLeave);
34
+ super.disconnect();
35
+ }
36
+
37
+ /**
38
+ * Handles rendering the file preview state on input change
39
+ */
40
+ handleInput() {
41
+ this.previewsTarget.innerHTML = "";
42
+
43
+ if (!this.inputTarget.files) {
44
+ return;
45
+ }
46
+
47
+ const count = this.inputTarget.files.length;
48
+ this.getDataURLs(
49
+ this.inputTarget.files,
50
+ UploaderController.FILE_DISPLAY_LIMIT
51
+ )
52
+ .then((res: FilePreview[]) => {
53
+ this.handleVisible(true);
54
+ const hasMultipleFiles = res.length > 1;
55
+
56
+ if (hasMultipleFiles) {
57
+ const headingElement = document.createElement("div");
58
+ headingElement.classList.add(
59
+ "s-uploader--previews-heading"
60
+ );
61
+ headingElement.innerText =
62
+ res.length < count
63
+ ? `Showing ${res.length} of ${count} files`
64
+ : `${count} items`;
65
+ this.previewsTarget.appendChild(headingElement);
66
+ this.previewsTarget.classList.add("has-multiple");
67
+ } else {
68
+ this.previewsTarget.classList.remove("has-multiple");
69
+ }
70
+ res.forEach((file) => this.addFilePreview(file));
71
+ this.handleUploaderActive(true);
72
+ })
73
+ // TODO consider rendering an error message
74
+ .catch(() => null);
75
+ }
76
+
77
+ /**
78
+ * Resets the Uploader to initial state
79
+ */
80
+ reset() {
81
+ this.inputTarget.value = "";
82
+ this.previewsTarget.innerHTML = "";
83
+ this.handleVisible(false);
84
+ }
85
+
86
+ /**
87
+ * Set hide/show and disabled state on elements depending on preview state
88
+ * @param {boolean} shouldPreview - Uploader is entering a preview state
89
+ */
90
+ private handleVisible(shouldPreview: boolean) {
91
+ const { scope } = this.targets;
92
+ const hideElements = scope.findAllElements(
93
+ "[data-s-uploader-hide-on-input]"
94
+ );
95
+ const showElements = scope.findAllElements(
96
+ "[data-s-uploader-show-on-input]"
97
+ );
98
+ const enableElements = scope.findAllElements(
99
+ "[data-s-uploader-enable-on-input]"
100
+ );
101
+
102
+ if (shouldPreview) {
103
+ hideElements.forEach((el) => {
104
+ el.classList.add("d-none");
105
+ });
106
+ showElements.forEach((el) => {
107
+ el.classList.remove("d-none");
108
+ });
109
+ enableElements.forEach((el) => {
110
+ el.removeAttribute("disabled");
111
+ });
112
+ } else {
113
+ hideElements.forEach((el) => {
114
+ el.classList.remove("d-none");
115
+ });
116
+ showElements.forEach((el) => {
117
+ el.classList.add("d-none");
118
+ });
119
+ enableElements.forEach((el) => {
120
+ el.setAttribute("disabled", "true");
121
+ });
122
+ this.handleUploaderActive(false);
123
+ }
124
+ }
125
+
126
+ /**
127
+ * Adds a DOM element to preview a selected file
128
+ * @param {FilePreview} file
129
+ */
130
+ private addFilePreview(file: FilePreview) {
131
+ if (!file) {
132
+ return;
133
+ }
134
+
135
+ const previewElement = document.createElement("div");
136
+ let thumbElement;
137
+
138
+ if (file.type.match("image/*") && file.data) {
139
+ thumbElement = document.createElement("img");
140
+
141
+ thumbElement.src = file.data.toString();
142
+ thumbElement.alt = file.name;
143
+ } else {
144
+ thumbElement = document.createElement("div");
145
+ thumbElement.innerText = file.name;
146
+ }
147
+
148
+ thumbElement.classList.add("s-uploader--preview-thumbnail");
149
+ previewElement.appendChild(thumbElement);
150
+ previewElement.classList.add("s-uploader--preview");
151
+ previewElement.setAttribute("data-filename", file.name);
152
+ this.previewsTarget.appendChild(previewElement);
153
+ }
154
+
155
+ /**
156
+ * Toggles display and disabled state for select elements on valid input
157
+ * @param {boolean} active - Uploader is in active state (typically on 'dragenter')
158
+ */
159
+ private handleUploaderActive(active: boolean) {
160
+ this.uploaderTarget.classList.toggle("is-active", active);
161
+ }
162
+
163
+ /**
164
+ * Converts the file data into a data URL
165
+ * @param {File} file
166
+ * @returns an object containing a FilePreview object
167
+ */
168
+ private fileToDataURL(file: File): Promise<FilePreview> {
169
+ const reader = new FileReader();
170
+ const { name, size, type } = file;
171
+
172
+ if (
173
+ size < UploaderController.MAX_FILE_SIZE &&
174
+ type.indexOf("image") > -1
175
+ ) {
176
+ return new Promise((resolve, reject) => {
177
+ reader.onload = (evt) => {
178
+ const res = evt?.target?.result;
179
+ if (res) {
180
+ resolve({ data: res, name, type });
181
+ } else {
182
+ reject();
183
+ }
184
+ };
185
+ reader.readAsDataURL(file);
186
+ });
187
+ } else {
188
+ return Promise.resolve({ name, type });
189
+ }
190
+ }
191
+
192
+ /**
193
+ * Gets an array of FilePreviews from a FileList
194
+ * @param {FileList|[]} files
195
+ * @returns an array of FilePreview objects from a FileList
196
+ */
197
+ private getDataURLs(
198
+ files: FileList,
199
+ limit: number
200
+ ): Promise<FilePreview[]> {
201
+ const promises = Array.from(files)
202
+ .slice(0, Math.min(limit, files.length))
203
+ .map((f) => this.fileToDataURL(f));
204
+
205
+ return Promise.all(promises);
206
+ }
207
+ }