-
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.
* adding span sync badge on waterfall and flyout Co-authored-by: Brittany Joiner <[email protected]>
- Loading branch information
1 parent
67f4e3e
commit 0c47b39
Showing
4 changed files
with
94 additions
and
0 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
44 changes: 44 additions & 0 deletions
44
...ansactionDetails/WaterfallWithSummmary/WaterfallContainer/Waterfall/SyncBadge.stories.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,44 @@ | ||
/* | ||
* 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 { storiesOf } from '@storybook/react'; | ||
import React from 'react'; | ||
import { SyncBadge } from './SyncBadge'; | ||
|
||
storiesOf('app/TransactionDetails/SyncBadge', module) | ||
.add( | ||
'sync=true', | ||
() => { | ||
return <SyncBadge sync={true} />; | ||
}, | ||
{ | ||
info: { | ||
source: false | ||
} | ||
} | ||
) | ||
.add( | ||
'sync=false', | ||
() => { | ||
return <SyncBadge sync={false} />; | ||
}, | ||
{ | ||
info: { | ||
source: false | ||
} | ||
} | ||
) | ||
.add( | ||
'sync=undefined', | ||
() => { | ||
return <SyncBadge />; | ||
}, | ||
{ | ||
info: { | ||
source: false | ||
} | ||
} | ||
); |
46 changes: 46 additions & 0 deletions
46
...s/app/TransactionDetails/WaterfallWithSummmary/WaterfallContainer/Waterfall/SyncBadge.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,46 @@ | ||
/* | ||
* 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 { EuiBadge } from '@elastic/eui'; | ||
import { i18n } from '@kbn/i18n'; | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
import { px, units } from '../../../../../../style/variables'; | ||
|
||
const SpanBadge = styled(EuiBadge)` | ||
display: inline-block; | ||
margin-right: ${px(units.quarter)}; | ||
`; | ||
|
||
interface SyncBadgeProps { | ||
/** | ||
* Is the request synchronous? True will show blocking, false will show async. | ||
*/ | ||
sync?: boolean; | ||
} | ||
|
||
export function SyncBadge({ sync }: SyncBadgeProps) { | ||
switch (sync) { | ||
case true: | ||
return ( | ||
<SpanBadge> | ||
{i18n.translate('xpack.apm.transactionDetails.syncBadgeBlocking', { | ||
defaultMessage: 'blocking' | ||
})} | ||
</SpanBadge> | ||
); | ||
case false: | ||
return ( | ||
<SpanBadge> | ||
{i18n.translate('xpack.apm.transactionDetails.syncBadgeAsync', { | ||
defaultMessage: 'async' | ||
})} | ||
</SpanBadge> | ||
); | ||
default: | ||
return null; | ||
} | ||
} |
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