-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.py
336 lines (289 loc) · 11.9 KB
/
demo.py
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
from trame.app import get_server
from trame.ui.vuetify import VAppLayout
from trame.widgets import gwc, html
from trame.widgets import vuetify2 as vuetify
import os
# -----------------------------------------------------------------------------
# Trame setup
# -----------------------------------------------------------------------------
server = get_server(client_type="vue2")
state, ctrl = server.state, server.controller
state.update(
{
"api_root": os.environ.get(
"TRAME_APP_API_ROOT", "https://data.kitware.com/api/v1"
),
"auth_register": True,
"new_folder_enabled": True,
"root_location_disabled": False,
"selectable": True,
"selected": [],
"upload_enabled": True,
"upload_multiple": True,
"upsert_edit": False,
"user": None,
}
)
# -----------------------------------------------------------------------------
# API connection
# -----------------------------------------------------------------------------
def disconnect():
state.api_root = None
state.path = None
state.user = None
def connect():
state.api_root = state.path
# -----------------------------------------------------------------------------
# Data management
# -----------------------------------------------------------------------------
@state.change("user")
def set_user(user, **kwargs):
state.firstName = user.get("firstName", "").capitalize() if user else None
state.lastName = user.get("lastName", "").upper() if user else None
state.location = user if user else None
@state.change("location")
def set_upload_dest(location, **kwargs):
# Define upload_dest only when the location is a folder or a user
if location and location.get("_modelType") == "folder":
state.upload_dest = location
elif location and location.get("_modelType") == "user":
state.upload_dest = {**location, "name": location.get("login", "")}
else:
state.upload_dest = None
@state.change("location", "selected")
def set_data_details(**kwargs):
if state.selected:
state.data_details = state.selected
elif state.location and state.location.get("_id", ""):
state.data_details = [state.location]
else:
state.data_details = []
def update_location(new_location):
state.location = new_location
def handle_search_select(item, **kwargs):
if item and item.get("_modelType") in ["user", "folder"]:
state.location = item
else:
state.location = {"_modelType": "folder", "_id": item.folderId}
def handle_action(action, **kwargs):
if action.name == "Delete":
state.selected = []
# -----------------------------------------------------------------------------
# Layout
# -----------------------------------------------------------------------------
class Headline:
REPO_BASE = "https://github.com/girder/girder_web_components/blob/master/"
def __init__(self, title, description, link):
with html.Div():
with html.Div(title, classes="headline font-weight-bold mono mt-8"):
with vuetify.VBtn(
href=Headline.REPO_BASE + link,
icon="icon",
classes="ml-2",
title="View Source",
target="_blank",
):
vuetify.VIcon("mdi-open-in-new")
html.Div(description, classes="subtitle-1 mb-4")
with VAppLayout(server) as layout:
with vuetify.VContainer():
html.Div("Girder Web Components for Trame", classes="display-3")
with html.Div(classes="title mb-1"):
html.Span("A Trame library using the Vue")
html.A(
"Girder Web Components", href="https://gwc.girder.org/", target="_blank"
)
html.Span("for interacting with")
html.A("data.kitware.com", href="https://data.kitware.com", target="_blank")
html.Span("data management platform,")
html.A(
"Girder",
href="https://girder.readthedocs.io/en/stable/",
target="_blank",
)
with vuetify.VRow():
with vuetify.VCol(cols=10):
with html.Div(classes="title mb-1"):
html.Span("This demo integrates with ")
html.A(
"data.kitware.com",
href="https://data.kitware.com",
target="_blank",
)
with vuetify.VCol(cols=2, align="end"):
vuetify.VSwitch(
v_model="$vuetify.theme.dark",
classes="mx-4 my-0",
hide_details="hide-details",
label="Dark theme",
)
with vuetify.VContainer(v_if=("!api_root",)):
vuetify.VTextField(
v_model=("path",),
label="Girder API Root",
type="input",
filled=True,
clearable=True,
append_icon="mdi-chevron-right",
click_append=connect,
)
with vuetify.VContainer(v_if=("api_root",)):
with vuetify.VRow():
with vuetify.VCol(cols=10):
with html.Div(classes="subtitle-1 mb-1"):
html.Span("Connected to")
html.A("{{ api_root }}", href=("api_root",), target="_blank")
with vuetify.VCol(cols=2):
vuetify.VBtn(
"Disconnect",
click=disconnect,
block=True,
color="primary",
)
with gwc.GirderProvider(value=("api_root",), v_if=("api_root",)) as provider:
# AUTHENTICATION
with vuetify.VContainer(v_if=("!user",)):
Headline(
title="girder-authentication",
link="src/components/Authentication/Authentication.vue",
description="allows users to authenticate with girder",
)
vuetify.VSwitch(
v_model=("auth_register",),
label="Register",
)
gwc.GirderAuthentication(register=("auth_register",))
with vuetify.VContainer(v_else=True):
with vuetify.VRow():
with vuetify.VCol(cols=10):
html.Div(
"Welcome {} {}".format("{{ firstName }} ", "{{ lastName }} "),
classes="subtitle-1 mb-1",
)
with vuetify.VCol(cols=2):
vuetify.VBtn(
"Log Out",
click=provider.logout,
block=True,
color="primary",
)
# SEARCH
with vuetify.VRow(), vuetify.VCol(cols=12):
Headline(
title="girder-search",
link="src/components/Search.vue",
description="provides global search functionality",
)
with vuetify.VToolbar(color="primary"):
gwc.GirderSearch(
select=(
handle_search_select,
"[$event]",
)
)
# FILEMANAGER AND DATADETAILS
with vuetify.VRow():
with vuetify.VCol(cols=7):
Headline(
title="girder-file-manager",
link="src/components/snippets/FileManager.vue",
description="a wrapper around girder-data-browser. \
It packages the browser with defaults including folder creation, \
item upload, and a breadcrumb bar",
)
with vuetify.VCol(cols=5):
Headline(
title="girder-data-details",
link="src/components/DataDetails.vue",
description="in-depth information and controls for a single \
folder or item, or batch operations for groups of objects",
)
with vuetify.VRow():
vuetify.VSwitch(
v_model=("selectable",),
label="Select",
)
vuetify.VSwitch(
v_model=("new_folder_enabled",),
label="New Folder",
)
vuetify.VSwitch(
v_model=("upload_enabled",),
label="Upload",
)
vuetify.VSwitch(
v_model=("root_location_disabled",),
label="Root Disabled",
)
with vuetify.VRow():
with vuetify.VCol(cols=7):
gwc.GirderFileManager(
v_model=("selected",),
location=("location",),
update_location=(update_location, "[$event]"),
selectable=("selectable",),
root_location_disabled=("root_location_disabled",),
upload_enabled=("upload_enabled",),
new_folder_enabled=("new_folder_enabled",),
)
with vuetify.VCol(cols=5):
gwc.GirderDataDetails(
value=("data_details",), action=(handle_action, "[$event]")
)
# JOB LIST
with vuetify.VRow(), vuetify.VCol(cols=12):
Headline(
title="girder-job-list",
link="src/components/Job/JobList.vue",
description="display and filter girder jobs",
)
gwc.GirderJobList()
# UPLOAD
with vuetify.VRow(v_if=("upload_dest",)), vuetify.VCol(cols=12):
Headline(
title="girder-upload",
link="src/components/Upload.vue",
description="upload files to a specified location in girder",
)
with vuetify.VCard():
gwc.GirderUpload(dest=("upload_dest",))
# ACCESS CONTROL
with vuetify.VRow(v_if=("upload_dest",)), vuetify.VCol(cols=12):
Headline(
title="girder-access-control",
link="src/components/AccessControl.vue",
description="access controls for folders and items",
)
gwc.GirderAccessControl(model=("upload_dest",))
# EDIT/ADD FOLDER
with vuetify.VRow(v_if=("upload_dest",)), vuetify.VCol(cols=12):
Headline(
title="girder-upsert-folder",
link="src/components/UpsertFolder.vue",
description="create and edit folders",
)
vuetify.VSwitch(
v_model=("upsert_edit",),
label="Edit Mode",
)
with vuetify.VCard():
gwc.GirderUpsertFolder(
location=("upload_dest",), edit=("upsert_edit",)
)
# BREADCRUMB
with vuetify.VRow(v_if=("upload_dest",)), vuetify.VCol(cols=12):
Headline(
title="girder-breadcrumb",
link="src/components/Breadcrumb.vue",
description="filesystem path breadcrumb",
)
with vuetify.VCard(classes="pa-4"):
gwc.GirderBreadcrumb(
location=("upload_dest",),
root_location_disabled=("root_location_disabled",),
)
# -----------------------------------------------------------------------------
# Start server
# -----------------------------------------------------------------------------
if __name__ == "__main__":
server.start()