[ACA-3258] Edit rule dialog actions section (#2692)

* Add actions service

* Create components

* Rebasing

* Add card view component

* Moved actions definition call outside of actions list component

* Localisation of parameter and action labels + read only mode for components

* Remove action option

* Default to one item in array

* Handle change of cardview

* Linting

* Add unit tests

* Fix broken unit tests

* Fix unknown word

* Add private to property
This commit is contained in:
Thomas Hunter
2022-10-06 14:07:47 +01:00
committed by GitHub
parent 08d4f46573
commit 59c7d68299
28 changed files with 914 additions and 43 deletions

View File

@@ -0,0 +1,108 @@
/*!
* @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/>.
*/
import { ActionDefinitionList } from '@alfresco/js-api';
import { ActionDefinitionTransformed, ActionParameterDefinitionTransformed } from '../model/rule-action.model';
export const actionDefListMock: ActionDefinitionList = {
list: {
pagination: {
count: 2,
hasMoreItems: false,
totalItems: 2,
skipCount: 0,
maxItems: 100
},
entries: [
{
applicableTypes: [],
parameterDefinitions: [
{
name: 'mock-action-parameter-text',
type: 'd:text',
multiValued: false,
mandatory: false,
displayLabel: 'Mock action parameter text'
},
{
name: 'mock-action-parameter-boolean',
type: 'd:boolean',
multiValued: false,
mandatory: false
}
],
name: 'mock-action-1-definition',
trackStatus: false,
description: 'This is a mock action',
id: 'mock-action-1-definition',
title: 'Action 1 title'
},
{
applicableTypes: [],
name: 'mock-action-2-definition',
trackStatus: false,
id: 'mock-action-2-definition'
}
]
}
};
const actionParam1TransformedMock: ActionParameterDefinitionTransformed = {
name: 'mock-action-parameter-text',
type: 'd:text',
multiValued: false,
mandatory: false,
displayLabel: 'Mock action parameter text'
};
const actionParam2TransformedMock: ActionParameterDefinitionTransformed = {
name: 'mock-action-parameter-boolean',
type: 'd:boolean',
multiValued: false,
mandatory: false,
displayLabel: 'mock-action-parameter-boolean'
};
const action1TransformedMock: ActionDefinitionTransformed = {
id: 'mock-action-1-definition',
name: 'mock-action-1-definition',
description: 'This is a mock action',
title: 'Action 1 title',
applicableTypes: [],
trackStatus: false,
parameterDefinitions: [actionParam1TransformedMock, actionParam2TransformedMock]
};
const action2TransformedMock: ActionDefinitionTransformed = {
id: 'mock-action-2-definition',
name: 'mock-action-2-definition',
description: '',
title: 'mock-action-2-definition',
applicableTypes: [],
trackStatus: false,
parameterDefinitions: []
};
export const actionsTransformedListMock: ActionDefinitionTransformed[] = [action1TransformedMock, action2TransformedMock];