Files
frost-navigation/src/views/Home.vue

524 lines
14 KiB
Vue
Raw Normal View History

2021-02-06 23:36:46 +08:00
<template>
<el-container class="home">
<!-- 侧边栏 -->
<el-aside class="home-aside">
2021-05-28 21:49:46 +08:00
<el-menu
class="side-nav"
default-active="search"
:collapse="config.sideMenuCollapse"
@select="changeCategory"
>
2021-02-06 23:36:46 +08:00
<!-- 搜索引擎 -->
<el-menu-item index="search">
<i class="el-icon-search"></i>
<span slot="title">搜索</span>
</el-menu-item>
<!-- 全部链接 -->
2021-02-06 23:36:46 +08:00
<el-menu-item index="all">
<i class="el-icon-menu"></i>
<span slot="title">全部链接</span>
2021-02-06 23:36:46 +08:00
</el-menu-item>
<!-- 分类 -->
2021-05-28 21:49:46 +08:00
<el-menu-item
v-for="(item, itemIndex) in navLinks.list"
:key="'list-' + itemIndex"
:index="itemIndex.toString()"
>
2021-05-09 15:54:36 +08:00
<i :class="item.icon || 'el-icon-link'"></i>
2021-02-06 23:36:46 +08:00
<span slot="title">{{ item.title }}</span>
</el-menu-item>
</el-menu>
</el-aside>
<!-- 内容 -->
<el-main class="home-content">
<div class="wrapper">
2021-02-06 23:36:46 +08:00
<!-- 搜索引擎 -->
<div v-show="show.searchEngine" class="search-engine">
<!-- 搜索栏 -->
<div class="search-bar shadow-3">
<!-- 输入 -->
2021-05-28 21:49:46 +08:00
<input
v-model="searchEngine.keyword"
class="input" type="text"
@blur="searchEngine.isFocus = false"
@focus="searchEngine.isFocus = true"
@keydown.enter.exact="searchEngineSubmit()"
/>
<!-- 清除 -->
2021-05-28 21:49:46 +08:00
<div
v-show="searchEngine.keyword.length > 0"
class="btn btn-clear"
@click="searchEngine.keyword = ''"
>
<i class="el-icon-close"></i>
</div>
<!-- 搜索 -->
<div class="btn btn-search" @click="searchEngineSubmit()">
<i class="el-icon-search"></i>
</div>
</div>
<!-- 选择搜索引擎 -->
2021-05-28 21:49:46 +08:00
<el-radio-group
v-model="config.searchEngine"
size="small"
2021-05-09 15:54:36 +08:00
:class="['search-type', { fade: searchEngine.isFocus }]"
>
2021-05-28 21:49:46 +08:00
<!-- 分类 -->
<div v-for="(category, cIndex) in searchEngine.list" :key="cIndex" class="category">
<!-- 标题 -->
<div class="title">{{ category.title }}</div>
<!-- -->
<el-radio
v-for="item in category.list" :key="item.name"
:label="item.name" class="shadow-2"
>
<Icon :path="item.icon || 'website/default.svg'" size="1.2em" />
<i class="name">{{ item.name }}</i>
<i class="desc limit-line-1">{{ item.desc }}</i>
</el-radio>
2021-05-28 21:49:46 +08:00
</div>
</el-radio-group>
</div>
<!-- 链接搜索框 -->
2021-05-28 21:49:46 +08:00
<el-input
v-show="show.searchLink" v-model="searchLink.keyword"
class="link-search shadow-2" placeholder="搜索链接" clearable
>
2021-05-28 21:49:46 +08:00
<el-select slot="prepend" v-model="searchLink.type" placeholder="类型">
<el-option label="全部" value="all"></el-option>
<el-option label="标题" value="title"></el-option>
<el-option label="链接" value="link"></el-option>
</el-select>
</el-input>
<!-- 链接列表树 -->
2021-05-28 21:49:46 +08:00
<el-tree
v-show="show.linkTree" ref="linkTree" class="link-tree shadow-2"
:data="currentLinks" node-key="id" empty-text=""
2021-05-28 21:49:46 +08:00
:props="{ label: 'title', children: 'sub' }" :filter-node-method="searchLinkSubmit"
:default-expand-all="false" :expand-on-click-node="true"
>
2021-05-28 21:49:46 +08:00
<div
slot-scope="{ node, data }" class="link-item" :title="data.update"
@click="openLink(data.link, data.showOnly)"
>
<span class="title">{{ node.label }}</span>
<span class="link">{{ data.link }}</span>
</div>
</el-tree>
2021-02-06 23:36:46 +08:00
</div>
2021-02-06 23:36:46 +08:00
</el-main>
</el-container>
</template>
<script>
import Icon from '@/components/Icon.vue';
2021-02-06 23:36:46 +08:00
export default {
name: 'Home',
components: {
Icon
},
2021-05-23 23:35:58 +08:00
beforeRouteEnter(to, from, next) {
next(vm => {
vm.utils.changeTitle();
});
},
2021-02-06 23:36:46 +08:00
data() {
return {
config: this.$root.config.storage,
utils: this.$root.utils,
// 显示的内容
show: {
searchEngine: true,
2021-05-28 21:49:46 +08:00
searchLink: false,
linkTree: false,
},
// 搜索引擎
searchEngine: {
2021-05-09 15:54:36 +08:00
isFocus: false,
keyword: '',
2021-05-28 21:49:46 +08:00
url: '',
list: this.$root.config.searchEngines
},
// 导航链接
2021-02-06 23:36:46 +08:00
navLinks: this.$root.navLinks,
// 当前显示的链接
currentLinks: [],
2021-02-07 00:39:03 +08:00
// 搜索链接
2021-05-28 21:49:46 +08:00
searchLink: {
2021-02-07 00:39:03 +08:00
debounce: null,
keyword: '',
type: 'all'
}
2021-02-06 23:36:46 +08:00
};
},
watch: {
2021-05-28 21:49:46 +08:00
'searchLink.keyword': {
2021-02-06 23:36:46 +08:00
handler(value) {
2021-05-28 21:49:46 +08:00
clearTimeout(this.searchLink.debounce);
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
this.searchLink.debounce = setTimeout(() => {
2021-02-06 23:36:46 +08:00
this.$refs.linkTree.filter(value);
}, 500);
}
2021-02-07 00:39:03 +08:00
},
2021-05-28 21:49:46 +08:00
'searchLink.type': {
2021-02-07 00:39:03 +08:00
handler() {
// 更改搜索类型时自动重新搜索
2021-05-28 21:49:46 +08:00
this.$refs.linkTree.filter(this.searchLink.keyword);
2021-02-07 00:39:03 +08:00
}
2021-02-06 23:36:46 +08:00
}
},
methods: {
2021-05-22 18:14:46 +08:00
2021-02-06 23:36:46 +08:00
/**
* 更改当前显示的分类
*/
changeCategory(index) {
if (index == 'search') {
this.currentLinks = [];
this.show.searchEngine = true;
2021-05-28 21:49:46 +08:00
this.show.searchLink = false;
this.show.linkTree = false;
} else if (index == 'all') {
this.currentLinks = this.navLinks.list;
this.show.searchEngine = false;
2021-05-28 21:49:46 +08:00
this.show.searchLink = true;
this.show.linkTree = true;
2021-02-06 23:36:46 +08:00
} else {
this.currentLinks = this.navLinks.list[Number(index)].sub;
this.show.searchEngine = false;
2021-05-28 21:49:46 +08:00
this.show.searchLink = true;
this.show.linkTree = true;
2021-02-06 23:36:46 +08:00
}
2021-05-28 21:49:46 +08:00
this.searchLink.keyword = '';
2021-02-06 23:36:46 +08:00
},
2021-05-22 18:14:46 +08:00
2021-02-06 23:36:46 +08:00
/**
* 打开链接
*
* @param {string} link 需要打开的链接
* @param {boolean} showOnly 是否仅显示链接
2021-02-06 23:36:46 +08:00
*/
openLink(link, showOnly) {
if (link === undefined) {
return false;
}
if (showOnly) {
window.prompt('请复制后手动在新标签页中打开', link);
} else {
2021-02-06 23:36:46 +08:00
window.open(link, '_blank');
}
},
2021-05-22 18:14:46 +08:00
/**
* 搜索引擎
*/
searchEngineSubmit() {
var vm = this;
var search = this.searchEngine;
2021-05-28 21:49:46 +08:00
var selected = this.config.searchEngine;
var keyword = search.keyword;
var url = '';
if (keyword == '') {
return false;
2021-05-22 18:14:46 +08:00
} else {
keyword = window.encodeURIComponent(keyword);
}
2021-05-28 21:49:46 +08:00
for (let category in search.list) {
let list = search.list[category].list;
for (let index in list) {
if (list[index].name == selected) {
url = list[index].url.replace(/%keyword%/, keyword);
break;
}
}
}
2021-05-28 21:49:46 +08:00
vm.openLink(url);
},
2021-05-22 18:14:46 +08:00
2021-02-06 23:36:46 +08:00
/**
* 搜索链接
*/
2021-05-28 21:49:46 +08:00
searchLinkSubmit(value, data) {
2021-02-06 23:36:46 +08:00
// 关键词为空,显示全部
2021-02-07 00:39:03 +08:00
if (value === '') {
return true;
2021-02-06 23:36:46 +08:00
}
// 小写
value = value.toLowerCase();
2021-02-06 23:36:46 +08:00
// 过滤后
2021-02-07 00:39:03 +08:00
2021-05-28 21:49:46 +08:00
var searchType = this.searchLink.type;
var title = data.title.toLowerCase();
var link = (data.link || '');
2021-02-07 00:39:03 +08:00
var result = false;
if (searchType == 'all') {
// 全部
result = ((title.indexOf(value) !== -1) || (link.indexOf(value) !== -1));
2021-02-07 00:39:03 +08:00
} else if (searchType == 'title') {
// 标题
result = (title.indexOf(value) !== -1);
2021-02-07 00:39:03 +08:00
} else if (searchType == 'link') {
// 链接
result = (link.indexOf(value) !== -1);
2021-02-07 00:39:03 +08:00
}
2021-02-06 23:36:46 +08:00
return result;
2021-05-22 18:14:46 +08:00
},
2021-02-06 23:36:46 +08:00
},
}
</script>
<style lang="less" scoped>
.home-aside {
// width: 18rem !important;
width: auto !important;
2021-02-06 23:36:46 +08:00
overflow-x: hidden;
.side-nav {
min-height: 100%;
}
}
.home-content {
display: flex;
flex-direction: column;
align-items: center;
2021-02-06 23:36:46 +08:00
position: relative;
padding: 1rem;
background-color: @colorWhite;
overflow-y: scroll;
.wrapper {
width: 100%;
min-width: 16rem;
max-width: 60rem;
}
2021-05-28 21:49:46 +08:00
}
.search-engine {
display: flex;
align-items: center;
flex-direction: column;
2021-05-28 21:49:46 +08:00
.search-bar {
display: flex;
align-items: center;
2021-05-28 21:49:46 +08:00
position: sticky;
top: 3rem;
z-index: 100;
width: 100%;
max-width: 40rem;
height: 2.8rem;
border-radius: .25rem;
background-color: #FFF;
overflow: hidden;
2021-05-28 21:49:46 +08:00
.input {
flex-grow: 1;
padding-left: 1rem;
width: 0;
height: 100%;
outline: none;
}
.btn {
display: inline-flex;
align-items: center;
2021-05-28 21:49:46 +08:00
justify-content: center;
flex-shrink: 0;
width: 2.8rem;
height: 2.8rem;
2021-05-28 21:49:46 +08:00
background-color: transparent;
font-size: 1.2rem;
cursor: pointer;
}
2021-05-28 21:49:46 +08:00
.btn-clear {
width: 2rem;
opacity: .5;
transition: opacity @transitionTime;
&:hover {
opacity: 1;
}
2021-05-28 21:49:46 +08:00
}
2021-05-28 21:49:46 +08:00
.btn-search {
color: @colorPrimary;
transition: background @transitionTime, color @transitionTime;
2021-05-28 21:49:46 +08:00
&:hover {
background-color: @colorPrimary;
color: #FFF;
}
2021-05-28 21:49:46 +08:00
}
}
2021-05-28 21:49:46 +08:00
.search-type {
display: block;
margin: 4.5rem 0;
font-size: 1rem;
transition: opacity calc(@transitionTime * 4);
2021-05-28 21:49:46 +08:00
&.fade {
opacity: .5;
}
2021-05-28 21:49:46 +08:00
/deep/ .category {
padding: .5rem 0;
2021-05-09 15:54:36 +08:00
2021-05-28 21:49:46 +08:00
.title {
margin: .5rem 0;
2021-05-09 15:54:36 +08:00
}
2021-05-28 21:49:46 +08:00
.el-radio {
margin: .5rem;
padding: .8rem 1rem;
width: 16rem;
border-radius: .25rem;
border-left: solid .2rem transparent;
background-color: #FFF;
text-align: left;
font-weight: normal;
transition: border @transitionTime;
2021-05-28 21:49:46 +08:00
&:hover {
border-left-color: @colorSecondary;
color: @colorSecondary;
}
&.is-checked {
2021-05-28 21:49:46 +08:00
border-left-color: @colorPrimary;
color: @colorPrimary;
}
}
.el-radio__input {
display: none;
}
.el-radio__label {
2021-05-28 21:49:46 +08:00
display: flex;
align-items: center;
padding: 0;
transition: color @transitionTime;
i {
2021-05-28 21:49:46 +08:00
display: inline-block;
padding: .125rem 0;
font-style: normal;
}
.fn-icon {
2021-05-28 21:49:46 +08:00
flex-shrink: 0;
margin-right: .4rem;
}
.name {
flex-shrink: 0;
}
.desc {
2021-05-28 21:49:46 +08:00
flex-grow: 1;
margin-left: .5rem;
font-size: .8rem;
color: #CCC;
}
}
}
}
2021-05-28 21:49:46 +08:00
}
2021-05-28 21:49:46 +08:00
/deep/ .link-search {
@height: 2.8rem;
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
position: sticky;
z-index: 100;
top: 0;
margin-bottom: 1rem;
border-radius: .25rem;
line-height: @height;
overflow: hidden;
2021-02-07 00:39:03 +08:00
2021-05-28 21:49:46 +08:00
> div, > input {
border: none;
}
2021-05-28 21:49:46 +08:00
.el-input-group__prepend {
background-color: #FFF;
2021-02-07 00:39:03 +08:00
2021-05-28 21:49:46 +08:00
.el-select .el-input {
width: 4.5rem;
2021-02-07 00:39:03 +08:00
2021-05-28 21:49:46 +08:00
input {
padding: 0 .75rem;
2021-02-07 00:39:03 +08:00
}
}
2021-05-28 21:49:46 +08:00
}
2021-05-28 21:49:46 +08:00
.el-input__inner {
height: @height;
line-height: @height;
2021-02-06 23:36:46 +08:00
}
2021-05-28 21:49:46 +08:00
}
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
.link-tree {
padding: .5rem;
border-radius: .25rem;
font-size: 14px;
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
/deep/ .el-tree-node__content {
height: 3.6em;
}
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
.link-item {
> span {
display: -webkit-box;
}
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
.title {
font-weight: bold;
}
2021-02-06 23:36:46 +08:00
2021-05-28 21:49:46 +08:00
.link {
margin-top: .2rem;
opacity: .5;
2021-02-06 23:36:46 +08:00
}
}
}
</style>