import { Tabs, Typography } from 'antd'; import React, { useState } from 'react'; import styled from 'styled-components'; import { IngestionSourceList } from './source/IngestionSourceList'; import { SecretsList } from './secret/SecretsList'; import { OnboardingTour } from '../onboarding/OnboardingTour'; import { INGESTION_CREATE_SOURCE_ID, INGESTION_REFRESH_SOURCES_ID, } from '../onboarding/config/IngestionOnboardingConfig'; const PageContainer = styled.div` padding-top: 20px; `; const PageHeaderContainer = styled.div` && { padding-left: 24px; } `; const PageTitle = styled(Typography.Title)` && { margin-bottom: 12px; } `; const StyledTabs = styled(Tabs)` &&& .ant-tabs-nav { margin-bottom: 0; padding-left: 28px; } `; const Tab = styled(Tabs.TabPane)` font-size: 14px; line-height: 22px; `; const ListContainer = styled.div``; enum TabType { Sources = 'Sources', Secrets = 'Secrets', } export const ManageIngestionPage = () => { /** * Determines which view should be visible: ingestion sources or secrets. */ const [selectedTab, setSelectedTab] = useState(TabType.Sources); const onClickTab = (newTab: string) => { setSelectedTab(TabType[newTab]); }; return ( Manage Data Sources Configure and schedule syncs to import data from your data sources onClickTab(tab)}> {selectedTab === TabType.Sources ? : } ); };