-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
feat(sampledata): Route from buckets index to Data Explorer #17085
Conversation
b1e76e8
to
a55f597
Compare
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.
This is siiiicccckkkk!! (I actually said, "sick!!" out loud when I clicked the bucket name and was taken to Explorer with it selected)
Delightful!
@@ -119,7 +128,7 @@ export default class BucketOverlayForm extends PureComponent<Props> { | |||
|
|||
private get nameHelpText(): string { | |||
if (this.props.disableRenaming) { | |||
return 'To rename the bucket use the RENAME button. Bucket renaming is not allowed here.' | |||
return 'To rename bucket use the RENAME button below' |
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.
👍
|
||
props.onSetActiveTimeMachine('de') | ||
const DataExplorer: FC<Props> = ({ |
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.
just want to call out that switching from a PureComponent
to a FunctionComponent
might have performance implications since a FC
always renders, while a PureComponent
sometimes doesn't re-render. I don't have enough context to provide anything more helpful than that :|
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.
thanks.. I'll test it a bit..
* feat(sampledata): Add routing to de from bucket name * feat(sampledata): Change rename edit bucket flow * feat(sampledata): Add onclick behavior to system buckets * feat(sampledata): Move rename button * feat(sampledata): Remove rename bucket button from create bucket overlay * feat(sampledata): Fix bucket tests * feat(sampledata): Update changelog
Closes #https://github.com/influxdata/idpe/issues/6103