mirror of
https://github.com/lights0123/n-link.git
synced 2024-12-22 18:25:27 +00:00
102 lines
3.4 KiB
Vue
102 lines
3.4 KiB
Vue
<template>
|
|
<div class="header border-b px-2 py-2 flex w-full">
|
|
<button @click="$devices.enumerate()" class="flex-shrink-0 mr-2 focus:outline-none"
|
|
:class="$devices.enumerating && 'cursor-not-allowed opacity-25'" :disabled="$devices.enumerating">
|
|
<img src="~feather-icons/dist/icons/refresh-cw.svg" class="w-5"/>
|
|
<div v-if="scanHint && Object.keys($devices.devices).length === 0" class="p-4 refresh-popup">
|
|
Click to connect a device
|
|
</div>
|
|
</button>
|
|
<el-popover width="239" :visible-arrow="false" popper-class="focus:outline-none dev-select-pop" v-model="active"
|
|
class="w-full overflow-hidden">
|
|
<div slot="reference" class="relative w-full focus:outline-none">
|
|
<div
|
|
class="block w-full bg-white border border-gray-400 hover:border-gray-500 px-4 py-3/2 pr-8 rounded shadow leading-tight focus:outline-none focus:shadow-outline h-8 truncate">
|
|
<span v-if="selectedCalculator">
|
|
<small class="tabular-nums">{{ selectedCalculator }}</small>
|
|
<span v-if="calc && calc.info"> {{ calc.info.name }}</span>
|
|
<span v-else> {{ calc.name }}</span>
|
|
</span>
|
|
<span v-else class="text-gray-700 text-sm">
|
|
Select a device...
|
|
</span>
|
|
</div>
|
|
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center px-2 text-gray-700">
|
|
<svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
|
|
<path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<ul>
|
|
<li v-for="(device, id) in $devices.devices" :key="id"
|
|
class="p-2 hover:bg-blue-500 hover:text-white w-full cursor-pointer" @click="select(id)">
|
|
<small class="tabular-nums">{{ id }}</small>
|
|
<span v-if="device.info"> {{ device.info.name }}</span>
|
|
<span v-else> {{ device.name }}</span>
|
|
</li>
|
|
<div v-if="!anyCalcs" class="p-2 w-full">
|
|
No calculators found
|
|
</div>
|
|
</ul>
|
|
</el-popover>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {Component, Prop, PropSync, Vue} from 'vue-property-decorator';
|
|
import ElPopover from 'element-ui/packages/popover/src/main.vue';
|
|
import 'element-ui/lib/theme-chalk/popover.css';
|
|
|
|
@Component({components: {ElPopover}})
|
|
export default class DeviceSelect extends Vue {
|
|
@PropSync('selected', {type: [String]}) selectedCalculator!: string | null;
|
|
@Prop({type: Boolean, default: false}) scanHint!: boolean;
|
|
active = false;
|
|
|
|
select(dev: string) {
|
|
this.selectedCalculator = dev;
|
|
this.active = false;
|
|
}
|
|
|
|
get calc() {
|
|
return this.selectedCalculator && this.$devices.devices[this.selectedCalculator];
|
|
}
|
|
|
|
get anyCalcs() {
|
|
return !!Object.keys(this.$devices.devices).length;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.header {
|
|
height: 50px;
|
|
}
|
|
|
|
.refresh-popup {
|
|
$offset: 5px;
|
|
$size: 9px;
|
|
margin-left: -4.5px;
|
|
margin-top: 10px;
|
|
@apply absolute bg-blue-600 text-white;
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
left: $offset;
|
|
top: $size * -2;
|
|
border-top: $size solid transparent;
|
|
border-right: $size solid transparent;
|
|
border-bottom: $size solid theme('colors.blue.600');
|
|
|
|
border-left: $size solid transparent;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss">
|
|
.dev-select-pop {
|
|
margin-top: 0 !important;
|
|
@apply p-0 overflow-hidden;
|
|
}
|
|
</style>
|