@xetwa/design-system 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. package/.github/workflows/publish.yml +30 -0
  2. package/.storybook/main.ts +17 -0
  3. package/.storybook/preview.tsx +65 -0
  4. package/eslint.config.js +22 -0
  5. package/index.html +13 -0
  6. package/package.json +55 -0
  7. package/public/favicon.svg +1 -0
  8. package/public/icons.svg +24 -0
  9. package/src/App.css +184 -0
  10. package/src/App.tsx +122 -0
  11. package/src/BordasSombras.mdx +343 -0
  12. package/src/Colors.mdx +393 -0
  13. package/src/GrelhaLayout.mdx +375 -0
  14. package/src/Icons.mdx +42 -0
  15. package/src/MovimentoBreakpoints.mdx +379 -0
  16. package/src/Spacing.mdx +231 -0
  17. package/src/Typography.mdx +321 -0
  18. package/src/assets/Mascots/vava/estaticos/vava-acenar.svg +3 -0
  19. package/src/assets/Mascots/vava/estaticos/vava-acertou.svg +3 -0
  20. package/src/assets/Mascots/vava/estaticos/vava-celebrar.svg +3 -0
  21. package/src/assets/Mascots/vava/estaticos/vava-com-autocolantes.svg +3 -0
  22. package/src/assets/Mascots/vava/estaticos/vava-dormir.svg +3 -0
  23. package/src/assets/Mascots/vava/estaticos/vava-errou.svg +3 -0
  24. package/src/assets/Mascots/vava/estaticos/vava-feliz.svg +3 -0
  25. package/src/assets/Mascots/vava/estaticos/vava-neutra.svg +3 -0
  26. package/src/assets/Mascots/vava/estaticos/vava-original.svg +3 -0
  27. package/src/assets/Mascots/vava/estaticos/vava-pensar.svg +3 -0
  28. package/src/assets/Mascots/vava/estaticos/vava-surpresa.svg +3 -0
  29. package/src/assets/Mascots/yaya/avatar/yaya-avatar-falar.svg +7 -0
  30. package/src/assets/Mascots/yaya/avatar/yaya-avatar-feliz.svg +7 -0
  31. package/src/assets/Mascots/yaya/avatar/yaya-avatar-transparente.svg +6 -0
  32. package/src/assets/Mascots/yaya/estaticos/yaya-acertou.svg +13 -0
  33. package/src/assets/Mascots/yaya/estaticos/yaya-celebrar.svg +13 -0
  34. package/src/assets/Mascots/yaya/estaticos/yaya-dormir.svg +13 -0
  35. package/src/assets/Mascots/yaya/estaticos/yaya-errou.svg +13 -0
  36. package/src/assets/Mascots/yaya/estaticos/yaya-falar.svg +13 -0
  37. package/src/assets/Mascots/yaya/estaticos/yaya-feliz.svg +13 -0
  38. package/src/assets/Mascots/yaya/estaticos/yaya-neutra.svg +13 -0
  39. package/src/assets/Mascots/yaya/estaticos/yaya-pensar.svg +13 -0
  40. package/src/assets/Mascots/yaya/estaticos/yaya-surpresa.svg +13 -0
  41. package/src/assets/hero.png +0 -0
  42. package/src/assets/react.svg +1 -0
  43. package/src/assets/vite.svg +1 -0
  44. package/src/components/Buttons/BackButton/BackButton.stories.tsx +86 -0
  45. package/src/components/Buttons/BackButton/BackButton.tsx +107 -0
  46. package/src/components/Buttons/FabButton/FabButton.stories.tsx +74 -0
  47. package/src/components/Buttons/FabButton/FabButton.tsx +161 -0
  48. package/src/components/Buttons/IconButton/IconButton.stories.tsx +99 -0
  49. package/src/components/Buttons/IconButton/IconButton.tsx +189 -0
  50. package/src/components/Buttons/JourneyButton/JourneyButton.stories.tsx +80 -0
  51. package/src/components/Buttons/JourneyButton/JourneyButton.tsx +194 -0
  52. package/src/components/Buttons/MainButton/MainButton.stories.tsx +144 -0
  53. package/src/components/Buttons/MainButton/MainButton.tsx +258 -0
  54. package/src/components/Buttons/WordChip/WordChip.stories.tsx +84 -0
  55. package/src/components/Buttons/WordChip/WordChip.tsx +157 -0
  56. package/src/components/Buttons/WordChip/index.ts +1 -0
  57. package/src/components/Cards/AnswerOptionCard/AnswerOptionCard.stories.tsx +181 -0
  58. package/src/components/Cards/AnswerOptionCard/AnswerOptionCard.tsx +201 -0
  59. package/src/components/Cards/BaseCard/BaseCard.stories.tsx +148 -0
  60. package/src/components/Cards/BaseCard/BaseCard.tsx +181 -0
  61. package/src/components/Cards/BoardingPassCard/BoardingPassCard.stories.tsx +205 -0
  62. package/src/components/Cards/BoardingPassCard/BoardingPassCard.tsx +384 -0
  63. package/src/components/Cards/BoardingPassCard/FlightIcon.tsx +21 -0
  64. package/src/components/Cards/BoardingPassCard/FlightIcon.web.tsx +18 -0
  65. package/src/components/Cards/CountryCard/CountryCard.stories.tsx +97 -0
  66. package/src/components/Cards/CountryCard/CountryCard.tsx +185 -0
  67. package/src/components/Cards/LevelProgressCard/LevelProgressCard.stories.tsx +61 -0
  68. package/src/components/Cards/LevelProgressCard/LevelProgressCard.tsx +143 -0
  69. package/src/components/Cards/ModuleCard/ModuleCard.stories.tsx +108 -0
  70. package/src/components/Cards/ModuleCard/ModuleCard.tsx +304 -0
  71. package/src/components/Cards/ModuleCompletionCard/ModuleCompletionCard.stories.tsx +53 -0
  72. package/src/components/Cards/ModuleCompletionCard/ModuleCompletionCard.tsx +167 -0
  73. package/src/components/Cards/Passport/PassportCover.tsx +114 -0
  74. package/src/components/Cards/Passport/PassportIDPage.tsx +217 -0
  75. package/src/components/Cards/Passport/PassportStampPage.tsx +253 -0
  76. package/src/components/Cards/Passport/PassportViewer.stories.tsx +95 -0
  77. package/src/components/Cards/Passport/PassportViewer.tsx +328 -0
  78. package/src/components/Cards/PlanCard/PlanCard.stories.tsx +159 -0
  79. package/src/components/Cards/PlanCard/PlanCard.tsx +317 -0
  80. package/src/components/Cards/PricingCard/PricingCard.stories.tsx +83 -0
  81. package/src/components/Cards/PricingCard/PricingCard.tsx +144 -0
  82. package/src/components/Cards/SelectionCard/SelectionCard.stories.tsx +77 -0
  83. package/src/components/Cards/SelectionCard/SelectionCard.tsx +111 -0
  84. package/src/components/Cards/TeacherCard/TeacherCard.stories.tsx +126 -0
  85. package/src/components/Cards/TeacherCard/TeacherCard.tsx +236 -0
  86. package/src/components/Charts/WeeklyProgressChart/WeeklyProgressChart.stories.tsx +89 -0
  87. package/src/components/Charts/WeeklyProgressChart/WeeklyProgressChart.tsx +179 -0
  88. package/src/components/Charts/WeeklyProgressChart/index.ts +1 -0
  89. package/src/components/DataDisplay/Avatar/Avatar.stories.tsx +85 -0
  90. package/src/components/DataDisplay/Avatar/Avatar.tsx +118 -0
  91. package/src/components/DataDisplay/Avatar/index.ts +1 -0
  92. package/src/components/DataDisplay/Badge/Badge.stories.tsx +62 -0
  93. package/src/components/DataDisplay/Badge/Badge.tsx +146 -0
  94. package/src/components/DataDisplay/Flag/Flag.stories.tsx +98 -0
  95. package/src/components/DataDisplay/Flag/Flag.tsx +347 -0
  96. package/src/components/DataDisplay/Flag/Flag.web.tsx +334 -0
  97. package/src/components/DataDisplay/InstructionBubble/InstructionBubble.stories.tsx +80 -0
  98. package/src/components/DataDisplay/InstructionBubble/InstructionBubble.tsx +86 -0
  99. package/src/components/DataDisplay/LevelBadge/LevelBadge.stories.tsx +99 -0
  100. package/src/components/DataDisplay/LevelBadge/LevelBadge.tsx +118 -0
  101. package/src/components/DataDisplay/ProgressBar/ProgressBar.stories.tsx +95 -0
  102. package/src/components/DataDisplay/ProgressBar/ProgressBar.tsx +117 -0
  103. package/src/components/DataDisplay/StatBadge/StatBadge.stories.tsx +82 -0
  104. package/src/components/DataDisplay/StatBadge/StatBadge.tsx +135 -0
  105. package/src/components/DataDisplay/StatBadge/index.ts +1 -0
  106. package/src/components/DataDisplay/Tag/Tag.stories.tsx +63 -0
  107. package/src/components/DataDisplay/Tag/Tag.tsx +148 -0
  108. package/src/components/Feedback/FeedbackBottomSheet/FeedbackBottomSheet.stories.tsx +74 -0
  109. package/src/components/Feedback/FeedbackBottomSheet/FeedbackBottomSheet.tsx +200 -0
  110. package/src/components/Forms/Checkbox/Checkbox.stories.tsx +60 -0
  111. package/src/components/Forms/Checkbox/Checkbox.tsx +127 -0
  112. package/src/components/Forms/Checkbox/index.ts +1 -0
  113. package/src/components/Forms/DaySelector/DaySelector.stories.tsx +62 -0
  114. package/src/components/Forms/DaySelector/DaySelector.tsx +133 -0
  115. package/src/components/Forms/Radio/Radio.stories.tsx +61 -0
  116. package/src/components/Forms/Radio/Radio.tsx +141 -0
  117. package/src/components/Forms/Radio/index.ts +1 -0
  118. package/src/components/Forms/SegmentedToggle/SegmentedToggle.stories.tsx +67 -0
  119. package/src/components/Forms/SegmentedToggle/SegmentedToggle.tsx +150 -0
  120. package/src/components/Forms/SegmentedToggle/index.ts +1 -0
  121. package/src/components/Forms/Select/Select.stories.tsx +59 -0
  122. package/src/components/Forms/Select/Select.tsx +255 -0
  123. package/src/components/Forms/Select/index.ts +1 -0
  124. package/src/components/Forms/Switch/Switch.stories.tsx +57 -0
  125. package/src/components/Forms/Switch/Switch.tsx +120 -0
  126. package/src/components/Forms/Switch/index.ts +1 -0
  127. package/src/components/Forms/TimeSlot/TimeSlot.stories.tsx +62 -0
  128. package/src/components/Forms/TimeSlot/TimeSlot.tsx +116 -0
  129. package/src/components/Headers/CountryHeader/CountryHeader.stories.tsx +114 -0
  130. package/src/components/Headers/CountryHeader/CountryHeader.tsx +147 -0
  131. package/src/components/Headers/ProfileHeader/ProfileHeader.stories.tsx +141 -0
  132. package/src/components/Headers/ProfileHeader/ProfileHeader.tsx +233 -0
  133. package/src/components/Inputs/FillInTheBlank/FillInTheBlank.stories.tsx +333 -0
  134. package/src/components/Inputs/FillInTheBlank/FillInTheBlank.tsx +287 -0
  135. package/src/components/Inputs/FillInTheBlank/index.ts +1 -0
  136. package/src/components/Inputs/TextInput/TextInput.stories.tsx +103 -0
  137. package/src/components/Inputs/TextInput/TextInput.tsx +187 -0
  138. package/src/components/Mascots/Vava/Vava.stories.tsx +114 -0
  139. package/src/components/Mascots/Vava/Vava.tsx +276 -0
  140. package/src/components/Mascots/Yaya/Yaya.stories.tsx +98 -0
  141. package/src/components/Mascots/Yaya/Yaya.tsx +233 -0
  142. package/src/components/Navigation/BottomTabBar/BottomTabBar.stories.tsx +68 -0
  143. package/src/components/Navigation/BottomTabBar/BottomTabBar.tsx +85 -0
  144. package/src/components/Navigation/BottomTabBar/BottomTabBarItem.tsx +68 -0
  145. package/src/components/Navigation/BottomTabBar/index.ts +2 -0
  146. package/src/components/Navigation/PaginationDots/PaginationDots.stories.tsx +62 -0
  147. package/src/components/Navigation/PaginationDots/PaginationDots.tsx +81 -0
  148. package/src/components/Navigation/PaginationDots/index.ts +1 -0
  149. package/src/components/Navigation/ProgressMap/ProgressMap.stories.tsx +116 -0
  150. package/src/components/Navigation/ProgressMap/ProgressMap.tsx +827 -0
  151. package/src/components/Navigation/WorldProgressMap/WorldProgressMap.stories.tsx +169 -0
  152. package/src/components/Navigation/WorldProgressMap/WorldProgressMap.tsx +790 -0
  153. package/src/components/Typography/Typography.stories.tsx +127 -0
  154. package/src/components/Typography/Typography.tsx +53 -0
  155. package/src/hooks/useResponsive.ts +41 -0
  156. package/src/hooks/useTheme.ts +32 -0
  157. package/src/index.css +355 -0
  158. package/src/index.ts +28 -0
  159. package/src/main.tsx +10 -0
  160. package/src/mocks/codegenNativeComponent.ts +5 -0
  161. package/src/styles/countryThemes.ts +79 -0
  162. package/src/styles/theme.ts +297 -0
  163. package/src/utils/iconMap.ts +23 -0
  164. package/tsconfig.app.json +25 -0
  165. package/tsconfig.json +7 -0
  166. package/tsconfig.node.json +24 -0
  167. package/vite.config.ts +51 -0
  168. package/vitest.shims.d.ts +1 -0
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="240" height="240" role="img" aria-label="Yaya neutra">
2
+ <path d="M72 170 Q70 124 100 124 Q130 124 128 170 Z" fill="#f2974b"></path>
3
+ <path d="M82 128 L120 150" stroke="#3f2620" stroke-width="3" fill="none"></path>
4
+ <rect x="112" y="148" width="22" height="18" rx="5" fill="#cf7a30"></rect>
5
+ <rect x="118" y="144" width="10" height="6" rx="3" fill="none" stroke="#3f2620" stroke-width="2"></rect>
6
+ <path d="M76 122 Q100 138 124 122 L124 130 Q100 146 76 130 Z" fill="#e0662e"></path>
7
+ <circle cx="88" cy="129" r="1.5" fill="#fbe6cf"></circle><circle cx="100" cy="133" r="1.5" fill="#fbe6cf"></circle><circle cx="112" cy="129" r="1.5" fill="#fbe6cf"></circle>
8
+ <path d="M62 96 q-6 18 4 30 q8 -10 6 -26 Z" fill="#3f2620"></path><path d="M138 96 q6 18 -4 30 q-8 -10 -6 -26 Z" fill="#3f2620"></path>
9
+ <circle cx="100" cy="88" r="40" fill="#51332d"></circle>
10
+ <circle cx="74" cy="101" r="6" fill="#f2974b" opacity=".4"></circle><circle cx="126" cy="101" r="6" fill="#f2974b" opacity=".4"></circle>
11
+ <path d="M78 81 l-5 -3 M122 81 l5 -3" stroke="#15100d" stroke-width="2" stroke-linecap="round"></path><ellipse cx="86" cy="88" rx="8" ry="10" fill="#fff"></ellipse><ellipse cx="114" cy="88" rx="8" ry="10" fill="#fff"></ellipse><circle cx="87" cy="90" r="4.3" fill="#15100d"></circle><circle cx="115" cy="90" r="4.3" fill="#15100d"></circle><circle cx="85" cy="86" r="1.6" fill="#fff"></circle><circle cx="113" cy="86" r="1.6" fill="#fff"></circle><path d="M93 104 Q100 109 107 104" fill="none" stroke="#cf7a30" stroke-width="3" stroke-linecap="round"></path>
12
+ <ellipse cx="100" cy="54" rx="33" ry="13" fill="#f2974b"></ellipse><ellipse cx="100" cy="50" rx="30" ry="10" fill="#ff9f57"></ellipse><circle cx="100" cy="42" r="3.6" fill="#f2974b"></circle>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="240" height="240" role="img" aria-label="Yaya pensar">
2
+ <path d="M72 170 Q70 124 100 124 Q130 124 128 170 Z" fill="#f2974b"></path>
3
+ <path d="M82 128 L120 150" stroke="#3f2620" stroke-width="3" fill="none"></path>
4
+ <rect x="112" y="148" width="22" height="18" rx="5" fill="#cf7a30"></rect>
5
+ <rect x="118" y="144" width="10" height="6" rx="3" fill="none" stroke="#3f2620" stroke-width="2"></rect>
6
+ <path d="M76 122 Q100 138 124 122 L124 130 Q100 146 76 130 Z" fill="#e0662e"></path>
7
+ <circle cx="88" cy="129" r="1.5" fill="#fbe6cf"></circle><circle cx="100" cy="133" r="1.5" fill="#fbe6cf"></circle><circle cx="112" cy="129" r="1.5" fill="#fbe6cf"></circle>
8
+ <path d="M62 96 q-6 18 4 30 q8 -10 6 -26 Z" fill="#3f2620"></path><path d="M138 96 q6 18 -4 30 q-8 -10 -6 -26 Z" fill="#3f2620"></path>
9
+ <circle cx="100" cy="88" r="40" fill="#51332d"></circle>
10
+ <circle cx="74" cy="101" r="6" fill="#f2974b" opacity=".4"></circle><circle cx="126" cy="101" r="6" fill="#f2974b" opacity=".4"></circle>
11
+ <ellipse cx="86" cy="88" rx="8" ry="10" fill="#fff"></ellipse><ellipse cx="114" cy="88" rx="8" ry="10" fill="#fff"></ellipse><circle cx="88" cy="84" r="4" fill="#15100d"></circle><circle cx="116" cy="84" r="4" fill="#15100d"></circle><path d="M93 105 L105 103" stroke="#cf7a30" stroke-width="3" fill="none" stroke-linecap="round"></path><text x="150" y="64" font-family="sans-serif" font-weight="700" font-size="28" fill="#f2974b">?</text>
12
+ <ellipse cx="100" cy="54" rx="33" ry="13" fill="#f2974b"></ellipse><ellipse cx="100" cy="50" rx="30" ry="10" fill="#ff9f57"></ellipse><circle cx="100" cy="42" r="3.6" fill="#f2974b"></circle>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="240" height="240" role="img" aria-label="Yaya surpresa">
2
+ <path d="M72 170 Q70 124 100 124 Q130 124 128 170 Z" fill="#f2974b"></path>
3
+ <path d="M82 128 L120 150" stroke="#3f2620" stroke-width="3" fill="none"></path>
4
+ <rect x="112" y="148" width="22" height="18" rx="5" fill="#cf7a30"></rect>
5
+ <rect x="118" y="144" width="10" height="6" rx="3" fill="none" stroke="#3f2620" stroke-width="2"></rect>
6
+ <path d="M76 122 Q100 138 124 122 L124 130 Q100 146 76 130 Z" fill="#e0662e"></path>
7
+ <circle cx="88" cy="129" r="1.5" fill="#fbe6cf"></circle><circle cx="100" cy="133" r="1.5" fill="#fbe6cf"></circle><circle cx="112" cy="129" r="1.5" fill="#fbe6cf"></circle>
8
+ <path d="M62 96 q-6 18 4 30 q8 -10 6 -26 Z" fill="#3f2620"></path><path d="M138 96 q6 18 -4 30 q-8 -10 -6 -26 Z" fill="#3f2620"></path>
9
+ <circle cx="100" cy="88" r="40" fill="#51332d"></circle>
10
+ <circle cx="74" cy="101" r="6" fill="#f2974b" opacity=".4"></circle><circle cx="126" cy="101" r="6" fill="#f2974b" opacity=".4"></circle>
11
+ <circle cx="86" cy="88" r="10" fill="#fff"></circle><circle cx="114" cy="88" r="10" fill="#fff"></circle><circle cx="86" cy="89" r="5" fill="#15100d"></circle><circle cx="114" cy="89" r="5" fill="#15100d"></circle><circle cx="84" cy="86" r="2" fill="#fff"></circle><circle cx="112" cy="86" r="2" fill="#fff"></circle><ellipse cx="100" cy="105" rx="6" ry="7" fill="#f2974b"></ellipse>
12
+ <ellipse cx="100" cy="54" rx="33" ry="13" fill="#f2974b"></ellipse><ellipse cx="100" cy="50" rx="30" ry="10" fill="#ff9f57"></ellipse><circle cx="100" cy="42" r="3.6" fill="#f2974b"></circle>
13
+ </svg>
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="77" height="47" fill="none" aria-labelledby="vite-logo-title" viewBox="0 0 77 47"><title id="vite-logo-title">Vite</title><style>.parenthesis{fill:#000}@media (prefers-color-scheme:dark){.parenthesis{fill:#fff}}</style><path fill="#9135ff" d="M40.151 45.71c-.663.844-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.493c-.92 0-1.457-1.04-.92-1.788l7.479-10.471c1.07-1.498 0-3.578-1.842-3.578H15.443c-.92 0-1.456-1.04-.92-1.788l9.696-13.576c.213-.297.556-.474.92-.474h28.894c.92 0 1.456 1.04.92 1.788l-7.48 10.472c-1.07 1.497 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.087.89 1.83L40.153 45.712z"/><mask id="a" width="48" height="47" x="14" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"><path fill="#000" d="M40.047 45.71c-.663.843-2.02.374-2.02-.699V34.708a2.26 2.26 0 0 0-2.262-2.262H24.389c-.92 0-1.457-1.04-.92-1.788l7.479-10.472c1.07-1.497 0-3.578-1.842-3.578H15.34c-.92 0-1.456-1.04-.92-1.788l9.696-13.575c.213-.297.556-.474.92-.474H53.93c.92 0 1.456 1.04.92 1.788L47.37 13.03c-1.07 1.498 0 3.578 1.842 3.578h11.376c.944 0 1.474 1.088.89 1.831L40.049 45.712z"/></mask><g mask="url(#a)"><g filter="url(#b)"><ellipse cx="5.508" cy="14.704" fill="#eee6ff" rx="5.508" ry="14.704" transform="rotate(269.814 20.96 11.29)scale(-1 1)"/></g><g filter="url(#c)"><ellipse cx="10.399" cy="29.851" fill="#eee6ff" rx="10.399" ry="29.851" transform="rotate(89.814 -16.902 -8.275)scale(1 -1)"/></g><g filter="url(#d)"><ellipse cx="5.508" cy="30.487" fill="#8900ff" rx="5.508" ry="30.487" transform="rotate(89.814 -19.197 -7.127)scale(1 -1)"/></g><g filter="url(#e)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.928 4.177)scale(1 -1)"/></g><g filter="url(#f)"><ellipse cx="5.508" cy="30.599" fill="#8900ff" rx="5.508" ry="30.599" transform="rotate(89.814 -25.738 5.52)scale(1 -1)"/></g><g filter="url(#g)"><ellipse cx="14.072" cy="22.078" fill="#eee6ff" rx="14.072" ry="22.078" transform="rotate(93.35 31.245 55.578)scale(-1 1)"/></g><g filter="url(#h)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#i)"><ellipse cx="3.47" cy="21.501" fill="#8900ff" rx="3.47" ry="21.501" transform="rotate(89.009 35.419 55.202)scale(-1 1)"/></g><g filter="url(#j)"><ellipse cx="14.592" cy="9.743" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(39.51 14.592 9.743)"/></g><g filter="url(#k)"><ellipse cx="61.728" cy="-5.321" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 61.728 -5.32)"/></g><g filter="url(#l)"><ellipse cx="55.618" cy="7.104" fill="#00c2ff" rx="5.971" ry="9.665" transform="rotate(37.892 55.618 7.104)"/></g><g filter="url(#m)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#n)"><ellipse cx="12.326" cy="39.103" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 12.326 39.103)"/></g><g filter="url(#o)"><ellipse cx="49.857" cy="30.678" fill="#8900ff" rx="4.407" ry="29.108" transform="rotate(37.892 49.857 30.678)"/></g><g filter="url(#p)"><ellipse cx="52.623" cy="33.171" fill="#00c2ff" rx="5.971" ry="15.297" transform="rotate(37.892 52.623 33.17)"/></g></g><path d="M6.919 0c-9.198 13.166-9.252 33.575 0 46.789h6.215c-9.25-13.214-9.196-33.623 0-46.789zm62.424 0h-6.215c9.198 13.166 9.252 33.575 0 46.789h6.215c9.25-13.214 9.196-33.623 0-46.789" class="parenthesis"/><defs><filter id="b" width="60.045" height="41.654" x="-5.564" y="16.92" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="c" width="90.34" height="51.437" x="-40.407" y="-6.762" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="d" width="79.355" height="29.4" x="-35.435" y="2.801" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="e" width="79.579" height="29.4" x="-30.84" y="20.8" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="f" width="79.579" height="29.4" x="-29.307" y="21.949" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="g" width="74.749" height="58.852" x="29.961" y="-17.13" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="7.659"/></filter><filter id="h" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="i" width="61.377" height="25.362" x="37.754" y="3.055" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="j" width="56.045" height="63.649" x="-13.43" y="-22.082" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="k" width="54.814" height="64.646" x="34.321" y="-37.644" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="l" width="33.541" height="35.313" x="38.847" y="-10.552" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="m" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="n" width="54.814" height="64.646" x="-15.081" y="6.78" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="o" width="54.814" height="64.646" x="22.45" y="-1.645" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter><filter id="p" width="39.409" height="43.623" x="32.919" y="11.36" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur result="effect1_foregroundBlur_2002_17286" stdDeviation="4.596"/></filter></defs></svg>
@@ -0,0 +1,86 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { View } from 'react-native';
3
+ import { BackButton } from './BackButton';
4
+
5
+ const meta = {
6
+ title: 'Components/Buttons/BackButton',
7
+ component: BackButton,
8
+ parameters: {
9
+ layout: 'centered',
10
+ docs: {
11
+ description: {
12
+ component: `O **BackButton** é o componente de navegação para retroceder nas páginas. Segue o estilo 3D (Flat Design) secundário.
13
+
14
+ ### Casos de Uso (Código)
15
+
16
+ **Uso Básico (Default)**
17
+ O botão principal que acompanha a aplicação inteira em fundos brancos ou claros.
18
+ \`\`\`tsx
19
+ import { BackButton } from '../../components/Buttons/BackButton/BackButton';
20
+
21
+ <BackButton onPress={() => navigation.goBack()} />
22
+ \`\`\`
23
+
24
+ **Variante Glass**
25
+ Perfeito para usar em ecrãs com fundos escuros ou cores fortes (ex: o \`CountryHeader\`). Ele fica com as bordas limpas e com um ligeiro toque branco transparente, fundindo-se com o background.
26
+ \`\`\`tsx
27
+ <BackButton
28
+ variant="glass"
29
+ onPress={() => console.log('Sair')}
30
+ />
31
+ \`\`\`
32
+
33
+ **Desativado**
34
+ \`\`\`tsx
35
+ <BackButton disabled={true} onPress={onBackPress} />
36
+ \`\`\`
37
+ `
38
+ }
39
+ }
40
+ },
41
+ tags: ['autodocs'],
42
+ decorators: [
43
+ (Story) => (
44
+ <View style={{ padding: 40, backgroundColor: '#f5f0eb', alignItems: 'center', justifyContent: 'center' }}>
45
+ <Story />
46
+ </View>
47
+ )
48
+ ]
49
+ } satisfies Meta<any>;
50
+
51
+ export default meta;
52
+ type Story = StoryObj<any>;
53
+
54
+ export const Default: Story = {};
55
+
56
+ export const Disabled: Story = {
57
+ args: {
58
+ disabled: true,
59
+ }
60
+ };
61
+
62
+ export const Glass: Story = {
63
+ args: {
64
+ variant: 'glass',
65
+ },
66
+ parameters: {
67
+ docs: {
68
+ description: {
69
+ story: 'A variante "glass" retira as bordas e a sombra pesada e adiciona um fundo levemente transparente. Ideal para usar sobre fundos escuros ou vibrantes.'
70
+ }
71
+ }
72
+ },
73
+ decorators: [
74
+ (Story) => (
75
+ <View style={{ padding: 40, backgroundColor: '#16915a', alignItems: 'center', justifyContent: 'center', borderRadius: 16 }}>
76
+ <Story />
77
+ </View>
78
+ )
79
+ ]
80
+ };
81
+
82
+ export const Soft: Story = {
83
+ args: {
84
+ variant: 'soft',
85
+ }
86
+ };
@@ -0,0 +1,107 @@
1
+ import React, { useState } from 'react';
2
+ import { Pressable, StyleSheet, Platform } from 'react-native';
3
+ import type { ViewStyle } from 'react-native';
4
+ import { theme } from '../../../styles/theme';
5
+ import { useResponsive } from '../../../hooks/useResponsive';
6
+ import { ChevronLeft } from 'lucide-react-native';
7
+
8
+ export interface BackButtonProps {
9
+ /** Callback para o evento de clique. */
10
+ onPress?: () => void;
11
+ /** Estilização customizada do container. */
12
+ style?: ViewStyle | ViewStyle[];
13
+ /** Se true, desativa a interação do botão. */
14
+ disabled?: boolean;
15
+ /** Variante visual do botão */
16
+ variant?: 'default' | 'glass' | 'soft';
17
+ }
18
+
19
+ export const BackButton = React.forwardRef<React.ElementRef<typeof Pressable>, BackButtonProps>(
20
+ ({ onPress, style, disabled = false, variant = 'default', ...props }, ref) => {
21
+ const [isHovered, setIsHovered] = useState(false);
22
+ const { scale } = useResponsive();
23
+ const isGlass = variant === 'glass';
24
+ const isSoft = variant === 'soft';
25
+
26
+ // Hover effect for Web
27
+ const hoverProps = Platform.OS === 'web' ? {
28
+ onHoverIn: () => !disabled && setIsHovered(true),
29
+ onHoverOut: () => !disabled && setIsHovered(false),
30
+ } : {};
31
+
32
+ return (
33
+ <Pressable
34
+ ref={ref}
35
+ onPress={onPress}
36
+ disabled={disabled}
37
+ style={({ pressed }) => {
38
+ const borderColor = isGlass || isSoft ? 'transparent' : disabled ? '#efe2d6' : isHovered ? '#f2974b' : theme.colors.brown[100];
39
+
40
+ const baseStyles: ViewStyle[] = [
41
+ styles.container,
42
+ {
43
+ width: scale(46),
44
+ height: scale(46),
45
+ borderRadius: scale(16),
46
+ borderColor,
47
+ borderWidth: isGlass || isSoft ? 0 : 2,
48
+ backgroundColor: isGlass ? 'rgba(255, 255, 255, 0.25)' : isSoft ? theme.colors.brown[50] : theme.colors.white,
49
+ },
50
+ style as ViewStyle,
51
+ ];
52
+
53
+ // Define shadows based on platform
54
+ const shadowStyles: ViewStyle = isGlass || isSoft ? {} : Platform.OS === 'web'
55
+ ? { boxShadow: `0px ${scale(4)}px 0px ${theme.colors.brown[100]}` } as any
56
+ : {
57
+ shadowColor: theme.colors.brown[100],
58
+ shadowOffset: { width: 0, height: scale(4) },
59
+ shadowOpacity: 1,
60
+ shadowRadius: 0,
61
+ elevation: 2,
62
+ };
63
+
64
+ if (disabled) {
65
+ if (Platform.OS === 'web') baseStyles.push({ cursor: 'not-allowed' } as any);
66
+ return baseStyles;
67
+ }
68
+
69
+ if (pressed) {
70
+ if (isGlass || isSoft) {
71
+ baseStyles.push({ opacity: 0.7 });
72
+ } else {
73
+ baseStyles.push({
74
+ transform: [{ translateY: scale(4) }],
75
+ });
76
+ // Remove shadow when pressed
77
+ if (Platform.OS === 'web') {
78
+ baseStyles.push({ boxShadow: 'none' } as any);
79
+ } else {
80
+ baseStyles.push({ shadowOpacity: 0, elevation: 0 });
81
+ }
82
+ }
83
+ } else {
84
+ baseStyles.push(shadowStyles);
85
+ }
86
+
87
+ return baseStyles;
88
+ }}
89
+ {...hoverProps}
90
+ {...props}
91
+ >
92
+ <ChevronLeft stroke={isGlass ? "#ffffff" : disabled ? "#b9a392" : theme.colors.brown[800]} strokeWidth={3} size={scale(24)} />
93
+ </Pressable>
94
+ );
95
+ }
96
+ );
97
+
98
+ BackButton.displayName = 'BackButton';
99
+
100
+ const styles = StyleSheet.create({
101
+ container: {
102
+ backgroundColor: theme.colors.white,
103
+ borderWidth: 2,
104
+ alignItems: 'center',
105
+ justifyContent: 'center',
106
+ },
107
+ });
@@ -0,0 +1,74 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { View } from 'react-native';
3
+ import { FabButton } from './FabButton';
4
+
5
+ const meta = {
6
+ title: 'Components/Buttons/FabButton',
7
+ component: FabButton,
8
+ parameters: {
9
+ layout: 'centered',
10
+ docs: {
11
+ description: {
12
+ component: `O **FabButton** (Floating Action Button) é um botão circular perfeito para navegação direcional ou ações primárias flutuantes.
13
+
14
+ Para definir a seta ou outro ícone, passe a prop \`iconName\` com o nome exato da \`lucide-react-native\` (ex: 'ArrowRight').
15
+
16
+ ### Exemplo de Uso
17
+ \`\`\`tsx
18
+ <FabButton
19
+ iconName="ArrowRight"
20
+ variant="primary"
21
+ size="lg"
22
+ onPress={() => console.log('Avançar')}
23
+ />
24
+ \`\`\``
25
+ }
26
+ }
27
+ },
28
+ tags: ['autodocs'],
29
+ decorators: [
30
+ (Story) => (
31
+ <View style={{ padding: 0, backgroundColor: '#f5f0eb', alignItems: 'center', justifyContent: 'center' }}>
32
+ <Story />
33
+ </View>
34
+ )
35
+ ]
36
+ } satisfies Meta<any>;
37
+
38
+ export default meta;
39
+ type Story = StoryObj<any>;
40
+
41
+ export const ArrowRightButton: Story = {
42
+ args: {
43
+ iconName: 'ArrowRight',
44
+ variant: 'primary',
45
+ }
46
+ };
47
+
48
+ export const Disabled: Story = {
49
+ args: {
50
+ iconName: 'ArrowRight',
51
+ disabled: true,
52
+ }
53
+ };
54
+
55
+ export const MediumSize: Story = {
56
+ args: {
57
+ iconName: 'ChevronLeft',
58
+ size: 'md',
59
+ }
60
+ };
61
+
62
+ export const ExtraLargeSize: Story = {
63
+ args: {
64
+ iconName: 'Check',
65
+ size: 'xl',
66
+ }
67
+ };
68
+
69
+ export const SecondaryVariant: Story = {
70
+ args: {
71
+ iconName: 'ArrowRight',
72
+ variant: 'secondary',
73
+ }
74
+ };
@@ -0,0 +1,161 @@
1
+ import React, { useState } from 'react';
2
+ import { Pressable, StyleSheet, Platform } from 'react-native';
3
+ import type { ViewStyle } from 'react-native';
4
+ import { theme } from '../../../styles/theme';
5
+ import { useResponsive } from '../../../hooks/useResponsive';
6
+ import { IconMap } from '../../../utils/iconMap';
7
+ import { Typography } from '../../Typography/Typography';
8
+
9
+ export interface FabButtonProps {
10
+ /** Nome exato do ícone (ex: 'ArrowRight') */
11
+ iconName: string;
12
+ /** Variante do botão para predefinição de cores */
13
+ variant?: 'primary' | 'secondary';
14
+ /** Cor de fundo customizada */
15
+ bgColor?: string;
16
+ /** Cor do ícone customizada */
17
+ iconColor?: string;
18
+ /** Cor da sombra customizada */
19
+ shadowColor?: string;
20
+ /** Cor de fundo no hover (web) */
21
+ hoverColor?: string;
22
+ /** Tamanho do botão (diâmetro do círculo) */
23
+ size?: 'md' | 'lg' | 'xl';
24
+ /** Se o botão está desativado */
25
+ disabled?: boolean;
26
+ /** Callback para o evento de clique */
27
+ onPress?: () => void;
28
+ /** Estilos customizados */
29
+ style?: ViewStyle | ViewStyle[];
30
+ }
31
+
32
+ export const FabButton = React.forwardRef<React.ElementRef<typeof Pressable>, FabButtonProps>(
33
+ (
34
+ {
35
+ iconName,
36
+ variant = 'primary',
37
+ bgColor,
38
+ iconColor,
39
+ shadowColor,
40
+ hoverColor,
41
+ size = 'lg',
42
+ disabled = false,
43
+ onPress,
44
+ style,
45
+ ...props
46
+ },
47
+ ref
48
+ ) => {
49
+ const [isHovered, setIsHovered] = useState(false);
50
+ const { scale } = useResponsive();
51
+
52
+ const Icon = IconMap[iconName] as React.ElementType;
53
+
54
+ const getBgColor = () => {
55
+ if (disabled) return '#efe2d6';
56
+ if (bgColor) return isHovered && hoverColor ? hoverColor : bgColor;
57
+ if (variant === 'primary') return isHovered ? '#e8883e' : theme.colors.primary;
58
+ if (variant === 'secondary') return theme.colors.white;
59
+ return theme.colors.primary;
60
+ };
61
+
62
+ const getIconColor = () => {
63
+ if (disabled) return '#b9a392';
64
+ if (iconColor) return iconColor;
65
+ if (variant === 'primary') return '#ffffff';
66
+ if (variant === 'secondary') return theme.colors.primary;
67
+ return '#ffffff';
68
+ };
69
+
70
+ const getShadowStyles = (): ViewStyle => {
71
+ if (disabled) return {};
72
+
73
+ if (Platform.OS === 'web') {
74
+ const resolvedShadowColor = shadowColor || (variant === 'primary' ? theme.colors.primaryDark : theme.colors.brown[100]);
75
+ return {
76
+ boxShadow: `0px ${scale(4)}px 0px ${resolvedShadowColor}`
77
+ };
78
+ } else {
79
+ if (shadowColor) {
80
+ return {
81
+ shadowColor,
82
+ shadowOffset: { width: 0, height: scale(4) },
83
+ shadowOpacity: 1,
84
+ shadowRadius: 0,
85
+ elevation: 4,
86
+ };
87
+ }
88
+ return variant === 'primary' ? theme.shadows.btnPrimary : theme.shadows.btnSecondary;
89
+ }
90
+ };
91
+
92
+ const sizeValues = {
93
+ md: scale(56),
94
+ lg: scale(72),
95
+ xl: scale(88),
96
+ }[size];
97
+
98
+ const iconSizes = {
99
+ md: scale(28),
100
+ lg: scale(36),
101
+ xl: scale(44),
102
+ }[size];
103
+
104
+ const buttonStyles: ViewStyle[] = [
105
+ styles.base,
106
+ { width: sizeValues, height: sizeValues, borderRadius: sizeValues / 2 },
107
+ { backgroundColor: getBgColor() },
108
+ getShadowStyles(),
109
+ style as ViewStyle,
110
+ ];
111
+
112
+ const hoverProps = Platform.OS === 'web' ? {
113
+ onHoverIn: () => !disabled && setIsHovered(true),
114
+ onHoverOut: () => !disabled && setIsHovered(false),
115
+ } : {};
116
+
117
+ return (
118
+ <Pressable
119
+ ref={ref}
120
+ disabled={disabled}
121
+ onPress={onPress}
122
+ style={({ pressed }) => {
123
+ const stateStyles: ViewStyle[] = [...buttonStyles];
124
+
125
+ if (disabled) {
126
+ if (Platform.OS === 'web') stateStyles.push({ cursor: 'not-allowed' } as any);
127
+ return stateStyles;
128
+ }
129
+
130
+ if (pressed) {
131
+ stateStyles.push({ transform: [{ translateY: scale(4) }] });
132
+ if (Platform.OS === 'web') {
133
+ stateStyles.push({ boxShadow: 'none' } as any);
134
+ } else {
135
+ stateStyles.push({ shadowOpacity: 0, elevation: 0 });
136
+ }
137
+ }
138
+ return stateStyles;
139
+ }}
140
+ {...hoverProps}
141
+ {...props}
142
+ >
143
+ {Icon ? (
144
+ <Icon size={iconSizes} color={getIconColor()} strokeWidth={3.5} />
145
+ ) : (
146
+ <Typography style={{ color: 'red', fontSize: 10 }}>Missing</Typography>
147
+ )}
148
+ </Pressable>
149
+ );
150
+ }
151
+ );
152
+
153
+ FabButton.displayName = 'FabButton';
154
+
155
+ const styles = StyleSheet.create({
156
+ base: {
157
+ alignItems: 'center',
158
+ justifyContent: 'center',
159
+ overflow: 'visible',
160
+ },
161
+ });
@@ -0,0 +1,99 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import { View } from 'react-native';
3
+ import { IconButton } from './IconButton';
4
+
5
+ const meta = {
6
+ title: 'Components/Buttons/IconButton',
7
+ component: IconButton,
8
+ parameters: {
9
+ layout: 'centered',
10
+ docs: {
11
+ description: {
12
+ component: `O **IconButton** é o componente usado para botões de ação que são focados num ícone, com formato perfeitamente quadrado e suporte a texto curto por baixo (ex: botão LENTO ou PLAY).
13
+
14
+ Para passar o ícone, defina \`iconName\` com o nome exportado pela biblioteca **lucide-react-native** (ex: 'Play', 'Volume2').
15
+
16
+ ### Exemplo de Uso
17
+ \`\`\`tsx
18
+ <IconButton
19
+ iconName="Volume2"
20
+ variant="primary"
21
+ size="md"
22
+ onPress={() => console.log('Ouvir som normal')}
23
+ />
24
+
25
+ {/* Com subtítulo */}
26
+ <IconButton
27
+ iconName="Volume1"
28
+ text="Lento"
29
+ variant="secondary"
30
+ onPress={() => console.log('Ouvir som lento')}
31
+ />
32
+ \`\`\``
33
+ }
34
+ }
35
+ },
36
+ tags: ['autodocs'],
37
+ decorators: [
38
+ (Story) => (
39
+ <View style={{ padding: 0, backgroundColor: '#f5f0eb', alignItems: 'center', justifyContent: 'center' }}>
40
+ <Story />
41
+ </View>
42
+ )
43
+ ]
44
+ } satisfies Meta<any>;
45
+
46
+ export default meta;
47
+ type Story = StoryObj<any>;
48
+
49
+ export const PlayButton: Story = {
50
+ args: {
51
+ iconName: 'Play',
52
+ variant: 'primary',
53
+ }
54
+ };
55
+
56
+ export const SoundButton: Story = {
57
+ args: {
58
+ iconName: 'Volume2',
59
+ variant: 'primary',
60
+ }
61
+ };
62
+
63
+ export const SoundLentoButton: Story = {
64
+ args: {
65
+ iconName: 'Volume1',
66
+ text: 'Lento',
67
+ variant: 'secondary',
68
+ }
69
+ };
70
+
71
+ export const Disabled: Story = {
72
+ args: {
73
+ iconName: 'Play',
74
+ disabled: true,
75
+ }
76
+ };
77
+
78
+ export const SmallSize: Story = {
79
+ args: {
80
+ iconName: 'Check',
81
+ size: 'sm',
82
+ }
83
+ };
84
+
85
+ export const LargeSize: Story = {
86
+ args: {
87
+ iconName: 'Info',
88
+ size: 'lg',
89
+ }
90
+ };
91
+
92
+ export const CustomColor: Story = {
93
+ args: {
94
+ iconName: 'X',
95
+ bgColor: '#cf5b48',
96
+ shadowColor: '#a14030',
97
+ iconColor: '#ffffff',
98
+ }
99
+ };