mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
3a31326199
* add fallback image/card for collectibles when image was not fetched correctly or does not exist * UI and storybook updates (#15071) * UI and storybook updates * Adding break so token id is displayed * subtle border fix * Updating content * Removing unused image * Adding proptype descriptions * Lint fix Co-authored-by: George Marshall <george.marshall@consensys.net>
43 lines
874 B
JavaScript
43 lines
874 B
JavaScript
import React from 'react';
|
|
import CollectibleDefaultImage from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/CollectibleDefaultImage',
|
|
id: __filename,
|
|
argTypes: {
|
|
name: {
|
|
control: 'text',
|
|
},
|
|
tokenId: {
|
|
control: 'text',
|
|
},
|
|
handleImageClick: {
|
|
action: 'handleImageClick',
|
|
},
|
|
},
|
|
args: {
|
|
name: null,
|
|
tokenId: '12345',
|
|
handleImageClick: null,
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => (
|
|
<div style={{ width: 200, height: 200 }}>
|
|
<CollectibleDefaultImage {...args} />
|
|
</div>
|
|
);
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const handleImageClick = (args) => (
|
|
<div style={{ width: 200, height: 200 }}>
|
|
<CollectibleDefaultImage {...args} />
|
|
</div>
|
|
);
|
|
|
|
handleImageClick.args = {
|
|
// eslint-disable-next-line no-alert
|
|
handleImageClick: () => window.alert('CollectibleDefaultImage clicked!'),
|
|
};
|