-
Notifications
You must be signed in to change notification settings - Fork 3
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
base: main
Are you sure you want to change the base?
Conversation
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.
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'; |
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.
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'; |
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.
import { useRef, useState } from 'react'; | |
import React, { useRef, useState } from 'react'; |
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 thanks for taking a look 🤝 |
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
andto
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: