mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
a2fe2fdee0
* added timeout to publish asset * add timeout to edit asses(wip) * added timout to edit metadata form * fixed wrong constant name * fix options autosorting Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * Fixed autosorting in edit form * Added "1 day" to timeout options * Changed ternary operators to switch * Feature/asset timeout (#325) * Compute asset timeout * Code styled * Deleted unused import * Display timeout for buy/download * Switch case for timeout values * Moved mapping function to /utils/metadata * display timeout option not matching defined ones, map seconds to string * handle update with no predefined timeout value, add weeks to map method * Display timeout on button * consume button text logic change * whoops, revert wrong change * small millisecondsToStr refactor * copy tweaks * template literal logic restore * keep tweaking help text logic * abstract into method * change whole condition logic * tweak hasDatatoken/hasPreviousOrder combination condition * Unified seconds to string conversion methods * getHelpText tweaks, small refactor * copy editing, limit hardcoded timeout list * fix mixup of map & filter * use Timeout as label and be done with it Co-authored-by: mihaisc <mihai.scarlat@smartcontrol.ro> Co-authored-by: claudiaHash <49017601+claudiaHash@users.noreply.github.com> Co-authored-by: Matthias Kretschmann <m@kretschmann.io> Co-authored-by: Claudia Holhos <clawww1996@gmail.com>
19 lines
347 B
TypeScript
19 lines
347 B
TypeScript
import { MetadataPublishForm } from '../../../src/@types/MetaData'
|
|
|
|
const testFormData: MetadataPublishForm = {
|
|
author: '',
|
|
files: [],
|
|
dataTokenOptions: {
|
|
name: '',
|
|
symbol: ''
|
|
},
|
|
name: '',
|
|
timeout: '',
|
|
description: 'description',
|
|
termsAndConditions: true,
|
|
access: 'Download'
|
|
// links: []
|
|
}
|
|
|
|
export default testFormData
|