* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
106 lines
2.2 KiB
Vue
106 lines
2.2 KiB
Vue
<template>
|
|
<div :class="$style.list">
|
|
<div v-for="node in slicedNodes" :class="[$style.container, $style[size]]" :key="node.name">
|
|
<NodeIcon :nodeType="node" :size="size === 'md' ? 24 : 18" :showTooltip="true" />
|
|
</div>
|
|
<div
|
|
:class="[$style.button, size === 'md' ? $style.buttonMd : $style.buttonSm]"
|
|
v-if="filteredCoreNodes.length > limit + 1"
|
|
>
|
|
+{{ hiddenNodes }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import NodeIcon from '@/components/NodeIcon.vue';
|
|
import { genericHelpers } from '@/mixins/genericHelpers';
|
|
import { ITemplatesNode } from '@/Interface';
|
|
import mixins from 'vue-typed-mixins';
|
|
import { filterTemplateNodes } from '@/utils';
|
|
export default mixins(genericHelpers).extend({
|
|
name: 'NodeList',
|
|
props: {
|
|
nodes: {
|
|
type: Array,
|
|
},
|
|
limit: {
|
|
type: Number,
|
|
default: 4,
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: 'sm',
|
|
},
|
|
},
|
|
components: {
|
|
NodeIcon,
|
|
},
|
|
computed: {
|
|
filteredCoreNodes() {
|
|
return filterTemplateNodes(this.nodes as ITemplatesNode[]);
|
|
},
|
|
hiddenNodes(): number {
|
|
return this.filteredCoreNodes.length - this.countNodesToBeSliced(this.filteredCoreNodes);
|
|
},
|
|
slicedNodes(): ITemplatesNode[] {
|
|
return this.filteredCoreNodes.slice(0, this.countNodesToBeSliced(this.filteredCoreNodes));
|
|
},
|
|
},
|
|
methods: {
|
|
countNodesToBeSliced(nodes: ITemplatesNode[]): number {
|
|
if (nodes.length > this.limit) {
|
|
return this.limit - 1;
|
|
} else {
|
|
return this.limit;
|
|
}
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.list {
|
|
max-width: 100px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
.container {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
.sm {
|
|
margin-left: var(--spacing-2xs);
|
|
}
|
|
.md {
|
|
margin-left: var(--spacing-xs);
|
|
}
|
|
.button {
|
|
top: 0px;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: var(--color-background-light);
|
|
border: 1px var(--color-foreground-base) solid;
|
|
border-radius: var(--border-radius-base);
|
|
font-size: 10px;
|
|
font-weight: var(--font-weight-bold);
|
|
color: var(--color-text-base);
|
|
}
|
|
.buttonSm {
|
|
margin-left: var(--spacing-2xs);
|
|
width: 20px;
|
|
min-width: 20px;
|
|
height: 20px;
|
|
}
|
|
.buttonMd {
|
|
margin-left: var(--spacing-xs);
|
|
width: 24px;
|
|
min-width: 24px;
|
|
height: 24px;
|
|
}
|
|
</style>
|