Skip to content

Commit

Permalink
Merge pull request #84 from ligangty/2.0-refactor
Browse files Browse the repository at this point in the history
Extract Capabilities for view page as single component
  • Loading branch information
ligangty authored Nov 16, 2023
2 parents fd91f99 + 6cda474 commit d03a1c6
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/**
* Copyright (C) 2023 Red Hat, Inc. (https://github.com/Commonjava/indy-ui-service)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import React from 'react';
import {PropTypes} from 'prop-types';
import {Filters} from '../../../utils/Filters.js';

export const StoreViewCapabilitiesSection = ({store}) => <React.Fragment>
<div className="fieldset-caption">Capabilities</div>
<div className="fieldset">
{
(store.allow_releases || store.allow_snapshots) &&
<div>
<div className="detail-field">
<span>{Filters.checkmark(store.allow_releases)}</span>
<label>Allow Releases</label>
</div>
<div className="detail-field">
<span>{Filters.checkmark(store.allow_snapshots)}</span>
<label>Snapshots Allowed?</label>
</div>
</div>
}
</div>
</React.Fragment>;

StoreViewCapabilitiesSection.propTypes = {
store: PropTypes.object.isRequired
};
20 changes: 2 additions & 18 deletions src/main/webui/src/app/components/content/remote/RemoteView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {PropTypes} from 'prop-types';
import {StoreViewControlPanel as ControlPanel} from '../common/StoreControlPanels.jsx';
import {Hint, PasswordMask} from '../common/Hints.jsx';
import {StoreViewBasicSection as BasicSection} from '../common/StoreBasicSections.jsx';
import {StoreViewCapabilitiesSection} from '../common/StoreCapabilitiesSections.jsx';
// import ViewJsonDebugger from './Debugger.jsx';
import {Filters} from '../../../utils/Filters.js';
import {Utils} from '../../../utils/AppUtils.js';
Expand Down Expand Up @@ -211,24 +212,7 @@ export default function RemoteView() {
</div>
</div>

<div className="fieldset-caption">Capabilities</div>
<div className="fieldset">
{
(store.allow_releases || store.allow_snapshots) &&

<div>
<div className="detail-field">
<span>{Filters.checkmark(store.allow_releases)}</span>
<label>Allow Releases</label>
</div>
<div className="detail-field">
<span>{Filters.checkmark(store.allow_snapshots)}</span>
<label>Snapshots Allowed?</label>
</div>
</div>

}
</div>
<StoreViewCapabilitiesSection store={store} />

<div className="fieldset-caption">Remote Access</div>
<RemoteAccessSection store={store} />
Expand Down

0 comments on commit d03a1c6

Please sign in to comment.