1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-28 16:47:52 +02:00

added radio to pricing tabs on publish (#1067)

* added radio to pricing tabs on publish

* adding padding to tabs with radio

* correct unnecessary component and style class

* adding attribute selector to css rule
This commit is contained in:
EnzoVezzaro 2022-02-10 15:37:34 +01:00 committed by GitHub
parent fab181be34
commit e2c468c128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 4 deletions

View File

@ -96,7 +96,6 @@
padding: 0;
font-weight: var(--font-weight-bold);
font-size: var(--font-size-small);
color: var(--font-color-text);
padding-left: 0.5rem;
}

View File

@ -38,6 +38,10 @@
cursor: not-allowed;
}
.tab > div {
margin: 0;
}
.tabContent {
padding: calc(var(--spacer) / 2);
}

View File

@ -1,5 +1,6 @@
import React, { ReactElement, ReactNode } from 'react'
import { Tab, Tabs as ReactTabs, TabList, TabPanel } from 'react-tabs'
import InputElement from '@shared/FormInput/InputElement'
import styles from './Tabs.module.css'
export interface TabsItem {
@ -12,12 +13,14 @@ export default function Tabs({
items,
className,
handleTabChange,
defaultIndex
defaultIndex,
showRadio
}: {
items: TabsItem[]
className?: string
handleTabChange?: (tabName: string) => void
defaultIndex?: number
showRadio?: boolean
}): ReactElement {
return (
<ReactTabs
@ -25,14 +28,24 @@ export default function Tabs({
defaultIndex={defaultIndex}
>
<TabList className={styles.tabList}>
{items.map((item) => (
{items.map((item, index) => (
<Tab
className={styles.tab}
key={item.title}
onClick={handleTabChange ? () => handleTabChange(item.title) : null}
disabled={item.disabled}
>
{item.title}
{showRadio ? (
<InputElement
name={item.title}
type="radio"
checked={defaultIndex === index}
options={[item.title]}
readOnly
/>
) : (
item.title
)}
</Tab>
))}
</TabList>

View File

@ -2,6 +2,10 @@
text-align: center;
}
.pricing ul > li[class*='Tabs_tab'] {
padding: calc(var(--spacer) / 4) var(--spacer);
}
.pricing [class*='Tabs_tabContent'] {
padding-left: 0;
padding-right: 0;

View File

@ -71,6 +71,7 @@ export default function PricingFields(): ReactElement {
handleTabChange={handleTabChange}
defaultIndex={type === 'dynamic' ? 1 : type === 'free' ? 2 : 0}
className={styles.pricing}
showRadio
/>
)
}