@oxyhq/services
Version:
57 lines (55 loc) • 2.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AnimatedButton = void 0;
var _react = _interopRequireWildcard(require("react"));
var _reactNative = require("react-native");
var _vectorIcons = require("@expo/vector-icons");
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
// @ts-ignore - MaterialCommunityIcons is available at runtime
/**
* Animated button component for smooth selection transitions
* Used in file management views for view mode toggles
*/
const AnimatedButton = ({
isSelected,
onPress,
icon,
primaryColor,
textColor,
style
}) => {
const animatedValue = (0, _react.useRef)(new _reactNative.Animated.Value(isSelected ? 1 : 0)).current;
(0, _react.useEffect)(() => {
_reactNative.Animated.timing(animatedValue, {
toValue: isSelected ? 1 : 0,
duration: 200,
easing: _reactNative.Easing.out(_reactNative.Easing.ease),
useNativeDriver: false
}).start();
}, [isSelected, animatedValue]);
const backgroundColor = animatedValue.interpolate({
inputRange: [0, 1],
outputRange: ['transparent', primaryColor]
});
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
onPress: onPress,
activeOpacity: 0.7,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
style: [style, {
backgroundColor
}],
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Animated.View, {
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_vectorIcons.MaterialCommunityIcons, {
name: icon,
size: 16,
color: isSelected ? '#FFFFFF' : textColor
})
})
})
});
};
exports.AnimatedButton = AnimatedButton;
//# sourceMappingURL=AnimatedButton.js.map