[ACS-3257] Create / Update rules dialog condition section (#2585)

* First commit: simple and composite condition UI

* Styling, readonly mode, etc...

* Unit tests for RuleSimpleConditionUiComponent

* Validation for composite condition

* Add unit tests for composite conditions

* Revert manage rules screen

* Reset karma conf singleRun to true

* Couple of small changes

* Typo
This commit is contained in:
Thomas Hunter
2022-08-18 17:39:36 +01:00
committed by GitHub
parent b082aaa011
commit 9a650f5265
19 changed files with 1006 additions and 15 deletions

View File

@@ -0,0 +1,70 @@
/*!
* @license
* Alfresco Example Content Application
*
* Copyright (C) 2005 - 2020 Alfresco Software Limited
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
export type RuleConditionFieldType = 'string' | 'number' | 'date' | 'type' | 'special';
export interface RuleConditionField {
name: string;
label: string;
type: RuleConditionFieldType;
}
export const ruleConditionFields: RuleConditionField[] = [
{
name: 'cm:name',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.NAME',
type: 'string'
},
{
name: 'size',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.SIZE',
type: 'number'
},
{
name: 'mimetype',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.MIMETYPE',
type: 'string'
},
{
name: 'encoding',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.ENCODING',
type: 'string'
},
{
name: 'category',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.HAS_CATEGORY',
type: 'special'
},
{
name: 'tag',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.HAS_TAG',
type: 'special'
},
{
name: 'aspect',
label: 'ACA_FOLDER_RULES.RULE_DETAILS.FIELDS.HAS_ASPECT',
type: 'special'
}
];