59a0b9d490
## Issue - Adding `content__non-clickable` everywhere probably isn't the right way when we move forward to separating `all.scss`. - Not intuitive -- easier to use if it's an attribute to `ClaimPreview`. ## Change - Consolidate to a re-usable `non-clickable` class. - Made Wallet Send search preview non-clickable as a temporary band aid until the channel-finder is consolidated. - `listBlocked`: something is overriding the pointer, so non-clickable isn't working. Removed for now -- doesn't really matter.
50 lines
1.6 KiB
JavaScript
50 lines
1.6 KiB
JavaScript
// @flow
|
|
import React from 'react';
|
|
import Button from 'component/button';
|
|
import * as PAGES from 'constants/pages';
|
|
import classnames from 'classnames';
|
|
|
|
type Props = {
|
|
title: string,
|
|
subtitle?: string,
|
|
multirow?: boolean, // Displays the Value widget(s) below the Label instead of on the right.
|
|
useVerticalSeparator?: boolean, // Show a separator line between Label and Value. Useful when there are multiple Values.
|
|
disabled?: boolean,
|
|
highlighted?: boolean,
|
|
membersOnly?: boolean,
|
|
children?: React$Node,
|
|
};
|
|
|
|
export default function SettingsRow(props: Props) {
|
|
const { title, subtitle, multirow, useVerticalSeparator, disabled, highlighted, membersOnly, children } = props;
|
|
return (
|
|
<div
|
|
className={classnames('card__main-actions settings-row', {
|
|
'section__actions--between': !multirow,
|
|
'opacity-40': disabled,
|
|
'card--highlightedActive': highlighted,
|
|
})}
|
|
>
|
|
<div className="settings-row__title">
|
|
<span>
|
|
{title}
|
|
{membersOnly && (
|
|
<Button className="settings-row__members-only" navigate={`/$/${PAGES.ODYSEE_MEMBERSHIP}`}>
|
|
{'PREMIUM'}
|
|
</Button>
|
|
)}
|
|
</span>
|
|
{subtitle && <p className="settings-row__subtitle">{subtitle}</p>}
|
|
</div>
|
|
<div
|
|
className={classnames('settings-row__value', {
|
|
'settings-row__value--multirow': multirow,
|
|
'settings-row__vertical-separator': useVerticalSeparator,
|
|
'non-clickable': disabled,
|
|
})}
|
|
>
|
|
{children && children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|