2022-01-27 10:33:12 -08:00
|
|
|
import { Tabs, Typography } from 'antd';
|
|
|
|
import React, { useState } from 'react';
|
|
|
|
import styled from 'styled-components';
|
|
|
|
import { IngestionSourceList } from './source/IngestionSourceList';
|
2024-07-22 20:25:12 +05:30
|
|
|
import { useAppConfig } from '../useAppConfig';
|
|
|
|
import { useUserContext } from '../context/useUserContext';
|
2022-01-27 10:33:12 -08:00
|
|
|
import { SecretsList } from './secret/SecretsList';
|
2022-12-07 16:21:55 -08:00
|
|
|
import { OnboardingTour } from '../onboarding/OnboardingTour';
|
|
|
|
import {
|
|
|
|
INGESTION_CREATE_SOURCE_ID,
|
|
|
|
INGESTION_REFRESH_SOURCES_ID,
|
|
|
|
} from '../onboarding/config/IngestionOnboardingConfig';
|
2022-01-27 10:33:12 -08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2024-07-22 20:25:12 +05:30
|
|
|
const me = useUserContext();
|
|
|
|
const { config } = useAppConfig();
|
|
|
|
const isIngestionEnabled = config?.managedIngestionConfig.enabled;
|
|
|
|
const showIngestionTab = isIngestionEnabled && me && me.platformPrivileges?.manageIngestion;
|
|
|
|
const showSecretsTab = isIngestionEnabled && me && me.platformPrivileges?.manageSecrets;
|
|
|
|
const defaultTab = showIngestionTab ? TabType.Sources : TabType.Secrets;
|
|
|
|
const [selectedTab, setSelectedTab] = useState<TabType>(defaultTab);
|
2022-01-27 10:33:12 -08:00
|
|
|
|
|
|
|
const onClickTab = (newTab: string) => {
|
|
|
|
setSelectedTab(TabType[newTab]);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2022-07-01 18:08:08 -04:00
|
|
|
<PageContainer>
|
2022-12-07 16:21:55 -08:00
|
|
|
<OnboardingTour stepIds={[INGESTION_CREATE_SOURCE_ID, INGESTION_REFRESH_SOURCES_ID]} />
|
2022-07-01 18:08:08 -04:00
|
|
|
<PageHeaderContainer>
|
2024-07-01 16:43:21 -07:00
|
|
|
<PageTitle level={3}>Manage Data Sources</PageTitle>
|
2022-07-01 18:08:08 -04:00
|
|
|
<Typography.Paragraph type="secondary">
|
2024-07-01 16:43:21 -07:00
|
|
|
Configure and schedule syncs to import data from your data sources
|
2022-07-01 18:08:08 -04:00
|
|
|
</Typography.Paragraph>
|
|
|
|
</PageHeaderContainer>
|
|
|
|
<StyledTabs activeKey={selectedTab} size="large" onTabClick={(tab: string) => onClickTab(tab)}>
|
2024-07-22 20:25:12 +05:30
|
|
|
{showIngestionTab && <Tab key={TabType.Sources} tab={TabType.Sources} />}
|
|
|
|
{showSecretsTab && <Tab key={TabType.Secrets} tab={TabType.Secrets} />}
|
2022-07-01 18:08:08 -04:00
|
|
|
</StyledTabs>
|
|
|
|
<ListContainer>{selectedTab === TabType.Sources ? <IngestionSourceList /> : <SecretsList />}</ListContainer>
|
|
|
|
</PageContainer>
|
2022-01-27 10:33:12 -08:00
|
|
|
);
|
|
|
|
};
|