format
This commit is contained in:
parent
930ca79392
commit
b20225a1d4
|
@ -285,7 +285,8 @@ function onInputKeydown(evt: KeyboardEvent) {
|
|||
}
|
||||
|
||||
async function openSearchFilters(ev) {
|
||||
await os.popupMenu([
|
||||
await os.popupMenu(
|
||||
[
|
||||
{
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
text: "From user",
|
||||
|
@ -293,7 +294,7 @@ async function openSearchFilters(ev) {
|
|||
os.selectUser().then((user) => {
|
||||
inputValue.value += " from:@" + Acct.toString(user);
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
icon: "ph-file ph-bold ph-lg",
|
||||
|
@ -317,60 +318,63 @@ async function openSearchFilters(ev) {
|
|||
{
|
||||
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"
|
||||
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"
|
||||
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 });
|
||||
},
|
||||
],
|
||||
ev.target,
|
||||
{ noReturnFocus: true }
|
||||
);
|
||||
inputEl.value.focus();
|
||||
inputEl.value.selectRange(inputValue.value.length, inputValue.value.length); // cursor at end
|
||||
}
|
||||
|
|
|
@ -183,7 +183,7 @@ onMounted(() => {
|
|||
|
||||
defineExpose({
|
||||
focus,
|
||||
selectRange
|
||||
selectRange,
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in New Issue