-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathKBreadcrumbs.vue
378 lines (339 loc) · 10.9 KB
/
KBreadcrumbs.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
<template>
<div
v-show="showSingleItem || crumbs.length > 1"
:class="{ 'breadcrumbs-collapsed': collapsedCrumbs.length }"
>
<nav class="breadcrumbs" v-bind="$attrs" :aria-label="$attrs.ariaLabel">
<div
v-show="collapsedCrumbs.length"
class="breadcrumbs-dropdown-wrapper"
>
<KIconButton
size="small"
:icon="showDropdown ? 'chevronUp' : 'chevronDown'"
appearance="raised-button"
@click="showDropdown = !showDropdown"
/>
<div
v-if="showDropdown"
class="breadcrumbs-dropdown"
:style="{ background: $themeTokens.surface }"
>
<ol class="breadcrumbs-dropdown-items">
<li
v-for="(crumb, index) in collapsedCrumbs"
:key="index"
class="breadcrumbs-dropdown-item"
>
<KRouterLink
v-if="crumb.link"
class="krouter-item"
:text="crumb.text"
:to="crumb.link"
>
<template #text="{ text }">
<span class="breadcrumbs-crumb-text" dir="auto">{{ text }}</span>
</template>
</KRouterLink>
<span v-else dir="auto">{{ crumb.text }}</span>
</li>
</ol>
</div>
</div>
<ol class="breadcrumbs-visible-items">
<template v-for="(crumb, index) in crumbs">
<li
v-if="index !== crumbs.length - 1"
v-show="!crumb.collapsed"
:key="index"
class="breadcrumbs-visible-item breadcrumbs-visible-item-notlast"
>
<KRouterLink
v-if="crumb.link"
:text="crumb.text"
:to="crumb.link"
dir="auto"
>
<template #text="{ text }">
<span class="breadcrumbs-crumb-text">{{ text }}</span>
</template>
</KRouterLink>
<span v-else>{{ crumb.text }}</span>
</li>
<li
v-else
:key="index"
class="breadcrumb-visible-item-last breadcrumbs-visible-item"
>
<span
class="breadcrumbs-crumb-text"
:style="{ maxWidth: lastBreadcrumbMaxWidth }"
dir="auto"
>
{{ crumb.text }}
</span>
</li>
</template>
</ol>
</nav>
<!-- This is a duplicate of breacrumbs-visible-items to help to reference sizes. -->
<div class="breadcrumbs breadcrumbs-offscreen" aria-hidden="true">
<ol class="breadcrumbs-visible-items">
<template v-for="(crumb, index) in crumbs">
<li
v-if="index !== crumbs.length - 1"
:ref="`crumb${index}`"
:key="index"
class="breadcrumbs-visible-item breadcrumbs-visible-item-notlast"
>
<KRouterLink v-if="crumb.link" :text="crumb.text" :to="crumb.link" tabindex="-1">
<template #text="{ text }">
<span class="breadcrumbs-crumb-text">{{ text }}</span>
</template>
</KRouterLink>
<span v-else>{{ crumb.text }}</span>
</li>
<li
v-else
:ref="`crumb${index}`"
:key="index"
class="breadcrumb-visible-item-last breadcrumbs-visible-item"
>
<span
class="breadcrumbs-crumb-text"
:style="{ maxWidth: lastBreadcrumbMaxWidth }"
>
{{ crumb.text }}
</span>
</li>
</template>
</ol>
</div>
</div>
</template>
<script>
import filter from 'lodash/filter';
import startsWith from 'lodash/startsWith';
import throttle from 'lodash/throttle';
import every from 'lodash/every';
import keys from 'lodash/keys';
import KResponsiveElementMixin from './KResponsiveElementMixin';
const DROPDOWN_BTN_WIDTH = 55;
const DEFAULT_LAST_BREADCRUMB_MAX_WIDTH = 300;
function validateLinkObject(object) {
const validKeys = ['name', 'path', 'params', 'query'];
return every(keys(object), key => validKeys.includes(key));
}
/**
* Used to aid deeply nested navigation of content channels, topics, and resources
*/
export default {
name: 'KBreadcrumbs',
mixins: [KResponsiveElementMixin],
inheritAttrs: false,
props: {
/**
* An array of objects, each with a `text` attribute (String) and a
* `link` attribute (vue router link object). The `link` attribute
* of the last item in the array is optional and ignored. The `link`
* attribute can be set to `null` which will render the breadcrumb only
* as text, regardless of its position in the breadcrumb.
*/
items: {
type: Array,
required: true,
validator(crumbItems) {
// All must have text
if (!crumbItems.every(crumb => Boolean(crumb.text))) {
return false;
}
// If link is truthy make sure it is a valid router link
return crumbItems.every(crumb => !crumb.link || validateLinkObject(crumb.link));
},
},
/**
* By default, the breadcrums will be hidden when the length of items is 1.
* When set to `true`, a breadcrumb will be shown even when there is only one.
*/
showSingleItem: {
type: Boolean,
default: false,
},
},
data: () => ({
// Array of crumb objects.
// Each object contains:
// text, router-link 'to' object, vue ref, and its collapsed state
crumbs: [],
showDropdown: false,
lastBreadcrumbMaxWidth: `${DEFAULT_LAST_BREADCRUMB_MAX_WIDTH}px`,
}),
computed: {
collapsedCrumbs() {
return this.crumbs.filter(crumb => crumb.collapsed === true).reverse();
},
parentWidth() {
return this.elementWidth;
},
},
watch: {
items(val) {
this.crumbs = Array.from(val);
this.attachRefs();
},
},
created() {
this.crumbs = Array.from(this.items);
},
mounted() {
this.attachRefs();
// The throttled update function is defined here and not as a method on purpose
// since having it defined as a method on the options object would cause problems
// when there are more KBreadcrumbs instances rendered on one page.
// In such a scenario, all instances would share the same throttled function
// resulting in some instances not being updated when they should be.
// This is happening because of how the Vue component constructor and instances are built.
// Having it defined in the context of the `mounted` function ensures that each component
// instance will have its own throttled update function.
const throttledUpdateCrumbs = throttle(this.updateCrumbs, 100);
this.$watch('parentWidth', throttledUpdateCrumbs);
},
methods: {
attachRefs() {
this.$nextTick(() => {
const crumbRefs = filter(this.$refs, (value, key) => startsWith(key, 'crumb'));
this.crumbs = this.crumbs.map((crumb, index) => {
const updatedCrumb = crumb;
updatedCrumb.ref = crumbRefs[index];
return updatedCrumb;
});
this.updateCrumbs();
});
},
updateCrumbs() {
if (this.crumbs.length) {
// needs to be reset before another re-calculation
// otherwise calculactions below won't be precise
this.lastBreadcrumbMaxWidth = `${DEFAULT_LAST_BREADCRUMB_MAX_WIDTH}px`;
this.$nextTick(() => {
const tempCrumbs = Array.from(this.crumbs);
let lastCrumbWidth = Math.ceil(tempCrumbs.pop().ref[0].getBoundingClientRect().width);
let remainingWidth = this.parentWidth - DROPDOWN_BTN_WIDTH - lastCrumbWidth;
let trackingIndex = this.crumbs.length - 2;
while (tempCrumbs.length) {
if (remainingWidth <= 0) {
tempCrumbs.forEach((crumb, index) => {
const updatedCrumb = crumb;
updatedCrumb.collapsed = true;
this.crumbs.splice(index, 1, updatedCrumb);
});
break;
}
lastCrumbWidth = Math.ceil(
tempCrumbs[tempCrumbs.length - 1].ref[0].getBoundingClientRect().width
);
if (lastCrumbWidth > remainingWidth) {
tempCrumbs.forEach((crumb, index) => {
const updatedCrumb = crumb;
updatedCrumb.collapsed = true;
this.crumbs.splice(index, 1, updatedCrumb);
});
break;
}
remainingWidth -= lastCrumbWidth;
const lastCrumb = tempCrumbs.pop();
lastCrumb.collapsed = false;
this.crumbs.splice(trackingIndex, 1, lastCrumb);
trackingIndex -= 1;
}
// Allow the last breadcrumb use all space available
// Fixes https://github.com/learningequality/kolibri-design-system/issues/198
// and https://github.com/learningequality/kolibri/issues/6918
if (remainingWidth > 0) {
this.lastBreadcrumbMaxWidth = `${DEFAULT_LAST_BREADCRUMB_MAX_WIDTH +
remainingWidth}px`;
}
});
}
},
},
};
</script>
<style lang="scss" scoped>
@import './styles/definitions';
$crumb-max-width: 300px;
.breadcrumbs {
height: 32px;
margin-top: 8px;
margin-bottom: 8px;
font-size: 16px;
font-weight: bold;
line-height: 32px;
white-space: nowrap;
}
.breadcrumbs-crumb-text {
display: inline-block;
width: 100%;
max-width: $crumb-max-width;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
vertical-align: bottom;
}
.breadcrumbs-dropdown-wrapper {
display: inline-block;
&::after {
margin-right: 8px;
margin-left: 8px;
content: '›';
}
}
.breadcrumbs-dropdown {
@extend %dropshadow-8dp;
position: absolute;
z-index: 8;
max-width: 100%;
padding: 16px;
font-weight: bold;
}
.breadcrumbs-dropdown-items {
padding: 0;
margin: 0;
list-style: none;
}
.breadcrumbs-dropdown-item {
display: block;
padding-top: 8px;
padding-bottom: 8px;
.krouter-item {
width: 100%;
}
}
.breadcrumbs-visible-items {
display: inline-block;
width: 100%;
padding: 0;
margin: 0;
white-space: nowrap;
list-style: none;
.breadcrumbs-collapsed & {
// account for dropdown button width
width: calc(100% - 55px);
}
}
.breadcrumbs-visible-item {
display: inline-block;
max-width: 100%;
}
.breadcrumbs-visible-item-notlast {
&::after {
margin-right: 8px;
margin-left: 8px;
content: '›';
}
}
.breadcrumbs-offscreen {
position: absolute;
left: -1000em;
}
</style>