snappymail/dev/View/Popup/AdvancedSearch.js

159 lines
3.5 KiB
JavaScript
Raw Normal View History

import _ from '_';
import ko from 'ko';
2019-07-05 03:19:24 +08:00
import { trim } from 'Common/Utils';
import { i18n, trigger as translatorTrigger } from 'Common/Translator';
import { searchSubtractFormatDateHelper } from 'Common/Momentor';
import MessageStore from 'Stores/User/Message';
2014-08-25 15:10:51 +08:00
2019-07-05 03:19:24 +08:00
import { popup, command } from 'Knoin/Knoin';
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
2016-09-10 06:38:16 +08:00
@popup({
name: 'View/Popup/AdvancedSearch',
templateID: 'PopupsAdvancedSearch'
})
2019-07-05 03:19:24 +08:00
class AdvancedSearchPopupView extends AbstractViewNext {
constructor() {
super();
this.fromFocus = ko.observable(false);
this.from = ko.observable('');
this.to = ko.observable('');
this.subject = ko.observable('');
this.text = ko.observable('');
this.selectedDateValue = ko.observable(-1);
this.hasAttachment = ko.observable(false);
this.starred = ko.observable(false);
this.unseen = ko.observable(false);
this.selectedDates = ko.computed(() => {
translatorTrigger();
return [
2019-07-05 03:19:24 +08:00
{ id: -1, name: i18n('SEARCH/LABEL_ADV_DATE_ALL') },
{ id: 3, name: i18n('SEARCH/LABEL_ADV_DATE_3_DAYS') },
{ id: 7, name: i18n('SEARCH/LABEL_ADV_DATE_7_DAYS') },
{ id: 30, name: i18n('SEARCH/LABEL_ADV_DATE_MONTH') },
{ id: 90, name: i18n('SEARCH/LABEL_ADV_DATE_3_MONTHS') },
{ id: 180, name: i18n('SEARCH/LABEL_ADV_DATE_6_MONTHS') },
{ id: 365, name: i18n('SEARCH/LABEL_ADV_DATE_YEAR') }
];
});
}
2014-08-21 23:08:34 +08:00
2016-09-10 06:38:16 +08:00
@command()
searchCommand() {
const search = this.buildSearchString();
2019-07-05 03:19:24 +08:00
if ('' !== search) {
2016-09-10 06:38:16 +08:00
MessageStore.mainMessageListSearch(search);
}
this.cancelCommand();
}
parseSearchStringValue(search) {
const parts = (search || '').split(/[\s]+/g);
_.each(parts, (part) => {
2019-07-05 03:19:24 +08:00
switch (part) {
case 'has:attachment':
this.hasAttachment(true);
break;
case 'is:unseen,flagged':
this.starred(true);
2019-07-05 03:19:24 +08:00
/* falls through */
case 'is:unseen':
this.unseen(true);
break;
// no default
}
});
}
2013-12-17 00:08:05 +08:00
buildSearchStringValue(value) {
2019-07-05 03:19:24 +08:00
if (-1 < value.indexOf(' ')) {
value = '"' + value + '"';
2014-08-21 23:08:34 +08:00
}
return value;
}
2014-08-21 23:08:34 +08:00
buildSearchString() {
2019-07-05 03:19:24 +08:00
const result = [],
from_ = trim(this.from()),
to = trim(this.to()),
subject = trim(this.subject()),
text = trim(this.text()),
isPart = [],
hasPart = [];
2019-07-05 03:19:24 +08:00
if (from_ && '' !== from_) {
result.push('from:' + this.buildSearchStringValue(from_));
}
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
if (to && '' !== to) {
result.push('to:' + this.buildSearchStringValue(to));
}
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
if (subject && '' !== subject) {
result.push('subject:' + this.buildSearchStringValue(subject));
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (this.hasAttachment()) {
hasPart.push('attachment');
2014-08-21 23:08:34 +08:00
}
2019-07-05 03:19:24 +08:00
if (this.unseen()) {
isPart.push('unseen');
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (this.starred()) {
isPart.push('flagged');
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (0 < hasPart.length) {
result.push('has:' + hasPart.join(','));
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (0 < isPart.length) {
result.push('is:' + isPart.join(','));
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (-1 < this.selectedDateValue()) {
result.push('date:' + searchSubtractFormatDateHelper(this.selectedDateValue()) + '/');
}
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (text && '' !== text) {
result.push('text:' + this.buildSearchStringValue(text));
}
2014-08-21 23:08:34 +08:00
return trim(result.join(' '));
2016-06-30 08:02:45 +08:00
}
2014-08-21 23:08:34 +08:00
clearPopup() {
this.from('');
this.to('');
this.subject('');
this.text('');
2014-08-21 23:08:34 +08:00
this.selectedDateValue(-1);
this.hasAttachment(false);
this.starred(false);
this.unseen(false);
this.fromFocus(true);
2016-06-30 08:02:45 +08:00
}
2014-08-21 23:08:34 +08:00
onShow(search) {
this.clearPopup();
this.parseSearchStringValue(search);
2016-06-30 08:02:45 +08:00
}
onShowWithDelay() {
this.fromFocus(true);
2016-06-30 08:02:45 +08:00
}
}
2019-07-05 03:19:24 +08:00
export { AdvancedSearchPopupView, AdvancedSearchPopupView as default };