mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-13 16:39:59 +00:00
79 lines
1.8 KiB
Vue
79 lines
1.8 KiB
Vue
<template>
|
|
<div class="home">
|
|
<Header />
|
|
<FilterTile @user-is-searchin="searching" class="filter-container" />
|
|
|
|
<div class="item-group-container">
|
|
<ItemGroup
|
|
v-for="item in items"
|
|
:key="item.id"
|
|
:groupId="item.id"
|
|
:title="item.name"
|
|
:collapsed="item.collapsed"
|
|
:items="filterTiles(item.items)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Header from '@/components/Header.vue';
|
|
import FilterTile from '@/components/FilterTile.vue';
|
|
import ItemGroup from '@/components/ItemGroup.vue';
|
|
import * as linkData from '../data/item-data.json';
|
|
|
|
export default {
|
|
name: 'home',
|
|
props: {
|
|
title: { default: 'Panel', type: String },
|
|
subtitle: { default: 'All your server management tools in one place', type: String },
|
|
},
|
|
components: {
|
|
Header,
|
|
FilterTile,
|
|
ItemGroup,
|
|
},
|
|
data: () => ({
|
|
items: linkData.default,
|
|
searchTile: '',
|
|
}),
|
|
methods: {
|
|
searching(searchTile) {
|
|
this.searchTile = searchTile;
|
|
},
|
|
getDomainFromUrl(url) {
|
|
const urlPattern = /^(?:https?:\/\/)?(?:w{3}\.)?([a-z\d.-]+)\.(?:[a-z.]{2,10})(?:[/\w.-]*)*/;
|
|
const domainPattern = url.match(urlPattern);
|
|
return domainPattern ? domainPattern[1] : '';
|
|
},
|
|
filterTiles(allTiles) {
|
|
return allTiles.filter((tile) => {
|
|
const searchTerm = this.searchTile.toLowerCase();
|
|
return tile.title.toLowerCase().includes(searchTerm)
|
|
|| tile.provider.toLowerCase().includes(searchTerm)
|
|
|| this.getDomainFromUrl(tile.url).includes(searchTerm);
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.home {
|
|
background: #2F323A;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.item-group-container {
|
|
display: flex;
|
|
margin: 2rem;
|
|
align-items:flex-start;
|
|
align-content:flex-start;
|
|
.item-group-outer {
|
|
margin: 10px;
|
|
}
|
|
}
|
|
</style>
|