Addon-links: Fix return type of linkTo and examples (#8975)

Addon-links: Fix return type of linkTo and examples
This commit is contained in:
Norbert de Langen 2019-11-27 13:44:03 +01:00 committed by GitHub
commit 555a67e7ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ const valueOrCall = (args: string[]) => (value: string | ((...args: string[]) =>
export const linkTo = ( export const linkTo = (
idOrKindInput: string, idOrKindInput: string,
storyInput?: string | ((...args: any[]) => string) storyInput?: string | ((...args: any[]) => string)
) => (...args: string[]) => { ) => (...args: any[]) => {
const resolver = valueOrCall(args); const resolver = valueOrCall(args);
const { storyId } = storyStore.getSelection(); const { storyId } = storyStore.getSelection();
const current = storyStore.fromId(storyId) || {}; const current = storyStore.fromId(storyId) || {};

View File

@ -6,13 +6,13 @@ export default {
}; };
export const First = () => ( export const First = () => (
<button type="button" onClick={linkTo('Addons|Links.Button', 'Second')}> <button type="button" onClick={linkTo('Addons/Links/Button', 'Second')}>
Go to "Second" Go to "Second"
</button> </button>
); );
export const Second = () => ( export const Second = () => (
<button type="button" onClick={linkTo('Addons|Links.Button', 'First')}> <button type="button" onClick={linkTo('Addons/Links/Button', 'First')}>
Go to "First" Go to "First"
</button> </button>
); );