ThemedSwitch.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import CustomSwitch from './CustomSwitch'
  4. import colors from '../../theme/colors'
  5. import { interpolateColor, useAnimatedStyle, useSharedValue } from 'react-native-reanimated'
  6. const ThemedSwitch = ({ value = true, onValueChange, theme }) => {
  7. let style = {}
  8. let toggleOnColor = colors.white
  9. let toggleOffColor = colors.white
  10. const shareValue = useSharedValue(value ? 1 : 0)
  11. const InterpolateXInput = [0, 1];
  12. switch (theme) {
  13. case 'secondary':
  14. toggleOffColor = colors.primaryColor
  15. toggleOnColor = colors.white
  16. style = {
  17. containerStyle: {
  18. // borderColor: colors.primaryColor,
  19. borderColor: interpolateColor(shareValue.value, InterpolateXInput, [
  20. toggleOffColor,
  21. toggleOnColor,
  22. ]),
  23. borderWidth: 2,
  24. backgroundColor: interpolateColor(shareValue.value, InterpolateXInput.reverse(), [
  25. toggleOffColor,
  26. toggleOnColor,
  27. ]),
  28. }
  29. }
  30. break;
  31. case 'primary':
  32. default:
  33. toggleOffColor = colors.primaryColor
  34. toggleOnColor = colors.white
  35. style = {
  36. containerStyle: {
  37. // borderColor: colors.primaryColor,
  38. borderColor: interpolateColor(shareValue.value, InterpolateXInput.reverse(), [
  39. toggleOffColor,
  40. toggleOnColor,
  41. ]),
  42. borderWidth: 2,
  43. backgroundColor: interpolateColor(shareValue.value, InterpolateXInput.reverse(), [
  44. toggleOffColor,
  45. toggleOnColor,
  46. ]),
  47. }
  48. }
  49. break;
  50. }
  51. const containerAnimatedStyle = useAnimatedStyle(() => style)
  52. // {
  53. // return {
  54. // transform: [
  55. // {
  56. // translateX: interpolate(
  57. // shareValue.value,
  58. // InterpolateXInput,
  59. // [0, BUTTON_WIDTH - SWITCH_BUTTON_AREA - 2 * SWITCH_BUTTON_PADDING],
  60. // Extrapolate.CLAMP,
  61. // ),
  62. // },
  63. // ],
  64. // backgroundColor: interpolateColor(shareValue.value, InterpolateXInput, [
  65. // toggleOffColor,
  66. // toggleOnColor,
  67. // ]),
  68. // };
  69. // });
  70. return (
  71. <CustomSwitch
  72. onChange={onValueChange}
  73. value={value}
  74. containerStyle={containerAnimatedStyle}
  75. toggleOffColor={toggleOffColor}
  76. toggleOnColor={toggleOnColor}
  77. height={22}
  78. width={40}
  79. />
  80. )
  81. }
  82. export default ThemedSwitch
  83. const styles = StyleSheet.create({})