-
Notifications
You must be signed in to change notification settings - Fork 0
/
folderviews.js
244 lines (174 loc) · 7.2 KB
/
folderviews.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
Subnodal Cloud
Copyright (C) Subnodal Technologies. All Rights Reserved.
https://cloud.subnodal.com
Licenced by the Subnodal Open-Source Licence, which can be found at LICENCE.md.
*/
namespace("com.subnodal.cloud.folderviews", function(exports) {
var subElements = require("com.subnodal.subelements");
var views = require("com.subnodal.subui.views");
var resources = require("com.subnodal.cloud.resources");
var config = require("com.subnodal.cloud.config");
var fs = require("com.subnodal.cloud.fs");
exports.FolderView = class {
constructor(viewElement, containerElement = null) {
this.viewElement = viewElement;
this.containerElement = containerElement;
this.listingIsLoading = false;
this.dataUnavailableWhileOffline = false;
this.dataNotFound = false;
this.path = [];
this.listing = [];
this.sortBy = config.getSetting("cloud_sortBy", "number", fs.sortByAttributes.NAME);
this.sortReverse = config.getSetting("cloud_sortReverse", "boolean", false);
this.separateFolders = config.getSetting("cloud_separateFolders", "boolean", true);
}
get currentFolderKey() {
return this.path[this.path.length - 1]?.key || null;
}
get isAvailable() {
return !this.listingIsLoading && !this.dataUnavailableWhileOffline && !this.dataNotFound;
}
get isUnavailable() {
return !this.getListingIsLoading && (this.dataUnavailableWhileOffline || this.dataNotFound);
}
get selectedItemKey() {
return views.getSelectedListItems(this.viewElement)[0]?.getAttribute("data-key") || null;
}
get selectedItem() {
var selectedKey = this.selectedItemKey;
if (selectedKey == null) {
return;
}
return this.listing.find((item) => item.key == selectedKey) || null;
}
render() {
subElements.render(this.containerElement || this.viewElement);
}
getItemFromListing(key) {
for (var i = 0; i < this.listing.length; i++) {
if (this.listing[i].key == key) {
return this.listing[i];
}
}
return null;
};
attachListItemEvents() {
var thisScope = this;
views.attachListSelectEvent(this.viewElement, function() {
var listItem = views.getSelectedListItems(thisScope.viewElement)[0];
if (!(listItem instanceof Node)) {
return;
}
var item = thisScope.getItemFromListing(listItem.getAttribute("data-key"));
thisScope.handleFileSelect(item);
});
this.viewElement.querySelectorAll("li").forEach(function(listItem) {
views.attachListItemOpenEvent(listItem, function() {
var item = thisScope.getItemFromListing(listItem.getAttribute("data-key"));
if (item == null) {
return;
}
if (item.type == "folder") {
thisScope.navigate(item.key).then(function() {
thisScope.viewElement.querySelector("li")?.focus();
});
return;
}
thisScope.handleFileOpen(item);
});
});
}
listingFilter(item) {
return true;
}
populate(key = this.currentFolderKey) {
var thisScope = this;
if (typeof(key) != "string") {
return;
}
views.deselectList(this.viewElement);
this.listingIsLoading = true;
this.render();
if (!navigator.onLine && !resources.getObjectCache().hasOwnProperty(key)) {
this.listingIsLoading = false;
this.dataUnavailableWhileOffline = true;
this.render();
return Promise.reject("Data unavailable while offline");
} else {
this.dataUnavailableWhileOffline = false;
}
return fs.listFolder(key, this.sortBy, this.sortReverse, this.separateFolders).then(function(listing) {
thisScope.listingIsLoading = false;
thisScope.dataUnavailableWhileOffline = false;
thisScope.dataNotFound = false;
if (listing == null) {
thisScope.dataNotFound = true;
thisScope.render();
return Promise.reject("Data not found");
}
listing = listing.filter(thisScope.listingFilter);
thisScope.listing = listing;
thisScope.render();
thisScope.attachListItemEvents();
return Promise.resolve(listing);
});
}
populateRoots() {
var thisScope = this;
var rootKeys = [];
views.deselectList(this.viewElement);
this.listingIsLoading = true;
this.render();
return fs.getRootObjectKeyFromProfile().then(function(key) {
rootKeys.push(key);
return fs.getSharedObjectKeysFromProfile();
}).then(function(keys) {
rootKeys.push(...keys);
return Promise.all(rootKeys.map((key) => resources.getObject(key)));
}).then(function(objects) {
objects.forEach(function(object, i) {
object.key = rootKeys[i];
});
thisScope.listingIsLoading = false;
thisScope.dataUnavailableWhileOffline = false;
thisScope.dataNotFound = false;
thisScope.listing = objects;
thisScope.render();
thisScope.attachListItemEvents();
return Promise.resolve(objects);
});
}
handleFileSelect(item) {}
handleFileOpen(item) {}
navigate(key, replaceRoot = false) {
var thisScope = this;
if (replaceRoot) {
this.path = [];
}
this.listingIsLoading = true;
this.render();
return resources.getObject(key).then(function(data) {
if (thisScope.path[thisScope.path.length - 1]?.key != key) {
thisScope.path.push({...data, key});
}
return thisScope.populate(key);
});
}
goBack(toKey = this.path[this.path.length - 2]?.key) {
var thisScope = this;
if (typeof(toKey) != "string") {
// Show root objects instead
this.path = [];
return thisScope.populateRoots();
}
while (this.currentFolderKey != toKey) {
this.path.pop();
if (this.path.length <= 1) {
break;
}
}
return thisScope.populate(toKey);
};
};
});