AI generate only produces images, so Video Pin / Reel / TikTok Video are filtered out in previewOnly and rejected server-side with a clear error. Co-authored-by: Cursor <cursoragent@cursor.com>
165 lines
7.2 KiB
Vue
165 lines
7.2 KiB
Vue
<script setup lang="ts">
|
|
import { IconAlertTriangle, IconChevronDown, IconChevronUp } from '@tabler/icons-vue';
|
|
import { computed, ref, watch } from 'vue';
|
|
|
|
import { Avatar } from '@/components/ui/avatar';
|
|
import { getMediaValidationWarning } from '@/composables/useMedia';
|
|
import { getPlatformLogo } from '@/composables/usePlatformLogo';
|
|
import { fallbackImageCapableVariant, filterImageCapableVariants } from '@/lib/aiGenerateVariants';
|
|
import { ContentType } from '@/types/content-type';
|
|
import type { MediaItem } from '@/types/media';
|
|
|
|
interface SocialAccount {
|
|
id: string;
|
|
platform: string;
|
|
display_name: string;
|
|
username: string;
|
|
avatar_url: string | null;
|
|
}
|
|
|
|
interface Props {
|
|
socialAccount: SocialAccount | null;
|
|
contentType: string;
|
|
media: MediaItem[];
|
|
meta?: Record<string, any>;
|
|
disabled?: boolean;
|
|
previewOnly?: boolean;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
disabled: false,
|
|
previewOnly: false,
|
|
meta: () => ({}),
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
'update:contentType': [value: string];
|
|
'update:meta': [meta: Record<string, any>];
|
|
}>();
|
|
|
|
const open = ref(false);
|
|
|
|
const allVariants = [
|
|
{ value: ContentType.FacebookPost, labelKey: 'posts.form.facebook.variant.post' },
|
|
{ value: ContentType.FacebookReel, labelKey: 'posts.form.facebook.variant.reel' },
|
|
{ value: ContentType.FacebookStory, labelKey: 'posts.form.facebook.variant.story' },
|
|
] as const;
|
|
|
|
const variants = computed(() => filterImageCapableVariants(allVariants, props.previewOnly));
|
|
|
|
watch(
|
|
() => [props.previewOnly, props.contentType, variants.value] as const,
|
|
() => {
|
|
const fallback = fallbackImageCapableVariant(props.contentType, variants.value);
|
|
if (fallback) {
|
|
emit('update:contentType', fallback);
|
|
}
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
|
|
const aspectRatios = [
|
|
{ value: '1:1', labelKey: 'posts.form.facebook.aspect.square' },
|
|
{ value: '4:5', labelKey: 'posts.form.facebook.aspect.portrait' },
|
|
{ value: '16:9', labelKey: 'posts.form.facebook.aspect.landscape' },
|
|
{ value: 'original', labelKey: 'posts.form.facebook.aspect.original' },
|
|
];
|
|
|
|
const isFeed = computed(() => props.contentType === ContentType.FacebookPost);
|
|
const selectedAspectRatio = computed(() => props.meta.aspect_ratio ?? 'original');
|
|
|
|
const pickVariant = (value: string) => {
|
|
if (props.disabled) return;
|
|
emit('update:contentType', value);
|
|
};
|
|
|
|
const pickAspectRatio = (value: string) => {
|
|
if (props.disabled) return;
|
|
emit('update:meta', { ...props.meta, aspect_ratio: value });
|
|
};
|
|
|
|
const warning = computed(() => getMediaValidationWarning(props.contentType, props.media));
|
|
</script>
|
|
|
|
<template>
|
|
<div class="rounded-xl border-2 border-foreground bg-card shadow-2xs">
|
|
<button
|
|
type="button"
|
|
class="flex w-full cursor-pointer items-center justify-between gap-3 p-4 text-sm"
|
|
@click="open = !open"
|
|
>
|
|
<span class="flex min-w-0 items-center gap-2">
|
|
<span class="inline-flex size-6 shrink-0 items-center justify-center overflow-hidden rounded-full border-2 border-foreground bg-card shadow-2xs">
|
|
<img :src="getPlatformLogo('facebook')" alt="Facebook" class="size-full object-cover" />
|
|
</span>
|
|
<span class="truncate font-bold text-foreground">{{ $t('posts.form.facebook.settings') }}</span>
|
|
<span v-if="socialAccount?.username" class="truncate font-medium text-foreground/60">· @{{ socialAccount.username }}</span>
|
|
</span>
|
|
<IconChevronUp v-if="open" class="size-4 shrink-0 text-foreground/60" />
|
|
<IconChevronDown v-else class="size-4 shrink-0 text-foreground/60" />
|
|
</button>
|
|
|
|
<div v-if="open" class="space-y-5 border-t-2 border-foreground/10 px-4 pb-4 pt-4">
|
|
<div v-if="socialAccount" class="flex items-center gap-3 rounded-lg bg-foreground/5 p-3">
|
|
<Avatar
|
|
:src="socialAccount.avatar_url"
|
|
:name="socialAccount.display_name"
|
|
class="size-9 shrink-0 rounded-full border-2 border-foreground shadow-2xs"
|
|
/>
|
|
<div class="min-w-0 flex-1">
|
|
<p class="text-[11px] font-black uppercase tracking-widest text-foreground/60">{{ $t('posts.form.facebook.posting_to') }}</p>
|
|
<p class="truncate text-sm">
|
|
<span class="font-bold text-foreground">{{ socialAccount.display_name }}</span>
|
|
<span v-if="socialAccount?.username" class="font-medium text-foreground/60"> @{{ socialAccount.username }}</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="space-y-2">
|
|
<p class="text-[11px] font-black uppercase tracking-widest text-foreground/60">{{ $t('posts.form.facebook.variant_label') }}</p>
|
|
<div class="flex flex-wrap gap-2">
|
|
<button
|
|
v-for="variant in variants"
|
|
:key="variant.value"
|
|
type="button"
|
|
class="cursor-pointer rounded-full border-2 px-3 py-1 text-xs font-bold uppercase tracking-widest transition-colors disabled:cursor-not-allowed disabled:opacity-50"
|
|
:class="contentType === variant.value
|
|
? 'border-foreground bg-violet-100 text-foreground shadow-2xs'
|
|
: 'border-foreground/30 text-foreground/70 hover:border-foreground hover:text-foreground'"
|
|
:disabled="disabled"
|
|
@click="pickVariant(variant.value)"
|
|
>
|
|
{{ $t(variant.labelKey) }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="isFeed" class="space-y-2">
|
|
<p class="text-[11px] font-black uppercase tracking-widest text-foreground/60">{{ $t('posts.form.facebook.aspect_label') }}</p>
|
|
<div class="flex flex-wrap gap-2">
|
|
<button
|
|
v-for="ratio in aspectRatios"
|
|
:key="ratio.value"
|
|
type="button"
|
|
class="cursor-pointer rounded-full border-2 px-3 py-1 text-xs font-bold uppercase tracking-widest transition-colors disabled:cursor-not-allowed disabled:opacity-50"
|
|
:class="selectedAspectRatio === ratio.value
|
|
? 'border-foreground bg-violet-100 text-foreground shadow-2xs'
|
|
: 'border-foreground/30 text-foreground/70 hover:border-foreground hover:text-foreground'"
|
|
:disabled="disabled"
|
|
@click="pickAspectRatio(ratio.value)"
|
|
>
|
|
{{ $t(ratio.labelKey) }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p
|
|
v-if="warning && !previewOnly"
|
|
class="flex items-start gap-2 rounded-lg border-2 border-foreground bg-rose-50 p-2 text-xs font-semibold text-rose-700"
|
|
>
|
|
<IconAlertTriangle class="mt-0.5 size-3.5 shrink-0" />
|
|
{{ $t(`posts.form.warnings.${warning.key}`, warning.params) }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|