mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary Fixes https://github.com/elastic/kibana/issues/141129 Fixes https://github.com/elastic/kibana/issues/144515 This PR introduces a new state to the guided onboarding plugin. The state keeps track of the `creationDate` and of the overall `status` of the plugin. The creation date allows us to detect an "active" period during which the header button will be displayed more prominently in the header. Currently, the active period is set to 30 days. During this time, if the user has not started any guide, has quit a guide before completion or skipped the guide on the landing page, the header button will be displayed and when clicked, redirect the user to the landing page to start/continue a guide. Also this PR adds a check for Cloud deployments and prevents the code from sending any API requests when not on Cloud, because guided onboarding is disabled on prem. #### Screenshot <img width="298" alt="Screenshot 2022-11-10 at 18 42 18" src="https://user-images.githubusercontent.com/6585477/201168414-391a7cd4-0709-492b-9001-1432b5bed3c8.png"> ### Checklist - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
17 lines
709 B
TypeScript
17 lines
709 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import type { FtrProviderContext } from '../../ftr_provider_context';
|
|
|
|
export default function apiIntegrationTests({ loadTestFile }: FtrProviderContext) {
|
|
describe('guided onboarding', () => {
|
|
loadTestFile(require.resolve('./get_state'));
|
|
loadTestFile(require.resolve('./put_state'));
|
|
loadTestFile(require.resolve('./get_guides'));
|
|
});
|
|
}
|