Allow Trending to be added to Shortcuts

pull/94/head
Lim Chee Aun 2023-04-06 01:23:56 +08:00
rodzic 9e2f5f72bc
commit dffd344deb
1 zmienionych plików z 16 dodań i 0 usunięć

Wyświetl plik

@ -27,6 +27,7 @@ const TYPES = [
'bookmarks',
'favourites',
'hashtag',
'trending',
];
const TYPE_TEXT = {
following: 'Home / Following',
@ -38,6 +39,7 @@ const TYPE_TEXT = {
bookmarks: 'Bookmarks',
favourites: 'Favourites',
hashtag: 'Hashtag',
trending: 'Trending',
};
const TYPE_PARAMS = {
list: [
@ -59,6 +61,14 @@ const TYPE_PARAMS = {
placeholder: 'e.g. mastodon.social',
},
],
trending: [
{
text: 'Instance',
name: 'instance',
type: 'text',
placeholder: 'e.g. mastodon.social',
},
],
search: [
{
text: 'Search term',
@ -118,6 +128,12 @@ export const SHORTCUTS_META = {
path: ({ local, instance }) => `/${instance}/p${local ? '/l' : ''}`,
icon: ({ local }) => (local ? 'group' : 'earth'),
},
trending: {
id: 'trending',
title: 'Trending',
path: ({ instance }) => `/${instance}/trending`,
icon: 'chart',
},
search: {
id: 'search',
title: ({ query }) => query,