Create Python tools section and add missing Python packages to it

This commit is contained in:
Fabio Berger
2019-01-18 13:12:19 +01:00
parent bef30e4209
commit b22a6b4e09
2 changed files with 53 additions and 21 deletions

View File

@@ -55,7 +55,7 @@ const TUTORIALS: TutorialInfo[] = [
];
const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = {
[Categories.ZeroExProtocol]: [
[Categories.ZeroExProtocolTypescript]: [
{
description:
'A library for interacting with the 0x protocol. It is a high level package which combines a number of smaller specific-purpose packages such as [order-utils](https://0x.org/docs/order-utils) and [contract-wrappers](https://0x.org/docs/contract-wrappers).',
@@ -90,23 +90,6 @@ const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = {
to: WebsitePaths.SmartContracts,
},
},
{
description:
"A Python library for interacting with 0x orders. Generate an orderHash, sign an order, validate it's signature and more.",
link: {
title: '0x-order-utils.py',
to: 'http://0x-order-utils-py.s3-website-us-east-1.amazonaws.com/',
shouldOpenInNewTab: true,
},
},
{
description: 'A Python Standard Relayer API client',
link: {
title: '0x-sra-client.py',
to: 'https://pypi.org/project/0x-sra-client/',
shouldOpenInNewTab: true,
},
},
{
description:
'An http & websocket client for interacting with relayers that have implemented the [Standard Relayer API](https://github.com/0xProject/standard-relayer-api)',
@@ -190,6 +173,51 @@ const CATEGORY_TO_PACKAGES: ObjectMap<Package[]> = {
},
},
],
[Categories.ZeroExProtocolPython]: [
{
description:
"A library for interacting with 0x orders. Generate an orderHash, sign an order, validate it's signature and more.",
link: {
title: '0x-order-utils.py',
to: 'http://0x-order-utils-py.s3-website-us-east-1.amazonaws.com/',
shouldOpenInNewTab: true,
},
},
{
description: 'A Standard Relayer API client',
link: {
title: '0x-sra-client.py',
to: 'https://pypi.org/project/0x-sra-client/',
shouldOpenInNewTab: true,
},
},
{
description: 'Package containing the addresses at which the 0x smart contracts have been deployed',
link: {
title: '0x-contract-addresses.py',
to:
'https://github.com/0xProject/0x-monorepo/blob/development/python-packages/contract_addresses/README.md',
shouldOpenInNewTab: true,
},
},
{
description: 'Package containing the 0x smart contract compilation artifacts',
link: {
title: '0x-contract-artifacts.py',
to:
'https://github.com/0xProject/0x-monorepo/blob/development/python-packages/contract_artifacts/README.md',
shouldOpenInNewTab: true,
},
},
{
description: '0x JSON schemas for those developing on top of 0x protocol',
link: {
title: '0x-json-schemas.py',
to: 'https://github.com/0xProject/0x-monorepo/blob/development/python-packages/json_schemas/README.md',
shouldOpenInNewTab: true,
},
},
],
[Categories.Ethereum]: [
{
description:
@@ -409,7 +437,10 @@ export class DocsHome extends React.Component<DocsHomeProps, DocsHomeState> {
title: this.props.translate.get(tutorialInfo.link.title as Key, Deco.Cap),
};
}),
[Categories.ZeroExProtocol]: _.map(CATEGORY_TO_PACKAGES[Categories.ZeroExProtocol], pkg => pkg.link),
[Categories.ZeroExProtocolTypescript]: _.map(
CATEGORY_TO_PACKAGES[Categories.ZeroExProtocolTypescript],
pkg => pkg.link,
),
[Categories.Ethereum]: _.map(CATEGORY_TO_PACKAGES[Categories.Ethereum], pkg => pkg.link),
[Categories.CommunityMaintained]: _.map(
CATEGORY_TO_PACKAGES[Categories.CommunityMaintained],

View File

@@ -655,8 +655,9 @@ export interface TutorialInfo {
}
export enum Categories {
ZeroExProtocol = '0x Protocol',
Ethereum = 'Ethereum',
ZeroExProtocolTypescript = '0x Protocol (Typescript/Javascript)',
ZeroExProtocolPython = '0x Protocol (Python)',
Ethereum = 'Ethereum (Typescript/Javascript)',
CommunityMaintained = 'Community Maintained',
}