foreman_acd 0.2.1 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +107 -56
- data/app/controllers/foreman_acd/ansible_playbooks_controller.rb +199 -0
- data/app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb +72 -0
- data/app/controllers/foreman_acd/api/v2/app_definitions_controller.rb +1 -0
- data/app/controllers/foreman_acd/api/v2/app_instances_controller.rb +62 -0
- data/app/controllers/foreman_acd/app_definitions_controller.rb +19 -10
- data/app/controllers/foreman_acd/app_instances_controller.rb +111 -137
- data/app/controllers/foreman_acd/concerns/ansible_playbook_parameters.rb +23 -0
- data/app/controllers/foreman_acd/concerns/app_definition_parameters.rb +1 -1
- data/app/controllers/foreman_acd/concerns/app_instance_parameters.rb +1 -1
- data/app/controllers/foreman_acd/remote_execution_controller.rb +62 -0
- data/app/controllers/ui_acd_controller.rb +20 -3
- data/app/lib/actions/foreman_acd/deploy_all_hosts.rb +47 -0
- data/app/lib/actions/foreman_acd/run_configurator.rb +44 -0
- data/app/models/concerns/foreman_acd/host_managed_extensions.rb +51 -0
- data/app/models/foreman_acd/acd_provider.rb +36 -0
- data/app/models/foreman_acd/ansible_playbook.rb +68 -0
- data/app/models/foreman_acd/app_definition.rb +25 -0
- data/app/models/foreman_acd/app_instance.rb +42 -0
- data/app/models/foreman_acd/foreman_host.rb +23 -0
- data/app/models/foreman_acd/taxonomy_extensions.rb +17 -0
- data/app/services/foreman_acd/acd_proxy_proxy_selector.rb +17 -0
- data/app/services/foreman_acd/app_configurator.rb +98 -0
- data/app/services/foreman_acd/app_deployer.rb +157 -0
- data/app/services/foreman_acd/inventory_creator.rb +68 -0
- data/app/views/foreman_acd/ansible_playbooks/_form.html.erb +64 -0
- data/app/views/foreman_acd/ansible_playbooks/edit.html.erb +11 -0
- data/app/views/foreman_acd/ansible_playbooks/index.html.erb +30 -0
- data/app/views/foreman_acd/ansible_playbooks/new.html.erb +3 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/ansible_playbooks/show.json.rabl +9 -0
- data/app/views/foreman_acd/api/v2/app_definitions/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_definitions/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_definitions/show.json.rabl +9 -0
- data/app/views/foreman_acd/api/v2/app_instances/base.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_instances/index.json.rabl +5 -0
- data/app/views/foreman_acd/api/v2/app_instances/show.json.rabl +5 -0
- data/app/views/foreman_acd/app_definitions/_form.html.erb +34 -12
- data/app/views/foreman_acd/app_definitions/edit.html.erb +10 -0
- data/app/views/foreman_acd/app_definitions/index.html.erb +4 -4
- data/app/views/foreman_acd/app_instances/_form.html.erb +11 -9
- data/app/views/foreman_acd/app_instances/edit.html.erb +10 -0
- data/app/views/foreman_acd/app_instances/index.html.erb +89 -10
- data/app/views/foreman_acd/app_instances/report.html.erb +6 -3
- data/app/views/templates/job/run_acd_ansible_playbook.erb +62 -0
- data/app/views/ui_acd/ansible_data.json.rabl +6 -0
- data/app/views/ui_acd/app.json.rabl +6 -2
- data/app/views/ui_acd/app_definition.json.rabl +1 -1
- data/app/views/ui_acd/{fdata.json.rabl → foreman_data.json.rabl} +1 -1
- data/config/routes.rb +32 -2
- data/db/migrate/20200916091018_create_ansible_playbooks.rb +20 -0
- data/db/migrate/20200917120220_add_ansible_playbook_id.rb +14 -0
- data/db/migrate/20201016002819_add_ansible_vars_all_to_app_definitions.rb +8 -0
- data/db/migrate/20201016104338_add_ansible_vars_all_to_app_instances.rb +8 -0
- data/db/migrate/20210112111548_add_organization_to_app_instance.rb +22 -0
- data/db/migrate/20210112113853_add_location_to_app_instance.rb +8 -0
- data/db/migrate/20210202141658_create_foreman_hosts.rb +24 -0
- data/db/migrate/20210204111306_remove_hosts_from_app_instances.rb +8 -0
- data/db/migrate/20210209091014_rename_acd_tables.rb +16 -0
- data/db/migrate/20210216083522_add_last_progress_report.rb +8 -0
- data/db/migrate/20210216091529_add_last_deploy_task.rb +8 -0
- data/db/migrate/20210316151145_add_git_commit_to_ansible_playbooks.rb +8 -0
- data/db/migrate/20210503122809_add_git_url_to_ansible_playbooks.rb +8 -0
- data/db/seeds.d/62_acd_proxy_feature.rb +4 -0
- data/db/seeds.d/75-job_templates.rb +13 -0
- data/lib/foreman_acd.rb +12 -0
- data/lib/foreman_acd/engine.rb +43 -3
- data/lib/foreman_acd/plugin.rb +88 -22
- data/lib/foreman_acd/version.rb +1 -1
- data/lib/tasks/foreman_acd_tasks.rake +0 -12
- data/locale/en/foreman_acd.edit.po +326 -0
- data/locale/en/foreman_acd.po +232 -2
- data/locale/en/foreman_acd.po.time_stamp +0 -0
- data/locale/foreman_acd.pot +343 -8
- data/package.json +9 -9
- data/test/controllers/ansible_playbooks_controller_test.rb +27 -0
- data/test/controllers/app_instances_controller_test.rb +8 -3
- data/test/controllers/ui_acd_controller_test.rb +22 -6
- data/test/factories/foreman_acd_factories.rb +18 -4
- data/test/models/acd_provider_test.rb +37 -0
- data/test/models/ansible_playbook_test.rb +11 -0
- data/test/models/app_definition_test.rb +1 -1
- data/test/models/app_instance_test.rb +2 -0
- data/test/models/concerns/host_extensions_test.rb +26 -0
- data/test/models/foreman_host_test.rb +12 -0
- data/webpack/__mocks__/foremanReact/API.js +2 -0
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +2 -0
- data/webpack/__mocks__/foremanReact/components/ForemanModal.js +7 -0
- data/webpack/__mocks__/foremanReact/components/common/forms/CommonForm.js +2 -0
- data/webpack/__mocks__/foremanReact/components/common/forms/TextInput.js +2 -0
- data/webpack/__mocks__/foremanReact/components/hosts/powerStatus.js +1 -0
- data/webpack/__snapshots__/helper.test.js.snap +14 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinition.js +159 -29
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionActions.js +106 -14
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionConstants.js +8 -2
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionHelper.js +26 -0
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionReducer.js +143 -21
- data/webpack/components/ApplicationDefinition/ApplicationDefinitionSelectors.js +3 -0
- data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionConfData_1.fixtures.js +288 -0
- data/webpack/components/ApplicationDefinition/__fixtures__/applicationDefinitionReducer.fixtures.js +79 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinition.test.js +25 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionReducer.test.js +119 -0
- data/webpack/components/ApplicationDefinition/__tests__/ApplicationDefinitionSelectors.test.js +41 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinition.test.js.snap +200 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionReducer.test.js.snap +3033 -0
- data/webpack/components/ApplicationDefinition/__tests__/__snapshots__/ApplicationDefinitionSelectors.test.js.snap +299 -0
- data/webpack/components/ApplicationDefinition/components/AnsiblePlaybookSelector.js +50 -0
- data/webpack/components/ApplicationDefinition/components/__tests__/AnsiblePlaybookSelector.test.js +41 -0
- data/webpack/components/ApplicationDefinition/components/__tests__/__snapshots__/AnsiblePlaybookSelector.test.js.snap +121 -0
- data/webpack/components/ApplicationDefinition/index.js +6 -0
- data/webpack/components/ApplicationInstance/ApplicationInstance.js +151 -44
- data/webpack/components/ApplicationInstance/ApplicationInstanceActions.js +47 -10
- data/webpack/components/ApplicationInstance/ApplicationInstanceConstants.js +5 -2
- data/webpack/components/ApplicationInstance/ApplicationInstanceReducer.js +114 -28
- data/webpack/components/ApplicationInstance/ApplicationInstanceSelectors.js +3 -1
- data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceConfData_1.fixtures.js +263 -0
- data/webpack/components/ApplicationInstance/__fixtures__/applicationInstanceReducer.fixtures.js +78 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstance.test.js +23 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceReducer.test.js +119 -0
- data/webpack/components/ApplicationInstance/__tests__/ApplicationInstanceSelectors.test.js +44 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstance.test.js.snap +209 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceReducer.test.js.snap +2719 -0
- data/webpack/components/ApplicationInstance/__tests__/__snapshots__/ApplicationInstanceSelectors.test.js.snap +276 -0
- data/webpack/components/ApplicationInstance/components/Service.js +1 -1
- data/webpack/components/ApplicationInstance/index.js +4 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.js +53 -60
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReport.scss +17 -0
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportActions.js +7 -51
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportConstants.js +2 -4
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportReducer.js +4 -18
- data/webpack/components/ApplicationInstanceReport/ApplicationInstanceReportSelectors.js +0 -1
- data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportData_1.fixtures.js +349 -0
- data/webpack/components/ApplicationInstanceReport/__fixtures__/applicationInstanceReportReducer.fixtures.js +20 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReport.test.js +47 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportReducer.test.js +41 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/ApplicationInstanceReportSelectors.test.js +26 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReport.test.js.snap +130 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportReducer.test.js.snap +718 -0
- data/webpack/components/ApplicationInstanceReport/__tests__/__snapshots__/ApplicationInstanceReportSelectors.test.js.snap +347 -0
- data/webpack/components/ApplicationInstanceReport/components/ReportViewer.js +1 -1
- data/webpack/components/ApplicationInstanceReport/components/__tests__/ReportViewer.test.js +24 -0
- data/webpack/components/ApplicationInstanceReport/components/__tests__/__snapshots__/ReportViewer.test.js.snap +24 -0
- data/webpack/components/ApplicationInstanceReport/index.js +0 -2
- data/webpack/components/ParameterSelection/ParameterSelection.js +85 -50
- data/webpack/components/ParameterSelection/ParameterSelectionActions.js +68 -62
- data/webpack/components/ParameterSelection/ParameterSelectionConstants.js +6 -3
- data/webpack/components/ParameterSelection/ParameterSelectionHelper.js +0 -32
- data/webpack/components/ParameterSelection/ParameterSelectionReducer.js +47 -35
- data/webpack/components/ParameterSelection/ParameterSelectionSelectors.js +2 -2
- data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionData_1.fixtures.js +116 -84
- data/webpack/components/ParameterSelection/__fixtures__/parameterSelectionReducer.fixtures.js +10 -4
- data/webpack/components/ParameterSelection/__tests__/ParameterSelection.test.js +36 -46
- data/webpack/components/ParameterSelection/__tests__/ParameterSelectionReducer.test.js +31 -25
- data/webpack/components/ParameterSelection/__tests__/ParameterSelectionSelectors.test.js +6 -6
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelection.test.js.snap +2 -126
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionReducer.test.js.snap +1483 -872
- data/webpack/components/ParameterSelection/__tests__/__snapshots__/ParameterSelectionSelectors.test.js.snap +117 -79
- data/webpack/components/ParameterSelection/index.js +4 -4
- data/webpack/components/SyncGitRepo/SyncGitRepo.js +210 -0
- data/webpack/components/SyncGitRepo/SyncGitRepo.scss +1 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoActions.js +124 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoConstants.js +9 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoReducer.js +80 -0
- data/webpack/components/SyncGitRepo/SyncGitRepoSelectors.js +6 -0
- data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoConfData_1.fixtures.js +7 -0
- data/webpack/components/SyncGitRepo/__fixtures__/syncGitRepoReducer.fixtures.js +44 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepo.test.js +27 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoReducer.test.js +95 -0
- data/webpack/components/SyncGitRepo/__tests__/SyncGitRepoSelectors.test.js +32 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepo.test.js.snap +30 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoReducer.test.js.snap +137 -0
- data/webpack/components/SyncGitRepo/__tests__/__snapshots__/SyncGitRepoSelectors.test.js.snap +13 -0
- data/webpack/components/SyncGitRepo/components/FormTextInput.js +42 -0
- data/webpack/components/SyncGitRepo/components/ScmTypeSelector.js +46 -0
- data/webpack/components/SyncGitRepo/index.js +28 -0
- data/webpack/components/common/DeleteTableEntry.js +3 -3
- data/webpack/components/common/EditTableEntry.js +50 -0
- data/webpack/components/common/ExtTextInput.js +43 -0
- data/webpack/components/common/LockTableEntry.js +60 -0
- data/webpack/components/common/__tests__/EditTableEntry.test.js +53 -0
- data/webpack/components/common/__tests__/LockTableEntry.test.js +35 -0
- data/webpack/components/common/__tests__/__snapshots__/DeleteTableEntry.test.js.snap +2 -2
- data/webpack/components/common/__tests__/__snapshots__/EditTableEntry.test.js.snap +81 -0
- data/webpack/components/common/__tests__/__snapshots__/LockTableEntry.test.js.snap +60 -0
- data/webpack/helper.js +15 -1
- data/webpack/helper.test.js +37 -0
- data/webpack/index.js +2 -0
- data/webpack/reducer.js +18 -11
- metadata +184 -10
- data/app/views/foreman_acd/app_instances/deploy.html.erb +0 -19
- data/webpack/components/common/__tests__/__snapshots__/AddParameter.test.js.snap +0 -35
- data/webpack/components/common/__tests__/__snapshots__/DeleteParameter.test.js.snap +0 -41
@@ -0,0 +1,137 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`SyncGitRepoReducer should handle git repo sync be erroneous 1`] = `
|
4
|
+
Object {
|
5
|
+
"error": "Something really bad happend",
|
6
|
+
"gitCommit": "master",
|
7
|
+
"gitUrl": "https://github.com/alpha.git",
|
8
|
+
"loading": false,
|
9
|
+
"path": "https://example.com",
|
10
|
+
"scmType": Object {
|
11
|
+
"git": "git",
|
12
|
+
},
|
13
|
+
"scmTypes": Object {
|
14
|
+
"directory": "directory",
|
15
|
+
"git": "git",
|
16
|
+
},
|
17
|
+
}
|
18
|
+
`;
|
19
|
+
|
20
|
+
exports[`SyncGitRepoReducer should handle git repo sync be successful 1`] = `
|
21
|
+
Object {
|
22
|
+
"gitCommit": "master",
|
23
|
+
"gitUrl": "https://github.com/alpha.git",
|
24
|
+
"path": "https://example.com",
|
25
|
+
"scmType": Object {
|
26
|
+
"git": "git",
|
27
|
+
},
|
28
|
+
"scmTypes": Object {
|
29
|
+
"directory": "directory",
|
30
|
+
"git": "git",
|
31
|
+
},
|
32
|
+
}
|
33
|
+
`;
|
34
|
+
|
35
|
+
exports[`SyncGitRepoReducer should initialize component 1`] = `
|
36
|
+
Object {
|
37
|
+
"gitCommit": "master",
|
38
|
+
"gitUrl": "https://github.com/alpha.git",
|
39
|
+
"loading": false,
|
40
|
+
"path": "https://example.com",
|
41
|
+
"scmType": Object {
|
42
|
+
"git": "git",
|
43
|
+
},
|
44
|
+
"scmTypes": Object {
|
45
|
+
"directory": "directory",
|
46
|
+
"git": "git",
|
47
|
+
},
|
48
|
+
}
|
49
|
+
`;
|
50
|
+
|
51
|
+
exports[`SyncGitRepoReducer should load git commit 1`] = `
|
52
|
+
Object {
|
53
|
+
"gitCommit": Object {
|
54
|
+
"gitCommit": "master",
|
55
|
+
},
|
56
|
+
"gitUrl": "https://github.com/alpha.git",
|
57
|
+
"path": "https://example.com",
|
58
|
+
"scmType": Object {
|
59
|
+
"git": "git",
|
60
|
+
},
|
61
|
+
"scmTypes": Object {
|
62
|
+
"directory": "directory",
|
63
|
+
"git": "git",
|
64
|
+
},
|
65
|
+
}
|
66
|
+
`;
|
67
|
+
|
68
|
+
exports[`SyncGitRepoReducer should load git url 1`] = `
|
69
|
+
Object {
|
70
|
+
"gitCommit": "master",
|
71
|
+
"gitUrl": undefined,
|
72
|
+
"path": "https://example.com",
|
73
|
+
"scmType": Object {
|
74
|
+
"git": "git",
|
75
|
+
},
|
76
|
+
"scmTypes": Object {
|
77
|
+
"directory": "directory",
|
78
|
+
"git": "git",
|
79
|
+
},
|
80
|
+
}
|
81
|
+
`;
|
82
|
+
|
83
|
+
exports[`SyncGitRepoReducer should load path 1`] = `
|
84
|
+
Object {
|
85
|
+
"gitCommit": "master",
|
86
|
+
"gitUrl": "https://github.com/alpha.git",
|
87
|
+
"path": Object {
|
88
|
+
"path": "https://example.com",
|
89
|
+
},
|
90
|
+
"scmType": Object {
|
91
|
+
"git": "git",
|
92
|
+
},
|
93
|
+
"scmTypes": Object {
|
94
|
+
"directory": "directory",
|
95
|
+
"git": "git",
|
96
|
+
},
|
97
|
+
}
|
98
|
+
`;
|
99
|
+
|
100
|
+
exports[`SyncGitRepoReducer should load scm_type 1`] = `
|
101
|
+
Object {
|
102
|
+
"gitCommit": "master",
|
103
|
+
"gitUrl": "https://github.com/alpha.git",
|
104
|
+
"path": "https://example.com",
|
105
|
+
"scmType": Object {
|
106
|
+
"scmType": Object {
|
107
|
+
"git": "git",
|
108
|
+
},
|
109
|
+
},
|
110
|
+
"scmTypes": Object {
|
111
|
+
"directory": "directory",
|
112
|
+
"git": "git",
|
113
|
+
},
|
114
|
+
}
|
115
|
+
`;
|
116
|
+
|
117
|
+
exports[`SyncGitRepoReducer should request handle git repo sync 1`] = `
|
118
|
+
Object {
|
119
|
+
"gitCommit": "master",
|
120
|
+
"gitUrl": "https://github.com/alpha.git",
|
121
|
+
"loading": true,
|
122
|
+
"path": "https://example.com",
|
123
|
+
"scmType": Object {
|
124
|
+
"git": "git",
|
125
|
+
},
|
126
|
+
"scmTypes": Object {
|
127
|
+
"directory": "directory",
|
128
|
+
"git": "git",
|
129
|
+
},
|
130
|
+
}
|
131
|
+
`;
|
132
|
+
|
133
|
+
exports[`SyncGitRepoReducer should return initial state 1`] = `
|
134
|
+
Object {
|
135
|
+
"loading": false,
|
136
|
+
}
|
137
|
+
`;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
2
|
+
|
3
|
+
exports[`SyncGitRepoSelectors should return gitCommit from syncGitRepoConfData_1 fixtures 1`] = `"master"`;
|
4
|
+
|
5
|
+
exports[`SyncGitRepoSelectors should return gitUrl from syncGitRepoConfData_1 fixtures 1`] = `"https://github.com/alpha.git"`;
|
6
|
+
|
7
|
+
exports[`SyncGitRepoSelectors should return path from syncGitRepoConfData_1 fixtures 1`] = `"https://example.com"`;
|
8
|
+
|
9
|
+
exports[`SyncGitRepoSelectors should return scmType from syncGitRepoConfData_1 fixtures 1`] = `
|
10
|
+
Object {
|
11
|
+
"git": "git",
|
12
|
+
}
|
13
|
+
`;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import ExtTextInput from '../../common/ExtTextInput';
|
4
|
+
import RailsData from '../../common/RailsData'
|
5
|
+
|
6
|
+
const FormTextInput= ({
|
7
|
+
label,
|
8
|
+
hidden,
|
9
|
+
editable,
|
10
|
+
viewText,
|
11
|
+
onChange,
|
12
|
+
parameter,
|
13
|
+
}) =>{
|
14
|
+
return (
|
15
|
+
<div >
|
16
|
+
<div >
|
17
|
+
<ExtTextInput
|
18
|
+
label={label}
|
19
|
+
editable={editable}
|
20
|
+
viewText={viewText}
|
21
|
+
onChange={onChange}
|
22
|
+
/>
|
23
|
+
<RailsData
|
24
|
+
key='ansible_playbook_id'
|
25
|
+
view='ansible_playbook'
|
26
|
+
parameter={parameter}
|
27
|
+
value={viewText}
|
28
|
+
/>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
);
|
32
|
+
};
|
33
|
+
|
34
|
+
FormTextInput.propTypes = {
|
35
|
+
label: PropTypes.string.isRequired,
|
36
|
+
editable: PropTypes.bool.isRequired,
|
37
|
+
viewText: PropTypes.string,
|
38
|
+
onChange: PropTypes.func.isRequired,
|
39
|
+
parameter: PropTypes.string,
|
40
|
+
};
|
41
|
+
|
42
|
+
export default FormTextInput;
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import ExtSelect from '../../common/ExtSelect';
|
4
|
+
import RailsData from '../../common/RailsData'
|
5
|
+
|
6
|
+
const ScmTypeSelector= ({
|
7
|
+
label,
|
8
|
+
hidden,
|
9
|
+
editable,
|
10
|
+
viewText,
|
11
|
+
selectValue,
|
12
|
+
onChange,
|
13
|
+
options,
|
14
|
+
}) =>{
|
15
|
+
return (
|
16
|
+
<div className="form-group">
|
17
|
+
<label className="col-md-2 control-label">{label}</label>
|
18
|
+
<div className="col-md-4">
|
19
|
+
<ExtSelect
|
20
|
+
editable={ editable }
|
21
|
+
viewText={viewText}
|
22
|
+
selectValue={selectValue}
|
23
|
+
onChange={onChange}
|
24
|
+
options={options}
|
25
|
+
/>
|
26
|
+
<RailsData
|
27
|
+
key='ansible_playbook_id'
|
28
|
+
view='ansible_playbook'
|
29
|
+
parameter='scm_type'
|
30
|
+
value={selectValue}
|
31
|
+
/>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
);
|
35
|
+
};
|
36
|
+
|
37
|
+
ScmTypeSelector.propTypes = {
|
38
|
+
label: PropTypes.string.isRequired,
|
39
|
+
editable: PropTypes.bool.isRequired,
|
40
|
+
viewText: PropTypes.string,
|
41
|
+
selectValue: PropTypes.string,
|
42
|
+
onChange: PropTypes.func.isRequired,
|
43
|
+
options: PropTypes.object,
|
44
|
+
};
|
45
|
+
|
46
|
+
export default ScmTypeSelector;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { bindActionCreators } from 'redux';
|
2
|
+
import { connect } from 'react-redux';
|
3
|
+
|
4
|
+
import './SyncGitRepo.scss';
|
5
|
+
import SyncGitRepo from './SyncGitRepo';
|
6
|
+
import * as SyncGitRepoActions from './SyncGitRepoActions';
|
7
|
+
|
8
|
+
import {
|
9
|
+
selectScmType,
|
10
|
+
selectPath,
|
11
|
+
selectGitCommit,
|
12
|
+
selectGitUrl,
|
13
|
+
} from './SyncGitRepoSelectors';
|
14
|
+
|
15
|
+
const mapStateToProps = state => ({
|
16
|
+
scmType: selectScmType(state),
|
17
|
+
gitCommit: selectGitCommit(state),
|
18
|
+
path: selectPath(state),
|
19
|
+
gitUrl: selectGitUrl(state)
|
20
|
+
});
|
21
|
+
|
22
|
+
const mapDispatchToProps = dispatch =>
|
23
|
+
bindActionCreators(SyncGitRepoActions, dispatch);
|
24
|
+
|
25
|
+
export default connect(
|
26
|
+
mapStateToProps,
|
27
|
+
mapDispatchToProps
|
28
|
+
)(SyncGitRepo);
|
@@ -4,6 +4,7 @@ import {
|
|
4
4
|
Icon,
|
5
5
|
Button,
|
6
6
|
} from 'patternfly-react';
|
7
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
7
8
|
|
8
9
|
const DeleteTableEntry = ({
|
9
10
|
hidden,
|
@@ -17,13 +18,12 @@ const DeleteTableEntry = ({
|
|
17
18
|
|
18
19
|
return (
|
19
20
|
<span>
|
20
|
-
|
21
21
|
<Button
|
22
22
|
bsStyle="default"
|
23
23
|
disabled={disabled}
|
24
|
-
onClick={() => window.confirm("Are you sure you wish to delete this item?") && onDeleteTableEntry(additionalData) }
|
24
|
+
onClick={() => window.confirm(__("Are you sure you wish to delete this item?")) && onDeleteTableEntry(additionalData) }
|
25
25
|
>
|
26
|
-
<Icon type="pf" name="delete" />
|
26
|
+
<Icon type="pf" name="delete" title={__("Delete entry")} />
|
27
27
|
</Button>
|
28
28
|
</span>
|
29
29
|
);
|
@@ -0,0 +1,50 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import {
|
4
|
+
Icon,
|
5
|
+
Button,
|
6
|
+
} from 'patternfly-react';
|
7
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
8
|
+
|
9
|
+
const EditTableEntry = ({
|
10
|
+
hidden,
|
11
|
+
disabled,
|
12
|
+
handleLocking,
|
13
|
+
onEditTableEntry,
|
14
|
+
additionalData,
|
15
|
+
}) =>{
|
16
|
+
if (hidden) {
|
17
|
+
return null;
|
18
|
+
}
|
19
|
+
|
20
|
+
let title = 'edit this entry'
|
21
|
+
|
22
|
+
if (handleLocking === true) {
|
23
|
+
if (additionalData.rowData.locked === true) {
|
24
|
+
disabled = true;
|
25
|
+
title = 'This entry is locked and can not be changed.';
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
return (
|
30
|
+
<span>
|
31
|
+
<Button
|
32
|
+
bsStyle="default"
|
33
|
+
disabled={disabled}
|
34
|
+
onClick={() => onEditTableEntry(additionalData) }
|
35
|
+
>
|
36
|
+
<Icon type="pf" name="edit" title={__(title)} />
|
37
|
+
</Button>
|
38
|
+
</span>
|
39
|
+
);
|
40
|
+
};
|
41
|
+
|
42
|
+
EditTableEntry.propTypes = {
|
43
|
+
hidden: PropTypes.bool,
|
44
|
+
disabled: PropTypes.bool.isRequired,
|
45
|
+
handleLocking: PropTypes.bool.isRequired,
|
46
|
+
onEditTableEntry: PropTypes.func.isRequired,
|
47
|
+
additionalData: PropTypes.object.isRequired,
|
48
|
+
};
|
49
|
+
|
50
|
+
export default EditTableEntry;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import TextInput from 'foremanReact/components/common/forms/TextInput';
|
4
|
+
|
5
|
+
const ExtTextInput= ({
|
6
|
+
hidden,
|
7
|
+
editable,
|
8
|
+
viewText,
|
9
|
+
label,
|
10
|
+
onChange,
|
11
|
+
additionalData,
|
12
|
+
}) =>{
|
13
|
+
if (hidden) {
|
14
|
+
return null;
|
15
|
+
}
|
16
|
+
|
17
|
+
if (!editable) {
|
18
|
+
return (
|
19
|
+
<div className="form-group">
|
20
|
+
<label className="col-md-2 control-label">{label}</label>
|
21
|
+
<div className="col-md-4">{viewText}</div>
|
22
|
+
</div>
|
23
|
+
);
|
24
|
+
}
|
25
|
+
|
26
|
+
return (
|
27
|
+
<TextInput
|
28
|
+
label={label}
|
29
|
+
value={viewText}
|
30
|
+
onChange={e => onChange(e.target.value, additionalData) }
|
31
|
+
/>
|
32
|
+
);
|
33
|
+
};
|
34
|
+
|
35
|
+
ExtTextInput.propTypes = {
|
36
|
+
hidden: PropTypes.bool.isRequired,
|
37
|
+
editable: PropTypes.bool.isRequired,
|
38
|
+
viewText: PropTypes.string,
|
39
|
+
onChange: PropTypes.func.isRequired,
|
40
|
+
additionalData: PropTypes.object,
|
41
|
+
};
|
42
|
+
|
43
|
+
export default ExtTextInput;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import PropTypes from 'prop-types';
|
3
|
+
import {
|
4
|
+
Icon,
|
5
|
+
Button,
|
6
|
+
} from 'patternfly-react';
|
7
|
+
import { translate as __ } from 'foremanReact/common/I18n';
|
8
|
+
|
9
|
+
const LockTableEntry = ({
|
10
|
+
hidden,
|
11
|
+
disabled,
|
12
|
+
onLockTableEntry,
|
13
|
+
additionalData,
|
14
|
+
}) =>{
|
15
|
+
if (hidden) {
|
16
|
+
return null;
|
17
|
+
}
|
18
|
+
|
19
|
+
let lockButton;
|
20
|
+
let lockButtonTitle;
|
21
|
+
|
22
|
+
if (additionalData.rowData.locked === true) {
|
23
|
+
lockButton = 'locked';
|
24
|
+
|
25
|
+
if (disabled === true) {
|
26
|
+
lockButtonTitle = 'this entry is locked';
|
27
|
+
} else {
|
28
|
+
lockButtonTitle = 'unlock this entry';
|
29
|
+
}
|
30
|
+
} else {
|
31
|
+
lockButton = 'unlocked';
|
32
|
+
|
33
|
+
if (disabled === true) {
|
34
|
+
lockButtonTitle = 'this entry is unlocked';
|
35
|
+
} else {
|
36
|
+
lockButtonTitle = 'lock this entry';
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
return (
|
41
|
+
<span>
|
42
|
+
<Button
|
43
|
+
bsStyle="default"
|
44
|
+
disabled={disabled}
|
45
|
+
onClick={() => onLockTableEntry(additionalData) }
|
46
|
+
>
|
47
|
+
<Icon type="pf" name={lockButton} title={__(lockButtonTitle)} />
|
48
|
+
</Button>
|
49
|
+
</span>
|
50
|
+
);
|
51
|
+
};
|
52
|
+
|
53
|
+
LockTableEntry.propTypes = {
|
54
|
+
hidden: PropTypes.bool,
|
55
|
+
disabled: PropTypes.bool.isRequired,
|
56
|
+
onLockTableEntry: PropTypes.func.isRequired,
|
57
|
+
additionalData: PropTypes.object.isRequired,
|
58
|
+
};
|
59
|
+
|
60
|
+
export default LockTableEntry;
|