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

Ricerca in testata applica filtri sezione #401

Merged
merged 7 commits into from
Nov 14, 2023
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@

### Fix

- Quando viene effettuata una ricerca dalla barra di ricerca nelle sezioni Amministrazione, Servizi, Novità, o Documenti e Dati, viene automaticamente impostato il filtro sulla sezione stessa così da mostrare solo i contenuti corrispondenti.
- Le icone del Blocco Numeri, del Blocco Icone e della Sidebar si aggiornano istantaneamente quando vengono cambiate
- Sistemato un bug nell'header dei sottositi che mostrava le voci del menu del sito padre anche se queste erano indicate come non visibili nella configurazione del menu.

Expand Down
27 changes: 24 additions & 3 deletions src/components/ItaliaTheme/View/Commons/SearchSectionForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,26 @@ const messages = defineMessages({

const SearchSectionForm = ({ content }) => {
const intl = useIntl();
const path = content['@id'];
const searchFilters = useSelector(
(state) => state?.searchFilters?.result?.sections,
);
Comment on lines 30 to +34
Copy link
Member

Choose a reason for hiding this comment

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

Ho rimosso il dispatch perché quella query per search-filters viene già fatta a prescindere ogni volta che si visita il sito, era duplicata. Ho lasciato anche useIntl in cima, la convenzione vuole che gli hook stiano il più possibile in alto nel componente e quelli semplici tipo useIntl cerchiamo di tenerli sempre in cima.


const customPath = [];

const sections = searchFilters?.[0]?.items ?? [];

sections.forEach((section) => {
if (!section.items) {
return;
} else {
if (path === section['@id']) {
customPath.push(
section.items.map((item) => flattenToAppURL(item['@id'])),
Copy link
Member

Choose a reason for hiding this comment

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

Aggiunto flattenToAppURL

);
}
}
});

const subsite = useSelector((state) => state.subsite?.data);
const [searchableText, setSearchableText] = useState('');
Expand All @@ -44,13 +64,14 @@ const SearchSectionForm = ({ content }) => {
{},
null,
null,
null,
customPath.length > 0 ? customPath : null,
subsite,
intl.locale,
false,
) +
'&custom_path=' +
flattenToAppURL(content['@id']);
(customPath.length === 0
? `&custom_path=${flattenToAppURL(path)}`
: '');
Comment on lines +72 to +74
Copy link
Member

Choose a reason for hiding this comment

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

@sabrina-bongiovanni ho lasciato anche la vecchia implementazione per permettere l'utilizzo della ricerca in testata anche nelle pagine che non sono tra le quattro sezioni di ricerca, che è una cosa che prima era possibile quindi non dobbiamo togliere

}
};
return (
Expand Down
Loading