snappymail/dev/View/Popup/AdvancedSearch.js

158 lines
3.3 KiB
JavaScript
Raw Normal View History

import ko from 'ko';
2019-07-05 03:19:24 +08:00
import { i18n, trigger as translatorTrigger } from 'Common/Translator';
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();
if (search) {
2016-09-10 06:38:16 +08:00
MessageStore.mainMessageListSearch(search);
}
this.cancelCommand();
}
parseSearchStringValue(search) {
const parts = (search || '').split(/[\s]+/g);
parts.forEach(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) {
2020-07-21 03:39:00 +08:00
if (value.includes(' ')) {
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_ = this.from().trim(),
to = this.to().trim(),
subject = this.subject().trim(),
text = this.text().trim(),
isPart = [],
hasPart = [];
if (from_) {
result.push('from:' + this.buildSearchStringValue(from_));
}
2016-06-30 08:02:45 +08:00
if (to) {
result.push('to:' + this.buildSearchStringValue(to));
}
2016-06-30 08:02:45 +08:00
if (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
if (hasPart.length) {
result.push('has:' + hasPart.join(','));
}
2014-08-21 23:08:34 +08:00
if (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()) {
let d = new Date();
d.setDate(d.getDate() - this.selectedDateValue());
result.push('date:' + d.format('Y.m.d') + '/');
}
2014-08-21 23:08:34 +08:00
if (text) {
result.push('text:' + this.buildSearchStringValue(text));
}
2014-08-21 23:08:34 +08:00
return result.join(' ').trim();
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 };