blob: 0fd0eabd86c6d7ee833865b7817bc1eeec5e09a9 [file] [log] [blame]
talig8e9c0652017-12-20 14:30:43 +02001/*!
svishnev091edfd2018-03-19 12:15:19 +02002 * Copyright © 2016-2018 European Support Limited
talig8e9c0652017-12-20 14:30:43 +02003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
16
17import {connect} from 'react-redux';
18import VersionsPageActionHelper from './VersionsPageActionHelper.js';
19import VersionsPageCreationActionHelper from './creation/VersionsPageCreationActionHelper.js';
20import PermissionsActionHelper from '../permissions/PermissionsActionHelper.js';
21import {onboardingMethod as onboardingMethodType} from 'sdc-app/onboarding/softwareProduct/SoftwareProductConstants.js';
22import VersionsPageView from './VersionsPage.jsx';
23
24export const mapStateToProps = ({
25 users: {userInfo},
26 versionsPage: {permissions, versionsList},
svishnev091edfd2018-03-19 12:15:19 +020027 currentScreen: {itemPermission: {isCollaborator, isArchived}, props: {itemId}},
talig8e9c0652017-12-20 14:30:43 +020028 softwareProductList = []
29}) => {
30
svishnev091edfd2018-03-19 12:15:19 +020031 let {versions = [], selectedVersion} = versionsList;
talig8e9c0652017-12-20 14:30:43 +020032 let {owner, contributors, viewers} = permissions;
33
34 // sorting the version list
35 versions.sort((a,b) => {
36 let statusCompare = b.status.localeCompare(a.status);
37 if (statusCompare === 0) {
38 return b.modificationTime - a.modificationTime;
39 } else {
40 return statusCompare;
41 }
42
svishnev091edfd2018-03-19 12:15:19 +020043 });
talig8e9c0652017-12-20 14:30:43 +020044 const curentSoftwareProduct = softwareProductList.find(item => item.id === itemId);
45 return {
46 versions,
47 contributors,
48 viewers,
49 owner,
50 currentUser: userInfo,
51 selectedVersion,
52 isCollaborator,
svishnev091edfd2018-03-19 12:15:19 +020053 isManual: curentSoftwareProduct && curentSoftwareProduct.onboardingMethod === onboardingMethodType.MANUAL,
54 isArchived
talig8e9c0652017-12-20 14:30:43 +020055 };
56
57};
58
59export const mapActionsToProps = (dispatch, {itemType, itemId, additionalProps}) => {
60 return {
61 onNavigateToVersion({version}) {
62 VersionsPageActionHelper.onNavigateToVersion(dispatch, {version, itemId, itemType, additionalProps});
63 },
64
65 onSelectVersion({version}) {
66 VersionsPageActionHelper.selectVersion(dispatch, {version});
67 },
68
69 onCreateVersion({version}) {
70 VersionsPageCreationActionHelper.open(dispatch, {baseVersion: version, itemId, itemType, additionalProps});
71 },
72
73 onManagePermissions() {
74 PermissionsActionHelper.openPermissonsManager(dispatch, {itemId, askForRights: false});
75 },
76
77 onTreeFullScreen(treeProps) {
78 VersionsPageActionHelper.openTree(dispatch, treeProps);
79 },
80
81 onModalNodeClick({version}) {
82 VersionsPageActionHelper.selectVersionFromModal(dispatch, {version});
svishnev091edfd2018-03-19 12:15:19 +020083 },
84 onArchive: () => VersionsPageActionHelper.archiveItem(dispatch, itemId),
85 onRestore: () => VersionsPageActionHelper.restoreItemFromArchive(dispatch, itemId)
talig8e9c0652017-12-20 14:30:43 +020086 };
87};
88
89export default connect(mapStateToProps, mapActionsToProps)(VersionsPageView);