This commit is contained in:
SeoJHeasdw 2025-06-13 11:17:19 +09:00
parent 30045fb4ee
commit 33641c9d18

View File

@ -646,54 +646,34 @@ const targetTypes = [
{ title: '이벤트', value: 'event' }, { title: '이벤트', value: 'event' },
] ]
// AI // AI -
const toneOptions = Object.entries(TONE_AND_MANNER).map(([key, value]) => ({ const toneOptions = [
title: { title: '친근함', value: 'friendly' },
key === 'FRIENDLY' { title: '전문적', value: 'professional' },
? '친근함' { title: '유머러스', value: 'humorous' },
: key === 'PROFESSIONAL' { title: '고급스러운', value: 'luxurious' },
? '전문적' ]
: key === 'HUMOROUS'
? '유머러스'
: '고급스러운',
value,
}))
const promotionOptions = Object.entries(PROMOTION_TYPES).map(([key, value]) => ({ const promotionOptions = [
title: { title: '할인 정보', value: 'discount' },
key === 'DISCOUNT' { title: '이벤트 정보', value: 'event' },
? '할인 정보' { title: '신메뉴 알림', value: 'new_menu' },
: key === 'EVENT' { title: '없음', value: 'none' },
? '이벤트 정보' ]
: key === 'NEW_MENU'
? '신메뉴 알림'
: '없음',
value,
}))
const emotionOptions = Object.entries(EMOTION_INTENSITY).map(([key, value]) => ({ const emotionOptions = [
title: { title: '차분함', value: 'calm' },
key === 'CALM' { title: '보통', value: 'normal' },
? '차분함' { title: '열정적', value: 'enthusiastic' },
: key === 'NORMAL' { title: '과장된', value: 'exaggerated' },
? '보통' ]
: key === 'ENTHUSIASTIC'
? '열정적'
: '과장된',
value,
}))
const photoStyleOptions = Object.entries(PHOTO_STYLES).map(([key, value]) => ({ const photoStyleOptions = [
title: { title: '모던', value: 'modern' },
key === 'MODERN' { title: '클래식', value: 'classic' },
? '모던' { title: '감성적', value: 'emotional' },
: key === 'CLASSIC' { title: '미니멀', value: 'minimal' },
? '클래식' ]
: key === 'EMOTIONAL'
? '감성적'
: '미니멀',
value,
}))
// //
const titleRules = [ const titleRules = [