mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
100 lines
2.0 KiB
Vue
100 lines
2.0 KiB
Vue
<template>
|
|
<div class="panel">
|
|
<b-autocomplete
|
|
ref="autocomplete"
|
|
v-model="query"
|
|
placeholder="Search containers using ⌘ + k, ⌃k"
|
|
field="name"
|
|
open-on-focus
|
|
keep-first
|
|
expanded
|
|
:data="results"
|
|
@select="selected"
|
|
>
|
|
<template slot-scope="props">
|
|
<div class="media">
|
|
<div class="media-left">
|
|
<span :class="props.option.state"><icon name="crate"></icon></span>
|
|
</div>
|
|
<div class="media-content">
|
|
{{ props.option.name }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</b-autocomplete>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from "vuex";
|
|
import fuzzysort from "fuzzysort";
|
|
|
|
import PastTime from "./PastTime";
|
|
import Icon from "./Icon";
|
|
|
|
export default {
|
|
props: {
|
|
maxResults: {
|
|
default: 20,
|
|
type: Number,
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
query: "",
|
|
};
|
|
},
|
|
name: "FuzzySearchModal",
|
|
components: {
|
|
Icon,
|
|
PastTime,
|
|
},
|
|
mounted() {
|
|
this.$nextTick(() => this.$refs.autocomplete.focus());
|
|
},
|
|
watch: {},
|
|
methods: {
|
|
selected(item) {
|
|
this.$router.push({ name: "container", params: { id: item.id, name: item.name } });
|
|
this.$emit("close");
|
|
},
|
|
},
|
|
computed: {
|
|
...mapState(["containers"]),
|
|
preparedContainers() {
|
|
return this.containers.map((c) => ({
|
|
name: c.name,
|
|
id: c.id,
|
|
created: c.created,
|
|
state: c.state,
|
|
preparedName: fuzzysort.prepare(c.name),
|
|
}));
|
|
},
|
|
results() {
|
|
const options = {
|
|
limit: this.maxResults,
|
|
key: "preparedName",
|
|
};
|
|
if (this.query) return fuzzysort.go(this.query, this.preparedContainers, options).map((i) => i.obj);
|
|
else {
|
|
return [...this.containers].sort((a, b) => b.created - a.created);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.panel {
|
|
height: 400px;
|
|
}
|
|
|
|
.running {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.exited {
|
|
color: var(--scheme-main-ter);
|
|
}
|
|
</style>
|