Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amélioration de la recherche par texte sur le tableau de suivi #103

Merged
merged 26 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2e45c5c
Amélioration de la recherche par texte sur le tableau de suivi
Ynote Oct 15, 2024
8216db3
Fix sur lindexation
Ynote Oct 15, 2024
c174f01
Créer une seule fois lindexation des dossiers
Ynote Oct 15, 2024
845f907
Merge branch 'main' of github.com:betagouv/pitchou into amelioration-…
Ynote Oct 15, 2024
857539f
Gère la recherche par numéro de dossier DS
Ynote Oct 15, 2024
56d38e4
Gestion des accents dans les mots à chercher
Ynote Oct 15, 2024
282313e
Merge branch 'main' of github.com:betagouv/pitchou into amelioration-…
Ynote Oct 29, 2024
27c0f92
Retire test sur le type inutile
Ynote Oct 29, 2024
42488a7
Ajoute un type sur le retour de la fonction créerDossierIndexable
Ynote Oct 29, 2024
dd2ed70
Ajoute les communes dans la recherche et gère la recherche par nombres
Ynote Oct 29, 2024
b9dd269
Retire filtre inutile nombresEnTexte
Ynote Oct 31, 2024
4b879af
Filtrer uniquement les communes via le code postal
Ynote Oct 31, 2024
6cc9934
Cherche également dans l'id dans la recherche par nombre
Ynote Oct 31, 2024
49955ee
Retire les boosts
Ynote Oct 31, 2024
1f753c9
Ajoute lactivité principale et le numero onagre dans lindex
Ynote Oct 31, 2024
c3d6165
Rechercher un dossier dans le numero ONAGRE
Ynote Oct 31, 2024
68e8aa1
Mini-cache pour les resultats de recherche
Ynote Oct 31, 2024
3c04c8c
Restreint la recherche pour les ids, numero onagre et numero DS
Ynote Nov 4, 2024
26d3a2e
Meilleure gestion de la recherche par texte
Ynote Nov 4, 2024
5d89a1a
Utiliser une seule barre de recherche toujours visible
Ynote Nov 4, 2024
52fecfa
Mini ajustements css
Ynote Nov 4, 2024
d2aff78
Retire code inutile
Ynote Nov 4, 2024
24f3b3b
Change la regexp pour la recherche par nombre
Ynote Nov 4, 2024
825a1a3
Simplifie la regexp pour matcher les communes
Ynote Nov 5, 2024
4cb708f
Retirer lidentifiant ONAGRE de lindexation des dossiers pour la reche…
Ynote Nov 5, 2024
0d1b46b
Retirer valeur réactive inutile
Ynote Nov 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3-fetch": "^3.0.7",
"@types/lunr": "^2.3.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.3.0",
"@types/page": "^1.11.9",
Expand Down Expand Up @@ -54,6 +55,8 @@
"fastify": "^4.26.2",
"knex": "^3.1.0",
"ky": "^1.7.2",
"lunr": "^2.3.9",
"lunr-languages": "^1.14.0",
"minimist": "^1.2.8",
"ods-xlsx": "github:DavidBruant/ods-xlsx#v0.8.0",
"page": "^1.11.6",
Expand Down
12 changes: 11 additions & 1 deletion scripts/commun/manipulationStrings.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ export function normalizeTexteEspèce(texte){
.replace(/[\u0300-\u036f]/g, '') // remove accents
.replaceAll("’", "'")
.toLowerCase()
}
}

/**
*
* @param {string} texte
* @returns {string}
*/
export function retirerAccents(texte) {
return texte.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
}

51 changes: 51 additions & 0 deletions scripts/front-end/components/BarreRecherche.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<script>
//@ts-check

import { createEventDispatcher } from "svelte";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c'est un détail, pas forcément besoin de le corriger dans cette PR, mais dans svelte 5, il n'y aura plus d'event
à la place, on passe une props avec une fonction (et cette fonction est appelée par le composant en remplacement des dispatch)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah ! En plus, je crois que tu me l'as déjà mentionné. Ok je vais faire ça dans une PR suivante dans la foulée et voir si on a des dispatch ailleurs.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cf. #114


/** @type {string} */
export let titre

$: valeur = ""
Ynote marked this conversation as resolved.
Show resolved Hide resolved

const dispatch = createEventDispatcher()

/**
*
* @param {SubmitEvent} e
*/
function onMettreÀJourValeurSélectionnée(e) {
e.preventDefault()
dispatch("selected-changed", valeur)
valeur = ""
}
</script>

<form on:submit={onMettreÀJourValeurSélectionnée} role="search">
<div class="form-recherche">
<label class="sr-only" for="recherche-texte">{titre}</label>
<input type="text" name="recherche-texte" id="recherche-texte" placeholder="{titre}" class="fr-input" bind:value={valeur} />
<button class="fr-btn" type="submit">Chercher</button>
</div>

<p class="fr-hint-text">Vous pouvez rechercher par départements, communes, nom de projet, porteur de projet, activité principale, numéro de dossier, numéro Onagre.</p>
</form>

<style lang="scss">
.form-recherche {
display: flex;
width: 70%;
}

.sr-only {
border: none;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
width: 1px;
overflow: hidden;
position: absolute !important;
word-wrap: normal !important;
}
</style>
1 change: 1 addition & 0 deletions scripts/front-end/components/FiltreParmiOptions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<style lang="scss">
details {
display: inline;
margin-right: 0.5rem;
}

.filtre-options {
Expand Down
62 changes: 0 additions & 62 deletions scripts/front-end/components/FiltreTexte.svelte

This file was deleted.

Loading