2021-12-31 20:30:05 +08:00
|
|
|
import { koComputable } from 'External/ko';
|
2013-12-09 23:16:58 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
import { i18n, trigger as translatorTrigger } from 'Common/Translator';
|
2014-09-02 08:15:31 +08:00
|
|
|
|
2021-03-11 05:41:35 +08:00
|
|
|
import { MessageUserStore } from 'Stores/User/Message';
|
2014-08-25 15:10:51 +08:00
|
|
|
|
2021-02-19 19:09:20 +08:00
|
|
|
import { decorateKoCommands } from 'Knoin/Knoin';
|
2021-01-24 17:25:23 +08:00
|
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
2021-11-03 09:28:01 +08:00
|
|
|
import { FolderUserStore } from 'Stores/User/Folder';
|
2021-01-24 17:25:23 +08:00
|
|
|
|
|
|
|
class AdvancedSearchPopupView extends AbstractViewPopup {
|
2016-08-17 06:01:20 +08:00
|
|
|
constructor() {
|
2021-01-24 17:25:23 +08:00
|
|
|
super('AdvancedSearch');
|
2016-08-17 06:01:20 +08:00
|
|
|
|
2020-10-26 19:54:03 +08:00
|
|
|
this.addObservables({
|
|
|
|
from: '',
|
|
|
|
to: '',
|
|
|
|
subject: '',
|
|
|
|
text: '',
|
|
|
|
selectedDateValue: -1,
|
2021-11-03 09:28:01 +08:00
|
|
|
selectedTreeValue: '',
|
2020-10-26 19:54:03 +08:00
|
|
|
|
|
|
|
hasAttachment: false,
|
|
|
|
starred: false,
|
|
|
|
unseen: false
|
|
|
|
});
|
2016-08-17 06:01:20 +08:00
|
|
|
|
2021-12-31 20:30:05 +08:00
|
|
|
this.showMultisearch = koComputable(() => FolderUserStore.hasCapability('MULTISEARCH'));
|
2021-11-03 09:28:01 +08:00
|
|
|
|
2021-12-31 20:30:05 +08:00
|
|
|
this.selectedDates = koComputable(() => {
|
2016-08-17 06:01:20 +08:00
|
|
|
translatorTrigger();
|
2022-01-28 19:23:30 +08:00
|
|
|
let prefix = 'SEARCH/LABEL_ADV_DATE_';
|
2016-08-17 06:01:20 +08:00
|
|
|
return [
|
2021-01-26 18:46:30 +08:00
|
|
|
{ id: -1, name: i18n(prefix + 'ALL') },
|
|
|
|
{ id: 3, name: i18n(prefix + '3_DAYS') },
|
|
|
|
{ id: 7, name: i18n(prefix + '7_DAYS') },
|
|
|
|
{ id: 30, name: i18n(prefix + 'MONTH') },
|
|
|
|
{ id: 90, name: i18n(prefix + '3_MONTHS') },
|
|
|
|
{ id: 180, name: i18n(prefix + '6_MONTHS') },
|
|
|
|
{ id: 365, name: i18n(prefix + 'YEAR') }
|
2016-08-17 06:01:20 +08:00
|
|
|
];
|
|
|
|
});
|
2021-02-19 19:09:20 +08:00
|
|
|
|
2021-12-31 20:30:05 +08:00
|
|
|
this.selectedTree = koComputable(() => {
|
2021-11-03 09:28:01 +08:00
|
|
|
translatorTrigger();
|
2022-01-28 19:23:30 +08:00
|
|
|
let prefix = 'SEARCH/LABEL_ADV_SUBFOLDERS_';
|
2021-11-03 09:28:01 +08:00
|
|
|
return [
|
|
|
|
{ id: '', name: i18n(prefix + 'NONE') },
|
|
|
|
{ id: 'subtree-one', name: i18n(prefix + 'SUBTREE_ONE') },
|
|
|
|
{ id: 'subtree', name: i18n(prefix + 'SUBTREE') }
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2021-02-19 19:09:20 +08:00
|
|
|
decorateKoCommands(this, {
|
|
|
|
searchCommand: 1
|
|
|
|
});
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-09-10 06:38:16 +08:00
|
|
|
searchCommand() {
|
|
|
|
const search = this.buildSearchString();
|
2020-07-28 23:20:14 +08:00
|
|
|
if (search) {
|
2021-03-11 05:41:35 +08:00
|
|
|
MessageUserStore.mainMessageListSearch(search);
|
2016-09-10 06:38:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
this.cancelCommand();
|
|
|
|
}
|
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
parseSearchStringValue(search) {
|
|
|
|
const parts = (search || '').split(/[\s]+/g);
|
2020-07-22 20:49:18 +08:00
|
|
|
parts.forEach(part => {
|
2019-07-05 03:19:24 +08:00
|
|
|
switch (part) {
|
2016-08-17 06:01:20 +08:00
|
|
|
case 'has:attachment':
|
|
|
|
this.hasAttachment(true);
|
|
|
|
break;
|
|
|
|
case 'is:unseen,flagged':
|
|
|
|
this.starred(true);
|
2019-07-05 03:19:24 +08:00
|
|
|
/* falls through */
|
2016-08-17 06:01:20 +08:00
|
|
|
case 'is:unseen':
|
|
|
|
this.unseen(true);
|
|
|
|
break;
|
|
|
|
// no default
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-12-17 00:08:05 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
buildSearchString() {
|
2021-11-03 09:28:01 +08:00
|
|
|
const
|
2021-11-03 21:47:03 +08:00
|
|
|
data = new FormData(),
|
|
|
|
append = (key, value) => value.length && data.append(key, value);
|
|
|
|
|
|
|
|
append('from', this.from().trim());
|
|
|
|
append('to', this.to().trim());
|
|
|
|
append('subject', this.subject().trim());
|
|
|
|
append('text', this.text().trim());
|
|
|
|
append('in', this.selectedTreeValue());
|
|
|
|
if (-1 < this.selectedDateValue()) {
|
|
|
|
let d = new Date();
|
|
|
|
d.setDate(d.getDate() - this.selectedDateValue());
|
|
|
|
append('date', d.format('Y.m.d') + '/');
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2021-11-03 21:47:03 +08:00
|
|
|
let result = new URLSearchParams(data).toString();
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.hasAttachment()) {
|
2021-11-03 21:47:03 +08:00
|
|
|
result += '&attachment';
|
2014-08-21 23:08:34 +08:00
|
|
|
}
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.unseen()) {
|
2021-11-03 21:47:03 +08:00
|
|
|
result += '&unseen';
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2019-07-05 03:19:24 +08:00
|
|
|
if (this.starred()) {
|
2021-11-03 21:47:03 +08:00
|
|
|
result += '&flagged';
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2021-11-03 21:47:03 +08:00
|
|
|
return result.replace(/^&+/, '');
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2021-11-03 21:58:34 +08:00
|
|
|
onShow(search) {
|
2016-08-17 06:01:20 +08:00
|
|
|
this.from('');
|
|
|
|
this.to('');
|
|
|
|
this.subject('');
|
|
|
|
this.text('');
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.selectedDateValue(-1);
|
|
|
|
this.hasAttachment(false);
|
|
|
|
this.starred(false);
|
|
|
|
this.unseen(false);
|
2014-08-21 23:08:34 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
this.parseSearchStringValue(search);
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2013-11-16 06:21:12 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
export { AdvancedSearchPopupView, AdvancedSearchPopupView as default };
|