blob: 75ac46928f23a5ccde09ac445d07d7fef2e1de05 [file] [log] [blame]
/** * Licensed to the Apache Software Foundation (ASF) under one or more *
contributor license agreements. See the NOTICE file distributed with * this work
for additional information regarding copyright ownership. * The ASF licenses
this file to You under the Apache License, Version 2.0 * (the "License"); you
may not use this file except in compliance with * the License. You may obtain a
copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless
required by applicable law or agreed to in writing, software * distributed under
the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. * See the License for the
specific language governing permissions and * limitations under the License. */
<template>
<div
class="rk-dashboard-bar-select cp flex-h"
v-clickout="
() => {
search = '';
visible = false;
}
"
:class="{ active: visible }"
>
<div
class="rk-dashboard-bar-i flex-h"
@click="
visible = !visible;
SEARCH_ENDPOINTS('');
"
>
<svg class="icon lg mr-15">
<use :xlink:href="`#${icon}`"></use>
</svg>
<div class="mr-15 rk-dashboard-bar-i-text">
<div class="sm grey">{{ title }}</div>
<div class="ell" v-tooltip:right.ellipsis="current.label || ''">
{{ current.label }}
</div>
</div>
<svg
class="icon lg trans"
:style="`transform: rotate(${visible ? 180 : 0}deg)`"
>
<use xlink:href="#arrow-down"></use>
</svg>
</div>
<div class="rk-dashboard-sel" v-if="visible">
<div>
<input
type="text"
class="rk-dashboard-sel-search"
v-model="search"
@input="handleSearch"
/>
<svg
class="icon sm close"
style="margin-top: 3px;"
@click="search = ''"
v-if="search"
>
<use xlink:href="#clear"></use>
</svg>
</div>
<div class="rk-dashboard-opt-wrapper scroll_hide">
<EndpointOpt
@handleSelect="handleSelect"
:class="{ active: i.key === current.key }"
v-for="i in data"
:key="i.key"
:data="i"
/>
</div>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component, Prop } from 'vue-property-decorator';
import { Action } from 'vuex-class';
import EndpointOpt from './tool-bar-endpoint-select-opt.vue';
@Component({ components: { EndpointOpt } })
export default class ToolBarEndpointSelect extends Vue {
@Action('SEARCH_ENDPOINTS') public SEARCH_ENDPOINTS: any;
@Prop() public data!: any;
@Prop() public current!: any;
@Prop() public title!: string;
@Prop() public icon!: string;
public search: string = '';
public visible: boolean = false;
public handleSearch() {
this.SEARCH_ENDPOINTS(this.search);
}
public handleOpen() {
this.visible = true;
}
public handleSelect(i: any) {
this.$emit('onChoose', i);
this.visible = false;
}
}
</script>
<style lang="scss" scoped>
.rk-dashboard-bar-select {
position: relative;
z-index: 1;
height: 52px;
justify-content: space-between;
.sm {
line-height: 12px;
}
.icon {
flex-shrink: 0;
}
}
.rk-dashboard-bar-i-text {
max-width: 250px;
}
.rk-dashboard-bar-i {
height: 100%;
padding: 0 15px;
border-right: 2px solid #252a2f;
&.active,
&:hover {
background-color: #40454e;
}
}
.rk-dashboard-sel {
position: absolute;
top: 50px;
left: -1px;
box-shadow: 0 1px 6px rgba(99, 99, 99, 0.2);
background-color: #252a2f;
width: 100%;
border-radius: 0 0 3px 3px;
.close {
position: absolute;
right: 10px;
top: 12px;
opacity: 0.6;
&:hover {
opacity: 1;
}
}
}
.rk-dashboard-opt {
padding: 7px 15px;
&.active,
&:hover {
background-color: #40454e;
}
}
.rk-dashboard-sel-search {
width: calc(100% - 4px);
border: 0;
background-color: #333840;
color: #eee;
outline: 0;
padding: 7px 25px 7px 10px;
margin: 2px;
border-radius: 3px;
}
.rk-dashboard-opt-wrapper {
overflow: auto;
max-height: 200px;
padding-bottom: 2px;
}
</style>