-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into otel-integration-dashboard-update
- Loading branch information
Showing
186 changed files
with
12,565 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
public/components/getting_started/components/getting_started.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { EuiPage, EuiPageBody, EuiSpacer } from '@elastic/eui'; | ||
import React, { useEffect, useState } from 'react'; | ||
import { HomeProps } from 'public/components/getting_started/home'; | ||
import { GettingStartedConnectionsHeader } from './getting_started_header'; | ||
import { CollectAndShipData } from './getting_started_collectData'; | ||
import { QueryAndAnalyze } from './getting_started_queryAndAnalyze'; | ||
|
||
export const NewGettingStarted = (props: HomeProps) => { | ||
const { chrome } = props; | ||
const [selectedSource, setSelectedSource] = useState(''); | ||
const [isPickYourSourceOpen, setIsPickYourSourceOpen] = useState(true); | ||
const [isQueryDataOpen, setIsQueryDataOpen] = useState(false); | ||
const [indexPatterns, setIndexPatterns] = useState<string[]>([]); | ||
const [isSampleDataset, setIsSampleDataset] = useState(false); // New state | ||
|
||
useEffect(() => { | ||
chrome.setBreadcrumbs([ | ||
{ | ||
text: 'Getting Started', | ||
href: '#/', | ||
}, | ||
]); | ||
}, []); | ||
|
||
const handleSelectSource = (source: string) => { | ||
setSelectedSource(source); | ||
}; | ||
|
||
const togglePickYourSource = (isOpen: boolean) => { | ||
setIsPickYourSourceOpen(isOpen); | ||
if (isOpen) { | ||
setIsQueryDataOpen(false); | ||
} | ||
}; | ||
|
||
const toggleQueryData = (isOpen: boolean) => { | ||
setIsQueryDataOpen(isOpen); | ||
}; | ||
|
||
const setQueryDataOpen = (patterns: string[]) => { | ||
setIsPickYourSourceOpen(false); | ||
setIsQueryDataOpen(true); | ||
setIndexPatterns(patterns); | ||
}; | ||
|
||
const handleCardSelectionChange = (isSample: boolean) => { | ||
setIsSampleDataset(isSample); | ||
}; | ||
|
||
return ( | ||
<EuiPage> | ||
<EuiPageBody component="div"> | ||
<GettingStartedConnectionsHeader /> | ||
<EuiSpacer size="l" /> | ||
<CollectAndShipData | ||
isOpen={isPickYourSourceOpen} | ||
onToggle={togglePickYourSource} | ||
selectedTechnology={selectedSource} | ||
onMoveToQueryData={setQueryDataOpen} | ||
onSelectSource={handleSelectSource} | ||
onCardSelectionChange={handleCardSelectionChange} | ||
/> | ||
<EuiSpacer size="l" /> | ||
{!isSampleDataset && ( | ||
<QueryAndAnalyze | ||
isOpen={isQueryDataOpen} | ||
onToggle={toggleQueryData} | ||
selectedTechnology={selectedSource} | ||
indexPatterns={indexPatterns} | ||
/> | ||
)} | ||
</EuiPageBody> | ||
</EuiPage> | ||
); | ||
}; |
Oops, something went wrong.