mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
style dashboard, remove bike parking in places selection
This commit is contained in:
parent
5a05cd22d1
commit
4c1a7729a1
5 changed files with 59 additions and 15 deletions
|
@ -638,8 +638,11 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||
|
||||
// Afficher l'indicateur de chargement
|
||||
document.querySelector('#loading_search_insee').classList.remove('d-none');
|
||||
|
||||
const response = await fetch(`https://geo.api.gouv.fr/communes?nom=${query}&fields=nom,code,codesPostaux&limit=10`);
|
||||
const data = await response.json();
|
||||
document.querySelector('#loading_search_insee').classList.add('d-none');
|
||||
|
||||
return data.map(commune => ({
|
||||
label: `${commune.nom} (code insee ${commune.code})`,
|
||||
insee: commune.code,
|
||||
|
|
|
@ -58,8 +58,13 @@ table.js-sort-table th:active {
|
|||
.maplibregl-popup-content {
|
||||
overflow: auto;
|
||||
min-width: 300px;
|
||||
max-height: 400px;
|
||||
max-height: 11rem !important;
|
||||
}
|
||||
|
||||
.maplibregl-popup-content table {
|
||||
width: 100%;
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.maplibregl-popup-content h1,
|
||||
|
|
|
@ -331,6 +331,7 @@ class PublicController extends AbstractController
|
|||
$place->update_place_from_overpass_data($commerce);
|
||||
$this->entityManager->persist($place);
|
||||
$this->entityManager->flush();
|
||||
$this->entityManager->clear();
|
||||
|
||||
|
||||
$stats = $place->getStats();
|
||||
|
@ -350,6 +351,7 @@ class PublicController extends AbstractController
|
|||
$this->entityManager->persist($stats);
|
||||
$this->entityManager->persist($place);
|
||||
$this->entityManager->flush();
|
||||
$this->entityManager->clear();
|
||||
|
||||
return $this->render('public/view.html.twig', [
|
||||
'controller_name' => 'PublicController',
|
||||
|
|
|
@ -163,21 +163,31 @@ out center tags;';
|
|||
|
||||
$places = [];
|
||||
if (isset($data['elements'])) {
|
||||
foreach ($data['elements'] as $element) {
|
||||
if (isset($element['tags'])) {
|
||||
|
||||
$email = "";
|
||||
|
||||
$places[] = [
|
||||
'id' => $element['id'],
|
||||
'type' => $element['type'],
|
||||
'name' => $element['tags']['name'] ?? '',
|
||||
'email' => $email,
|
||||
'lat' => $element['lat'] ?? null,
|
||||
'lon' => $element['lon'] ?? null,
|
||||
'tags' => $element['tags']
|
||||
];
|
||||
$batchSize = 100; // Traiter par lots de 100 éléments
|
||||
$totalElements = count($data['elements']);
|
||||
|
||||
for ($i = 0; $i < $totalElements; $i += $batchSize) {
|
||||
$batch = array_slice($data['elements'], $i, $batchSize);
|
||||
|
||||
foreach ($batch as $element) {
|
||||
if (isset($element['tags'])) {
|
||||
$email = "";
|
||||
|
||||
$places[] = [
|
||||
'id' => $element['id'],
|
||||
'type' => $element['type'],
|
||||
'name' => $element['tags']['name'] ?? '',
|
||||
'email' => $email,
|
||||
'lat' => $element['lat'] ?? null,
|
||||
'lon' => $element['lon'] ?? null,
|
||||
'tags' => $element['tags']
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
// Libérer la mémoire après chaque lot
|
||||
unset($batch);
|
||||
gc_collect_cycles();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -217,6 +217,30 @@ out skel qt;`;
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
{% if totalPages > 1 %}
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination justify-content-center">
|
||||
{% if currentPage > 1 %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': currentPage - 1}) }}">Précédent</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
||||
{% for i in 1..totalPages %}
|
||||
<li class="page-item {% if i == currentPage %}active{% endif %}">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': i}) }}">{{ i }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
||||
{% if currentPage < totalPages %}
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="{{ path('app_public_dashboard', {'page': currentPage + 1}) }}">Suivant</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</nav>
|
||||
{% endif %}
|
||||
|
||||
<h2>{{ places_count }} Lieux</h2>
|
||||
<h2><button class="btn btn-primary" id="labourer">Labourer les mises à jour</button></h2>
|
||||
<label for="app_admin_labourer">Rechercher une ville par son nom
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue