mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-30 11:32:10 +03:00
Filter tile functionality
This commit is contained in:
parent
2456352d2a
commit
4e9f436972
31
src/components/FilterTile.vue
Normal file
31
src/components/FilterTile.vue
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<el-input
|
||||||
|
placeholder="Start typing station name or code"
|
||||||
|
v-model="input"
|
||||||
|
v-on:input="userIsTypingSomething">
|
||||||
|
</el-input>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'FilterTile',
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
input: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
userIsTypingSomething (stuff) {
|
||||||
|
this.$emit('user-is-searchin', stuff)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
|
<style scoped lang="scss">
|
||||||
|
|
||||||
|
</style>
|
@ -2,13 +2,14 @@
|
|||||||
<div class="home">
|
<div class="home">
|
||||||
<h1>{{title}}</h1>
|
<h1>{{title}}</h1>
|
||||||
<span class="subtitle">{{subtitle}}</span>
|
<span class="subtitle">{{subtitle}}</span>
|
||||||
|
<FilterTile @user-is-searchin="searching" />
|
||||||
<div class="item-group-container">
|
<div class="item-group-container">
|
||||||
<ItemGroup
|
<ItemGroup
|
||||||
v-for="item in items"
|
v-for="item in items"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:groupId="item.id"
|
:groupId="item.id"
|
||||||
:title="item.name"
|
:title="item.name"
|
||||||
:items="item.items"
|
:items="filterTiles(item.items)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -16,17 +17,30 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
import FilterTile from '@/components/FilterTile.vue'
|
||||||
import ItemGroup from '@/components/ItemGroup.vue'
|
import ItemGroup from '@/components/ItemGroup.vue'
|
||||||
import * as linkData from './../data/item-data.json'
|
import * as linkData from './../data/item-data.json'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'home',
|
name: 'home',
|
||||||
components: {
|
components: {
|
||||||
|
FilterTile,
|
||||||
ItemGroup
|
ItemGroup
|
||||||
},
|
},
|
||||||
data: () => {
|
data: () => {
|
||||||
return {
|
return {
|
||||||
items: linkData.default
|
items: linkData.default,
|
||||||
|
searchTile: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
searching (searchTile) {
|
||||||
|
this.searchTile = searchTile
|
||||||
|
},
|
||||||
|
filterTiles (allTiles) {
|
||||||
|
return allTiles.filter(tile => {
|
||||||
|
return tile.title.toLowerCase().includes(this.searchTile.toLowerCase())
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
|
Loading…
Reference in New Issue
Block a user