Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(ui): reorganize shared/utils.ts #13339

Merged
merged 5 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions ui/src/app/app-router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {uiUrl} from './shared/base';
import {ChatButton} from './shared/components/chat-button';
import ErrorBoundary from './shared/components/error-boundary';
import {services} from './shared/services';
import {Utils} from './shared/utils';
import * as nsUtils from './shared/namespaces';
import userinfo from './userinfo';
import {Widgets} from './widgets/widgets';
import workflowEventBindings from './workflow-event-bindings';
Expand Down Expand Up @@ -59,21 +59,21 @@ export function AppRouter({popupManager, history, notificationsManager}: {popupM
type: NotificationType.Error
});
};
Utils.onNamespaceChange = setNamespace;
nsUtils.setOnNamespaceChange(setNamespace);
useEffect(() => {
const sub = popupManager.popupProps.subscribe(setPopupProps);
return () => sub.unsubscribe();
}, [popupManager]);
useEffect(() => {
services.info.getUserInfo().then(userInfo => {
Utils.userNamespace = userInfo.serviceAccountNamespace;
setNamespace(Utils.currentNamespace);
nsUtils.setUserNamespace(userInfo.serviceAccountNamespace);
setNamespace(nsUtils.getCurrentNamespace());
});
services.info
.getInfo()
.then(info => {
Utils.managedNamespace = info.managedNamespace;
setNamespace(Utils.currentNamespace);
nsUtils.setManagedNamespace(info.managedNamespace);
setNamespace(nsUtils.getCurrentNamespace());
setModals(info.modals);
setNavBarBackgroundColor(info.navColor);
})
Expand All @@ -82,7 +82,8 @@ export function AppRouter({popupManager, history, notificationsManager}: {popupM
.catch(setError);
}, []);

const namespaceSuffix = Utils.managedNamespace ? '' : '/' + (namespace || '');
const managedNamespace = nsUtils.getManagedNamespace();
const namespaceSuffix = managedNamespace ? '' : '/' + (namespace || '');
return (
<>
{popupProps && <Popup {...popupProps} />}
Expand Down Expand Up @@ -179,7 +180,7 @@ export function AppRouter({popupManager, history, notificationsManager}: {popupM
<Route exact={true} strict={true} path={apiDocsUrl} component={apiDocs.component} />
<Route exact={true} strict={true} path={userInfoUrl} component={userinfo.component} />
<Route exact={true} strict={true} path={loginUrl} component={login.component} />
{Utils.managedNamespace && <Redirect to={workflowsUrl} />}
{managedNamespace && <Redirect to={workflowsUrl} />}
{namespace && <Redirect to={workflowsUrl + '/' + namespace} />}
</Switch>
</ErrorBoundary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {Context} from '../shared/context';
import {historyUrl} from '../shared/history';
import {services} from '../shared/services';
import {useQueryParams} from '../shared/use-query-params';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {WorkflowDetailsList} from '../workflows/components/workflow-details-list/workflow-details-list';
import {SubmitWorkflowPanel} from '../workflows/components/submit-workflow-panel';
import {ClusterWorkflowTemplateEditor} from './cluster-workflow-template-editor';
Expand Down Expand Up @@ -73,7 +73,7 @@ export function ClusterWorkflowTemplateDetails({history, location, match}: Route

setWorkflows(workflowList.items);
setColumns(info.columns);
setNamespace(Utils.getNamespaceWithDefault(info.managedNamespace));
setNamespace(nsUtils.getNamespaceWithDefault(info.managedNamespace));
setError(null);
} catch (err) {
setError(err);
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/cron-workflows/cron-workflow-creator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import {ExampleManifests} from '../shared/components/example-manifests';
import {UploadButton} from '../shared/components/upload-button';
import {exampleCronWorkflow} from '../shared/examples';
import {services} from '../shared/services';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {CronWorkflowEditor} from './cron-workflow-editor';

export function CronWorkflowCreator({onCreate, namespace}: {namespace: string; onCreate: (cronWorkflow: CronWorkflow) => void}) {
const [cronWorkflow, setCronWorkflow] = useState<CronWorkflow>(exampleCronWorkflow(Utils.getNamespaceWithDefault(namespace)));
const [cronWorkflow, setCronWorkflow] = useState<CronWorkflow>(exampleCronWorkflow(nsUtils.getNamespaceWithDefault(namespace)));
const [error, setError] = useState<Error>();
return (
<>
Expand All @@ -22,7 +22,7 @@ export function CronWorkflowCreator({onCreate, namespace}: {namespace: string; o
icon='plus'
onClick={async () => {
try {
const newCronWorkflow = await services.cronWorkflows.create(cronWorkflow, Utils.getNamespaceWithDefault(cronWorkflow.metadata.namespace));
const newCronWorkflow = await services.cronWorkflows.create(cronWorkflow, nsUtils.getNamespaceWithDefault(cronWorkflow.metadata.namespace));
onCreate(newCronWorkflow);
} catch (err) {
setError(err);
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/cron-workflows/cron-workflow-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {Footnote} from '../shared/footnote';
import {historyUrl} from '../shared/history';
import {services} from '../shared/services';
import {useQueryParams} from '../shared/use-query-params';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {CronWorkflowCreator} from './cron-workflow-creator';
import {CronWorkflowFilters} from './cron-workflow-filters';
import {PrettySchedule} from './pretty-schedule';
Expand All @@ -36,7 +36,7 @@ export function CronWorkflowList({match, location, history}: RouteComponentProps
const {navigation} = useContext(Context);

// state for URL, query, and label parameters
const [namespace, setNamespace] = useState<string>(Utils.getNamespace(match.params.namespace) || '');
const [namespace, setNamespace] = useState<string>(nsUtils.getNamespace(match.params.namespace) || '');
const [sidePanel, setSidePanel] = useState(queryParams.get('sidePanel') === 'true');
const [labels, setLabels] = useState<string[]>([]);
const [states, setStates] = useState(['Running', 'Suspended']); // check all by default
Expand All @@ -55,7 +55,7 @@ export function CronWorkflowList({match, location, history}: RouteComponentProps
useEffect(
() =>
history.push(
historyUrl('cron-workflows' + (Utils.managedNamespace ? '' : '/{namespace}'), {
historyUrl('cron-workflows' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {
namespace,
sidePanel
})
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/event-flow/event-flow-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {ListWatch} from '../shared/list-watch';
import {RetryObservable} from '../shared/retry-observable';
import {services} from '../shared/services';
import {useQueryParams} from '../shared/use-query-params';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {EventsPanel} from '../workflows/components/events-panel';
import {FullHeightLogsViewer} from '../workflows/components/workflow-logs-viewer/full-height-logs-viewer';
import {buildGraph} from './build-graph';
Expand All @@ -43,7 +43,7 @@ export function EventFlowPage({history, location, match}: RouteComponentProps<an
const queryParams = new URLSearchParams(location.search);

// state for URL and query parameters
const [namespace, setNamespace] = useState(Utils.getNamespace(match.params.namespace) || '');
const [namespace, setNamespace] = useState(nsUtils.getNamespace(match.params.namespace) || '');
const [showFlow, setShowFlow] = useState(queryParams.get('showFlow') === 'true');
const [showWorkflows, setShowWorkflows] = useState(queryParams.get('showWorkflows') !== 'false');
const [expanded, setExpanded] = useState(queryParams.get('expanded') === 'true');
Expand All @@ -64,7 +64,7 @@ export function EventFlowPage({history, location, match}: RouteComponentProps<an
useEffect(
() =>
history.push(
historyUrl('event-flow' + (Utils.managedNamespace ? '' : '/{namespace}'), {
historyUrl('event-flow' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {
namespace,
showFlow,
showWorkflows,
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/event-sources/event-source-creator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import {ErrorNotice} from '../shared/components/error-notice';
import {UploadButton} from '../shared/components/upload-button';
import {exampleEventSource} from '../shared/examples';
import {services} from '../shared/services';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {EventSourceEditor} from './event-source-editor';

export function EventSourceCreator({onCreate, namespace}: {namespace: string; onCreate: (eventSource: EventSource) => void}) {
const [eventSource, setEventSource] = useState<EventSource>(exampleEventSource(Utils.getNamespaceWithDefault(namespace)));
const [eventSource, setEventSource] = useState<EventSource>(exampleEventSource(nsUtils.getNamespaceWithDefault(namespace)));
const [error, setError] = useState<Error>();
return (
<>
Expand All @@ -21,7 +21,7 @@ export function EventSourceCreator({onCreate, namespace}: {namespace: string; on
icon='plus'
onClick={async () => {
try {
const newEventSource = await services.eventSource.create(eventSource, Utils.getNamespaceWithDefault(eventSource.metadata.namespace));
const newEventSource = await services.eventSource.create(eventSource, nsUtils.getNamespaceWithDefault(eventSource.metadata.namespace));
onCreate(newEventSource);
} catch (err) {
setError(err);
Expand Down
10 changes: 5 additions & 5 deletions ui/src/app/event-sources/event-source-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Link, RouteComponentProps} from 'react-router-dom';

import {EventSource, kubernetes} from '../../models';
import {ID} from '../event-flow/id';
import {Utils as EventsUtils} from '../sensors/utils';
import {statusIconClasses} from '../sensors/utils';
import {uiUrl} from '../shared/base';
import {ErrorNotice} from '../shared/components/error-notice';
import {Node} from '../shared/components/graph/types';
Expand All @@ -22,7 +22,7 @@ import {Footnote} from '../shared/footnote';
import {historyUrl} from '../shared/history';
import {services} from '../shared/services';
import {useQueryParams} from '../shared/use-query-params';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {EventsPanel} from '../workflows/components/events-panel';
import {EventSourceCreator} from './event-source-creator';
import {EventSourceLogsViewer} from './event-source-log-viewer';
Expand All @@ -36,7 +36,7 @@ export function EventSourceList({match, location, history}: RouteComponentProps<
const {navigation} = useContext(Context);

// state for URL and query parameters
const [namespace, setNamespace] = useState(Utils.getNamespace(match.params.namespace) || '');
const [namespace, setNamespace] = useState(nsUtils.getNamespace(match.params.namespace) || '');
const [sidePanel, setSidePanel] = useState(queryParams.get('sidePanel') === 'true');
const [selectedNode, setSelectedNode] = useState<Node>(queryParams.get('selectedNode'));
const [tab, setTab] = useState<Node>(queryParams.get('tab'));
Expand All @@ -53,7 +53,7 @@ export function EventSourceList({match, location, history}: RouteComponentProps<
useEffect(
() =>
history.push(
historyUrl('event-sources' + (Utils.managedNamespace ? '' : '/{namespace}'), {
historyUrl('event-sources' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {
namespace,
sidePanel,
selectedNode,
Expand Down Expand Up @@ -140,7 +140,7 @@ export function EventSourceList({match, location, history}: RouteComponentProps<
key={`${es.metadata.namespace}/${es.metadata.name}`}
to={uiUrl(`event-sources/${es.metadata.namespace}/${es.metadata.name}`)}>
<div className='columns small-1'>
<i className={classNames('fa', EventsUtils.statusIconClasses(es.status != null ? es.status.conditions : [], 'fas fa-bolt'))} />
<i className={classNames('fa', statusIconClasses(es.status != null ? es.status.conditions : [], 'fas fa-bolt'))} />
</div>
<div className='columns small-4'>{es.metadata.name}</div>
<div className='columns small-3'>{es.metadata.namespace}</div>
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/plugins/plugin-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import {uiUrl} from '../shared/base';
import {useCollectEvent} from '../shared/use-collect-event';
import {ZeroState} from '../shared/components/zero-state';
import {historyUrl} from '../shared/history';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';

export function PluginList({match, history}: RouteComponentProps<any>) {
// state for URL and query parameters
const [namespace] = useState(Utils.getNamespace(match.params.namespace) || '');
const [namespace] = useState(nsUtils.getNamespace(match.params.namespace) || '');
useEffect(
() =>
history.push(
historyUrl('plugins' + (Utils.managedNamespace ? '' : '/{namespace}'), {
historyUrl('plugins' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {
namespace
})
),
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/reports/reports.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {Context} from '../shared/context';
import {Footnote} from '../shared/footnote';
import {historyUrl} from '../shared/history';
import {services} from '../shared/services';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {ReportFilters} from './reports-filters';
import {workflowsToChartData} from './workflows-to-chart-data';

Expand All @@ -31,15 +31,15 @@ export function Reports({match, location, history}: RouteComponentProps<any>) {
const {navigation} = useContext(Context);

// state for URL, query, and label parameters
const [namespace, setNamespace] = useState<string>(Utils.getNamespace(match.params.namespace) || '');
const [namespace, setNamespace] = useState<string>(nsUtils.getNamespace(match.params.namespace) || '');
const [labels, setLabels] = useState((queryParams.get('labels') || '').split(',').filter(v => v !== ''));
// internal state
const [charts, setCharts] = useState<Chart[]>();
const [error, setError] = useState<Error>();

// save history
useEffect(() => {
history.push(historyUrl('reports' + (Utils.managedNamespace ? '' : '/{namespace}'), {namespace, labels: labels.join(',')}));
history.push(historyUrl('reports' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {namespace, labels: labels.join(',')}));
}, [namespace, labels]);

async function onChange(newNamespace: string, newLabels: string[]) {
Expand Down
6 changes: 3 additions & 3 deletions ui/src/app/sensors/sensor-creator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import {ErrorNotice} from '../shared/components/error-notice';
import {UploadButton} from '../shared/components/upload-button';
import {exampleSensor} from '../shared/examples';
import {services} from '../shared/services';
import {Utils} from '../shared/utils';
import * as nsUtils from '../shared/namespaces';
import {SensorEditor} from './sensor-editor';

export function SensorCreator({namespace, onCreate}: {namespace: string; onCreate: (sensor: Sensor) => void}) {
const [sensor, setSensor] = useState<Sensor>(exampleSensor(Utils.getNamespaceWithDefault(namespace)));
const [sensor, setSensor] = useState<Sensor>(exampleSensor(nsUtils.getNamespaceWithDefault(namespace)));
const [error, setError] = useState<Error>();
return (
<>
Expand All @@ -21,7 +21,7 @@ export function SensorCreator({namespace, onCreate}: {namespace: string; onCreat
icon='plus'
onClick={async () => {
try {
const newSensor = await services.sensor.create(sensor, Utils.getNamespaceWithDefault(sensor.metadata.namespace));
const newSensor = await services.sensor.create(sensor, nsUtils.getNamespaceWithDefault(sensor.metadata.namespace));
onCreate(newSensor);
} catch (err) {
setError(err);
Expand Down
16 changes: 7 additions & 9 deletions ui/src/app/sensors/sensor-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ import {Footnote} from '../shared/footnote';
import {historyUrl} from '../shared/history';
import {services} from '../shared/services';
import {useQueryParams} from '../shared/use-query-params';
import {Utils} from '../shared/utils';
import useTimestamp, {TIMESTAMP_KEYS} from '../shared/use-timestamp';
import * as nsUtils from '../shared/namespaces';
import {SensorCreator} from './sensor-creator';
import {SensorSidePanel} from './sensor-side-panel';
import {Utils as EventsUtils} from './utils';
import useTimestamp, {TIMESTAMP_KEYS} from '../shared/use-timestamp';
import {statusIconClasses} from './utils';


const learnMore = <a href='https://argoproj.github.io/argo-events/concepts/sensor/'>Learn more</a>;

Expand All @@ -34,7 +35,7 @@ export function SensorList({match, location, history}: RouteComponentProps<any>)
const {navigation} = useContext(Context);

// state for URL and query parameters
const [namespace, setNamespace] = useState(Utils.getNamespace(match.params.namespace) || '');
const [namespace, setNamespace] = useState(nsUtils.getNamespace(match.params.namespace) || '');
const [sidePanel, setSidePanel] = useState(queryParams.get('sidePanel') === 'true');
const [selectedNode, setSelectedNode] = useState<Node>(queryParams.get('selectedNode'));

Expand All @@ -49,7 +50,7 @@ export function SensorList({match, location, history}: RouteComponentProps<any>)
useEffect(
() =>
history.push(
historyUrl('sensors' + (Utils.managedNamespace ? '' : '/{namespace}'), {
historyUrl('sensors' + (nsUtils.getManagedNamespace() ? '' : '/{namespace}'), {
namespace,
sidePanel,
selectedNode
Expand Down Expand Up @@ -135,10 +136,7 @@ export function SensorList({match, location, history}: RouteComponentProps<any>)
key={`${s.metadata.namespace}/${s.metadata.name}`}
to={uiUrl(`sensors/${s.metadata.namespace}/${s.metadata.name}`)}>
<div className='columns small-1'>
<i
className={classNames('fa', EventsUtils.statusIconClasses(s.status != null ? s.status.conditions : [], 'fa-satellite-dish'))}
aria-hidden='true'
/>
<i className={classNames('fa', statusIconClasses(s.status != null ? s.status.conditions : [], 'fa-satellite-dish'))} aria-hidden='true' />
</div>
<div className='columns small-4'>{s.metadata.name}</div>
<div className='columns small-3'>{s.metadata.namespace}</div>
Expand Down
Loading
Loading