Skip to content

Commit

Permalink
fix: removed query b_size limit for event_location vocabulary (#843)
Browse files Browse the repository at this point in the history
Co-authored-by: Piero Nicolli <[email protected]>
  • Loading branch information
sabrina-bongiovanni and pnicolli authored Dec 20, 2024
1 parent ef62472 commit 0116482
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@

### Migliorie

- ...
- Se vengono aggiunte o rimosse date dalla ricorrenza di un CT evento, nel sottotitolo viene aggiunta l'indicazione di controllare le eccezioni nella sezione apposita.
- Il sottotitolo del CT Evento mostra il range di date per tutti gli eventi con ricorrenza o con una data di fine diversa dalla data di inizio.

Expand All @@ -55,7 +54,8 @@

### Fix

- Colore del font del bottone DraftJS nell'editor sistemato a bianco.
- Il menu a tendina da cui è possibile filtrare i luoghi nel blocco Ricerca Eventi mostra tutti i luoghi collegati agli eventi presenti nel percorso selezionato dalla Sidebar, senza limitarne il numero.
- Risolto un problema con il colore del testo del bottone nell'editor.
- Rimossa l'opzione non selezionabile "nessun valore" dal widget ricorrenza.
- La pagina non dà più errore quando si imposta una ricorrenza con impostazione "Termina dopo tot. ricorrenze".

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const SelectFilter = ({
onChange,
placeholder,
isSearchable = false,
optionsQuerySize = 25,
}) => {
const dispatch = useDispatch();

Expand Down Expand Up @@ -52,15 +53,20 @@ const SelectFilter = ({
);
}
} else if (options.vocabulary) {
dispatch(getVocabulary({ vocabNameOrURL: options.vocabulary }));
dispatch(
getVocabulary({
vocabNameOrURL: options.vocabulary,
size: optionsQuerySize,
}),
);
}
}, []);

const select_options = options?.choices
? options.choices
: options?.vocabulary
? vocabularies?.[options.vocabulary]?.items
: selectOptions;
? vocabularies?.[options.vocabulary]?.items
: selectOptions;

return (
<div className="me-lg-3 my-2 my-lg-1 filter-wrapper select-filter">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const DefaultFilters = () => {
vocabulary: 'design.plone.vocabularies.event_location',
placeholder: intl.formatMessage(messages.venues),
},
optionsQuerySize: -1,
},
},
query: (value, query) => {
Expand Down
8 changes: 6 additions & 2 deletions src/customizations/volto/actions/vocabularies/vocabularies.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export function getVocabulary({
const vocabulary = getVocabName(vocabNameOrURL);
const contextualVocabularies = config.settings.contextualVocabularies;
const vocabPath =
contextualVocabularies && contextualVocabularies.includes(vocabulary) && vocabulary !== vocabNameOrURL
contextualVocabularies &&
contextualVocabularies.includes(vocabulary) &&
vocabulary !== vocabNameOrURL
? flattenToAppURL(vocabNameOrURL)
: `/@vocabularies/${vocabulary}`;
let queryString = `b_start=${start}${size ? '&b_size=' + size : ''}`;
Expand Down Expand Up @@ -74,7 +76,9 @@ export function getVocabularyTokenTitle({
const vocabulary = getVocabName(vocabNameOrURL);
const contextualVocabularies = config.settings.contextualVocabularies;
const vocabPath =
contextualVocabularies && contextualVocabularies.includes(vocabulary) && vocabulary !== vocabNameOrURL
contextualVocabularies &&
contextualVocabularies.includes(vocabulary) &&
vocabulary !== vocabNameOrURL
? flattenToAppURL(vocabNameOrURL)
: `/@vocabularies/${vocabulary}`;
const queryString = {
Expand Down

0 comments on commit 0116482

Please sign in to comment.