@umituz/react-native-design-system 2.4.6 → 2.4.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "2.4.6",
3
+ "version": "2.4.8",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -0,0 +1,190 @@
1
+ /**
2
+ * AtomicSpinner - Universal Loading Spinner Component
3
+ *
4
+ * Displays loading indicators with flexible configuration
5
+ *
6
+ * Atomic Design Level: ATOM
7
+ * Purpose: Loading state indication across all apps
8
+ *
9
+ * Usage:
10
+ * - Page loading states
11
+ * - Button loading states
12
+ * - Data fetching indicators
13
+ * - Async operation feedback
14
+ */
15
+
16
+ import React from 'react';
17
+ import { View, ActivityIndicator, StyleSheet, ViewStyle } from 'react-native';
18
+ import { useAppDesignTokens } from '../theme';
19
+ import { AtomicText } from './AtomicText';
20
+
21
+ // =============================================================================
22
+ // TYPE DEFINITIONS
23
+ // =============================================================================
24
+
25
+ export type SpinnerSize = 'sm' | 'md' | 'lg' | 'xl';
26
+ export type SpinnerColor = 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'white';
27
+
28
+ export interface AtomicSpinnerProps {
29
+ /** Spinner size preset or custom number */
30
+ size?: SpinnerSize | number;
31
+ /** Spinner color preset or custom hex */
32
+ color?: SpinnerColor | string;
33
+ /** Optional loading text */
34
+ text?: string;
35
+ /** Text position relative to spinner */
36
+ textPosition?: 'bottom' | 'right';
37
+ /** Fill entire parent container */
38
+ fullContainer?: boolean;
39
+ /** Show semi-transparent overlay behind spinner */
40
+ overlay?: boolean;
41
+ /** Overlay background color */
42
+ overlayColor?: string;
43
+ /** Style overrides for container */
44
+ style?: ViewStyle | ViewStyle[];
45
+ /** Test ID for testing */
46
+ testID?: string;
47
+ }
48
+
49
+ // =============================================================================
50
+ // SIZE MAPPINGS
51
+ // =============================================================================
52
+
53
+ const SIZE_MAP: Record<SpinnerSize, number> = {
54
+ sm: 16,
55
+ md: 24,
56
+ lg: 36,
57
+ xl: 48,
58
+ };
59
+
60
+ const ACTIVITY_SIZE_MAP: Record<SpinnerSize, 'small' | 'large'> = {
61
+ sm: 'small',
62
+ md: 'small',
63
+ lg: 'large',
64
+ xl: 'large',
65
+ };
66
+
67
+ // =============================================================================
68
+ // COMPONENT IMPLEMENTATION
69
+ // =============================================================================
70
+
71
+ export const AtomicSpinner: React.FC<AtomicSpinnerProps> = ({
72
+ size = 'md',
73
+ color = 'primary',
74
+ text,
75
+ textPosition = 'bottom',
76
+ fullContainer = false,
77
+ overlay = false,
78
+ overlayColor,
79
+ style,
80
+ testID,
81
+ }) => {
82
+ const tokens = useAppDesignTokens();
83
+
84
+ // Resolve size
85
+ const resolvedSize = typeof size === 'number' ? size : SIZE_MAP[size];
86
+ const activitySize = typeof size === 'number'
87
+ ? (size >= 30 ? 'large' : 'small')
88
+ : ACTIVITY_SIZE_MAP[size];
89
+
90
+ // Resolve color
91
+ const resolveColor = (): string => {
92
+ if (color.startsWith('#') || color.startsWith('rgb')) {
93
+ return color;
94
+ }
95
+ const colorMap: Record<SpinnerColor, string> = {
96
+ primary: tokens.colors.primary,
97
+ secondary: tokens.colors.secondary,
98
+ success: tokens.colors.success,
99
+ error: tokens.colors.error,
100
+ warning: tokens.colors.warning,
101
+ white: '#FFFFFF',
102
+ };
103
+ return colorMap[color as SpinnerColor] || tokens.colors.primary;
104
+ };
105
+
106
+ const spinnerColor = resolveColor();
107
+ const resolvedOverlayColor = overlayColor || 'rgba(0, 0, 0, 0.5)';
108
+
109
+ // Container styles
110
+ const containerStyles: ViewStyle[] = [
111
+ styles.container,
112
+ textPosition === 'right' && styles.containerRow,
113
+ fullContainer && styles.fullContainer,
114
+ overlay && [styles.overlay, { backgroundColor: resolvedOverlayColor }],
115
+ ].filter(Boolean) as ViewStyle[];
116
+
117
+ // Spinner wrapper styles
118
+ const spinnerWrapperStyles: ViewStyle = {
119
+ width: resolvedSize,
120
+ height: resolvedSize,
121
+ justifyContent: 'center',
122
+ alignItems: 'center',
123
+ };
124
+
125
+ return (
126
+ <View
127
+ style={[containerStyles, style]}
128
+ testID={testID}
129
+ accessibilityRole="progressbar"
130
+ accessibilityLabel={text || 'Loading'}
131
+ accessibilityLiveRegion="polite"
132
+ >
133
+ <View style={spinnerWrapperStyles}>
134
+ <ActivityIndicator
135
+ size={activitySize}
136
+ color={spinnerColor}
137
+ testID={testID ? `${testID}-indicator` : undefined}
138
+ />
139
+ </View>
140
+ {text && (
141
+ <AtomicText
142
+ type="bodyMedium"
143
+ style={[
144
+ styles.text,
145
+ textPosition === 'right' ? styles.textRight : styles.textBottom,
146
+ { color: overlay ? '#FFFFFF' : tokens.colors.textSecondary },
147
+ ]}
148
+ >
149
+ {text}
150
+ </AtomicText>
151
+ )}
152
+ </View>
153
+ );
154
+ };
155
+
156
+ // =============================================================================
157
+ // STYLES
158
+ // =============================================================================
159
+
160
+ const styles = StyleSheet.create({
161
+ container: {
162
+ justifyContent: 'center',
163
+ alignItems: 'center',
164
+ },
165
+ containerRow: {
166
+ flexDirection: 'row',
167
+ },
168
+ fullContainer: {
169
+ flex: 1,
170
+ },
171
+ overlay: {
172
+ ...StyleSheet.absoluteFillObject,
173
+ zIndex: 999,
174
+ },
175
+ text: {
176
+ textAlign: 'center',
177
+ },
178
+ textBottom: {
179
+ marginTop: 12,
180
+ },
181
+ textRight: {
182
+ marginLeft: 12,
183
+ },
184
+ });
185
+
186
+ // =============================================================================
187
+ // EXPORTS
188
+ // =============================================================================
189
+
190
+ export default AtomicSpinner;
@@ -87,3 +87,11 @@ export {
87
87
  type BadgeVariant,
88
88
  type BadgeSize,
89
89
  } from './AtomicBadge';
90
+
91
+ // Spinner
92
+ export {
93
+ AtomicSpinner,
94
+ type AtomicSpinnerProps,
95
+ type SpinnerSize,
96
+ type SpinnerColor,
97
+ } from './AtomicSpinner';
package/src/index.ts CHANGED
@@ -192,6 +192,7 @@ export {
192
192
  AtomicDatePicker,
193
193
  AtomicSkeleton,
194
194
  AtomicBadge,
195
+ AtomicSpinner,
195
196
  type IconName,
196
197
  type IconSize,
197
198
  type IconColor,
@@ -224,6 +225,9 @@ export {
224
225
  type AtomicBadgeProps,
225
226
  type BadgeVariant,
226
227
  type BadgeSize,
228
+ type AtomicSpinnerProps,
229
+ type SpinnerSize,
230
+ type SpinnerColor,
227
231
  } from './atoms';
228
232
 
229
233
  // =============================================================================