-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
feat(spans-migration): add warning UI for dropped fields. #101364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
735c96d
warning for span widgets
nikkikapadia 1ff1bdf
Merge branch 'master' into nikki/feat/dropped-fields-warnings
nikkikapadia f14f287
add explore dropped fields warning banner
nikkikapadia 3c60394
fix widget dropped columns tooltip content
nikkikapadia 18cfa2f
fix widget dropped columns tooltip content
nikkikapadia 71fd502
change up wording a little
nikkikapadia fdbe9bc
change typing
nikkikapadia 004b7ca
cursor fixes
nikkikapadia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,86 @@ | ||
import styled from '@emotion/styled'; | ||
|
||
import {Alert} from 'sentry/components/core/alert'; | ||
import {Text} from 'sentry/components/core/text'; | ||
import List from 'sentry/components/list'; | ||
import ListItem from 'sentry/components/list/listItem'; | ||
import {t, tct} from 'sentry/locale'; | ||
import {useExploreId} from 'sentry/views/explore/contexts/pageParamsContext'; | ||
import {useGetSavedQuery} from 'sentry/views/explore/hooks/useGetSavedQueries'; | ||
|
||
export function DroppedFieldsAlert(): React.JSX.Element | null { | ||
const id = useExploreId(); | ||
const {data: savedQuery} = useGetSavedQuery(id); | ||
|
||
if (!savedQuery) { | ||
return null; | ||
} | ||
|
||
if (!savedQuery.changedReason) { | ||
return null; | ||
} | ||
|
||
const baseWarning = t( | ||
"This query may look different from the original query. Here's why:" | ||
); | ||
const columnsWarning = []; | ||
const equationsWarning = []; | ||
const orderbyWarning = []; | ||
|
||
const changedReason = savedQuery.changedReason; | ||
if (changedReason.columns.length > 0) { | ||
columnsWarning.push( | ||
tct(`The following fields were dropped: [columns]`, { | ||
columns: changedReason.columns.join(', '), | ||
}) | ||
); | ||
} | ||
if (changedReason.equations) { | ||
equationsWarning.push( | ||
...changedReason.equations.map(equation => | ||
tct(`[equation] was dropped because [reason] is unsupported`, { | ||
equation: equation.equation, | ||
reason: | ||
typeof equation.reason === 'string' | ||
? equation.reason | ||
: equation.reason.join(', '), | ||
}) | ||
) | ||
); | ||
} | ||
if (changedReason.orderby) { | ||
orderbyWarning.push( | ||
...changedReason.orderby.map(equation => | ||
tct(`[orderby] was dropped because [reason]`, { | ||
orderby: equation.orderby, | ||
reason: equation.reason, | ||
}) | ||
) | ||
); | ||
} | ||
|
||
const allWarnings = [...columnsWarning, ...equationsWarning, ...orderbyWarning]; | ||
|
||
if (allWarnings.length > 0) { | ||
return ( | ||
<StyledAlert type="warning"> | ||
<StyledText as="p">{baseWarning}</StyledText> | ||
<List symbol="bullet"> | ||
{allWarnings.map((warning, index) => ( | ||
<ListItem key={index}>{warning}</ListItem> | ||
))} | ||
</List> | ||
</StyledAlert> | ||
); | ||
} | ||
|
||
return null; | ||
} | ||
|
||
const StyledText = styled(Text)` | ||
padding-bottom: ${p => p.theme.space.xs}; | ||
`; | ||
|
||
const StyledAlert = styled(Alert)` | ||
margin-bottom: ${p => p.theme.space.md}; | ||
`; |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Type Mismatch in Warnings Array
The
warnings
array is cast asstring[]
, butdroppedColumnsWarning
(andtransactionsDeprecationWarning
) returnReact.JSX.Element | null
. This type mismatch could cause runtime issues.