mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 17:13:38 +08:00
8c780ad353
Replace admin general mainAttachmentLimit with input type="number"
104 lines
1.9 KiB
JavaScript
104 lines
1.9 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { AbstractModel } from 'Knoin/AbstractModel';
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
export const FilterConditionField = {
|
|
From: 'From',
|
|
Recipient: 'Recipient',
|
|
Subject: 'Subject',
|
|
Header: 'Header',
|
|
Body: 'Body',
|
|
Size: 'Size'
|
|
};
|
|
|
|
/**
|
|
* @enum {string}
|
|
*/
|
|
export const FilterConditionType = {
|
|
Contains: 'Contains',
|
|
NotContains: 'NotContains',
|
|
EqualTo: 'EqualTo',
|
|
NotEqualTo: 'NotEqualTo',
|
|
Regex: 'Regex',
|
|
Over: 'Over',
|
|
Under: 'Under',
|
|
Text: 'Text',
|
|
Raw: 'Raw'
|
|
};
|
|
|
|
export class FilterConditionModel extends AbstractModel {
|
|
constructor() {
|
|
super();
|
|
|
|
this.addObservables({
|
|
field: FilterConditionField.From,
|
|
type: FilterConditionType.Contains,
|
|
value: '',
|
|
valueError: false,
|
|
|
|
valueSecond: '',
|
|
valueSecondError: false
|
|
});
|
|
|
|
this.template = ko.computed(() => {
|
|
const template = 'SettingsFiltersCondition';
|
|
switch (this.field()) {
|
|
case FilterConditionField.Body:
|
|
return template + 'Body';
|
|
case FilterConditionField.Size:
|
|
return template + 'Size';
|
|
case FilterConditionField.Header:
|
|
return template + 'More';
|
|
default:
|
|
return template + 'Default';
|
|
}
|
|
});
|
|
|
|
this.addSubscribables({
|
|
field: () => {
|
|
this.value('');
|
|
this.valueSecond('');
|
|
}
|
|
});
|
|
}
|
|
|
|
verify() {
|
|
if (!this.value()) {
|
|
this.valueError(true);
|
|
return false;
|
|
}
|
|
|
|
if (FilterConditionField.Header === this.field() && !this.valueSecond()) {
|
|
this.valueSecondError(true);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// static reviveFromJson(json) {}
|
|
|
|
toJson() {
|
|
return {
|
|
// '@Object': 'Object/FilterCondition',
|
|
Field: this.field(),
|
|
Type: this.type(),
|
|
Value: this.value(),
|
|
ValueSecond: this.valueSecond()
|
|
};
|
|
}
|
|
|
|
cloneSelf() {
|
|
const filterCond = new FilterConditionModel();
|
|
|
|
filterCond.field(this.field());
|
|
filterCond.type(this.type());
|
|
filterCond.value(this.value());
|
|
filterCond.valueSecond(this.valueSecond());
|
|
|
|
return filterCond;
|
|
}
|
|
}
|