Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | 5x 5x 5x 5x 5x 5x 5x 5x 59x 59x 6x 6x 5x | /*
* Copyright 2021 Harness Inc. All rights reserved.
* Use of this source code is governed by the PolyForm Shield 1.0.0 license
* that can be found in the licenses directory at the root of this repository, also available at
* https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt.
*/
import React from 'react'
import { Layout, Tabs, Tab, Text, HarnessDocTooltip } from '@wings-software/uicore'
import cx from 'classnames'
import { useStrings } from 'framework/strings'
import { MinutesTab, HourlyTab, DailyTab, WeeklyTab, MonthlyTab, YearlyTab, CustomTab } from './subviews'
import { scheduleTabsId, getDefaultExpressionBreakdownValues } from './subviews/ScheduleUtils'
import css from './SchedulePanel.module.scss'
interface SchedulePanelPropsInterface {
formikProps?: any
isEdit?: boolean
}
const SchedulePanel: React.FC<SchedulePanelPropsInterface> = ({
formikProps: {
values: { selectedScheduleTab },
values
},
formikProps,
isEdit = false
}): JSX.Element => {
const { getString } = useStrings()
return (
<Layout.Vertical className={cx(css.schedulePanelContainer)} spacing="large" padding="xxlarge">
<Text className={css.formContentTitle} inline={true}>
{getString('triggers.schedulePanel.title')}
<HarnessDocTooltip tooltipId="schedulePanel" useStandAlone={true} />
</Text>
<Layout.Vertical className={css.formContent}>
<Tabs
id="Wizard"
onChange={(val: string) => {
const newDefaultValues = selectedScheduleTab !== val ? getDefaultExpressionBreakdownValues(val) : {}
formikProps.setValues({ ...values, ...newDefaultValues, selectedScheduleTab: val })
}}
defaultSelectedTabId={selectedScheduleTab}
>
{!isEdit && (
<Tab
id={scheduleTabsId.MINUTES}
title={getString('triggers.schedulePanel.minutesLabel')}
panel={<MinutesTab formikProps={formikProps} />}
/>
)}
{!isEdit && (
<Tab
id={scheduleTabsId.HOURLY}
title={getString('triggers.schedulePanel.hourlyTabTitle')}
panel={<HourlyTab formikProps={formikProps} />}
/>
)}
{!isEdit && (
<Tab
id={scheduleTabsId.DAILY}
title={getString('triggers.schedulePanel.dailyTabTitle')}
panel={<DailyTab formikProps={formikProps} />}
/>
)}
{!isEdit && (
<Tab
id={scheduleTabsId.WEEKLY}
title={getString('triggers.schedulePanel.weeklyTabTitle')}
panel={<WeeklyTab formikProps={formikProps} />}
/>
)}
{!isEdit && (
<Tab
id={scheduleTabsId.MONTHLY}
title={getString('triggers.schedulePanel.monthlyTabTitle')}
panel={<MonthlyTab formikProps={formikProps} />}
/>
)}
{!isEdit && (
<Tab
id={scheduleTabsId.YEARLY}
title={getString('triggers.schedulePanel.yearlyTabTitle')}
panel={<YearlyTab formikProps={formikProps} />}
/>
)}
<Tab
id={scheduleTabsId.CUSTOM}
title={getString('common.repo_provider.customLabel')}
panel={<CustomTab formikProps={formikProps} />}
/>
</Tabs>
</Layout.Vertical>
</Layout.Vertical>
)
}
export default SchedulePanel
|