update frontend
This commit is contained in:
parent
b1e9e4379b
commit
28483f5ea2
|
|
@ -1,19 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
echo "Checking for maplibre-gl.css..."
|
|
||||||
|
|
||||||
if [ -f node_modules/maplibre-gl/dist/maplibre-gl.css ]; then
|
|
||||||
CSS="maplibre-gl/dist/maplibre-gl.css"
|
|
||||||
elif [ -f node_modules/maplibre-gl/maplibre-gl.css ]; then
|
|
||||||
CSS="maplibre-gl/maplibre-gl.css"
|
|
||||||
else
|
|
||||||
echo "❌ Aucun fichier CSS trouvé dans maplibre-gl"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "✔ CSS found at: $CSS"
|
|
||||||
echo "✔ Updating MapView.jsx..."
|
|
||||||
|
|
||||||
sed -i "s|import .*maplibre.*css.*|import \"$CSS\";|" src/components/Map/MapView.jsx
|
|
||||||
|
|
||||||
echo "✔ Done!"
|
|
||||||
14
fix.sh
14
fix.sh
|
|
@ -1,14 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
FILE="src/components/Map/MapView.jsx"
|
|
||||||
|
|
||||||
echo "🛠 Fix MapLibre CSS import in $FILE"
|
|
||||||
|
|
||||||
# Remplace l'ancien mauvais import par le bon
|
|
||||||
sed -i 's|import "maplibregl/dist/maplibre-gl.css";|import "maplibre-gl/dist/maplibre-gl.css";|g' "$FILE"
|
|
||||||
|
|
||||||
# Vérifie le résultat
|
|
||||||
echo "🔍 Vérification de l'import..."
|
|
||||||
grep 'maplibre-gl' "$FILE" || echo "⚠️ Aucun import trouvé !"
|
|
||||||
|
|
||||||
echo "✅ Correction terminée ! Maintenant lance : npm run dev"
|
|
||||||
333
setup_map_ui.sh
333
setup_map_ui.sh
|
|
@ -1,333 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
cd "$(dirname "$0")"
|
|
||||||
|
|
||||||
echo "[+] Creating styles directory…"
|
|
||||||
mkdir -p src/styles
|
|
||||||
|
|
||||||
###############################################
|
|
||||||
# 1) Markers CSS – posts bien ancrés à leur point
|
|
||||||
###############################################
|
|
||||||
cat > src/styles/mapMarkers.css << 'CSS_EOF'
|
|
||||||
.post-marker {
|
|
||||||
position: relative;
|
|
||||||
transform: none !important; /* pas de translate chelou */
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
pointer-events: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Petit post */
|
|
||||||
.post-marker-compact {
|
|
||||||
padding: 2px 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-marker-expanded {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-inner {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding: 4px 8px;
|
|
||||||
border-radius: 999px;
|
|
||||||
background: rgba(6, 40, 80, 0.9);
|
|
||||||
border: 1px solid rgba(80, 180, 255, 0.9);
|
|
||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
|
|
||||||
max-width: 220px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-dot {
|
|
||||||
width: 10px;
|
|
||||||
height: 10px;
|
|
||||||
border-radius: 999px;
|
|
||||||
background: #3ec6ff;
|
|
||||||
margin-right: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-text {
|
|
||||||
color: #e8f5ff;
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 500;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Gros post */
|
|
||||||
.marker-expanded-inner {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
padding: 8px 10px;
|
|
||||||
border-radius: 12px;
|
|
||||||
background: rgba(8, 20, 40, 0.95);
|
|
||||||
border: 1px solid rgba(90, 190, 255, 0.9);
|
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
|
|
||||||
max-width: 260px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-expanded-header {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-expanded-title {
|
|
||||||
color: #f5fbff;
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
.marker-expanded-body {
|
|
||||||
color: #c7e3ff;
|
|
||||||
font-size: 11px;
|
|
||||||
line-height: 1.35;
|
|
||||||
max-height: 120px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
CSS_EOF
|
|
||||||
|
|
||||||
###############################################
|
|
||||||
# 2) Layout CSS – boutons en haut, map plus bas
|
|
||||||
###############################################
|
|
||||||
cat > src/styles/mapLayout.css << 'CSS_EOF'
|
|
||||||
.map-view {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100vh - 72px);
|
|
||||||
background: #020814;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* On laisse ~80px en haut pour les boutons,
|
|
||||||
la map commence plus bas → les posts ne collent plus au top. */
|
|
||||||
.map-container {
|
|
||||||
position: absolute;
|
|
||||||
inset: 80px 8px 12px 8px;
|
|
||||||
border-radius: 18px;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Overlays génériques */
|
|
||||||
.map-overlay {
|
|
||||||
position: absolute;
|
|
||||||
z-index: 10;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.map-overlay button,
|
|
||||||
.map-overlay .chip-pill,
|
|
||||||
.map-overlay .chip-round,
|
|
||||||
.map-overlay .chip-egg {
|
|
||||||
pointer-events: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* TOP BAR : Look at, Place your wire, Zoom In/Out, Swall, New post */
|
|
||||||
.map-overlay-top {
|
|
||||||
top: 12px;
|
|
||||||
left: 12px;
|
|
||||||
right: 12px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lookat-box {
|
|
||||||
min-width: 90px;
|
|
||||||
padding: 6px 10px;
|
|
||||||
border-radius: 999px;
|
|
||||||
background: rgba(4, 24, 52, 0.96);
|
|
||||||
color: #e8f3ff;
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 500;
|
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wire-title {
|
|
||||||
flex: 1;
|
|
||||||
text-align: center;
|
|
||||||
color: #7fb7ff;
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.zoom-buttons {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-newpost {
|
|
||||||
margin-left: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Style de base pour chips */
|
|
||||||
.chip-hex,
|
|
||||||
.chip-pill,
|
|
||||||
.chip-round,
|
|
||||||
.chip-egg {
|
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
cursor: pointer;
|
|
||||||
background: rgba(8, 32, 72, 0.96);
|
|
||||||
color: #f0f7ff;
|
|
||||||
font-size: 11px;
|
|
||||||
font-weight: 500;
|
|
||||||
border-radius: 999px;
|
|
||||||
padding: 6px 12px;
|
|
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
|
|
||||||
}
|
|
||||||
|
|
||||||
.chip-selected {
|
|
||||||
background: #1c9dff;
|
|
||||||
color: #04101f;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* LEFT time filters */
|
|
||||||
.map-overlay-left {
|
|
||||||
left: 16px;
|
|
||||||
top: 96px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* RIGHT main filters */
|
|
||||||
.map-overlay-right {
|
|
||||||
right: 16px;
|
|
||||||
top: 96px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* BOTTOM subcategories */
|
|
||||||
.map-overlay-bottom {
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
bottom: 20px;
|
|
||||||
display: flex;
|
|
||||||
gap: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* MY SPOT */
|
|
||||||
.map-overlay-myloc {
|
|
||||||
right: 16px;
|
|
||||||
bottom: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* CROSSHAIR */
|
|
||||||
.map-crosshair {
|
|
||||||
top: 50%;
|
|
||||||
left: 50%;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.crosshair-aim {
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
border-radius: 999px;
|
|
||||||
border: 2px solid #1c9dff;
|
|
||||||
box-shadow: 0 0 12px rgba(28, 157, 255, 0.9);
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* PANEL CREATE POST */
|
|
||||||
.create-post-panel {
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
padding: 10px 14px 14px;
|
|
||||||
background: linear-gradient(
|
|
||||||
to top,
|
|
||||||
rgba(2, 8, 20, 0.98),
|
|
||||||
rgba(2, 8, 20, 0.92),
|
|
||||||
transparent
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-post-header {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
color: #dfeeff;
|
|
||||||
font-size: 12px;
|
|
||||||
margin-bottom: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-close {
|
|
||||||
border: none;
|
|
||||||
background: transparent;
|
|
||||||
color: #9fb7ff;
|
|
||||||
font-size: 14px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-row {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
margin-bottom: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.crosshair-label {
|
|
||||||
font-size: 11px;
|
|
||||||
color: #9bb7ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-input,
|
|
||||||
.create-textarea,
|
|
||||||
.create-row select {
|
|
||||||
width: 100%;
|
|
||||||
border-radius: 8px;
|
|
||||||
border: 1px solid #23426b;
|
|
||||||
background: rgba(3, 15, 32, 0.95);
|
|
||||||
color: #e8f3ff;
|
|
||||||
font-size: 12px;
|
|
||||||
padding: 5px 7px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-textarea {
|
|
||||||
resize: vertical;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-error {
|
|
||||||
color: #ff6f6f;
|
|
||||||
font-size: 11px;
|
|
||||||
margin-top: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-actions {
|
|
||||||
margin-top: 6px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
CSS_EOF
|
|
||||||
|
|
||||||
###############################################
|
|
||||||
# 3) Ajout des imports dans MapView.jsx
|
|
||||||
###############################################
|
|
||||||
MAP="src/components/Map/MapView.jsx"
|
|
||||||
|
|
||||||
echo "[+] Updating imports in $MAP…"
|
|
||||||
|
|
||||||
if [ -f "$MAP" ]; then
|
|
||||||
if ! grep -q 'mapMarkers.css' "$MAP"; then
|
|
||||||
sed -i 's#maplibre.css";#maplibre.css";\
|
|
||||||
import "../../styles/mapMarkers.css";\
|
|
||||||
import "../../styles/mapLayout.css";#' "$MAP"
|
|
||||||
elif ! grep -q 'mapLayout.css' "$MAP"; then
|
|
||||||
sed -i 's#mapMarkers.css";#mapMarkers.css";\
|
|
||||||
import "../../styles/mapLayout.css";#' "$MAP"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "⚠️ $MAP not found, imports not patched."
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "[+] Done. Run: npm run dev"
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { useEffect, useRef, useState } from "react";
|
import React, { useEffect, useRef, useState } from "react";
|
||||||
import maplibregl from "maplibre-gl";
|
import maplibregl from "maplibre-gl";
|
||||||
import "../../styles/maplibre.css";
|
import "maplibre-gl/dist/maplibre-gl.css";
|
||||||
import "../../styles/mapMarkers.css";
|
import "../../styles/mapMarkers.css";
|
||||||
import "../../styles/mapLayout.css";
|
import "../../styles/mapLayout.css";
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue