Skip to content

Commit 536b83c

Browse files
committed
feat(UI): add enable field for automatedSync
Signed-off-by: Atif Ali <[email protected]>
1 parent f8b5b0b commit 536b83c

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

ui/src/app/applications/components/application-create-panel/application-create-panel.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,23 @@ const AutoSyncFormField = ReactFormField((props: {fieldApi: FieldApi; className:
5353
fieldApi: {getValue, setValue}
5454
} = props;
5555
const automated = getValue() as models.Automated;
56-
5756
return (
5857
<React.Fragment>
5958
<label>Sync Policy</label>
6059
<Select
6160
value={automated ? auto : manual}
6261
options={[manual, auto]}
6362
onChange={opt => {
64-
setValue(opt.value === auto ? {prune: false, selfHeal: false} : null);
63+
setValue(opt.value === auto ? {prune: false, selfHeal: false, enabled: true} : null);
6564
}}
6665
/>
6766
{automated && (
6867
<div className='application-create-panel__sync-params'>
68+
<div className='checkbox-container'>
69+
<Checkbox onChange={val => setValue({...automated, enabled: val})} checked={automated.enabled === undefined ? true : automated.enabled} id='policyEnable' />
70+
<label htmlFor='policyEnable'>Enable Auto-Sync</label>
71+
<HelpIcon title='If checked, application will automatically sync when changes are detected' />
72+
</div>
6973
<div className='checkbox-container'>
7074
<Checkbox onChange={val => setValue({...automated, prune: val})} checked={!!automated.prune} id='policyPrune' />
7175
<label htmlFor='policyPrune'>Prune Resources</label>

ui/src/app/applications/components/application-summary/application-summary.tsx

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable no-prototype-builtins */
2-
import {AutocompleteField, DropDownMenu, ErrorNotification, FormField, FormSelect, HelpIcon, NotificationType} from 'argo-ui';
2+
import {AutocompleteField, Checkbox, DropDownMenu, ErrorNotification, FormField, FormSelect, HelpIcon, NotificationType} from 'argo-ui';
33
import * as React from 'react';
44
import {FormApi, Text} from 'react-form';
55
import {
@@ -381,7 +381,7 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
381381
if (!updatedApp.spec.syncPolicy) {
382382
updatedApp.spec.syncPolicy = {};
383383
}
384-
updatedApp.spec.syncPolicy.automated = {prune, selfHeal};
384+
updatedApp.spec.syncPolicy.automated = {prune, selfHeal, enabled: true};
385385
await updateApp(updatedApp, {validate: false});
386386
} catch (e) {
387387
ctx.notifications.show({
@@ -529,6 +529,39 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
529529

530530
{app.spec.syncPolicy && app.spec.syncPolicy.automated && (
531531
<React.Fragment>
532+
<div className='row white-box__details-row'>
533+
<div className='columns small-12'>
534+
<div className='checkbox-container'>
535+
<Checkbox
536+
onChange={async (val: boolean) => {
537+
const confirmed = await ctx.popup.confirm(
538+
val ? 'Enable Auto-Sync?' : 'Disable Auto-Sync?',
539+
val
540+
? 'If checked, application will automatically sync when changes are detected'
541+
: 'Are you sure you want to disable automated application synchronization'
542+
);
543+
if (confirmed) {
544+
const updatedApp = JSON.parse(JSON.stringify(props.app)) as models.Application;
545+
const currentAutomated = updatedApp.spec.syncPolicy?.automated || {prune: false, selfHeal: false};
546+
547+
updatedApp.spec.syncPolicy = updatedApp.spec.syncPolicy || {};
548+
updatedApp.spec.syncPolicy.automated = {
549+
prune: currentAutomated.prune,
550+
selfHeal: currentAutomated.selfHeal,
551+
enabled: val
552+
};
553+
554+
await updateApp(updatedApp, {validate: false});
555+
}
556+
}}
557+
checked={!!app.spec.syncPolicy?.automated?.enabled}
558+
id='enable-auto-sync'
559+
/>
560+
<label htmlFor='enable-auto-sync'>ENABLE AUTO-SYNC</label>
561+
<HelpIcon title='If checked, application will automatically sync when changes are detected' />
562+
</div>
563+
</div>
564+
</div>
532565
<div className='row white-box__details-row'>
533566
<div className='columns small-3'>PRUNE RESOURCES</div>
534567
<div className='columns small-9'>

ui/src/app/shared/models.ts

+1
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ export interface ApplicationSourceDirectory {
290290
export interface Automated {
291291
prune: boolean;
292292
selfHeal: boolean;
293+
enabled: boolean;
293294
}
294295

295296
export interface SyncPolicy {

0 commit comments

Comments
 (0)