|
@@ -0,0 +1,88 @@
|
|
|
+<template>
|
|
|
+ <b-overlay :show="filteredNodes === undefined" class="h-100" z-index="0">
|
|
|
+ <div class="kit-list">
|
|
|
+ <header class="kit-list-header">
|
|
|
+ <div class="kit-list-header-intro">
|
|
|
+ FIXME Intro
|
|
|
+ </div>
|
|
|
+ <search-input v-model="search" class="input-search" />
|
|
|
+ </header>
|
|
|
+
|
|
|
+ <div class="kit-list-container nodes-grid">
|
|
|
+ <node-view
|
|
|
+ v-for="node in filteredNodes" :key="'kit-' + node.id"
|
|
|
+ :node="node"
|
|
|
+ mode="card"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </b-overlay>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
+
|
|
|
+import { NodeView } from '@/components/nodes'
|
|
|
+import { SearchInput } from '@/components/formItems'
|
|
|
+import { searchInNode } from '@/store/utils'
|
|
|
+
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'KitList',
|
|
|
+
|
|
|
+ components: {
|
|
|
+ NodeView,
|
|
|
+ SearchInput
|
|
|
+ },
|
|
|
+
|
|
|
+ props: {
|
|
|
+ },
|
|
|
+
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ search: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['sheets']),
|
|
|
+
|
|
|
+ filteredNodes () {
|
|
|
+ if (!this.sheets) return
|
|
|
+ const search = this.search.toLowerCase()
|
|
|
+ return this.sheets.filter(node => searchInNode(search, node))
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.kit-list {
|
|
|
+ padding: 1.15rem;
|
|
|
+
|
|
|
+ @include media-breakpoint-up($size-bp) {
|
|
|
+ padding: 2.15rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-header {
|
|
|
+ margin-bottom: 1.15rem;
|
|
|
+
|
|
|
+ @include media-breakpoint-up($size-bp) {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 2.15rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .input-search {
|
|
|
+ min-width: 30%;
|
|
|
+ margin-bottom: 2.15rem;
|
|
|
+ margin-top: 1.15rem;
|
|
|
+
|
|
|
+ @include media-breakpoint-up($size-bp) {
|
|
|
+ margin: 0;
|
|
|
+ margin-left: 1.15rem;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|