Merge pull request '[PR]: Switch position of Social and Recommended timelines' (#10239) from naskya/calckey:social-recommended-position-switch into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10239
This commit is contained in:
commit
89d5810e63
|
@ -140,26 +140,26 @@
|
|||
</template>
|
||||
</I18n>
|
||||
</li>
|
||||
<li v-if="timelines.includes('recommended')">
|
||||
<li v-if="timelines.includes('social')">
|
||||
<I18n
|
||||
:src="i18n.ts._tutorial.step5_5"
|
||||
tag="div"
|
||||
>
|
||||
<template #icon>
|
||||
<i
|
||||
class="ph-thumbs-up ph-bold ph-lg"
|
||||
class="ph-handshake ph-bold ph-lg"
|
||||
/>
|
||||
</template>
|
||||
</I18n>
|
||||
</li>
|
||||
<li v-if="timelines.includes('social')">
|
||||
<li v-if="timelines.includes('recommended')">
|
||||
<I18n
|
||||
:src="i18n.ts._tutorial.step5_6"
|
||||
tag="div"
|
||||
>
|
||||
<template #icon>
|
||||
<i
|
||||
class="ph-handshake ph-bold ph-lg"
|
||||
class="ph-thumbs-up ph-bold ph-lg"
|
||||
/>
|
||||
</template>
|
||||
</I18n>
|
||||
|
@ -235,12 +235,12 @@ let timelines = ["home"];
|
|||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("local");
|
||||
}
|
||||
if (isRecommendedTimelineAvailable) {
|
||||
timelines.push("recommended");
|
||||
}
|
||||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("social");
|
||||
}
|
||||
if (isRecommendedTimelineAvailable) {
|
||||
timelines.push("recommended");
|
||||
}
|
||||
if (isGlobalTimelineAvailable) {
|
||||
timelines.push("global");
|
||||
}
|
||||
|
|
|
@ -109,12 +109,12 @@ let timelines = ["home"];
|
|||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("local");
|
||||
}
|
||||
if (isRecommendedTimelineAvailable) {
|
||||
timelines.push("recommended");
|
||||
}
|
||||
if (isLocalTimelineAvailable) {
|
||||
timelines.push("social");
|
||||
}
|
||||
if (isRecommendedTimelineAvailable) {
|
||||
timelines.push("recommended");
|
||||
}
|
||||
if (isGlobalTimelineAvailable) {
|
||||
timelines.push("global");
|
||||
}
|
||||
|
@ -195,7 +195,7 @@ async function chooseAntenna(ev: MouseEvent): Promise<void> {
|
|||
}
|
||||
|
||||
function saveSrc(
|
||||
newSrc: "home" | "local" | "recommended" | "social" | "global"
|
||||
newSrc: "home" | "local" | "social" | "recommended" | "global"
|
||||
): void {
|
||||
defaultStore.set("tl", {
|
||||
...defaultStore.state.tl,
|
||||
|
@ -255,16 +255,6 @@ const headerTabs = $computed(() => [
|
|||
},
|
||||
]
|
||||
: []),
|
||||
...(isRecommendedTimelineAvailable
|
||||
? [
|
||||
{
|
||||
key: "recommended",
|
||||
title: i18n.ts._timelines.recommended,
|
||||
icon: "ph-thumbs-up ph-bold ph-lg",
|
||||
iconOnly: true,
|
||||
},
|
||||
]
|
||||
: []),
|
||||
...(isLocalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
|
@ -275,6 +265,16 @@ const headerTabs = $computed(() => [
|
|||
},
|
||||
]
|
||||
: []),
|
||||
...(isRecommendedTimelineAvailable
|
||||
? [
|
||||
{
|
||||
key: "recommended",
|
||||
title: i18n.ts._timelines.recommended,
|
||||
icon: "ph-thumbs-up ph-bold ph-lg",
|
||||
iconOnly: true,
|
||||
},
|
||||
]
|
||||
: []),
|
||||
...(isGlobalTimelineAvailable
|
||||
? [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue