react-native-paper
Version:
Material design for React Native
102 lines (88 loc) • 4.44 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var React = _interopRequireWildcard(require("react"));
var _colors = require("../styles/colors");
var _reactNative = require("react-native");
var _color = _interopRequireDefault(require("color"));
var _theming = require("../core/theming");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
const version = _reactNative.NativeModules.PlatformConstants ? _reactNative.NativeModules.PlatformConstants.reactNativeVersion : undefined;
/**
* Switch is a visual toggle between two mutually exclusive states — on and off.
*
* <div class="screenshots">
* <figure>
* <img src="screenshots/switch-enabled.android.png" />
* <figcaption>Android (enabled)</figcaption>
* </figure>
* <figure>
* <img src="screenshots/switch-disabled.android.png" />
* <figcaption>Android (disabled)</figcaption>
* </figure>
* <figure>
* <img src="screenshots/switch-enabled.ios.png" />
* <figcaption>iOS (enabled)</figcaption>
* </figure>
* <figure>
* <img src="screenshots/switch-disabled.ios.png" />
* <figcaption>iOS (disabled)</figcaption>
* </figure>
* </div>
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Switch } from 'react-native-paper';
*
* const MyComponent = () => {
* const [isSwitchOn, setIsSwitchOn] = React.useState(false);
*
* const onToggleSwitch = () => setIsSwitchOn(!isSwitchOn);
*
* return <Switch value={isSwitchOn} onValueChange={onToggleSwitch} />;
* };
*
* export default MyComponent;
* ```
*/
const Switch = _ref => {
let {
value,
disabled,
onValueChange,
color,
theme,
...rest
} = _ref;
const checkedColor = color || theme.colors.accent;
const onTintColor = _reactNative.Platform.OS === 'ios' ? checkedColor : disabled ? theme.dark ? (0, _color.default)(_colors.white).alpha(0.1).rgb().string() : (0, _color.default)(_colors.black).alpha(0.12).rgb().string() : (0, _color.default)(checkedColor).alpha(0.5).rgb().string();
const thumbTintColor = _reactNative.Platform.OS === 'ios' ? undefined : disabled ? theme.dark ? _colors.grey800 : _colors.grey400 : value ? checkedColor : theme.dark ? _colors.grey400 : _colors.grey50;
const props = version && version.major === 0 && version.minor <= 56 ? {
onTintColor,
thumbTintColor
} : _reactNative.Platform.OS === 'web' ? {
activeTrackColor: onTintColor,
thumbColor: thumbTintColor,
activeThumbColor: checkedColor
} : {
thumbColor: thumbTintColor,
trackColor: {
true: onTintColor,
false: ''
}
};
return /*#__PURE__*/React.createElement(_reactNative.Switch, _extends({
value: value,
disabled: disabled,
onValueChange: disabled ? undefined : onValueChange
}, props, rest));
};
var _default = (0, _theming.withTheme)(Switch);
exports.default = _default;
//# sourceMappingURL=Switch.js.map
;