Merge pull request 'Don't show channel edit button unless owner' (#9722) from supakaity/hajkey:hk-channel-owner-edit into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9722
This commit is contained in:
Kainoa Kanter 2023-03-18 23:11:47 +00:00
commit dbe45e1838
1 changed files with 15 additions and 13 deletions

View File

@ -51,13 +51,6 @@ const props = defineProps<{
let channel = $ref(null); let channel = $ref(null);
let showBanner = $ref(true); let showBanner = $ref(true);
const pagination = {
endpoint: 'channels/timeline' as const,
limit: 10,
params: computed(() => ({
channelId: props.channelId,
})),
};
watch(() => props.channelId, async () => { watch(() => props.channelId, async () => {
channel = await os.api('channels/show', { channel = await os.api('channels/show', {
@ -66,14 +59,23 @@ watch(() => props.channelId, async () => {
}, { immediate: true }); }, { immediate: true });
function edit() { function edit() {
router.push(`/channels/${channel.id}/edit`); router.push(`/channels/${channel?.id}/edit`);
} }
const headerActions = $computed(() => channel && channel.userId ? [{ const headerActions = $computed(() => [
icon: 'ph-gear-six ph-bold ph-lg', ...(
text: i18n.ts.edit, channel
handler: edit, && channel?.userId === $i?.id
}] : null); ? [
{
icon: 'ph-gear-six ph-bold ph-lg',
text: i18n.ts.edit,
handler: edit,
}
]
: []
),
]);
const headerTabs = $computed(() => []); const headerTabs = $computed(() => []);