-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
- Loading branch information
1 parent
8d109c7
commit 6fd8e33
Showing
20 changed files
with
1,032 additions
and
14 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,7 +118,6 @@ export function CoreVitalItem({ | |
setInFocusInd(ind); | ||
}} | ||
/> | ||
<EuiSpacer size="xl" /> | ||
</> | ||
); | ||
} |
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
183 changes: 183 additions & 0 deletions
183
x-pack/plugins/apm/public/components/app/RumDashboard/VisitorBreakdownMap/EmbeddedMap.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,183 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import React, { useEffect, useState, useRef } from 'react'; | ||
import uuid from 'uuid'; | ||
import styled from 'styled-components'; | ||
|
||
import { | ||
MapEmbeddable, | ||
MapEmbeddableInput, | ||
// eslint-disable-next-line @kbn/eslint/no-restricted-paths | ||
} from '../../../../../../maps/public/embeddable'; | ||
import { MAP_SAVED_OBJECT_TYPE } from '../../../../../../maps/common/constants'; | ||
import { useKibana } from '../../../../../../../../src/plugins/kibana_react/public'; | ||
import { | ||
ErrorEmbeddable, | ||
ViewMode, | ||
isErrorEmbeddable, | ||
} from '../../../../../../../../src/plugins/embeddable/public'; | ||
import { getLayerList } from './LayerList'; | ||
import { useUrlParams } from '../../../../hooks/useUrlParams'; | ||
import { RenderTooltipContentParams } from '../../../../../../maps/public'; | ||
import { MapToolTip } from './MapToolTip'; | ||
import { useMapFilters } from './useMapFilters'; | ||
import { EmbeddableStart } from '../../../../../../../../src/plugins/embeddable/public'; | ||
|
||
const EmbeddedPanel = styled.div` | ||
z-index: auto; | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
position: relative; | ||
.embPanel__content { | ||
display: flex; | ||
flex: 1 1 100%; | ||
z-index: 1; | ||
min-height: 0; // Absolute must for Firefox to scroll contents | ||
} | ||
&&& .mapboxgl-canvas { | ||
animation: none !important; | ||
} | ||
`; | ||
|
||
interface KibanaDeps { | ||
embeddable: EmbeddableStart; | ||
} | ||
export function EmbeddedMapComponent() { | ||
const { urlParams } = useUrlParams(); | ||
|
||
const { start, end, serviceName } = urlParams; | ||
|
||
const mapFilters = useMapFilters(); | ||
|
||
const [embeddable, setEmbeddable] = useState< | ||
MapEmbeddable | ErrorEmbeddable | undefined | ||
>(); | ||
|
||
const embeddableRoot: React.RefObject<HTMLDivElement> = useRef< | ||
HTMLDivElement | ||
>(null); | ||
|
||
const { | ||
services: { embeddable: embeddablePlugin }, | ||
} = useKibana<KibanaDeps>(); | ||
|
||
if (!embeddablePlugin) { | ||
throw new Error('Embeddable start plugin not found'); | ||
} | ||
const factory: any = embeddablePlugin.getEmbeddableFactory( | ||
MAP_SAVED_OBJECT_TYPE | ||
); | ||
|
||
const input: MapEmbeddableInput = { | ||
id: uuid.v4(), | ||
filters: mapFilters, | ||
refreshConfig: { | ||
value: 0, | ||
pause: false, | ||
}, | ||
viewMode: ViewMode.VIEW, | ||
isLayerTOCOpen: false, | ||
query: { | ||
query: 'transaction.type : "page-load"', | ||
language: 'kuery', | ||
}, | ||
...(start && { | ||
timeRange: { | ||
from: new Date(start!).toISOString(), | ||
to: new Date(end!).toISOString(), | ||
}, | ||
}), | ||
hideFilterActions: true, | ||
}; | ||
|
||
function renderTooltipContent({ | ||
addFilters, | ||
closeTooltip, | ||
features, | ||
isLocked, | ||
getLayerName, | ||
loadFeatureProperties, | ||
loadFeatureGeometry, | ||
}: RenderTooltipContentParams) { | ||
const props = { | ||
addFilters, | ||
closeTooltip, | ||
isLocked, | ||
getLayerName, | ||
loadFeatureProperties, | ||
loadFeatureGeometry, | ||
}; | ||
|
||
return <MapToolTip {...props} features={features} />; | ||
} | ||
|
||
useEffect(() => { | ||
if (embeddable != null && serviceName) { | ||
embeddable.updateInput({ filters: mapFilters }); | ||
} | ||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [mapFilters]); | ||
|
||
// DateRange updated useEffect | ||
useEffect(() => { | ||
if (embeddable != null && start != null && end != null) { | ||
const timeRange = { | ||
from: new Date(start).toISOString(), | ||
to: new Date(end).toISOString(), | ||
}; | ||
embeddable.updateInput({ timeRange }); | ||
} | ||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [start, end]); | ||
|
||
useEffect(() => { | ||
async function setupEmbeddable() { | ||
if (!factory) { | ||
throw new Error('Map embeddable not found.'); | ||
} | ||
const embeddableObject: any = await factory.create({ | ||
...input, | ||
title: 'Visitors by region', | ||
}); | ||
|
||
if (embeddableObject && !isErrorEmbeddable(embeddableObject)) { | ||
embeddableObject.setRenderTooltipContent(renderTooltipContent); | ||
await embeddableObject.setLayerList(getLayerList()); | ||
} | ||
|
||
setEmbeddable(embeddableObject); | ||
} | ||
|
||
setupEmbeddable(); | ||
|
||
// we want this effect to execute exactly once after the component mounts | ||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, []); | ||
|
||
// We can only render after embeddable has already initialized | ||
useEffect(() => { | ||
if (embeddableRoot.current && embeddable) { | ||
embeddable.render(embeddableRoot.current); | ||
} | ||
}, [embeddable, embeddableRoot]); | ||
|
||
return ( | ||
<EmbeddedPanel> | ||
<div | ||
data-test-subj="xpack.apm.regionMap.embeddedPanel" | ||
className="embPanel__content" | ||
ref={embeddableRoot} | ||
/> | ||
</EmbeddedPanel> | ||
); | ||
} | ||
|
||
EmbeddedMapComponent.displayName = 'EmbeddedMap'; | ||
|
||
export const EmbeddedMap = React.memo(EmbeddedMapComponent); |
Oops, something went wrong.