Skip to content
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(ui): add ShareTimeRangeButton component #156

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

eskirk
Copy link

@eskirk eskirk commented Mar 21, 2025

moving from grafana/grafana#100940 to here

What is this feature?

this feature adds a reusable "Share Time Range" button component to the grafana-ui package. this button shares the current URL with the from and to query parameters changed from relative time to absolute time.

Why do we need this feature?

many plugins and other areas of Grafana leverage relative time for basic use, but when it comes to sharing that view with others, copying the URL falls short since the link effectively expires after a a short time.

this button provides a universal way of sharing a snapshot of time easily and across many areas of Grafana.

Who is this feature for?

developers who want to make it easier to URLs in their plugins

Special notes for your reviewer:

Please check that:

  • It works as expected from a user's perspective.
  • If this is a pre-GA feature, it is behind a feature toggle.
  • The docs are updated, and if this is a notable improvement, it's added to our What's New doc.
image

@eskirk eskirk requested a review from a team as a code owner March 21, 2025 23:49
Copy link
Member

@ivanahuckova ivanahuckova left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Left some comments bellow - mainly related to relative imports that should be now imported in grafana/ui, as these are not going to be accessible in this package anymore.

I am also wondering, if you've tried to build and test this locally because currently it throws a lot of errors

image

Comment on lines +6 to +14
import { useStyles2 } from '../../themes';
import { copyText } from '../../utils/clipboard';
import { t, Trans } from '../../utils/i18n';
import { absoluteTimeRangeURL } from '../../utils/time';
import { Button, ButtonGroup, type ButtonProps } from '../Button';
import { ClipboardButton } from '../ClipboardButton/ClipboardButton';
import { Dropdown } from '../Dropdown/Dropdown';
import { Menu } from '../Menu/Menu';
import { type MenuItemElement } from '../Menu/MenuItem';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These all are no longer accessible through relative path and you need to import them from @grafana/ui

@@ -0,0 +1,110 @@
import { css } from '@emotion/css';
import { useRef, useState } from 'react';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
import { useRef, useState } from 'react';
import React, { useRef, useState } from 'react';

@eskirk eskirk marked this pull request as draft March 28, 2025 01:07
@eskirk
Copy link
Author

eskirk commented Mar 28, 2025

hey @ivanahuckova sorry I have converted this to a draft. I have not tried building/running it in this repo, I just moved this over from a grafana/grafana PR and have not had time to work on it. should be able to do that this week.

thanks for taking a look 🤝

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants