Misc timeline actions as headerActions
This commit is contained in:
parent
744e1bf57e
commit
528b2be5b3
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.0-calc.5.b4",
|
"version": "12.118.0-calc.6.b4",
|
||||||
"codename": "indigo",
|
"codename": "indigo",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -111,7 +111,27 @@ function focus(): void {
|
||||||
tlComponent.focus();
|
tlComponent.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
const headerActions = $computed(() => []);
|
const headerActions = $computed(() => [{
|
||||||
|
icon: 'fas fa-list-ul',
|
||||||
|
title: i18n.ts.lists,
|
||||||
|
iconOnly: true,
|
||||||
|
onClick: chooseList,
|
||||||
|
}, {
|
||||||
|
icon: 'fas fa-satellite',
|
||||||
|
title: i18n.ts.antennas,
|
||||||
|
iconOnly: true,
|
||||||
|
onClick: chooseAntenna,
|
||||||
|
}, {
|
||||||
|
icon: 'fas fa-satellite-dish',
|
||||||
|
title: i18n.ts.channel,
|
||||||
|
iconOnly: true,
|
||||||
|
onClick: chooseChannel,
|
||||||
|
}, {
|
||||||
|
icon: 'fas fa-calendar-alt',
|
||||||
|
title: i18n.ts.jumpToSpecifiedDate,
|
||||||
|
iconOnly: true,
|
||||||
|
onClick: timetravel,
|
||||||
|
}]);
|
||||||
|
|
||||||
const headerTabs = $computed(() => [{
|
const headerTabs = $computed(() => [{
|
||||||
key: 'home',
|
key: 'home',
|
||||||
|
@ -133,22 +153,7 @@ const headerTabs = $computed(() => [{
|
||||||
title: i18n.ts._timelines.global,
|
title: i18n.ts._timelines.global,
|
||||||
icon: 'fas fa-globe',
|
icon: 'fas fa-globe',
|
||||||
iconOnly: true,
|
iconOnly: true,
|
||||||
}] : []), {
|
}] : [])]);
|
||||||
icon: 'fas fa-list-ul',
|
|
||||||
title: i18n.ts.lists,
|
|
||||||
iconOnly: true,
|
|
||||||
onClick: chooseList,
|
|
||||||
}, {
|
|
||||||
icon: 'fas fa-satellite',
|
|
||||||
title: i18n.ts.antennas,
|
|
||||||
iconOnly: true,
|
|
||||||
onClick: chooseAntenna,
|
|
||||||
}, {
|
|
||||||
icon: 'fas fa-satellite-dish',
|
|
||||||
title: i18n.ts.channel,
|
|
||||||
iconOnly: true,
|
|
||||||
onClick: chooseChannel,
|
|
||||||
}]);
|
|
||||||
|
|
||||||
const headerTabsWhenNotLogin = $computed(() => [
|
const headerTabsWhenNotLogin = $computed(() => [
|
||||||
...(isLocalTimelineAvailable ? [{
|
...(isLocalTimelineAvailable ? [{
|
||||||
|
|
Loading…
Reference in New Issue