constants.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export const RANK_PERIODS = [
  2. { value: 1, label: '일간' },
  3. { value: 2, label: '주간' },
  4. { value: 3, label: '월간' },
  5. { value: 4, label: '연간' },
  6. { value: 5, label: '사용자 지정' },
  7. { value: 6, label: '전체' }
  8. ];
  9. export const RANK_THEMES = [
  10. { value: 0, label: 'Basic' },
  11. { value: 1, label: 'Dark' },
  12. { value: 2, label: 'Minimal' }
  13. ];
  14. export const NAME_DISPLAY_TYPES = [
  15. { value: 0, label: '계정 별명 / SID' },
  16. { value: 1, label: '후원 시 설정한 이름' }
  17. ];
  18. export const FONT_FAMILIES = [
  19. { value: '', label: '기본 (시스템)' },
  20. { value: 'Pretendard', label: 'Pretendard' },
  21. { value: 'Noto Sans KR', label: 'Noto Sans KR' },
  22. { value: 'Nanum Gothic', label: '나눔고딕' },
  23. { value: 'Nanum Myeongjo', label: '나눔명조' },
  24. { value: 'Black Han Sans', label: '블랙한산스' },
  25. { value: 'Jua', label: '주아' },
  26. { value: 'Do Hyeon', label: '도현' },
  27. { value: 'Gaegu', label: '개구' },
  28. { value: 'Gothic A1', label: 'Gothic A1' }
  29. ];
  30. export const MOCK_RANKING = [
  31. { rank: 1, sponsorName: '테스트유저1', totalAmount: 50000, donationCount: 10 },
  32. { rank: 2, sponsorName: '테스트유저2', totalAmount: 30000, donationCount: 7 },
  33. { rank: 3, sponsorName: '테스트유저3', totalAmount: 20000, donationCount: 5 },
  34. { rank: 4, sponsorName: '테스트유저4', totalAmount: 10000, donationCount: 3 },
  35. { rank: 5, sponsorName: '테스트유저5', totalAmount: 5000, donationCount: 2 }
  36. ];