From b20225a1d4077481032e28acc6053e29e83c7f8e Mon Sep 17 00:00:00 2001 From: Freeplay Date: Sat, 10 Jun 2023 20:48:35 -0400 Subject: [PATCH] format --- packages/client/src/components/MkDialog.vue | 176 +++++++++--------- packages/client/src/components/MkMenu.vue | 2 +- packages/client/src/components/MkModal.vue | 2 +- packages/client/src/components/form/input.vue | 2 +- 4 files changed, 93 insertions(+), 89 deletions(-) diff --git a/packages/client/src/components/MkDialog.vue b/packages/client/src/components/MkDialog.vue index bc12d7cb1..53f505948 100644 --- a/packages/client/src/components/MkDialog.vue +++ b/packages/client/src/components/MkDialog.vue @@ -285,92 +285,96 @@ function onInputKeydown(evt: KeyboardEvent) { } async function openSearchFilters(ev) { - await os.popupMenu([ - { - icon: "ph-user ph-bold ph-lg", - text: "From user", - action: () => { - os.selectUser().then((user) => { - inputValue.value += " from:@" + Acct.toString(user); - }); - } - }, - { - icon: "ph-file ph-bold ph-lg", - text: "With file", - action: () => { - os.select({ - title: "Has file", - items: [ - { - text: "Image", - value: "image", - }, - { - text: "Video", - value: "video", - }, - { - text: "Audio", - value: "audio", - }, - { - text: "File", - value: "file", - } - ] - }).then((res) => { - if (res.canceled) return; - inputValue.value += " has:" + res.result; - }); - } - }, - { - icon: "ph-link ph-bold ph-lg", - text: "From domain", - action: () => { - inputValue.value += " domain:"; - } - }, - { - icon: "ph-calendar-blank ph-bold ph-lg", - text: "Posts before", - action: () => { - os.inputDate({ - title: "Posts before" - }).then((res) => { - if (res.canceled) return; - inputValue.value += " before:" + res.result; - }); - } - }, - { - icon: "ph-calendar-blank ph-bold ph-lg", - text: "Posts after", - action: () => { - os.inputDate({ - title: "Posts after" - }).then((res) => { - if (res.canceled) return; - inputValue.value += " after:" + res.result; - }); - } - }, - { - icon: "ph-eye ph-bold ph-lg", - text: "Following only", - action: () => { - inputValue.value += " filter:following "; - } - }, - { - icon: "ph-users-three ph-bold ph-lg", - text: "Followers only", - action: () => { - inputValue.value += " filter:followers "; - } - }, - ], ev.target, { noReturnFocus: true }); + await os.popupMenu( + [ + { + icon: "ph-user ph-bold ph-lg", + text: "From user", + action: () => { + os.selectUser().then((user) => { + inputValue.value += " from:@" + Acct.toString(user); + }); + }, + }, + { + icon: "ph-file ph-bold ph-lg", + text: "With file", + action: () => { + os.select({ + title: "Has file", + items: [ + { + text: "Image", + value: "image", + }, + { + text: "Video", + value: "video", + }, + { + text: "Audio", + value: "audio", + }, + { + text: "File", + value: "file", + }, + ], + }).then((res) => { + if (res.canceled) return; + inputValue.value += " has:" + res.result; + }); + }, + }, + { + icon: "ph-link ph-bold ph-lg", + text: "From domain", + action: () => { + inputValue.value += " domain:"; + }, + }, + { + icon: "ph-calendar-blank ph-bold ph-lg", + text: "Posts before", + action: () => { + os.inputDate({ + title: "Posts before", + }).then((res) => { + if (res.canceled) return; + inputValue.value += " before:" + res.result; + }); + }, + }, + { + icon: "ph-calendar-blank ph-bold ph-lg", + text: "Posts after", + action: () => { + os.inputDate({ + title: "Posts after", + }).then((res) => { + if (res.canceled) return; + inputValue.value += " after:" + res.result; + }); + }, + }, + { + icon: "ph-eye ph-bold ph-lg", + text: "Following only", + action: () => { + inputValue.value += " filter:following "; + }, + }, + { + icon: "ph-users-three ph-bold ph-lg", + text: "Followers only", + action: () => { + inputValue.value += " filter:followers "; + }, + }, + ], + ev.target, + { noReturnFocus: true } + ); inputEl.value.focus(); inputEl.value.selectRange(inputValue.value.length, inputValue.value.length); // cursor at end } diff --git a/packages/client/src/components/MkMenu.vue b/packages/client/src/components/MkMenu.vue index 60d598e11..dcc6efe7d 100644 --- a/packages/client/src/components/MkMenu.vue +++ b/packages/client/src/components/MkMenu.vue @@ -1,5 +1,5 @@