import { SelectOption } from "./models/components"; import { LinkStatusOption, MediaTypeOption } from "./models/global"; import { LockIcon } from "@app/assets/images/icons"; const isPremium = sfsyncData.is_premium; export const linkStatusOptions: LinkStatusOption[] = [ { text: "Linked", value: "linked", }, { text: "Unlinked", value: "unlinked", }, ]; export const mediaTypeOptions: MediaTypeOption[] = [ { text: "Image", value: "IMAGE", }, { text: "Video", value: "VIDEO", }, { text: "Carousel Album", value: "CAROUSEL_ALBUM", }, ]; export const mediaLimitOptions: SelectOption[] = [ { text: "Last 3 posts", value: "3", }, { text: "Last 6 posts", value: "6", icon: !isPremium ? LockIcon : null, }, { text: "Last 9 posts", value: "9", icon: !isPremium ? LockIcon : null, }, { text: "Last 12 posts", value: "12", icon: !isPremium ? LockIcon : null, }, { text: "Last 15 posts", value: "15", icon: !isPremium ? LockIcon : null, }, { text: "Last 30 posts", value: "30", icon: !isPremium ? LockIcon : null, }, { text: "Last 45 posts", value: "45", icon: !isPremium ? LockIcon : null, }, { text: "Last 60 posts", value: "60", icon: !isPremium ? LockIcon : null, }, { text: "Last 75 posts", value: "75", icon: !isPremium ? LockIcon : null, }, { text: "Last 90 posts", value: "90", icon: !isPremium ? LockIcon : null, }, { text: "Last 120 posts", value: "120", icon: !isPremium ? LockIcon : null, }, { text: "Last 150 posts", value: "150", icon: !isPremium ? LockIcon : null, }, { text: "Last 180 posts", value: "180", icon: !isPremium ? LockIcon : null, }, { text: "Last 210 posts", value: "210", icon: !isPremium ? LockIcon : null, }, { text: "Last 240 posts", value: "240", icon: !isPremium ? LockIcon : null, }, { text: "Last 270 posts", value: "270", icon: !isPremium ? LockIcon : null, }, { text: "Last 300 posts", value: "300", icon: !isPremium ? LockIcon : null, }, { text: "Last 330 posts", value: "330", icon: !isPremium ? LockIcon : null, }, { text: "Last 360 posts", value: "360", icon: !isPremium ? LockIcon : null, }, { text: "Last 390 posts", value: "390", icon: !isPremium ? LockIcon : null, }, { text: "Last 420 posts", value: "420", icon: !isPremium ? LockIcon : null, }, { text: "Last 450 posts", value: "450", icon: !isPremium ? LockIcon : null, }, ];