Merge pull request #19491 from storybookjs/deprecate/getSelection

remove storyStore.getSelection
This commit is contained in:
Norbert de Langen 2022-10-17 10:47:36 +03:00 committed by GitHub
commit 36e25033a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 13 deletions

View File

@ -17,7 +17,6 @@ jest.mock('global', () => ({
// @ts-expect-error (Converted from ts-ignore)
window: global,
__STORYBOOK_STORY_STORE__: {
getSelection: jest.fn(() => ({ id: 1 })),
fromId: jest.fn(() => ({})),
},
}));

View File

@ -1,4 +1,3 @@
import deprecate from 'util-deprecate';
import { dedent } from 'ts-dedent';
import global from 'global';
import {
@ -72,17 +71,6 @@ export class PreviewWeb<TFramework extends AnyFramework> extends Preview<TFramew
this.view = new WebView();
this.urlStore = new UrlStore();
// Add deprecated APIs for back-compat
// @ts-expect-error (Converted from ts-ignore)
this.storyStore.getSelection = deprecate(
() => this.urlStore.selection,
dedent`
\`__STORYBOOK_STORY_STORE__.getSelection()\` is deprecated and will be removed in 7.0.
To get the current selection, use the \`useStoryContext()\` hook from \`@storybook/addons\`.
`
);
}
setupListeners() {