// Seed data for the prototype.
const SEED_SONGS = [
  { title: 'Synthoria',         artist: 'Alexxon', album: 'Sensation', seed: 1, duration: '3:42', starred: true  },
  { title: 'Open your eyes',    artist: 'Alexxon', album: 'Sensation', seed: 2, duration: '4:08', starred: false },
  { title: 'Excelsious',        artist: 'Alexxon', album: 'Sensation', seed: 3, duration: '3:55', starred: true  },
  { title: 'Devotion',          artist: 'Alexxon', album: 'Sensation', seed: 4, duration: '5:12', starred: false },
  { title: 'Blazing',           artist: 'Alexxon', album: 'Sensation', seed: 5, duration: '3:34', starred: false },
  { title: 'Xeon',              artist: 'Alexxon', album: 'Sensation', seed: 6, duration: '4:44', starred: true  },
  { title: 'Vancouver to Toronto', artist: 'Alexxon', album: 'Sensation', seed: 7, duration: '6:01', starred: false },
  { title: 'Solstice',          artist: 'Alexxon', album: 'Sensation', seed: 8, duration: '3:18', starred: false },
  { title: 'Lake Buntzen',      artist: 'Alexxon', album: 'Sensation', seed: 9, duration: '4:52', starred: true  },
  { title: 'Solar echoes',      artist: 'Alexxon', album: 'Sensation', seed: 0, duration: '5:27', starred: false },
  { title: 'Daylight',          artist: 'Alexxon', album: 'Sensation', seed: 1, duration: '3:11', starred: false },
  { title: "It ain't that far", artist: 'Alexxon', album: 'Sensation', seed: 2, duration: '4:15', starred: true  },
  { title: 'Ixzst',             artist: 'Alexxon', album: 'Sensation', seed: 3, duration: '4:11', starred: false },
  { title: 'To future and beyond', artist: 'Alexxon', album: 'Sensation', seed: 4, duration: '5:03', starred: true  },
];

const SEED_PLAYLISTS = [
  { id: 'p1', name: 'Late nights',    seed: 6, count: 12, totalMin: 48  },
  { id: 'p2', name: 'Morning runs',   seed: 3, count: 8,  totalMin: 32  },
  { id: 'p3', name: 'Focus',          seed: 9, count: 14, totalMin: 58  },
  { id: 'p4', name: '1234',           seed: 1, count: 5,  totalMin: 17  },
];

const SEED_ALBUMS = [
  { id: 'a1', title: 'Sensation',   artist: 'Alexxon',     seed: 2, year: 2024, trackCount: 14 },
  { id: 'a2', title: 'Northern air',artist: 'Alexxon',     seed: 5, year: 2022, trackCount: 9  },
  { id: 'a3', title: 'Harbour',     artist: 'Pond Ensemble',seed: 7, year: 2021, trackCount: 11 },
  { id: 'a4', title: 'Oxide',       artist: 'Hollow House', seed: 4, year: 2020, trackCount: 8  },
];

const SEED_ARTISTS = [
  { id: 'r1', name: 'Alexxon',          seed: 2, songCount: 17 },
  { id: 'r2', name: 'Pond Ensemble',    seed: 7, songCount: 11 },
  { id: 'r3', name: 'Hollow House',     seed: 4, songCount: 8  },
  { id: 'r4', name: '123',              seed: 5, songCount: 0  },
];

Object.assign(window, { SEED_SONGS, SEED_PLAYLISTS, SEED_ALBUMS, SEED_ARTISTS });
