mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-25 10:45:41 +03:00
Allow Trending to be added to Shortcuts
This commit is contained in:
parent
9e2f5f72bc
commit
dffd344deb
1 changed files with 16 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue