You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.5 KiB
63 lines
1.5 KiB
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { decGWEIToHexWEI } from '../../../helpers/utils/conversions.util';
|
|
import configureStore from '../../../store/store';
|
|
import testData from '../../../../.storybook/test-data';
|
|
import {
|
|
EDIT_GAS_MODES,
|
|
GAS_RECOMMENDATIONS,
|
|
} from '../../../../shared/constants/gas';
|
|
|
|
import EditGasPopover from '.';
|
|
|
|
const store = configureStore(testData);
|
|
|
|
export default {
|
|
title: 'Components/App/EditGasPopover',
|
|
decorators: [(story) => <Provider store={store}>{story()}</Provider>],
|
|
id: __filename,
|
|
argTypes: {
|
|
editGasDisplayProps: {
|
|
control: 'object',
|
|
},
|
|
transaction: {
|
|
control: 'object',
|
|
},
|
|
defaultEstimateToUse: { control: 'text' },
|
|
mode: { control: 'text' },
|
|
confirmButtonText: { control: 'text' },
|
|
minimumGasLimit: { control: 'text' },
|
|
onClose: { action: 'Close Edit Gas Popover' },
|
|
},
|
|
};
|
|
|
|
const transaction = {
|
|
userFeeLevel: GAS_RECOMMENDATIONS.MEDIUM,
|
|
txParams: {
|
|
maxFeePerGas: decGWEIToHexWEI('10000'),
|
|
maxPriorityFeePerGas: '0x5600',
|
|
gas: `0x5600`,
|
|
gasPrice: '0x5600',
|
|
},
|
|
};
|
|
const defaultEstimateToUse = GAS_RECOMMENDATIONS.HIGH;
|
|
const mode = EDIT_GAS_MODES.SWAPS;
|
|
const confirmButtonText = 'Submit';
|
|
const minimumGasLimit = '5700';
|
|
|
|
export const DefaultStory = (args) => {
|
|
return (
|
|
<div style={{ width: '600px' }}>
|
|
<EditGasPopover {...args} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
DefaultStory.args = {
|
|
transaction,
|
|
defaultEstimateToUse,
|
|
mode,
|
|
confirmButtonText,
|
|
minimumGasLimit,
|
|
};
|
|
|