|
1 | 1 | /* 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'; |
3 | 3 | import * as React from 'react';
|
4 | 4 | import {FormApi, Text} from 'react-form';
|
5 | 5 | import {
|
@@ -381,7 +381,7 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
|
381 | 381 | if (!updatedApp.spec.syncPolicy) {
|
382 | 382 | updatedApp.spec.syncPolicy = {};
|
383 | 383 | }
|
384 |
| - updatedApp.spec.syncPolicy.automated = {prune, selfHeal}; |
| 384 | + updatedApp.spec.syncPolicy.automated = {prune, selfHeal, enabled: true}; |
385 | 385 | await updateApp(updatedApp, {validate: false});
|
386 | 386 | } catch (e) {
|
387 | 387 | ctx.notifications.show({
|
@@ -529,6 +529,39 @@ export const ApplicationSummary = (props: ApplicationSummaryProps) => {
|
529 | 529 |
|
530 | 530 | {app.spec.syncPolicy && app.spec.syncPolicy.automated && (
|
531 | 531 | <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> |
532 | 565 | <div className='row white-box__details-row'>
|
533 | 566 | <div className='columns small-3'>PRUNE RESOURCES</div>
|
534 | 567 | <div className='columns small-9'>
|
|
0 commit comments