diff options
| author | Brandon Wong <29965003+brandonw3612@users.noreply.github.com> | 2025-04-13 22:50:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-13 21:50:45 +0100 |
| commit | 95f504c0bc0b9ec0930b6c6facefc1a8ea093192 (patch) | |
| tree | 967221d7f4f5b716cc8fd3d92b5869bacf1d6089 /apps/web/components | |
| parent | 5bdb2d944a08f63772497e203f47533ffb640d82 (diff) | |
| download | karakeep-95f504c0bc0b9ec0930b6c6facefc1a8ea093192.tar.zst | |
feat: add support for filtering by bookmark age (#1228)
Diffstat (limited to 'apps/web/components')
| -rw-r--r-- | apps/web/components/dashboard/search/QueryExplainerTooltip.tsx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx index 89c15ad5..e6abb9c9 100644 --- a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx +++ b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx @@ -66,6 +66,32 @@ export default function QueryExplainerTooltip({ <TableCell>{matcher.dateBefore.toDateString()}</TableCell> </TableRow> ); + case "age": + return ( + <TableRow> + <TableCell> + {matcher.relativeDate.direction === "newer" + ? t("search.created_within") + : t("search.created_earlier_than")} + </TableCell> + <TableCell> + {matcher.relativeDate.amount.toString() + + (matcher.relativeDate.direction === "newer" + ? { + day: t("search.day_s"), + week: t("search.week_s"), + month: t("search.month_s"), + year: t("search.year_s"), + }[matcher.relativeDate.unit] + : { + day: t("search.day_s_ago"), + week: t("search.week_s_ago"), + month: t("search.month_s_ago"), + year: t("search.year_s_ago"), + }[matcher.relativeDate.unit])} + </TableCell> + </TableRow> + ); case "favourited": return ( <TableRow> |
