forked from nextcloud/cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppControls.vue
390 lines (377 loc) · 12 KB
/
AppControls.vue
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<template>
<div class="wrapper">
<!-- Use $store.state.page for page matching to make sure everything else has been set beforehand! -->
<Breadcrumbs class="breadcrumbs" root-icon="icon-category-organization">
<Breadcrumb
:title="t('cookbook', 'Home')"
:to="'/'"
:disable-drop="true"
/>
<!-- INDEX PAGE -->
<Breadcrumb
v-if="isIndex"
class="active no-arrow"
:title="t('cookbook', 'All recipes')"
:disable-drop="true"
/>
<Breadcrumb
v-if="isIndex"
class="no-arrow"
title=""
:disable-drop="true"
>
<!-- This is clumsy design but the component cannot display just one input element on the breadcrumbs bar -->
<ActionInput
icon="icon-quota"
:value="filterValue"
@update:value="updateFilters"
>{{ t("cookbook", "Filter") }}</ActionInput
>
<ActionInput icon="icon-search" @submit="search">{{
t("cookbook", "Search")
}}</ActionInput>
</Breadcrumb>
<!-- SEARCH PAGE -->
<Breadcrumb
v-if="isSearch"
class="not-link"
:title="searchTitle"
:disable-drop="true"
/>
<Breadcrumb
v-if="isSearch && $route.params.value"
class="active"
:title="
$route.params.value === '_'
? 'None'
: decodeURIComponent($route.params.value)
"
:disable-drop="true"
/>
<!-- RECIPE PAGES -->
<!-- Edit recipe -->
<Breadcrumb
v-if="isEdit"
class="not-link"
:title="t('cookbook', 'Edit recipe')"
:disable-drop="true"
/>
<Breadcrumb
v-if="isEdit"
class="active"
:title="$store.state.recipe.name"
:disable-drop="true"
>
</Breadcrumb>
<!-- Create new recipe -->
<Breadcrumb
v-else-if="isCreate"
class="active"
:title="t('cookbook', 'New recipe')"
:disable-drop="true"
/>
<!-- View recipe -->
<Breadcrumb
v-if="isRecipe"
class="active"
:title="$store.state.recipe.name"
:disable-drop="true"
>
</Breadcrumb>
<!-- Is the app loading? -->
<Breadcrumb
v-if="isLoading"
class="active no-arrow"
title=""
:disable-drop="true"
>
<ActionButton
icon="icon-loading-small"
:aria-label="t('cookbook', 'Loading app')"
/>
</Breadcrumb>
<!-- Is a recipe loading? -->
<Breadcrumb
v-else-if="isLoadingRecipe"
class="active no-arrow"
title=""
:disable-drop="true"
>
<ActionButton
icon="icon-loading-small"
:aria-label="t('cookbook', 'Loading recipe')"
/>
</Breadcrumb>
<!-- No recipe found -->
<Breadcrumb
v-else-if="recipeNotFound"
class="active no-arrow"
:title="t('cookbook', 'Recipe not found')"
:disable-drop="true"
/>
<!-- No page found -->
<Breadcrumb
v-else-if="pageNotFound"
class="active no-arrow"
:title="t('cookbook', 'Page not found')"
:disable-drop="true"
/>
</Breadcrumbs>
<Actions>
<ActionButton
v-if="isRecipe"
key="reloadRecipeView"
:icon="
$store.state.reloadingRecipe === parseInt($route.params.id)
? 'icon-loading-small'
: 'icon-history'
"
:aria-label="t('cookbook', 'Reload recipe')"
@click="reloadRecipeView()"
>{{ t("cookbook", "Reload recipe") }}</ActionButton
>
<ActionButton
v-if="isEdit"
key="reloadRecipeEdit"
:icon="
$store.state.reloadingRecipe === parseInt($route.params.id)
? 'icon-loading-small'
: 'icon-history'
"
:aria-label="t('cookbook', 'Reload recipe')"
@click="reloadRecipeEdit()"
>{{ t("cookbook", "Reload recipe") }}</ActionButton
>
<ActionButton
v-if="isRecipe"
key="editRecipe"
icon="icon-rename"
:aria-label="t('cookbook', 'Edit recipe')"
@click="goToRecipe($store.state.recipe.id)"
>
{{ t("cookbook", "Edit recipe") }}
</ActionButton>
<ActionButton
v-if="isRecipe"
key="printRecipe"
icon="icon-category-office"
:aria-label="t('cookbook', 'Print recipe')"
@click="printRecipe()"
>{{ t("cookbook", "Print recipe") }}</ActionButton
>
<ActionButton
v-if="isRecipe"
key="deleteRecipe"
icon="icon-delete"
:aria-label="t('cookbook', 'Delete recipe')"
@click="deleteRecipe()"
>{{ t("cookbook", "Delete recipe") }}</ActionButton
>
<ActionButton
v-if="isEdit || isCreate"
key="save"
:icon="
$store.state.savingRecipe
? 'icon-loading-small'
: 'icon-checkmark'
"
:aria-label="t('cookbook', 'Save changes')"
:title="t('cookbook', 'Save changes')"
class="has-tooltip"
@click="saveChanges()"
/>
</Actions>
</div>
</template>
<script>
import helpers from "cookbook/js/helper"
import ActionButton from "@nextcloud/vue/dist/Components/ActionButton"
/* import Actions from "@nextcloud/vue/dist/Components/Actions" */
import ActionInput from "@nextcloud/vue/dist/Components/ActionInput"
import Breadcrumbs from "@nextcloud/vue/dist/Components/Breadcrumbs"
// import Breadcrumbs from "./Breadcrumbs"
import Breadcrumb from "@nextcloud/vue/dist/Components/Breadcrumb"
import Actions from "./ResponsiveActions.vue"
export default {
name: "AppControls",
components: {
ActionButton,
ActionInput,
Breadcrumbs,
Breadcrumb,
Actions,
},
data() {
return {
filterValue: "",
}
},
computed: {
isCreate() {
return this.$store.state.page === "create"
},
isEdit() {
if (this.isLoadingRecipe) {
return false // Do not show both at the same time
}
// Editing requires that a recipe was found
return !!(
this.$store.state.page === "edit" && this.$store.state.recipe
)
},
isIndex() {
if (this.isLoadingRecipe) {
return false // Do not show both at the same time
}
return this.$store.state.page === "index"
},
isLoading() {
// The page is being loaded
return this.$store.state.page === null
},
isLoadingRecipe() {
// A recipe is being loaded
return !!this.$store.state.loadingRecipe
},
isRecipe() {
if (this.isLoadingRecipe) {
return false // Do not show both at the same time
}
// Viewing recipe requires that one was found
return !!(
this.$store.state.page === "recipe" && this.$store.state.recipe
)
},
isSearch() {
if (this.isLoadingRecipe) {
return false // Do not show both at the same time
}
return this.$store.state.page === "search"
},
pageNotFound() {
return this.$store.state.page === "notfound"
},
recipeNotFound() {
// Editing or viewing recipe was attempted, but no recipe was found
return (
["edit", "recipe"].indexOf(this.$store.state.page) !== -1 &&
!this.$store.state.recipe
)
},
searchTitle() {
if (this.$route.name === "search-category") {
return t("cookbook", "Category")
}
if (this.$route.name === "search-name") {
return t("cookbook", "Recipe name")
}
if (this.$route.name === "search-tags") {
return t("cookbook", "Tags")
}
return t("cookbook", "Search for recipes")
},
},
methods: {
deleteRecipe() {
// Confirm delete
if (
// eslint-disable-next-line no-alert
!window.confirm(
// prettier-ignore
t("cookbook","Are you sure you want to delete this recipe?")
)
) {
return
}
this.$store
.dispatch("deleteRecipe", { id: this.$store.state.recipe.id })
.then(() => {
helpers.goTo("/")
})
.catch((e) => {
// eslint-disable-next-line no-alert
alert(t("cookbook", "Delete failed"))
if (e && e instanceof Error) {
throw e
}
})
},
printRecipe() {
window.print()
},
reloadRecipeEdit() {
this.$root.$emit("reloadRecipeEdit")
},
reloadRecipeView() {
this.$root.$emit("reloadRecipeView")
},
saveChanges() {
this.$root.$emit("saveRecipe")
},
search(e) {
helpers.goTo(`/search/${e.target[1].value}`)
},
updateFilters(e) {
this.filterValue = e
this.$root.$emit("applyRecipeFilter", e)
},
goToRecipe(id) {
helpers.goTo(`/recipe/${id}/edit`)
},
},
}
</script>
<style scoped>
.wrapper {
/* Sticky is better than fixed because fixed takes the element out of flow,
which breaks the height, putting elements underneath */
position: sticky;
/* This is competing with the recipe instructions which have z-index: 1 */
z-index: 2;
/* The height of the nextcloud header */
top: var(--header-height);
display: flex;
/*width: calc(100% - 40px);*/
width: 100%;
flex-direction: row;
padding-left: 4px;
padding-left: 40px;
border-bottom: 1px solid var(--color-border);
background-color: var(--color-main-background);
}
.active {
cursor: default !important;
font-weight: bold;
}
.breadcrumbs {
/* flex-basis: 100%; */
width: auto;
flex-grow: 0;
overflow-x: hidden;
}
.button-container {
display: flex;
flex-direction: row;
/*& /deep/ button.action-button {
padding-right: 0;
}*/
}
.no-arrow::before {
content: "" !important;
}
@media print {
* {
display: none !important;
}
}
</style>
<style>
.wrapper .breadcrumbs .breadcrumb__crumbs {
min-width: unset;
}
@media print {
.vue-tooltip {
display: none !important;
}
}
</style>