mirror of https://github.com/grafana/grafana
CloudMigrations: Remove public preview banner (#102354)
parent
b8c627c566
commit
20f9902ed5
@ -1,48 +1,9 @@ |
||||
import { config } from '@grafana/runtime'; |
||||
import { Alert, TextLink } from '@grafana/ui'; |
||||
import { Page } from 'app/core/components/Page/Page'; |
||||
|
||||
import { Trans, t } from '../../core/internationalization'; |
||||
|
||||
import { Page as CloudPage } from './cloud/Page'; |
||||
import { Page as OnPremPage } from './onprem/Page'; |
||||
|
||||
export default function MigrateToCloud() { |
||||
const feedbackURL = config.cloudMigrationFeedbackURL; |
||||
return ( |
||||
<Page navId="migrate-to-cloud"> |
||||
<Alert |
||||
title={t('migrate-to-cloud.public-preview.title', 'Migrate to Grafana Cloud is in public preview')} |
||||
buttonContent={t('migrate-to-cloud.public-preview.button-text', 'Give feedback')} |
||||
severity={'info'} |
||||
onRemove={ |
||||
feedbackURL |
||||
? () => { |
||||
window.open(feedbackURL, '_blank'); |
||||
} |
||||
: undefined |
||||
} |
||||
> |
||||
<Trans i18nKey="migrate-to-cloud.public-preview.message"> |
||||
<TextLink |
||||
href="https://grafana.com/docs/grafana-cloud/account-management/migration-guide/cloud-migration-assistant/" |
||||
external |
||||
> |
||||
Visit our docs |
||||
</TextLink>{' '} |
||||
to learn more about this feature! |
||||
</Trans> |
||||
{config.cloudMigrationIsTarget && ( |
||||
<> |
||||
|
||||
<Trans i18nKey="migrate-to-cloud.public-preview.message-cloud"> |
||||
Your self-managed instance of Grafana requires version 11.5+, or 11.2+ with the onPremToCloudMigrations |
||||
feature flag enabled. |
||||
</Trans> |
||||
</> |
||||
)} |
||||
</Alert> |
||||
{config.cloudMigrationIsTarget ? <CloudPage /> : <OnPremPage />} |
||||
</Page> |
||||
); |
||||
return <Page navId="migrate-to-cloud">{config.cloudMigrationIsTarget ? <CloudPage /> : <OnPremPage />}</Page>; |
||||
} |
||||
|
Loading…
Reference in new issue