mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-03 14:16:23 +00:00
(js) Respect SearchMinWordLength in list editor
More precisely, the domain default is named SOGoSearchMinimumWordLength.
This commit is contained in:
1
NEWS
1
NEWS
@@ -8,6 +8,7 @@ Enhancements
|
||||
Bug fixes
|
||||
- [web] fixed tasks list when some weekdays are disabled
|
||||
- [web] fixed automatic refresh of calendar view
|
||||
- [web] respect SOGoSearchMinimumWordLength in contacts list editor
|
||||
|
||||
|
||||
3.2.0 (2016-10-03)
|
||||
|
||||
@@ -372,7 +372,9 @@
|
||||
<var:string label:value="Members"/>
|
||||
</label>
|
||||
<md-contact-chips
|
||||
class="sg-chips-autocomplete"
|
||||
ng-model="editor.card.refs"
|
||||
ng-model-options="{ debounce: { default: 500 } }"
|
||||
md-contacts="editor.userFilter($query, editor.card.refs)"
|
||||
md-contact-name="$$fullname"
|
||||
md-contact-image="$$image"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
CardController.$inject = ['$scope', '$timeout', '$window', '$mdDialog', 'AddressBook', 'Card', 'Dialog', 'sgHotkeys', 'sgFocus', '$state', '$stateParams', 'stateCard'];
|
||||
function CardController($scope, $timeout, $window, $mdDialog, AddressBook, Card, Dialog, sgHotkeys, focus, $state, $stateParams, stateCard) {
|
||||
var vm = this, hotkeys = [];
|
||||
var vm = this, hotkeys = [], minSearchLength;
|
||||
|
||||
vm.card = stateCard;
|
||||
|
||||
@@ -37,6 +37,8 @@
|
||||
vm.toggleRawSource = toggleRawSource;
|
||||
vm.showRawSource = false;
|
||||
|
||||
minSearchLength = angular.isNumber($window.minimumSearchLength)? $window.minimumSearchLength : 2;
|
||||
|
||||
|
||||
_registerHotkeys(hotkeys);
|
||||
|
||||
@@ -98,6 +100,9 @@
|
||||
focus('address_' + i);
|
||||
}
|
||||
function userFilter($query, excludedCards) {
|
||||
if ($query.length < minSearchLength)
|
||||
return [];
|
||||
|
||||
AddressBook.selectedFolder.$filter($query, {dry: true, excludeLists: true}, excludedCards);
|
||||
return AddressBook.selectedFolder.$$cards;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user