49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
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>
|
|
);
|
|
}
|