Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(PhoneNumber): remove unsupported props #2894

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { OmitTableProperties } from 'dnb-design-system-portal/src/shared/tags/Table'

### Standard data value component props

<OmitTableProperties>

| Property | Type | Description |
| ---------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `className` | `string` | _(optional)_ Outer DOM element class name. |
Expand Down Expand Up @@ -27,3 +31,10 @@
| `onBlurValidator` | `function` | _(optional)_ Custom validator function that will be called when the user leaves the field (blurring a text input, closing a dropdown etc). Can be asynchronous or synchronous. |
| `toInput` | `function` | _(optional)_ Derivate called when the received / active value is sent to the input. Can be used for casting, changing syntax etc. |
| `fromInput` | `function` | _(optional)_ Derivate called when changes is made by the user, to cast or change syntax back to the original (opposite of `toInput`). |

</OmitTableProperties>

export default function Layout({ omit = null, children }) {
globalThis.omitTableProperties = omit
return <>{children}</>
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,13 @@ import DataValueReadwriteProperties from '../../data-value-readwrite-properties.
| `width` | `string` or `false` | _(optional)_ `large` for predefined standard width, `stretch` for fill available width. |
| [Space](/uilib/layout/space/properties) | Various | _(optional)_ Spacing properties like `top` or `bottom` are supported. |

<DataValueReadwriteProperties type="string" />
<DataValueReadwriteProperties
type="string"
omit={[
'layout',
'label',
'labelDescription',
'labelSecondary',
'emptyValue',
]}
/>
25 changes: 25 additions & 0 deletions packages/dnb-design-system-portal/src/shared/tags/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ const StyledTable = styled(TableElement)`
}
`

export function OmitTableProperties({ children, ...rest }) {
const omitProperties = globalThis.omitTableProperties || []

return recursiveMap(children, (child: React.ReactElement) => {
if (child.type === 'tr') {
const firstTd = getFirstChild(child)

if (firstTd.type === 'td') {
const tdContent = getFirstChild(firstTd)
const name = getFirstChild(tdContent)

if (omitProperties.includes(name)) {
return null
}
}
}

return child
})
}

export default function Table({ children }) {
// make sure we get the table children
children =
Expand Down Expand Up @@ -56,6 +77,10 @@ export default function Table({ children }) {
)
}

function getFirstChild(children: ChildrenWithChildren) {
return children.props.children.at(0)
}

function getChildren(children: ChildrenWithChildren) {
return recursiveMap(children.props.children, (child) => child)
}
Expand Down
Loading