feat(planning): grille hebdomadaire complète avec API et filtres

- Connexion API via proxy Angular (résolution CORS, base path /api)
- Import CSS ng-zorro global pour les modales et composants
- Filtres Camion/Show câblés sur l'affichage de la grille
- Camions affichés via TrucksService (linkés au show du même créneau)
- Panneau de détails : spectacles + camions du jour sélectionné
- Modale de création de spectacle stylisée avec fond et centrage
- Positionnement précis des events à la minute dans leur créneau
- Auto-scroll vers l'heure courante au chargement
- Ligne "maintenant" sur la colonne du jour actuel
- Régénération des services OpenAPI (nouveaux noms de types)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 20:36:03 +02:00
parent 150b97cd2e
commit 654b297e2e
3131 changed files with 149304 additions and 104334 deletions
+1 -6
View File
@@ -212,12 +212,7 @@ function readKey(buffer, start, end, inSequence) {
let size = end - position;
let lowInt;
if (size > 4) {
lowInt = position + 8 <= buffer.length ? dataView.getInt32(position + 4) : (
buffer[position + 4] << 24 |
buffer[position + 5] << 16 |
buffer[position + 6] << 8 |
buffer[position + 7]
);
lowInt = dataView.getInt32(position + 4);
highInt |= lowInt >>> 28;
if (size <= 6) { // clear the last bits
lowInt &= -0x10000;
+1 -6
View File
@@ -208,12 +208,7 @@ export function readKey(buffer, start, end, inSequence) {
let size = end - position
let lowInt
if (size > 4) {
lowInt = position + 8 <= buffer.length ? dataView.getInt32(position + 4) : (
buffer[position + 4] << 24 |
buffer[position + 5] << 16 |
buffer[position + 6] << 8 |
buffer[position + 7]
)
lowInt = dataView.getInt32(position + 4)
highInt |= lowInt >>> 28
if (size <= 6) { // clear the last bits
lowInt &= -0x10000
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "ordered-binary",
"author": "Kris Zyp",
"version": "1.6.1",
"version": "1.6.0",
"description": "Conversion of JavaScript primitives to and from Buffer with binary order matching natural primitive order",
"license": "MIT",
"repository": {
-2
View File
@@ -28,8 +28,6 @@ suite('key buffers', () => {
assert.strictEqual(fromBufferKey(toBufferKey(3.4)), 3.4)
assert.strictEqual(fromBufferKey(toBufferKey(Math.PI)), Math.PI)
assert.strictEqual(fromBufferKey(toBufferKey(2002225)), 2002225)
// check to make sure it works with a limited ArrayBuffer
assert.strictEqual(fromBufferKey(new Uint8Array(toBufferKey(2002225))), 2002225)
assert.strictEqual(fromBufferKey(toBufferKey(9377288)), 9377288)
assert.strictEqual(fromBufferKey(toBufferKey(1503579323825)), 1503579323825)
assert.strictEqual(fromBufferKey(toBufferKey(1503579323825.3523532)), 1503579323825.3523532)