Skip to content

Instantly share code, notes, and snippets.

@Ozerich
Last active May 31, 2025 11:47
Show Gist options
  • Save Ozerich/b230820a5619a8bcc64152b8168cf554 to your computer and use it in GitHub Desktop.
Save Ozerich/b230820a5619a8bcc64152b8168cf554 to your computer and use it in GitHub Desktop.
const tariffs: Record<QuizTheme, { base: TariffPlan[], discount: TariffPlan[] }> = {
[QuizTheme.Quiz2]: {
base: [
{
id: 'MONTH_6',
name: '6-months plan',
periodLabel: '6 months',
price: 39.99,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 50,
discountPercent: 56,
},
{
id: 'MONTH_1',
name: '1-month plan',
periodLabel: '1 month',
price: 12.99,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.79 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3',
name: '3-months plan',
periodLabel: '3 months',
price: 25.99,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.29 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
],
discount: [
{
id: 'MONTH_6_DISCOUNT',
name: '6-months plan',
periodLabel: '6 months',
price: 29.69,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.16 USD',
isBest: false,
discountValue: 60.30,
discountPercent: 67
},
{
id: 'MONTH_1_DISCOUNT',
name: '1-month plan',
periodLabel: '1 month',
price: 9.89,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.33 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3_DISCOUNT',
name: '3-months plan',
periodLabel: '3 months',
price: 19.49,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
]
},
[QuizTheme.Quiz6]: {
base: [
{
id: 'MONTH_6',
name: '6-months plan',
periodLabel: '6 months',
price: 39.99,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 50,
discountPercent: 56,
},
{
id: 'MONTH_1',
name: '1-month plan',
periodLabel: '1 month',
price: 12.99,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.79 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3',
name: '3-months plan',
periodLabel: '3 months',
price: 25.99,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.29 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
],
discount: [
{
id: 'MONTH_6_DISCOUNT',
name: '6-months plan',
periodLabel: '6 months',
price: 29.69,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.16 USD',
isBest: false,
discountValue: 60.30,
discountPercent: 67
},
{
id: 'MONTH_1_DISCOUNT',
name: '1-month plan',
periodLabel: '1 month',
price: 9.89,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.33 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3_DISCOUNT',
name: '3-months plan',
periodLabel: '3 months',
price: 19.49,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
]
},
[QuizTheme.Quiz7]: {
base: [
{
id: 'MONTH_6',
name: '6-months plan',
periodLabel: '6 months',
price: 39.99,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 50,
discountPercent: 56,
},
{
id: 'MONTH_1',
name: '1-month plan',
periodLabel: '1 month',
price: 12.99,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.79 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3',
name: '3-months plan',
periodLabel: '3 months',
price: 25.99,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.29 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
],
discount: [
{
id: 'MONTH_6_DISCOUNT',
name: '6-months plan',
periodLabel: '6 months',
price: 29.69,
oldPrice: 89.99,
oldPricePerDay: 0.50,
pricePerDay: '0.16 USD',
isBest: false,
discountValue: 60.30,
discountPercent: 67
},
{
id: 'MONTH_1_DISCOUNT',
name: '1-month plan',
periodLabel: '1 month',
price: 9.89,
oldPrice: 29.99,
oldPricePerDay: 0.99,
pricePerDay: '0.33 USD',
isBest: true,
discountValue: 17,
discountPercent: 56,
},
{
id: 'MONTH_3_DISCOUNT',
name: '3-months plan',
periodLabel: '3 months',
price: 19.49,
oldPrice: 58.99,
oldPricePerDay: 0.66,
pricePerDay: '0.22 USD',
isBest: false,
discountValue: 33,
discountPercent: 56,
},
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment