mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-23 23:21:02 +01:00
perf: ♻️ Supports retrieving a list of applications
This commit is contained in:
parent
344b385d33
commit
b1a6ba7ae4
@ -53,6 +53,7 @@
|
|||||||
"husky": "9.0.11",
|
"husky": "9.0.11",
|
||||||
"lodash-es": "4.17.21",
|
"lodash-es": "4.17.21",
|
||||||
"pinia": "2.1.7",
|
"pinia": "2.1.7",
|
||||||
|
"pinyin-pro": "^3.26.0",
|
||||||
"postcss": "8.4.38",
|
"postcss": "8.4.38",
|
||||||
"postcss-nested": "6.0.1",
|
"postcss-nested": "6.0.1",
|
||||||
"postcss-scss": "4.0.9",
|
"postcss-scss": "4.0.9",
|
||||||
|
@ -3,12 +3,16 @@
|
|||||||
:hide-on-click="false"
|
:hide-on-click="false"
|
||||||
:disabled="loading || floating"
|
:disabled="loading || floating"
|
||||||
max-height="300px"
|
max-height="300px"
|
||||||
@mouseenter="getAppData"
|
trigger="click"
|
||||||
|
@visible-change="onVisibleChange"
|
||||||
>
|
>
|
||||||
<slot :loading :trigger="handleTrigger" />
|
<slot :loading :trigger="handleTrigger" />
|
||||||
|
|
||||||
<template #dropdown>
|
<template #dropdown>
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
|
<el-dropdown-item command="search" @click.stop>
|
||||||
|
<el-input v-model="keyword" class="!w-[calc(100%+18px)] !-mx-[9px] !-mt-1" :placeholder="$t('common.search')" prefix-icon="Search"></el-input>
|
||||||
|
</el-dropdown-item>
|
||||||
<el-dropdown-item
|
<el-dropdown-item
|
||||||
v-for="item of options"
|
v-for="item of options"
|
||||||
:key="item.value"
|
:key="item.value"
|
||||||
@ -27,6 +31,9 @@
|
|||||||
<script>
|
<script>
|
||||||
import { openFloatControl } from '$/utils/device/index.js'
|
import { openFloatControl } from '$/utils/device/index.js'
|
||||||
|
|
||||||
|
import { pinyin } from 'pinyin-pro'
|
||||||
|
import { sleep } from '$/utils'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
device: {
|
device: {
|
||||||
@ -42,6 +49,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
loading: false,
|
loading: false,
|
||||||
appList: [],
|
appList: [],
|
||||||
|
keyword: '',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -58,8 +66,13 @@ export default {
|
|||||||
icon: 'HomeFilled',
|
icon: 'HomeFilled',
|
||||||
})
|
})
|
||||||
|
|
||||||
if (value[1]) {
|
value[0].divided = true
|
||||||
value[1].divided = true
|
|
||||||
|
if (this.keyword) {
|
||||||
|
return value.filter((item) => {
|
||||||
|
const pinyinLabel = pinyin(item.label, { toneType: 'none' })
|
||||||
|
return (item.label + pinyinLabel).includes(this.keyword)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return value
|
return value
|
||||||
@ -69,6 +82,12 @@ export default {
|
|||||||
this.getAppData()
|
this.getAppData()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
async onVisibleChange(val) {
|
||||||
|
if (!val) {
|
||||||
|
await sleep()
|
||||||
|
this.keyword = ''
|
||||||
|
}
|
||||||
|
},
|
||||||
async getAppData() {
|
async getAppData() {
|
||||||
const data = await window.scrcpy.getAppList(this.device.id)
|
const data = await window.scrcpy.getAppList(this.device.id)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user