Skip to content

Commit 16f18d6

Browse files
committed
Re-organize all utils into /utils folder
1 parent 5152b68 commit 16f18d6

14 files changed

+21
-26
lines changed

src/main/webui/src/app/components/ComponentConstants.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,5 @@ const hostedOptionLegend = [
2626
{icon: 'D', title: 'Deployment allowed'}
2727
];
2828

29-
// TODO: this should be fetched from backend
30-
const PACKAGE_TYPES = ["maven", "generic","npm"];
3129

32-
33-
export {remoteOptionLegend, hostedOptionLegend, PACKAGE_TYPES};
30+
export {remoteOptionLegend, hostedOptionLegend};

src/main/webui/src/app/components/content/RemoteEdit.jsx

+5-7
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ import {PropTypes} from 'prop-types';
2020
import {StoreEditControlPanel as EditControlPanel} from './common/StoreControlPanels.jsx';
2121
import {DisableTimeoutHint, DurationHint, PrefetchHint, Hint} from './common/Hints.jsx';
2222
// import ViewJsonDebugger from './Debugger.jsx';
23-
import {Utils} from '../CompUtils.js';
24-
// import Filters from '../Filters.js';
25-
import {TimeUtils} from '../../TimeUtils.js';
26-
import {PACKAGE_TYPES} from '../ComponentConstants.js';
27-
import {jsonRest} from '../../RestClient.js';
23+
import {Utils} from '../../utils/AppUtils.js';
24+
import {TimeUtils} from '../../utils/TimeUtils.js';
25+
import {jsonRest} from '../../utils/RestClient.js';
2826

2927
const init = (pkgType, storeName, setState) => {
3028
const getUrl = `/api/admin/stores/${pkgType}/remote/${storeName}`;
@@ -121,8 +119,8 @@ export default function RemoteEdit() {
121119
// Utils.logMessage(mode);
122120
let storeView = state.storeView;
123121
// let store = state.store;
124-
// TODO this package types should be fetched from backend
125-
let pkgTypes = PACKAGE_TYPES;
122+
// TODO: this package types should be fetched from backend
123+
let pkgTypes = ["maven", "generic-http", "npm"];
126124

127125
const handleCheckChange = (event, field) => {
128126
if (event.target.checked) {

src/main/webui/src/app/components/content/RemoteList.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import React, {useEffect, useState} from 'react';
1818
import {ListJsonDebugger} from './common/Debugger.jsx';
1919
import ListControl from "./common/ListControl.jsx";
2020
import {remoteOptionLegend as options} from "../ComponentConstants.js";
21-
import {Utils} from '../CompUtils.js';
2221
import {StoreListingWidget} from './common/StoreListingWidget.jsx';
23-
import {jsonRest} from '../../RestClient.js';
22+
import {Utils} from '../../utils/AppUtils.js';
23+
import {jsonRest} from '../../utils/RestClient.js';
2424

2525
const init = (state, setState) => {
2626
useEffect(()=>{

src/main/webui/src/app/components/content/RemoteView.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import {PropTypes} from 'prop-types';
2020
import {StoreViewControlPanel as ControlPanel} from './common/StoreControlPanels.jsx';
2121
import {DisableTimeoutHint, PrefetchHint, Hint, PasswordMask} from './common/Hints.jsx';
2222
// import ViewJsonDebugger from './Debugger.jsx';
23-
import {Utils} from '../CompUtils.js';
24-
import {Filters} from '../Filters.js';
25-
import {TimeUtils} from '../../TimeUtils.js';
26-
import {jsonRest} from '../../RestClient.js';
23+
import {Filters} from '../../utils/Filters.js';
24+
import {Utils} from '../../utils/AppUtils.js';
25+
import {TimeUtils} from '../../utils/TimeUtils.js';
26+
import {jsonRest} from '../../utils/RestClient.js';
2727

2828
const init = (pkgType, storeName, setState) => {
2929
const storeUrl = `/api/admin/stores/${pkgType}/remote/${storeName}`;

src/main/webui/src/app/components/content/common/CommonPageWidget.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import React, {Fragment} from 'react';
1818
import {Link} from 'react-router-dom';
1919
import {PropTypes} from 'prop-types';
20-
import {Utils} from '../../CompUtils.js';
20+
import {Utils} from '../../../utils/AppUtils.js';
2121

2222
const LocalURLSection = ({storeKey}) => <div className="left-half">
2323
<label>Local URL:</label>{' '}
@@ -28,7 +28,7 @@ LocalURLSection.propTypes = {
2828
storeKey: PropTypes.string
2929
};
3030

31-
// For options, see CompUtils.remoteOptions|hostedOptions
31+
// For options, see AppUtils.remoteOptions|hostedOptions
3232
const CapabilitiesSection = ({options}) => <div className="left-half">
3333
<label>Capabilities:</label>{' '}
3434
{

src/main/webui/src/app/components/content/common/PackageTypeSelect.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import React, {useState, useEffect} from 'react';
1818
import {PropTypes} from 'prop-types';
19-
import {jsonRest} from '../../../RestClient.js';
19+
import {jsonRest} from '../../../utils/RestClient.js';
2020

2121
export const PackageTypeSelect = ({pkgType,vauleChangeHandler}) =>{
2222
const [state, setState] = useState({

src/main/webui/src/app/components/content/common/StoreControlPanels.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import React from 'react';
1818
import {useNavigate} from 'react-router-dom';
1919
import {PropTypes} from 'prop-types';
20-
import {Utils} from '../../CompUtils';
21-
import {http} from '../../../RestClient';
20+
import {Utils} from '../../../utils/AppUtils';
21+
import {http} from '../../../utils/RestClient';
2222

2323
const StoreEditControlPanel = ({handleSave, handleCancel, handleRemove}) => <div className="cp-row">
2424
<button name="save" onClick={handleSave} className="cp-button">Save</button>{' '}

src/main/webui/src/app/components/content/common/StoreListingWidget.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import React, {Fragment} from 'react';
1818
import {PropTypes} from 'prop-types';
19-
import {Utils} from '../../CompUtils.js';
19+
import {Utils} from '../../../utils/AppUtils.js';
2020
import {LocalURLSection,StoreNameSection,CapabilitiesSection} from './CommonPageWidget.jsx';
2121

2222
export const StoreListingWidget = ({StoreList, DisMap, StoreType}) => {

src/main/webui/src/app/components/nav/NavFooter.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*/
1616

1717
import React, {useEffect, useState} from 'react';
18-
import {jsonRest} from '../../RestClient';
19-
import {Utils} from '../CompUtils';
18+
import {jsonRest} from '../../utils/RestClient';
19+
import {Utils} from '../../utils/AppUtils';
2020

2121
export default function NavFooter() {
2222
const [state, setState] = useState({stats: {}});
File renamed without changes.

src/main/webui/src/content-browse/DirectoryListing.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import React, {useState, useEffect} from 'react';
1818
import {PropTypes} from 'prop-types';
1919
import {styles} from './style.js';
20-
import {jsonRest} from '../app/RestClient.js';
20+
import {jsonRest} from '../app/utils/RestClient.js';
2121

2222
const replaceUrl = url =>{
2323
if (url.includes("api/browse")){

0 commit comments

Comments
 (0)