Skip to content

Commit

Permalink
Merge #351
Browse files Browse the repository at this point in the history
351: feat(settings): Add sortFacetValuesBy r=brunoocasali a=ahmednfwela

# Pull Request

## Related issue
Fixes #339 

## What does this PR do?
- Add `enum FacetingSortTypes`
- Add `Map<String, FacetingSortTypes>? sortFacetValuesBy` to `Faceting`
- Updated `.code-samples.meilisearch.yaml`
- [BREAKING] change members of `Faceting` to be final, and remove the default values set there.
## PR checklist
Please check if your PR fulfills the following requirements:
- [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)?
- [x] Have you read the contributing guidelines?
- [x] Have you made sure that the title is accurate and descriptive of the changes?

Thank you so much for contributing to Meilisearch!


Co-authored-by: Ahmed Fwela <ahmednfwela@bdaya-dev.com>
  • Loading branch information
meili-bors[bot] and ahmednfwela committed Sep 1, 2023
2 parents a804f2b + 5331151 commit 7f67035
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 15 deletions.
9 changes: 7 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
# the documentation on build
# You can read more on https://github.com/meilisearch/documentation/tree/master/.vuepress/code-samples
---
facet_search_2: |-
await client.index('books').updateFaceting(Faceting(sortFacetValuesBy: {'genres': 'count'}));
getting_started_faceting: |-
await client.index('books').updateFaceting(Faceting(maxValuesPerFacet: 2, sortFacetValuesBy: {'*': 'count'}));
update_faceting_settings_1: |-
await client.index('books').updateFaceting(Faceting(maxValuesPerFacet: 2, sortFacetValuesBy: {'*': 'alpha', 'genres': 'count'}));
search_parameter_guide_attributes_to_search_on_1: |-
await client.index('movies').search('adventure', SearchQuery(attributesToSearchOn: ['overview']));
get_documents_post_1: |-
Expand Down Expand Up @@ -88,7 +94,6 @@ search_parameter_guide_hitsperpage_1: |-
await client.index('movies').search('', SearchQuery(hitsPerPage: 15)) as PaginatedSearchResult;
search_parameter_guide_page_1: |-
await client.index('movies').search('', SearchQuery(page: 2)) as PaginatedSearchResult;
getting_started_faceting: |-
getting_started_pagination: |-
synonyms_guide_1: |-
await client.index('movies').updateSynonyms({
Expand Down Expand Up @@ -122,7 +127,7 @@ get_pagination_settings_1: |-
update_pagination_settings_1: |-
reset_pagination_settings_1: |-
get_faceting_settings_1: |-
update_faceting_settings_1: |-
reset_faceting_settings_1: |-
get_one_index_1: |-
await client.getIndex('movies');
Expand Down
52 changes: 42 additions & 10 deletions lib/src/settings/faceting.dart
Original file line number Diff line number Diff line change
@@ -1,25 +1,57 @@
const _defaultmaxValuesPerFacet = 100;
import 'package:meilisearch/src/annotations.dart';

enum FacetingSortTypes {
alpha('alpha'),
count('count');

final String value;

const FacetingSortTypes(this.value);
}

class Faceting {
//Define maximum number of value returned for a facet for a **search query**.
//It means that with the default value of `100`,
//it is not possible to have `101` different colors if the `color`` field is defined as a facet at search time.
int maxValuesPerFacet;
/// Define maximum number of value returned for a facet for a **search query**.
/// It means that with the default value of `100`,
/// it is not possible to have `101` different colors if the `color`` field is defined as a facet at search time.
final int? maxValuesPerFacet;

/// Defines how facet values are sorted.
///
/// By default, all facets (`*`) are sorted by name, alphanumerically in ascending order (`alpha`).
///
/// `count` sorts facet values by the number of documents containing a facet value in descending order.
///
/// example:
/// "*": 'alpha
/// "genres": count
@RequiredMeiliServerVersion('1.3.0')
final Map<String, FacetingSortTypes>? sortFacetValuesBy;

Faceting({
this.maxValuesPerFacet = _defaultmaxValuesPerFacet,
const Faceting({
this.maxValuesPerFacet,
this.sortFacetValuesBy,
});

Map<String, dynamic> toMap() {
return {
'maxValuesPerFacet': maxValuesPerFacet,
if (maxValuesPerFacet != null) 'maxValuesPerFacet': maxValuesPerFacet,
if (sortFacetValuesBy != null)
'sortFacetValuesBy':
sortFacetValuesBy?.map((key, value) => MapEntry(key, value.value)),
};
}

factory Faceting.fromMap(Map<String, dynamic> map) {
return Faceting(
maxValuesPerFacet:
map['maxValuesPerFacet'] as int? ?? _defaultmaxValuesPerFacet,
maxValuesPerFacet: map['maxValuesPerFacet'] as int?,
sortFacetValuesBy:
(map['sortFacetValuesBy'] as Map<String, dynamic>?)?.map(
(key, value) => MapEntry(
key,
FacetingSortTypes.values
.firstWhere((element) => element.value == value),
),
),
);
}
}
34 changes: 31 additions & 3 deletions test/settings_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ void main() {
),
faceting: Faceting(
maxValuesPerFacet: 200,
sortFacetValuesBy: {
'*': FacetingSortTypes.count,
'genres': FacetingSortTypes.alpha,
},
),
),
)
Expand All @@ -67,6 +71,15 @@ void main() {
expect(settings.typoTolerance?.disableOnWords, contains('prince'));
expect(settings.typoTolerance?.minWordSizeForTypos?.oneTypo, equals(3));
expect(settings.faceting?.maxValuesPerFacet, equals(200));
expect(
settings.faceting?.sortFacetValuesBy,
allOf(
isNotNull,
isNotEmpty,
containsPair('*', FacetingSortTypes.count),
containsPair('genres', FacetingSortTypes.alpha),
),
);
});

test('Reseting the settings', () async {
Expand Down Expand Up @@ -314,9 +327,20 @@ void main() {
});

group('Faceting', () {
const defaultFaceting = Faceting(
maxValuesPerFacet: 100,
sortFacetValuesBy: {
'*': FacetingSortTypes.alpha,
},
);

Future<Faceting> doUpdate() async {
final toUpdate = Faceting(
maxValuesPerFacet: 200,
sortFacetValuesBy: {
'*': FacetingSortTypes.count,
'genres': FacetingSortTypes.alpha,
},
);
var response =
await index.updateFaceting(toUpdate).waitFor(client: client);
Expand All @@ -332,7 +356,11 @@ void main() {

expect(
initial.toMap(),
equals(initialFromSettings?.toMap()),
initialFromSettings?.toMap(),
);
expect(
initial.toMap(),
defaultFaceting.toMap(),
);
});

Expand Down Expand Up @@ -363,11 +391,11 @@ void main() {
await index.getSettings().then((value) => value.faceting);
expect(
afterReset.toMap(),
equals(Faceting().toMap()),
equals(defaultFaceting.toMap()),
);
expect(
afterResetFromSettings?.toMap(),
equals(Faceting().toMap()),
equals(defaultFaceting.toMap()),
);
});
});
Expand Down

0 comments on commit 7f67035

Please sign in to comment.