2022-08-03 16:56:11 +02:00
|
|
|
import React from 'react';
|
|
|
|
import testData from '../../../../../.storybook/test-data';
|
|
|
|
import SignatureRequestSIWEHeader from '.';
|
|
|
|
|
|
|
|
const primaryIdentity = Object.values(testData.metamask.identities)[0];
|
|
|
|
const subjectMetadata = {
|
|
|
|
iconUrl: '/images/logo/metamask-fox.svg',
|
|
|
|
name: 'MetaMask',
|
|
|
|
origin: 'http://localhost:8080',
|
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Components/App/SignatureRequestSIWE/SignatureRequestSIWEHeader',
|
2023-01-20 20:27:46 +01:00
|
|
|
|
2022-08-03 16:56:11 +02:00
|
|
|
argTypes: {
|
|
|
|
fromAccount: {
|
|
|
|
table: {
|
|
|
|
address: { control: 'text' },
|
|
|
|
balance: { control: 'text' },
|
|
|
|
name: { control: 'text' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
domain: { control: 'text' },
|
|
|
|
subjectMetadata: { control: 'object' },
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export const DefaultStory = (args) => <SignatureRequestSIWEHeader {...args} />;
|
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
|
|
|
|
DefaultStory.args = {
|
|
|
|
fromAccount: primaryIdentity,
|
|
|
|
domain: window.location.host,
|
2022-10-04 23:33:51 +02:00
|
|
|
isSIWEDomainValid: true,
|
|
|
|
subjectMetadata,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ErrorStory = (args) => <SignatureRequestSIWEHeader {...args} />;
|
|
|
|
|
|
|
|
ErrorStory.storyName = 'Error';
|
|
|
|
|
|
|
|
ErrorStory.args = {
|
|
|
|
fromAccount: primaryIdentity,
|
|
|
|
domain: window.location.host,
|
|
|
|
isSIWEDomainValid: false,
|
2022-08-03 16:56:11 +02:00
|
|
|
subjectMetadata,
|
|
|
|
};
|