playlists support v1
All checks were successful
Deploy App / build (push) Successful in 4m19s
Deploy App / deploy (push) Successful in 16s

This commit is contained in:
valere
2025-10-09 22:47:30 +02:00
parent c86e345117
commit e2c5693948
30 changed files with 620 additions and 554 deletions

8
.prettierrc Normal file
View File

@@ -0,0 +1,8 @@
{
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"printWidth": 100
}

View File

@@ -1,4 +1,6 @@
{ {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": { "editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit" "source.fixAll.eslint": "explicit"
} }

View File

@@ -14,7 +14,16 @@ useHead({
</script> </script>
<style> <style>
button,
input {
@apply px-4 py-2 m-4 rounded-md text-center font-bold
}
button { button {
@apply px-4 py-2 m-4 bg-esyellow text-slate-700 rounded-md; @apply bg-esyellow text-slate-700;
}
input[type="email"] {
@apply bg-slate-900 text-esyellow;
} }
</style> </style>

View File

@@ -2,26 +2,52 @@
<article class="box box-scene z-10" ref="scene"> <article class="box box-scene z-10" ref="scene">
<div class="box-object" ref="box"> <div class="box-object" ref="box">
<div class="face front relative" ref="frontFace"> <div class="face front relative" ref="frontFace">
<img class="cover absolute" :src="`/${compilation.id}/cover.jpg`" alt=""> <img v-if="compilation.duration" class="cover absolute" :src="`/${compilation.id}/cover.jpg`" alt="">
<div class="size-full flex justify-center items-center text-7xl" v-else>
{{ compilation.description }}
</div>
</div> </div>
<div class="face back" ref="backFace"> <div class="face back flex flex-col flex-wrap items-start p-4 overflow-hidden" ref="backFace">
{{ compilation.description }} <li class="list-none text-xxs w-1/2 flex flex-row"
v-for="track in dataStore.getTracksByCompilationId(compilation.id).slice(0, -1)" :key="track.id"
:track="track">
<span class="" v-if="isNotManifesto">
{{ track.order }}.
</span>
<p class="text-left text-slate-700">
<i class="text-slate-950">
{{ track.title }}
</i> <br /> {{ track.artist.name }}
</p>
</li>
</div> </div>
<div class="face right" ref="rightFace" /> <div class="face right" ref="rightFace" />
<div class="face left" ref="leftFace" /> <div class="face left" ref="leftFace" />
<div class="face top" ref="topFace"> <div class="face top" ref="topFace">
<img class="logo h-full p-1" src="/logo.svg" alt=""> <template v-if="compilation.duration !== 0">
<img class="absolute block h-1/2" style="left:5%;" :src="`/${compilation.id}/title.svg`" alt=""> <img class="logo h-full p-1" src="/logo.svg" alt="">
<img class="absolute block h-1/2" style="left:5%;" :src="`/${compilation.id}/title.svg`" alt="">
</template>
<template v-else>
<span class="absolute block h-1/2 right-6">
playlist
</span>
<img class="logo h-full p-1" src="/favicon.svg" alt="">
<span class="absolute block h-1/2" style="left:5%;">
{{ compilation.name }}
</span>
</template>
</div> </div>
<div class="face bottom" ref="bottomFace" /> <div class="face bottom" ref="bottomFace" />
</div> </div>
<OrganismCompilationPage :compilation="compilation" class="box-page" v-if="props.BoxState === 'selected'" /> <slot></slot>
</article> </article>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onBeforeUnmount, watch } from 'vue' import { ref, onMounted, onBeforeUnmount, watch } from 'vue'
import type { Compilation, BoxState } from '~~/types/types' import type { Compilation, BoxState } from '~~/types/types'
import { useDataStore } from '~/store/data'
const props = withDefaults( const props = withDefaults(
defineProps<{ defineProps<{
@@ -30,8 +56,9 @@ const props = withDefaults(
}>(), }>(),
{ BoxState: 'list' } { BoxState: 'list' }
) )
const dataStore = useDataStore()
const isDraggable = computed(() => !['list', 'hidden'].includes(BoxState.value())) const isDraggable = computed(() => !['list', 'hidden'].includes(BoxState.value()))
const isNotManifesto = computed(() => !props.compilation.id.startsWith('ES00'))
// --- Réfs --- // --- Réfs ---
const scene = ref<HTMLElement>() const scene = ref<HTMLElement>()
@@ -250,10 +277,6 @@ watch(() => isDraggable, (enabled) => enabled ? addListeners() : removeListeners
.face { .face {
position: absolute; position: absolute;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: white; color: white;
font-weight: 600; font-weight: 600;
backface-visibility: hidden; backface-visibility: hidden;
@@ -271,6 +294,10 @@ watch(() => isDraggable, (enabled) => enabled ? addListeners() : removeListeners
.face.bottom { .face.bottom {
width: var(--width); width: var(--width);
height: var(--depth); height: var(--depth);
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
} }
.face.left, .face.left,

View File

@@ -1,21 +1,28 @@
<template> <template>
<article class="flip-card w-56 h-80"> <article @click="() => playerStore.playTrack(props.track).catch(err => console.error(err))"
class="card flip-card w-56 h-80" :class="isFaceUp ? 'face-up' : 'face-down'">
<div class="flip-inner"> <div class="flip-inner">
<main <main
class="flip-front backdrop-blur-sm border-2 -mt-12 z-10 card w-56 h-80 p-3 bg-opacity-40 hover:bg-opacity-80 hover:shadow-xl transition-all bg-white rounded-2xl shadow-lg flex flex-col overflow-hidden"> class="flip-front backdrop-blur-sm border-2 -mt-12 z-10 card w-56 h-80 p-3 bg-opacity-40 hover:bg-opacity-80 hover:shadow-xl transition-all bg-white rounded-2xl shadow-lg flex flex-col overflow-hidden">
<!-- Cover --> <!-- Cover -->
<figure @click="playerStore.playTrack(props.track)" class="flex-1 overflow-hidden rounded-t-xl cursor-pointer"> <figure class="flex-1 overflow-hidden rounded-t-xl cursor-pointer">
<img :src="coverUrl" alt="Pochette de l'album" class="w-full h-full object-cover object-center" /> <img :src="coverUrl" alt="Pochette de l'album" class="w-full h-full object-cover object-center" />
</figure> </figure>
<!-- Body --> <!-- Body -->
<div class="p-3 text-center bg-white rounded-b-xl"> <div class="p-3 text-center bg-white rounded-b-xl">
<div class="label"> <div class="label" v-if="isOrder">
{{ props.track.order }} {{ props.track.order }}
</div> </div>
<h2 class="text-base text-neutral-800 font-bold truncate">{{ props.track.title }}</h2> <h2 class="text-base text-neutral-800 font-bold truncate">{{ props.track.title }}</h2>
<p class="text-sm text-neutral-500 truncate"> <p class="text-sm text-neutral-500 truncate">
{{ props.track.artist.name }} <template v-if="isPlaylistTrack">
{{ props.track.artist.name }}
</template>
<div class="order" v-if="isPlaylistTrack">
{{ props.track.card?.rank }}
{{ props.track.card?.suit }}
</div>
</p> </p>
</div> </div>
</main> </main>
@@ -25,7 +32,7 @@
<!-- Back --> <!-- Back -->
<div class="h-full flex p-16 text-center bg-slate-800 rounded-xl"> <div class="h-full flex p-16 text-center bg-slate-800 rounded-xl">
<img src="/favicon.svg" /> <img src="/favicon.svg" />
<div class="label label--id"> <div class="label label--id" v-if="isOrder">
{{ props.track.order }} {{ props.track.order }}
</div> </div>
</div> </div>
@@ -39,14 +46,19 @@
import type { Track } from '~~/types/types' import type { Track } from '~~/types/types'
import { usePlayerStore } from '~/store/player' import { usePlayerStore } from '~/store/player'
const props = defineProps<{ track: Track }>() const props = withDefaults(defineProps<{ track: Track; isFaceUp?: boolean }>(), {
isFaceUp: false
})
const playerStore = usePlayerStore() const playerStore = usePlayerStore()
const isManifesto = computed(() => props.track.compilationId.startsWith('ES00'))
const isOrder = computed(() => props.track.order && !isManifesto)
const isPlaylistTrack = computed(() => props.track.compilationId.length === 6)
const coverUrl = props.track.coverId.startsWith('http') const coverUrl = props.track.coverId.startsWith('http')
? props.track.coverId ? props.track.coverId
: `https://f4.bcbits.com/img/${props.track.coverId}_4.jpg`; : `https://f4.bcbits.com/img/${props.track.coverId}_4.jpg`;
</script> </script>
<style> <style lang="scss">
.label { .label {
@apply rounded-full size-7 p-2 bg-esyellow leading-3 -mt-6; @apply rounded-full size-7 p-2 bg-esyellow leading-3 -mt-6;
font-weight: bold; font-weight: bold;
@@ -56,34 +68,38 @@ const coverUrl = props.track.coverId.startsWith('http')
/* Flip effect */ /* Flip effect */
.flip-card { .flip-card {
perspective: 1000px; perspective: 1000px;
}
.flip-inner { .flip-inner {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
transition: transform 0.6s; transition: transform 0.6s;
transform-style: preserve-3d; transform-style: preserve-3d;
}
.flipped .flip-inner { .face-down & {
transform: rotateY(180deg); transform: rotateY(180deg);
} }
.flip-front, .face-up & {
.flip-back { transform: rotateY(0deg);
position: absolute; }
width: 100%; }
height: 100%;
backface-visibility: hidden;
will-change: transform;
}
.flip-front { .flip-front,
transform: rotateY(0deg); .flip-back {
} position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
will-change: transform;
}
.flip-back { .flip-front {
transform: rotateY(180deg); transform: rotateY(0deg);
}
.flip-back {
transform: rotateY(180deg);
}
} }
</style> </style>

View File

@@ -1,23 +1,35 @@
<template> <template>
<div class="flex flex-col-reverse mt-16"> <div class="flex flex-col-reverse mt-16">
<molecule-box v-for="compilation in dataStore.getAllCompilations.slice().reverse()" :key="compilation.id" <box v-for="compilation in dataStore.getAllCompilations.slice()" :key="compilation.id" :compilation="compilation"
:compilation="compilation" :BoxState="boxStates[compilation.id]" @click="() => openCompilation(compilation.id)" :BoxState="boxStates[compilation.id]" @click="() => openCompilation(compilation.id)"
:class="boxStates[compilation.id]" /> :class="boxStates[compilation.id]" class="text-center">
<button @click="playerStore.playCompilation(compilation.id)" v-if="boxStates[compilation.id] === 'selected'"
class="relative z-40 rounded-full size-24 bottom-1/2 text-2xl"></button>
<deck :compilation="compilation" class="box-page" v-if="boxStates[compilation.id] === 'selected'" />
</box>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { useDataStore } from '~/store/data' import { useDataStore } from '~/store/data'
import type { BoxState } from '~~/types/types' import type { BoxState } from '~~/types/types'
import { usePlayerStore } from '~/store/player'
const dataStore = useDataStore() const dataStore = useDataStore()
const boxStates = ref<Record<string, BoxState>>({}) const boxStates = ref<Record<string, BoxState>>({})
const playerStore = usePlayerStore()
function openCompilation(id: string) { function openCompilation(id: string) {
if (boxStates.value[id] === 'list') { if (boxStates.value[id] === 'list') {
for (const key in boxStates.value) { for (const key in boxStates.value) {
boxStates.value[key] = (key === id) ? 'selected' : 'hide' boxStates.value[key] = (key === id) ? 'selected' : 'hide'
} }
// Scroll to the top smoothly
window.scrollTo({
top: 0,
behavior: 'smooth'
});
} }
} }

52
app/components/deck.vue Normal file
View File

@@ -0,0 +1,52 @@
<template>
<div>
<div class="hidden tools fixed top-0 -left-0">
<button @click="setDisplay('pile')">pile</button>
<button @click="setDisplay('plateau')">plateau</button>
<button @click="setDisplay('holdem')">holdem</button>
</div>
<div ref="deck" class="deck flex flex-wrap justify-center gap-4">
<card v-if="compilation.duration" v-for="track in dataStore.getTracksByCompilationId(compilation.id)"
:key="track.id" :track="track" />
<card v-else v-for="track in dataStore.getPlaylistTracksByCompilationId(compilation.id)" :track="track" />
</div>
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '~/store/data'
import type { Compilation } from '~~/types/types'
const props = defineProps<{
compilation: Compilation
}>()
const dataStore = useDataStore()
const deck = ref()
function setDisplay(displayMode) {
deck.value.classList.remove('pile', 'plateau', 'holdem')
deck.value.classList.add(displayMode)
}
</script>
<style lang="scss">
.deck {
@apply transition-all;
&.pile {
@apply relative;
.card {
@apply absolute top-0;
}
}
&.plateau {
@apply mt-8 p-8 w-full flex flex-wrap justify-around;
}
&.holdem {
/* style holdem */
}
}
</style>

8
app/components/logo.vue Normal file
View File

@@ -0,0 +1,8 @@
<template>
<header class="py-4">
<img class="logo p-1 w-80" src="/logo.svg" alt="">
<h1 class="dark:text-white text-center">
mix-tapes
</h1>
</header>
</template>

View File

@@ -1,126 +0,0 @@
<template>
<div class="w-96 m-6">
<atropos-component class="atropos game-box atropos-rotate-touch-scroll-y" rotate-touch="scroll-y" rotate-x-max="24"
rotate-y-max="24">
<div class="atropos-inner relative">
<div class="game-box-bg bg-gradient-to-t from-slate-800 to-zinc-900 h-96 relative" data-atropos-offset="-8" />
<img :src="id + '/object.png'" data-atropos-offset="-3" class="absolute bottom-0 inset-0 h-96 object-cover">
<img :src="id + '/name.png'" data-atropos-offset="0" class="absolute inset-0 self-end justify-self-end p-4">
<img src="/logo.svg" data-atropos-offset="0" width="70%"
class="logo absolute inset-0 self-center justify-self-center">
<!-- <img src="/play.svg" width="20%" class="absolute play"> -->
</div>
<span class="game-box-t" />
<span class="game-box-r" />
<span class="game-box-b" />
<span class="game-box-l" />
</atropos-component>
</div>
</template>
<script setup>
const id = 'ES01A'
</script>
<style>
.game-box .logo {
filter: drop-shadow(4px 4px 0 rgb(0 0 0 / 0.8));
}
.game-box {
--side-color: #004297;
--side-size: 32px;
aspect-ratio: 526 / 656;
}
.atropos-rotate {
position: relative;
}
.game-box .atropos-rotate:before {
content: "";
position: absolute;
left: 0;
width: calc(100% + 8px);
height: calc(100% + 16px);
top: -8px;
background: #086ef4;
z-index: 1;
}
.atropos-inner {
width: 100%;
height: 100%;
overflow: hidden;
transform-style: preserve-3d;
transform: translateZ(0);
display: block;
z-index: 1;
position: relative;
}
.game-box-t,
.game-box-r,
.game-box-b,
.game-box-l {
transform-style: preserve-3d;
backface-visibility: hidden;
position: absolute;
/* display: none; */
}
.game-box-t {
width: calc(100% + 8px);
height: var(--side-size);
background: var(--side-color);
left: 0;
top: -8px;
transform: translate3d(0, 0, -32px) rotateX(90deg);
transform-origin: center top;
top: -8px;
transform: translateZ(-32px) rotateX(90deg);
transform-origin: center top;
}
.game-box-b {
width: calc(100% + 8px);
height: var(--side-size);
background: var(--side-color);
left: 0;
bottom: -8px;
transform: translate3d(0, 0, -32px) rotateX(-90deg);
transform-origin: center bottom;
}
.game-box-r {
width: var(--side-size);
height: calc(100% + 16px);
background: var(--side-color);
right: -8px;
top: -8px;
transform: translate3d(0, 0, -32px) rotateY(90deg);
transform-origin: right center;
}
.game-box-l {
width: var(--side-size);
height: calc(100% + 16px);
background: var(--side-color);
left: 0px;
top: -8px;
transform: translate3d(0, 0, -32px) rotateY(-90deg);
transform-origin: left center;
overflow: hidden;
&::before {
content: '';
position: absolute;
width: 100%;
height: 10.4%;
background: #a5a5a5;
left: 0;
top: 9px;
}
}
</style>

View File

@@ -1,103 +0,0 @@
<template>
<h1 class="flex items-center justify-center min-h-screen">
<atropos-component class="my-atropos">
<span class="game-box-t" />
<span class="game-box-r" />
<span class="game-box-b" />
<span class="game-box-l" />
<div class="game-box-bg bg-gradient-to-t from-slate-800 to-zinc-900 h-60" data-atropos-offset="-8" />
<img :src="id + '/object.png'" data-atropos-offset="-3" class="absolute inset-0 object-cover">
<img :src="id + '/name.png'" data-atropos-offset="0" class="absolute inset-0 object-cover">
<img src="/logo.svg" data-atropos-offset="0" width="70%" class="logo absolute inset-0">
<img src="/play.svg" width="20%" class="absolute play">
</atropos-component>
</h1>
</template>
<script setup>
const id = 'ES01A'
</script>
<style>
/* .atropos-inner,
.game-box-bg {
width: 300px;
height: 300px;
} */
.game-box-t,
.game-box-r,
.game-box-b,
.game-box-l {
transform-style: preserve-3d;
backface-visibility: hidden;
position: absolute;
/* display: none; */
}
.game-box-t {
width: calc(100% + 8px);
height: var(--side-size);
background: var(--side-color);
left: 0;
top: -8px;
transform: translate3d(0, 0, -32px) rotateX(90deg);
transform-origin: center top;
}
.game-box-b {
width: calc(100% + 8px);
height: var(--side-size);
background: var(--side-color);
left: 0;
bottom: -8px;
transform: translate3d(0, 0, -32px) rotateX(-90deg);
transform-origin: center bottom;
}
.game-box-r {
width: var(--side-size);
height: calc(100% + 16px);
background: var(--side-color);
right: -8px;
top: -8px;
transform: translate3d(0, 0, -32px) rotateY(90deg);
transform-origin: right center;
}
.game-box-l {
width: var(--side-size);
height: calc(100% + 16px);
background: var(--side-color);
left: 0px;
top: -8px;
transform: translate3d(0, 0, -32px) rotateY(-90deg);
transform-origin: left center;
overflow: hidden;
&::before {
content: '';
position: absolute;
width: 100%;
height: 10.4%;
background: #a5a5a5;
left: 0;
top: 9px;
}
}
.atropos-rotate {
position: relative;
}
.atropos-rotate:before {
content: "";
position: absolute;
left: 0;
width: calc(100% + 8px);
height: calc(100% + 16px);
top: -8px;
background: #086ef4;
z-index: 1;
}
</style>

View File

@@ -0,0 +1,11 @@
<template>
<form class="h-screen flex justify-center items-center flex-col absolute top-0 left-1/2 -translate-x-1/2">
<label for="email" class="block text-xl">
be notify when's evilSpins open :
</label>
<div>
<input type="email" name="" id="email" placeholder="email">
<button>ok</button>
</div>
</form>
</template>

View File

@@ -1,16 +0,0 @@
<template>
<div class="mt-8 p-8 w-full flex flex-wrap justify-around">
<MoleculeCard v-for="track in dataStore.getTracksByCompilationId(compilation.id)" :key="track.id" :track="track" />
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '~/store/data'
import type { Compilation } from '~~/types/types'
const props = defineProps<{
compilation: Compilation
}>()
const dataStore = useDataStore()
</script>

View File

@@ -1,13 +1,12 @@
<template> <template>
<div class="fixed left-0 bottom-0 opacity-1 z-50 w-full bg-white transition-all" <div class="fixed left-0 bottom-0 opacity-1 z-50 w-full bg-white transition-all"
:class="{ '-bottom-20 opacity-0': !playerStore.currentTrack }"> :class="{ '-bottom-20 opacity-0': !playerStore.currentTrack }">
<!-- <p class="hidden"> <!-- <p>
{{ Math.round(currentTime) }} {{ Math.round(currentTime) }}
{{ Math.round(currentProgression) }}% {{ Math.round(currentProgression) }}%
</p> --> </p> -->
<audio ref="audioRef" class="w-full" {{ playerStore.currentTrack?.url }}
:src="playerStore.currentTrack ? playerStore.getCompilationUrlFromTrack(playerStore.currentTrack) : ''" <audio ref="audioRef" class="w-full" :src="playerStore.currentTrack?.url || ''" controls />
controls />
</div> </div>
</template> </template>

15
app/pages/dev.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<div class="w-full flex flex-col items-center">
<logo />
<main>
<compilations />
<player />
</main>
</div>
</template>
<style>
.logo {
filter: drop-shadow(2px 2px 0 rgb(0 0 0 / 0.8));
}
</style>

View File

@@ -1,15 +1,8 @@
<template> <template>
<div class="w-full flex flex-col items-center"> <div class="w-full flex flex-col items-center">
<header class="py-4"> <logo />
<img class="logo p-1 w-80" src="/logo.svg" alt="">
<h1 class="dark:text-white text-center">
compilations
indépendantes
</h1>
</header>
<main> <main>
<OrganismCompilationList /> <newsletter />
<MoleculePlayer />
</main> </main>
</div> </div>
</template> </template>

View File

@@ -3,7 +3,7 @@
<div class="bg-page-dark-bg text-white"> <div class="bg-page-dark-bg text-white">
<div class="flex flex-col-reverse bg-gradient-to-r from-primary to-primary-dark"> <div class="flex flex-col-reverse bg-gradient-to-r from-primary to-primary-dark">
<div class="mt-8 flex flex-wrap justify-center"> <div class="mt-8 flex flex-wrap justify-center">
<!-- <molecule-box :compilation="compilation" /> --> <!-- <box :compilation="compilation" /> -->
<div class="devtool absolute right-4 text-white bg-black rounded-2xl px-4 py-2"> <div class="devtool absolute right-4 text-white bg-black rounded-2xl px-4 py-2">
<!-- <button @click="currentPosition = boxPositions.side">side</button> <!-- <button @click="currentPosition = boxPositions.side">side</button>
<button @click="currentPosition = boxPositions.front">front</button> <button @click="currentPosition = boxPositions.front">front</button>
@@ -37,7 +37,7 @@
</div> </div>
</div> </div>
</div> </div>
<molecule-card :track="track" /> <card :track="track" />
</div> </div>
</div> </div>
</template> </template>

View File

@@ -5,10 +5,11 @@ import { defineStore } from 'pinia'
export const useDataStore = defineStore('data', { export const useDataStore = defineStore('data', {
state: () => ({ state: () => ({
compilations: [] as Compilation[], // Store your compilation data here compilations: [] as Compilation[], // Store your compilation data here
artists: [] as Artist[], // Store artist data here artists: [] as Artist[], // Store artist data here
tracks: [] as Track[], // Store track data here tracks: [] as Track[], // Store track data here
isLoaded: false, // Remember if data is already loaded playlistTracks: [] as Track[], // store playslit tracks
isLoaded: false // Remember if data is already loaded
}), }),
actions: { actions: {
@@ -17,18 +18,32 @@ export const useDataStore = defineStore('data', {
const { data: compilations } = await useFetch<Compilation[]>('/api/compilations') const { data: compilations } = await useFetch<Compilation[]>('/api/compilations')
const { data: artists } = await useFetch<Artist[]>('/api/artists') const { data: artists } = await useFetch<Artist[]>('/api/artists')
const { data: rawTracks } = await useFetch<{ id: number, compilationId: string, title: string, artist: number, start: number, url: string, coverId: string }[]>('/api/tracks') const { data: rawTracks } = await useFetch<Track[]>('/api/tracks')
const { data: playlistTracks } = await useFetch<Track[]>('/api/playlists')
// Stocker les données de base // Stocker les données de base
this.compilations = compilations.value ?? [] this.compilations = compilations.value ?? []
this.artists = artists.value ?? [] this.artists = artists.value ?? []
// Mapper les tracks pour remplacer l'artistId par l'objet Artist // Mapper les tracks pour remplacer l'artistId par l'objet Artist
const artistMap = new Map(this.artists.map(a => [a.id, a])) const artistMap = new Map(this.artists.map((a) => [a.id, a]))
this.tracks = (rawTracks.value ?? []).map((track) => ({
this.tracks = (rawTracks.value ?? []).map(track => ({
...track, ...track,
artist: artistMap.get(track.artist) ?? { id: track.artist, name: 'Unknown', url: '', coverId: '' } artist: artistMap.get(track.artist) ?? {
id: track.artist,
name: 'Unknown',
url: '',
coverId: ''
}
}))
this.playlistTracks = (playlistTracks.value ?? []).map((track) => ({
...track,
artist: artistMap.get(track.artist) ?? {
id: track.artist,
name: track.artist,
url: '',
coverId: ''
}
})) }))
this.isLoaded = true this.isLoaded = true
@@ -40,34 +55,43 @@ export const useDataStore = defineStore('data', {
getAllCompilations: (state) => state.compilations, getAllCompilations: (state) => state.compilations,
getCompilationById: (state) => { getCompilationById: (state) => {
return (id: string) => { return (id: string) => {
return state.compilations.find(compilation => compilation.id === id) return state.compilations.find((compilation) => compilation.id === id)
} }
}, },
// Obtenir toutes les pistes d'une compilation donnée // Obtenir toutes les pistes d'une compilation donnée
getTracksByCompilationId: (state) => (compilationId: string) => { getTracksByCompilationId: (state) => (id: string) => {
return state.tracks.filter(track => track.compilationId === compilationId) return state.tracks.filter((track) => track.compilationId === id)
}, },
// Filtrer les artistes selon certains critères // Filtrer les artistes selon certains critères
getArtistById: (state) => (id: number) => state.artists.find(artist => artist.id === id), getArtistById: (state) => (id: number) => state.artists.find((artist) => artist.id === id),
// Obtenir toutes les pistes d'un artiste donné // Obtenir toutes les pistes d'un artiste donné
getTracksByArtistId: (state) => (artistId: number) => { getTracksByArtistId: (state) => (artistId: number) => {
return state.tracks.filter(track => track.artist.id === artistId) return state.tracks.filter((track) => track.artist.id === artistId)
},
getFirstTrackOfCompilation() {
return (compilationId: string) => {
const tracks = this.getTracksByCompilationId(compilationId)
return tracks.length > 0 ? tracks[0] : null
}
}, },
getNextTrack: (state) => { getNextTrack: (state) => {
return (track: Track) => { return (track: Track) => {
// Récupérer toutes les tracks de la même compilation et les trier par ordre // Récupérer toutes les tracks de la même compilation et les trier par ordre
const tracksInCompilation = state.tracks const tracksInCompilation = state.tracks
.filter(t => t.compilationId === track.compilationId) .filter((t) => t.compilationId === track.compilationId)
.sort((a, b) => a.order - b.order) .sort((a, b) => a.order - b.order)
// Trouver lindex de la track courante // Trouver lindex de la track courante
const index = tracksInCompilation.findIndex(t => t.id === track.id) const index = tracksInCompilation.findIndex((t) => t.id === track.id)
// Retourner la track suivante ou null si cest la dernière // Retourner la track suivante ou null si cest la dernière
return index >= 0 && index < tracksInCompilation.length - 1 return index >= 0 && index < tracksInCompilation.length - 1
? tracksInCompilation[index + 1] ? tracksInCompilation[index + 1]
: null : null
} }
},
getPlaylistTracksByCompilationId: (state) => (id: string) => {
return state.playlistTracks.filter((track) => track.compilationId === id)
} }
}, }
}) })

View File

@@ -7,11 +7,12 @@ export const usePlayerStore = defineStore('player', {
state: () => ({ state: () => ({
currentTrack: null as Track | null, currentTrack: null as Track | null,
position: 0, position: 0,
audio: null as HTMLAudioElement | null, audio: null as HTMLAudioElement | null
}), }),
actions: { actions: {
async playTrack(track: Track) { async playTrack(track: Track) {
const oldTrack = this.currentTrack
this.currentTrack = track this.currentTrack = track
// toggle si on reclique sur la même // toggle si on reclique sur la même
@@ -24,21 +25,20 @@ export const usePlayerStore = defineStore('player', {
} }
// définir la source (fichier de la compilation entière) // définir la source (fichier de la compilation entière)
this.audio.src = this.getCompilationUrlFromTrack(track)
this.audio.load() this.audio.load()
// attendre que le player soit prêt avant de lire // attendre que le player soit prêt avant de lire
await new Promise<void>((resolve, reject) => { await new Promise<void>((resolve, reject) => {
const onCanPlay = () => { const onCanPlay = () => {
this.audio!.removeEventListener("canplay", onCanPlay) this.audio!.removeEventListener('canplay', onCanPlay)
resolve() resolve()
} }
const onError = (e: Event) => { const onError = (e: Event) => {
this.audio!.removeEventListener("error", onError) this.audio!.removeEventListener('error', onError)
reject(e) reject(e)
} }
this.audio!.addEventListener("canplay", onCanPlay, { once: true }) this.audio!.addEventListener('canplay', onCanPlay, { once: true })
this.audio!.addEventListener("error", onError, { once: true }) this.audio!.addEventListener('error', onError, { once: true })
}) })
// positionner le début // positionner le début
@@ -48,24 +48,23 @@ export const usePlayerStore = defineStore('player', {
try { try {
await this.audio.play() await this.audio.play()
} catch (err) { } catch (err) {
console.error("Impossible de lire la piste :", err) console.error('Impossible de lire la piste :', err)
} }
}, },
togglePlay() { togglePlay() {
if (!this.audio) return if (!this.audio) return
if (this.audio.paused) { if (this.audio.paused) {
this.audio.play().catch(err => console.error(err)) this.audio.play().catch((err) => console.error(err))
} else { } else {
this.audio.pause() this.audio.pause()
} }
}, }
}, },
getters: { getters: {
isCurrentCompilation: (state) => { isCurrentCompilation: (state) => {
return (compilationId: string) => return (compilationId: string) => compilationId === state.currentTrack?.compilationId
compilationId === state.currentTrack?.compilationId
}, },
isPlayingTrack: (state) => { isPlayingTrack: (state) => {
@@ -85,15 +84,8 @@ export const usePlayerStore = defineStore('player', {
getCurrentTrack: (state) => state.currentTrack, getCurrentTrack: (state) => state.currentTrack,
getCompilationUrlFromTrack: () => {
return (track: Track) =>
`https://files.erudi.fr/evilspins/${track.compilationId}.mp3`
},
getCurrentCompilation: (state) => { getCurrentCompilation: (state) => {
return state.currentTrack return state.currentTrack ? state.currentTrack.url : null
? state.getCompilationUrlFromTrack(state.currentTrack)
: null
}, },
getTrackStop: (state) => { getTrackStop: (state) => {
@@ -109,5 +101,5 @@ export const usePlayerStore = defineStore('player', {
} }
} }
} }
}, }
}) })

11
app/store/user.ts Normal file
View File

@@ -0,0 +1,11 @@
import type { Compilation, Artist, Track } from '~/../types/types'
// stores/user.ts
import { defineStore } from 'pinia'
export const useDataStore = defineStore('data', {
state: () => ({
badge: [] // un badge par user achievement pour enrichir le déchifrage de l'app (afichage des nom des titres/artiste, collection de carte déjà joué (et du coups possibilité de les rejouer dans son deck))
// evilSpins est un jeux mais pas vraiment pokemon (un morceau = un pokemon) mais aussi un jeux d'aventure / exploration ou plus on progresse plus on peu voir de chose
})
})

View File

@@ -1,6 +1,8 @@
// @ts-check // @ts-check
import withNuxt from "./.nuxt/eslint.config.mjs"; import withNuxt from "./.nuxt/eslint.config.mjs";
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
export default withNuxt([eslintPluginPrettierRecommended])
export default withNuxt({ export default withNuxt({
rules: { rules: {
// Garde l'ordre correct : class avant @click // Garde l'ordre correct : class avant @click

View File

@@ -24,4 +24,4 @@ export default defineNuxtConfig({
] ]
} }
} }
}) })

View File

@@ -7,7 +7,11 @@
"dev": "nuxt dev --host", "dev": "nuxt dev --host",
"generate": "nuxt generate", "generate": "nuxt generate",
"preview": "nuxt preview", "preview": "nuxt preview",
"postinstall": "nuxt prepare" "postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check .",
"format:fix": "prettier --write ."
}, },
"dependencies": { "dependencies": {
"@nuxt/eslint": "1.9.0", "@nuxt/eslint": "1.9.0",

View File

@@ -2,41 +2,158 @@ import { eventHandler } from 'h3'
export default eventHandler(() => { export default eventHandler(() => {
return [ return [
{
id: 'ES2012',
name: '2012',
duration: 0,
description: '🐉💧',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2013',
name: '2013',
duration: 0,
description: '🐍💧',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2015',
name: '2015',
duration: 0,
description: '🐐🌳',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2016',
name: '2016',
duration: 0,
description: '🐒🔥',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2017',
name: '2017',
duration: 0,
description: '🐓🔥',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2018',
name: '2018',
duration: 0,
description: '🐕🌱',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2019',
name: '2019',
duration: 0,
description: '🐖🌱',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2020',
name: '2020',
duration: 0,
description: '🐀🪙',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2021',
name: '2021',
duration: 0,
description: '🐃🪙',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2022',
name: '2022',
duration: 0,
description: '🐅💧',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2023',
name: '2023',
duration: 0,
description: '🐇💧',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2024',
name: '2024',
duration: 0,
description: '🐉🌳',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{
id: 'ES2025',
name: '2025',
duration: 0,
description: '🐍🌳',
color1: '#ffffff',
color2: '#32021F',
color3: '#00ff00'
},
{ {
id: 'ES00A', id: 'ES00A',
name: 'zero', name: 'manifeste',
duration: 2794, duration: 2794,
description: 'Zero is for manifesto', description: 'Zero is for manifesto',
color1: '#ffffff', color1: '#ffffff',
color2: '#48959d', color2: '#48959d',
color3: '#00ff00', color3: '#00ff00'
}, },
{ {
id: 'ES00B', id: 'ES00B',
name: 'zero b-side', name: 'manifeste B',
duration: 2470, duration: 2470,
description: 'Even Zero has a b-side', description: 'Even Zero has a b-side',
color1: '#0d01b9', color1: '#0d01b9',
color2: '#3b7589', color2: '#3b7589',
color3: '#00ff00', color3: '#00ff00'
}, },
{ {
id: 'ES01A', id: 'ES01A',
name: 'first', name: '...',
duration: 3487, duration: 3487,
description: '...', description: '...',
color1: '#c7b3aa', color1: '#c7b3aa',
color2: '#000100', color2: '#000100',
color3: '#00ff00', color3: '#00ff00'
}, },
{ {
id: 'ES01B', id: 'ES01B',
name: 'first b-side', name: '... B',
duration: 3773, duration: 3773,
description: '...', description: '...',
color1: '#f7dd01', color1: '#f7dd01',
color2: '#010103', color2: '#010103',
color3: '#00ff00', color3: '#00ff00'
} }
] ]
}) })

69
server/api/playlists.ts Normal file
View File

@@ -0,0 +1,69 @@
import fs from 'fs'
import path from 'path'
import { eventHandler } from 'h3'
import { getCardFromDate } from '../../utils/cards'
export default eventHandler(async (event) => {
const basePath = path.join(process.cwd(), '/mnt/media/files/music')
try {
let allTracks: any[] = []
const dirPath = basePath
const urlPrefix = `https://files.erudi.fr/music`
let files = await fs.promises.readdir(dirPath)
files = files.filter((f) => !f.startsWith('.'))
const tracks = files.map((file, index) => {
const EXT_RE = /\.(mp3|flac|wav|opus)$/i
const nameWithoutExt = file.replace(EXT_RE, '')
// On split sur __
const parts = nameWithoutExt.split('__')
let stamp = parts[0] || ''
let artist = parts[1] || ''
let title = parts[2] || ''
title = title.replaceAll('_', ' ')
artist = artist.replaceAll('_', ' ')
// Parser la date depuis le stamp
let year = 2020,
month = 1,
day = 1,
hour = 0
if (stamp.length === 10) {
year = Number(stamp.slice(0, 4))
month = Number(stamp.slice(4, 6))
day = Number(stamp.slice(6, 8))
hour = Number(stamp.slice(8, 10))
}
const date = new Date(year, month - 1, day, hour)
const card = getCardFromDate(date)
const url = `${urlPrefix}/${encodeURIComponent(file)}`
return {
id: Number(`${year}${index + 1}`),
compilationId: `ES${year}`,
date,
title: title.trim(),
artist: artist.trim(),
url,
coverId: '',
card
}
})
tracks.sort((a, b) => b.date.getTime() - a.date.getTime())
allTracks.push(...tracks)
return allTracks
} catch (error) {
return {
success: false,
error: (error as Error).message
}
}
})

View File

@@ -1,24 +0,0 @@
import fs from 'fs'
import path from 'path'
import { eventHandler } from 'h3'
export default eventHandler(async (event) => {
const id = event.context.params?.id || ''
const directoryPath = path.join(process.cwd(), '/mnt/media/files/music/' + id) // replace 'your-folder' with the folder you want to list
try {
// Read the directory contents
const files = await fs.promises.readdir(directoryPath)
return {
success: true,
files: files.filter(file => !file.startsWith('.')) // optional: exclude unwanted files
}
} catch (error) {
return {
success: false,
error: error.message
}
}
})

View File

@@ -1,22 +0,0 @@
import fs from 'fs'
import path from 'path'
import { eventHandler } from 'h3'
export default eventHandler(async (event) => {
const directoryPath = path.join(process.cwd(), '/mnt/media/files/music')
try {
// Read the directory contents
const files = await fs.promises.readdir(directoryPath)
return {
success: true,
files: files.filter(file => !file.startsWith('.')).reverse() // exclude unwanted files
}
} catch (error) {
return {
success: false,
error: error.message
}
}
})

View File

@@ -1,446 +1,409 @@
import { eventHandler } from 'h3' import { eventHandler } from 'h3'
export default eventHandler(() => { export default eventHandler(() => {
return [ const tracks = [
{ {
id: 0,
order: 1, order: 1,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'The grinding wheel', title: 'The grinding wheel',
artist: 0, artist: 0,
start: 0, start: 0,
url: 'https://arakirecords.bandcamp.com/track/the-grinding-wheel', link: 'https://arakirecords.bandcamp.com/track/the-grinding-wheel',
coverId: 'a3236746052', coverId: 'a3236746052'
}, },
{ {
id: 1,
order: 2, order: 2,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Bleach', title: 'Bleach',
artist: 1, artist: 1,
start: 392, start: 392,
url: 'https://the-kundalini-genie.bandcamp.com/track/bleach-2', link: 'https://the-kundalini-genie.bandcamp.com/track/bleach-2',
coverId: 'a1714786533', coverId: 'a1714786533'
}, },
{ {
id: 2,
order: 3, order: 3,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Televised mind', title: 'Televised mind',
artist: 2, artist: 2,
start: 896, start: 896,
url: 'https://fontainesdc.bandcamp.com/track/televised-mind', link: 'https://fontainesdc.bandcamp.com/track/televised-mind',
coverId: 'a3772806156' coverId: 'a3772806156'
}, },
{ {
id: 3,
order: 4, order: 4,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'In it', title: 'In it',
artist: 3, artist: 3,
start: 1139, start: 1139,
url: 'https://howlinbananarecords.bandcamp.com/track/in-it', link: 'https://howlinbananarecords.bandcamp.com/track/in-it',
coverId: 'a1720372066', coverId: 'a1720372066'
}, },
{ {
id: 4,
order: 5, order: 5,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Bad michel', title: 'Bad michel',
artist: 4, artist: 4,
start: 1245, start: 1245,
url: 'https://johnnymafia.bandcamp.com/track/bad-michel-3', link: 'https://johnnymafia.bandcamp.com/track/bad-michel-3',
coverId: 'a0984622869', coverId: 'a0984622869'
}, },
{ {
id: 5,
order: 6, order: 6,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Overall', title: 'Overall',
artist: 5, artist: 5,
start: 1394, start: 1394,
url: 'https://newcandys.bandcamp.com/track/overall', link: 'https://newcandys.bandcamp.com/track/overall',
coverId: 'a0559661270', coverId: 'a0559661270'
}, },
{ {
id: 6,
order: 7, order: 7,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Blowup', title: 'Blowup',
artist: 6, artist: 6,
start: 1674, start: 1674,
url: 'https://magicshoppe.bandcamp.com/track/blowup', link: 'https://magicshoppe.bandcamp.com/track/blowup',
coverId: 'a1444895293', coverId: 'a1444895293'
}, },
{ {
id: 7,
order: 8, order: 8,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Guitar jet', title: 'Guitar jet',
artist: 7, artist: 7,
start: 1880, start: 1880,
url: 'https://radiomartiko.bandcamp.com/track/guitare-jet', link: 'https://radiomartiko.bandcamp.com/track/guitare-jet',
coverId: 'a1494681687', coverId: 'a1494681687'
}, },
{ {
id: 8,
order: 9, order: 9,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Intercontinental radio waves', title: 'Intercontinental radio waves',
artist: 8, artist: 8,
start: 2024, start: 2024,
url: 'https://traams.bandcamp.com/track/intercontinental-radio-waves', link: 'https://traams.bandcamp.com/track/intercontinental-radio-waves',
coverId: 'a0046738552', coverId: 'a0046738552'
}, },
{ {
id: 9,
order: 10, order: 10,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Here comes the sun', title: 'Here comes the sun',
artist: 9, artist: 9,
start: 2211, start: 2211,
url: 'https://blue-orchid.bandcamp.com/track/here-come-the-sun', link: 'https://blue-orchid.bandcamp.com/track/here-come-the-sun',
coverId: 'a4102567047', coverId: 'a4102567047'
}, },
{ {
id: 10,
order: 11, order: 11,
compilationId: 'ES00A', compilationId: 'ES00A',
title: 'Like in the movies', title: 'Like in the movies',
artist: 10, artist: 10,
start: 2560, start: 2560,
url: 'https://bruitblanc.bandcamp.com/track/like-in-the-movies-2', link: 'https://bruitblanc.bandcamp.com/track/like-in-the-movies-2',
coverId: 'a2203158939', coverId: 'a2203158939'
}, },
{ {
id: 11,
order: 1, order: 1,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Ce que révèle l\'éclipse', title: "Ce que révèle l'éclipse",
artist: 0, artist: 0,
start: 0, start: 0,
url: 'https://arakirecords.bandcamp.com/track/ce-que-r-v-le-l-clipse', link: 'https://arakirecords.bandcamp.com/track/ce-que-r-v-le-l-clipse',
coverId: 'a3236746052', coverId: 'a3236746052'
}, },
{ {
id: 12,
order: 2, order: 2,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Bleedin\' Gums Mushrool', title: "Bleedin' Gums Mushrool",
artist: 1, artist: 1,
start: 263, start: 263,
url: 'https://the-kundalini-genie.bandcamp.com/track/bleedin-gums-mushroom', link: 'https://the-kundalini-genie.bandcamp.com/track/bleedin-gums-mushroom',
coverId: 'a1714786533', coverId: 'a1714786533'
}, },
{ {
id: 13,
order: 3, order: 3,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'A lucid dream', title: 'A lucid dream',
artist: 2, artist: 2,
start: 554, start: 554,
url: 'https://fontainesdc.bandcamp.com/track/a-lucid-dream', link: 'https://fontainesdc.bandcamp.com/track/a-lucid-dream',
coverId: 'a3772806156', coverId: 'a3772806156'
}, },
{ {
id: 14,
order: 4, order: 4,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Lights off', title: 'Lights off',
artist: 3, artist: 3,
start: 781, start: 781,
url: 'https://howlinbananarecords.bandcamp.com/track/lights-off', link: 'https://howlinbananarecords.bandcamp.com/track/lights-off',
coverId: 'a1720372066', coverId: 'a1720372066'
}, },
{ {
id: 15,
order: 5, order: 5,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'I\'m sentimental', title: "I'm sentimental",
artist: 4, artist: 4,
start: 969, start: 969,
url: 'https://johnnymafia.bandcamp.com/track/im-sentimental-2', link: 'https://johnnymafia.bandcamp.com/track/im-sentimental-2',
coverId: 'a2333676849', coverId: 'a2333676849'
}, },
{ {
id: 16,
order: 6, order: 6,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Thrill or trip', title: 'Thrill or trip',
artist: 5, artist: 5,
start: 1128, start: 1128,
url: 'https://newcandys.bandcamp.com/track/thrill-or-trip', link: 'https://newcandys.bandcamp.com/track/thrill-or-trip',
coverId: 'a0559661270', coverId: 'a0559661270'
}, },
{ {
id: 17,
order: 7, order: 7,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Redhead', title: 'Redhead',
artist: 6, artist: 6,
start: 1303, start: 1303,
url: 'https://magicshoppe.bandcamp.com/track/redhead', link: 'https://magicshoppe.bandcamp.com/track/redhead',
coverId: 'a0594426943', coverId: 'a0594426943'
}, },
{ {
id: 18,
order: 8, order: 8,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Supersonic twist', title: 'Supersonic twist',
artist: 7, artist: 7,
start: 1584, start: 1584,
url: 'https://open.spotify.com/track/66voQIZAJ3zD3Eju2qtNjF', link: 'https://open.spotify.com/track/66voQIZAJ3zD3Eju2qtNjF',
coverId: 'a1494681687', coverId: 'a1494681687'
}, },
{ {
id: 19,
order: 9, order: 9,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Flowers', title: 'Flowers',
artist: 8, artist: 8,
start: 1749, start: 1749,
url: 'https://traams.bandcamp.com/track/flowers', link: 'https://traams.bandcamp.com/track/flowers',
coverId: 'a3644668199', coverId: 'a3644668199'
}, },
{ {
id: 20,
order: 10, order: 10,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'The shade', title: 'The shade',
artist: 9, artist: 9,
start: 1924, start: 1924,
url: 'https://blue-orchid.bandcamp.com/track/the-shade', link: 'https://blue-orchid.bandcamp.com/track/the-shade',
coverId: 'a0804204790', coverId: 'a0804204790'
}, },
{ {
id: 21,
order: 11, order: 11,
compilationId: 'ES00B', compilationId: 'ES00B',
title: 'Like in the movies', title: 'Like in the movies',
artist: 10, artist: 10,
start: 2186, start: 2186,
url: 'https://bruitblanc.bandcamp.com/track/like-in-the-movies', link: 'https://bruitblanc.bandcamp.com/track/like-in-the-movies',
coverId: 'a3647322740', coverId: 'a3647322740'
}, },
{ {
id: 22,
order: 1, order: 1,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'He Walked In', title: 'He Walked In',
artist: 11, artist: 11,
start: 0, start: 0,
url: 'https://kidcongothepinkmonkeybirds.bandcamp.com/track/he-walked-in', link: 'https://kidcongothepinkmonkeybirds.bandcamp.com/track/he-walked-in',
coverId: 'a0336300523', coverId: 'a0336300523'
}, },
{ {
id: 23,
order: 2, order: 2,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'The Third Wave', title: 'The Third Wave',
artist: 12, artist: 12,
start: 841, start: 841,
url: 'https://firefriend.bandcamp.com/track/the-third-wave', link: 'https://firefriend.bandcamp.com/track/the-third-wave',
coverId: 'a2803689859', coverId: 'a2803689859'
}, },
{ {
id: 24,
order: 3, order: 3,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Broadcaster', title: 'Broadcaster',
artist: 13, artist: 13,
start: 1104.5, start: 1104.5,
url: 'https://squiduk.bandcamp.com/track/broadcaster', link: 'https://squiduk.bandcamp.com/track/broadcaster',
coverId: 'a3391719769', coverId: 'a3391719769'
}, },
{ {
id: 25,
order: 4, order: 4,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Mourn', title: 'Mourn',
artist: 14, artist: 14,
start: 1441, start: 1441,
url: 'https://lysistrata.bandcamp.com/track/mourn-2', link: 'https://lysistrata.bandcamp.com/track/mourn-2',
coverId: 'a0872900041', coverId: 'a0872900041'
}, },
{ {
id: 26,
order: 5, order: 5,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Let it Blow', title: 'Let it Blow',
artist: 15, artist: 15,
start: 1844.8, start: 1844.8,
url: 'https://pabloxbroadcastingservices.bandcamp.com/track/let-it-blow', link: 'https://pabloxbroadcastingservices.bandcamp.com/track/let-it-blow',
coverId: 'a4000148031', coverId: 'a4000148031'
}, },
{ {
id: 27,
order: 6, order: 6,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Sunday Mourning', title: 'Sunday Mourning',
artist: 16, artist: 16,
start: 2091.7, start: 2091.7,
url: 'https://nightbeats.bandcamp.com/track/sunday-mourning', link: 'https://nightbeats.bandcamp.com/track/sunday-mourning',
coverId: 'a0031987121', coverId: 'a0031987121'
}, },
{ {
id: 28,
order: 7, order: 7,
compilationId: 'ES01A', compilationId: 'ES01A',
title: '3030 Instrumental', title: '3030 Instrumental',
artist: 17, artist: 17,
start: 2339.3, start: 2339.3,
url: 'https://delthefunkyhomosapien.bandcamp.com/track/3030', link: 'https://delthefunkyhomosapien.bandcamp.com/track/3030',
coverId: 'a1948146136', coverId: 'a1948146136'
}, },
{ {
id: 29,
order: 8, order: 8,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Immortality Break', title: 'Immortality Break',
artist: 18, artist: 18,
start: 2530.5, start: 2530.5,
url: 'https://theaa.bandcamp.com/track/immortality-break', link: 'https://theaa.bandcamp.com/track/immortality-break',
coverId: 'a2749250329', coverId: 'a2749250329'
}, },
{ {
id: 30,
order: 9, order: 9,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Lazy Bones', title: 'Lazy Bones',
artist: 19, artist: 19,
start: 2718, start: 2718,
url: 'https://woodenshjips.bandcamp.com/track/lazy-bones', link: 'https://woodenshjips.bandcamp.com/track/lazy-bones',
coverId: 'a1884221104', coverId: 'a1884221104'
}, },
{ {
id: 31,
order: 10, order: 10,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'On the Train of Aches', title: 'On the Train of Aches',
artist: 20, artist: 20,
start: 2948, start: 2948,
url: 'https://silasjdirge.bandcamp.com/track/on-the-train-of-aches', link: 'https://silasjdirge.bandcamp.com/track/on-the-train-of-aches',
coverId: 'a1124177379', coverId: 'a1124177379'
}, },
{ {
id: 32,
order: 11, order: 11,
compilationId: 'ES01A', compilationId: 'ES01A',
title: 'Me', title: 'Me',
artist: 21, artist: 21,
start: 3265, start: 3265,
url: 'https://secretcolours.bandcamp.com/track/me', link: 'https://secretcolours.bandcamp.com/track/me',
coverId: 'a1497022499', coverId: 'a1497022499'
}, },
{ {
id: 33,
order: 1, order: 1,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Lady Hawke Blues', title: 'Lady Hawke Blues',
artist: 11, artist: 11,
start: 0, start: 0,
url: 'https://kidcongothepinkmonkeybirds.bandcamp.com/track/lady-hawke-blues', link: 'https://kidcongothepinkmonkeybirds.bandcamp.com/track/lady-hawke-blues',
coverId: 'a2532623230', coverId: 'a2532623230'
}, },
{ {
id: 34,
order: 2, order: 2,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Dreamscapes', title: 'Dreamscapes',
artist: 12, artist: 12,
start: 235, start: 235,
url: 'https://littlecloudrecords.bandcamp.com/track/dreamscapes', link: 'https://littlecloudrecords.bandcamp.com/track/dreamscapes',
coverId: 'a3498981203', coverId: 'a3498981203'
}, },
{ {
id: 35,
order: 3, order: 3,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Crispy Skin', title: 'Crispy Skin',
artist: 13, artist: 13,
start: 644.2, start: 644.2,
url: 'https://squiduk.bandcamp.com/track/crispy-skin-2', link: 'https://squiduk.bandcamp.com/track/crispy-skin-2',
coverId: 'a2516727021', coverId: 'a2516727021'
}, },
{ {
id: 36,
order: 4, order: 4,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'The Boy Who Stood Above The Earth', title: 'The Boy Who Stood Above The Earth',
artist: 14, artist: 14,
start: 1018, start: 1018,
url: 'https://lysistrata.bandcamp.com/track/the-boy-who-stood-above-the-earth-2', link: 'https://lysistrata.bandcamp.com/track/the-boy-who-stood-above-the-earth-2',
coverId: 'a0350933426', coverId: 'a0350933426'
}, },
{ {
id: 37,
order: 5, order: 5,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Better Off Alone', title: 'Better Off Alone',
artist: 15, artist: 15,
start: 1698, start: 1698,
url: 'https://pabloxbroadcastingservices.bandcamp.com/track/better-off-alone', link: 'https://pabloxbroadcastingservices.bandcamp.com/track/better-off-alone',
coverId: 'a4000148031', coverId: 'a4000148031'
}, },
{ {
id: 38,
order: 6, order: 6,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Celebration #1', title: 'Celebration #1',
artist: 16, artist: 16,
start: 2235, start: 2235,
url: 'https://nightbeats.bandcamp.com/track/celebration-1', link: 'https://nightbeats.bandcamp.com/track/celebration-1',
coverId: 'a0031987121', coverId: 'a0031987121'
}, },
{ {
id: 39,
order: 7, order: 7,
compilationId: 'ES01B', compilationId: 'ES01B',
title: '3030 Instrumental', title: '3030 Instrumental',
artist: 17, artist: 17,
start: 2458.3, start: 2458.3,
url: 'https://delthefunkyhomosapien.bandcamp.com/track/3030', link: 'https://delthefunkyhomosapien.bandcamp.com/track/3030',
coverId: 'a1948146136', coverId: 'a1948146136'
}, },
{ {
id: 40,
order: 8, order: 8,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'The Emptiness Of Nothingness', title: 'The Emptiness Of Nothingness',
artist: 18, artist: 18,
start: 2864.5, start: 2864.5,
url: 'https://theaa.bandcamp.com/track/the-emptiness-of-nothingness', link: 'https://theaa.bandcamp.com/track/the-emptiness-of-nothingness',
coverId: 'a1053923875', coverId: 'a1053923875'
}, },
{ {
id: 41,
order: 9, order: 9,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Rising', title: 'Rising',
artist: 19, artist: 19,
start: 3145, start: 3145,
url: 'https://woodenshjips.bandcamp.com/track/rising', link: 'https://woodenshjips.bandcamp.com/track/rising',
coverId: 'a1884221104', coverId: 'a1884221104'
}, },
{ {
id: 42,
order: 10, order: 10,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'The Last Time', title: 'The Last Time',
artist: 22, artist: 22,
start: 3447, start: 3447,
url: 'https://www.discogs.com/release/12110815-Larry-McNeil-And-The-Blue-Knights-Jealous-Woman', link: 'https://www.discogs.com/release/12110815-Larry-McNeil-And-The-Blue-Knights-Jealous-Woman',
coverId: 'https://i.discogs.com/Yr05_neEXwzPwKlDeV7dimmTG34atkAMgpxbMBhHBkI/rs:fit/g:sm/q:90/h:600/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEyMTEw/ODE1LTE1Mjg1NjU1/NzQtMjcyOC5qcGVn.jpeg', coverId:
'https://i.discogs.com/Yr05_neEXwzPwKlDeV7dimmTG34atkAMgpxbMBhHBkI/rs:fit/g:sm/q:90/h:600/w:600/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEyMTEw/ODE1LTE1Mjg1NjU1/NzQtMjcyOC5qcGVn.jpeg'
}, },
{ {
id: 43,
order: 11, order: 11,
compilationId: 'ES01B', compilationId: 'ES01B',
title: 'Guajira Con Arpa', title: 'Guajira Con Arpa',
artist: 23, artist: 23,
start: 3586, start: 3586,
url: 'https://elpalmasmusic.bandcamp.com/track/guajira-con-arpa', link: 'https://elpalmasmusic.bandcamp.com/track/guajira-con-arpa',
coverId: 'a3463036407', coverId: 'a3463036407'
}, }
] ]
return tracks.map((track, index) => ({
id: index + 1,
...track,
url: `https://files.erudi.fr/evilspins/${track.compilationId}.mp3`
}))
}) })

View File

@@ -13,6 +13,9 @@ module.exports = {
colors: { colors: {
esyellow: "#fdec50ff", esyellow: "#fdec50ff",
}, },
fontSize: {
xxs: "0.625rem", // 10px par exemple
},
screens: { screens: {
"2sm": "320px", "2sm": "320px",
}, },

View File

@@ -16,29 +16,28 @@ export interface Artist {
url: string url: string
coverId: string coverId: string
} }
export interface Track { export interface Track {
id: number id: number
order: number order?: number
compilationId: string compilationId: string
title: string title: string
artist: Artist artist?: Artist | { id?: Artist }
start: number start?: number
url: string url: string
coverId: string coverId?: string
date?: Date
card?: { suit: CardSuit; value: CardRank }
link?: string
}
export interface Playlist {
id: number
date: Date
title: string
url: string
filename: string
} }
// pour une v2
export type BoxState = 'hide' | 'list' | 'selected' export type BoxState = 'hide' | 'list' | 'selected'
export type CardSuit = '♠' | '♣' | '♦' | '♥'
export interface BoxPosition { export type CardRank = 'A' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | 'J' | 'Q' | 'K'
x: number
y: number
z: number
}
export interface BoxSize {
h: number
w: number
d: number
}

21
utils/cards.ts Normal file
View File

@@ -0,0 +1,21 @@
import type { CardSuit, CardRank } from '~/types/cards'
export function getCardFromDate(date: Date): { suit: CardSuit; rank: CardRank } {
const month = date.getMonth() + 1
const day = date.getDate()
const hour = date.getHours()
const suit: CardSuit =
month >= 12 || month <= 2
? '♠'
: month >= 3 && month <= 5
? '♣'
: month >= 6 && month <= 8
? '♦'
: '♥'
const ranks: CardRank[] = ['A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']
const rank = ranks[(day + hour) % ranks.length]
return { suit, rank }
}