mockFeeds.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import { Feed } from '@/types/feed';
  2. export const mockFeeds: Feed[] = [
  3. {
  4. id: '1',
  5. name: 'Le Monde - Actualités',
  6. url: 'https://www.lemonde.fr/rss/une.xml',
  7. type: 'rss-auto',
  8. description: 'Flux principal du journal Le Monde',
  9. category: 'actualites',
  10. isFollowed: true,
  11. lastUpdated: '2024-06-06T10:30:00Z',
  12. articleCount: 156,
  13. status: 'active'
  14. },
  15. {
  16. id: '2',
  17. name: 'TechCrunch',
  18. url: 'https://techcrunch.com/feed/',
  19. type: 'rss-auto',
  20. description: 'Actualités technologiques',
  21. category: 'rss',
  22. isFollowed: true,
  23. lastUpdated: '2024-06-06T09:15:00Z',
  24. articleCount: 89,
  25. status: 'active'
  26. },
  27. {
  28. id: '3',
  29. name: 'Chaîne Gaming FR',
  30. url: 'https://www.youtube.com/channel/UCexample',
  31. type: 'youtube',
  32. description: 'Chaîne YouTube sur les jeux vidéo',
  33. category: 'youtube',
  34. isFollowed: false,
  35. lastUpdated: '2024-06-05T16:45:00Z',
  36. articleCount: 23,
  37. status: 'active'
  38. },
  39. {
  40. id: '4',
  41. name: 'Steam - Cyberpunk 2077',
  42. url: 'https://store.steampowered.com/app/1091500',
  43. type: 'steam',
  44. description: 'Actualités du jeu Cyberpunk 2077',
  45. category: 'steam',
  46. isFollowed: true,
  47. lastUpdated: '2024-06-06T08:20:00Z',
  48. articleCount: 12,
  49. status: 'error'
  50. },
  51. {
  52. id: '5',
  53. name: 'France Info',
  54. url: 'https://www.francetvinfo.fr/titres.rss',
  55. type: 'rss-manual',
  56. description: 'Flux RSS France Info',
  57. category: 'actualites',
  58. isFollowed: false,
  59. lastUpdated: '2024-06-06T11:00:00Z',
  60. articleCount: 67,
  61. status: 'pending'
  62. }
  63. ];