@janiscommerce/ui-native 1.17.0 → 1.18.0

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.
@@ -1,5 +1,5 @@
1
1
  import { FC } from 'react';
2
- interface Props {
2
+ export interface Props {
3
3
  name: string;
4
4
  color?: string;
5
5
  size?: number;
@@ -1,7 +1,10 @@
1
1
  import React from 'react';
2
- import { ImageProps as ImageRNProps, ImageSourcePropType } from 'react-native';
3
- interface ImageProps extends ImageRNProps {
4
- source: ImageSourcePropType;
2
+ import { Props as NativeIconProps } from '../Icon';
3
+ import { ViewStyle } from 'react-native';
4
+ import { FastImageProps } from 'react-native-fast-image';
5
+ interface ImageProps extends FastImageProps {
6
+ iconProps?: NativeIconProps;
7
+ iconBackgroundStyle?: ViewStyle;
5
8
  }
6
- declare const Image: ({ source, ...props }: ImageProps) => React.JSX.Element | null;
9
+ declare const Image: ({ source, iconProps, iconBackgroundStyle, onError, ...props }: ImageProps) => React.JSX.Element;
7
10
  export default Image;
@@ -1,13 +1,30 @@
1
- import React from 'react';
2
- import { Image as ImageComp } from 'react-native';
3
- const Image = ({ source, ...props }) => {
4
- if (!source || typeof source !== 'object' || !Object.keys(source).length) {
5
- return null;
1
+ import React, { useState } from 'react';
2
+ import Icon from '../Icon';
3
+ import { palette } from '../../../theme/palette';
4
+ import { View, StyleSheet } from 'react-native';
5
+ import FastImage from 'react-native-fast-image';
6
+ const Image = ({ source, iconProps, iconBackgroundStyle = {}, onError, ...props }) => {
7
+ const [showPlaceholderImage, setShowPlaceholderImage] = useState(false);
8
+ const styles = StyleSheet.create({
9
+ iconBackground: {
10
+ backgroundColor: palette.white.light,
11
+ display: 'flex',
12
+ alignItems: 'center',
13
+ justifyContent: 'center',
14
+ },
15
+ });
16
+ const placeholderStyle = [styles.iconBackground, iconBackgroundStyle, props.style].filter(Boolean);
17
+ const handleError = () => {
18
+ if (onError) {
19
+ onError();
20
+ }
21
+ setShowPlaceholderImage(true);
22
+ };
23
+ if (showPlaceholderImage || !source) {
24
+ return (<View style={placeholderStyle}>
25
+ <Icon name="exclamation_circle" color={palette.white.dark} size={36} {...iconProps}/>
26
+ </View>);
6
27
  }
7
- const sourceKeys = Object.keys(source);
8
- if (!sourceKeys.includes('uri')) {
9
- return null;
10
- }
11
- return <ImageComp source={source} {...props}/>;
28
+ return <FastImage onError={handleError} source={source} {...props}/>;
12
29
  };
13
30
  export default Image;
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { ModalProps as NativeModalProps, ViewStyle } from 'react-native';
3
+ export interface UIModalProps extends NativeModalProps {
4
+ oncloseCallback?: () => void;
5
+ showCloseButton?: boolean;
6
+ fullScreen?: boolean;
7
+ modalContainerStyle?: ViewStyle;
8
+ canClose?: boolean;
9
+ }
10
+ interface RefProps {
11
+ open?: () => void;
12
+ close?: () => void;
13
+ }
14
+ declare const Modal: React.ForwardRefExoticComponent<UIModalProps & React.RefAttributes<RefProps>>;
15
+ export default Modal;
@@ -0,0 +1,84 @@
1
+ import Icon from '../Icon';
2
+ import React, { useState, forwardRef, useImperativeHandle } from 'react';
3
+ import { Modal as NativeModal, Pressable, StyleSheet, View, } from 'react-native';
4
+ import { horizontalScale } from '../../../scale';
5
+ import { verticalScale, moderateScale } from '../../../scale';
6
+ import { palette } from '../../../theme/palette';
7
+ const styles = StyleSheet.create({
8
+ Overlay: {
9
+ flex: 1,
10
+ backgroundColor: 'rgba(0,0,0,0.6)',
11
+ justifyContent: 'center',
12
+ alignItems: 'center',
13
+ },
14
+ ModalWrapper: {
15
+ backgroundColor: palette.base.white,
16
+ alignItems: 'center',
17
+ justifyContent: 'center',
18
+ elevation: 12,
19
+ minWidth: horizontalScale(50),
20
+ width: horizontalScale(280),
21
+ marginHorizontal: horizontalScale(20),
22
+ borderRadius: verticalScale(18),
23
+ zIndex: 1,
24
+ },
25
+ Shadow: {
26
+ shadowOffset: {
27
+ width: 0,
28
+ height: 2,
29
+ },
30
+ shadowOpacity: 0.25,
31
+ },
32
+ FullScreen: {
33
+ position: 'absolute',
34
+ top: 0,
35
+ bottom: 0,
36
+ left: 0,
37
+ right: 0,
38
+ backgroundColor: palette.base.white,
39
+ zIndex: 2,
40
+ },
41
+ HeaderWrapper: {
42
+ flexDirection: 'row',
43
+ justifyContent: 'flex-end',
44
+ alignItems: 'center',
45
+ zIndex: 3,
46
+ minHeight: verticalScale(52),
47
+ backgroundColor: palette.base.white,
48
+ },
49
+ CloseButton: {
50
+ position: 'absolute',
51
+ top: moderateScale(12),
52
+ right: moderateScale(12),
53
+ },
54
+ });
55
+ const Modal = forwardRef(({ children = null, oncloseCallback = undefined, showCloseButton = false, canClose = true, animationType = 'fade', transparent = true, fullScreen = false, modalContainerStyle = {}, ...props }, ref) => {
56
+ const [isVisible, setIsVisible] = useState(false);
57
+ const renderCloseButton = fullScreen && showCloseButton;
58
+ const handleClose = () => {
59
+ if (oncloseCallback) {
60
+ oncloseCallback();
61
+ }
62
+ setIsVisible(false);
63
+ };
64
+ useImperativeHandle(ref, () => ({
65
+ open: () => setIsVisible(true),
66
+ close: () => setIsVisible(false),
67
+ }));
68
+ return (<NativeModal visible={isVisible} transparent={transparent} animationType={animationType} {...props} {...(canClose && {
69
+ onRequestClose: handleClose,
70
+ })}>
71
+ <View style={styles.Overlay}>
72
+ {!fullScreen && (<Pressable style={StyleSheet.absoluteFill} disabled={!canClose} onPress={handleClose}/>)}
73
+ <View style={fullScreen
74
+ ? styles.FullScreen
75
+ : [styles.ModalWrapper, styles.Shadow, modalContainerStyle]}>
76
+ {renderCloseButton && canClose && (<Pressable onPress={handleClose} style={styles.HeaderWrapper} accessibilityLabel="Close modal" accessibilityRole="button">
77
+ <Icon name="cross_light" size={24} color={palette.black.main} style={styles.CloseButton}/>
78
+ </Pressable>)}
79
+ {children}
80
+ </View>
81
+ </View>
82
+ </NativeModal>);
83
+ });
84
+ export default Modal;
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ import Text from './components/atoms/Text';
13
13
  import BaseInput from './components/atoms/BaseInput';
14
14
  import Typography from './components/atoms/Typography';
15
15
  import Collapsible from './components/atoms/Collapsible';
16
+ import Modal from './components/atoms/Modal';
16
17
  import Avatar from './components/molecules/Avatar';
17
18
  import Button from './components/molecules/Button';
18
19
  import Carousel from './components/molecules/Carousel';
@@ -31,4 +32,4 @@ import SwipeItemSelectionList from './components/organisms/SwipeItemSelectionLis
31
32
  import ErrorBoundary from './components/organisms/ErrorBoundary';
32
33
  import { palette } from './theme/palette';
33
34
  import * as getScale from './scale';
34
- export { Text, Avatar, CheckBox, Icon, Image, Input, Loading, Svg, StatusChip, palette, LoadingFullScreen, RadioButton, Select, SwipeUp, SwipeUpFlatList, SwipeUpScrollView, SwipeUpView, Carousel, ProgressBar, List, BaseButton, Button, getScale, LayoutWithBottomButtons, FullScreenMessage, Toast, configToast, SwipeList, ItemSelectionButton, SwipeItemSelectionList, MainCardList, BaseInput, Typography, Collapsible, ErrorBoundary, };
35
+ export { Text, Avatar, CheckBox, Icon, Image, Input, Loading, Svg, StatusChip, palette, LoadingFullScreen, RadioButton, Select, SwipeUp, SwipeUpFlatList, SwipeUpScrollView, SwipeUpView, Carousel, ProgressBar, List, BaseButton, Button, getScale, LayoutWithBottomButtons, FullScreenMessage, Toast, configToast, SwipeList, ItemSelectionButton, SwipeItemSelectionList, MainCardList, BaseInput, Typography, Collapsible, ErrorBoundary, Modal, };
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ import Text from './components/atoms/Text';
14
14
  import BaseInput from './components/atoms/BaseInput';
15
15
  import Typography from './components/atoms/Typography';
16
16
  import Collapsible from './components/atoms/Collapsible';
17
+ import Modal from './components/atoms/Modal';
17
18
  // Molecules
18
19
  import Avatar from './components/molecules/Avatar';
19
20
  import Button from './components/molecules/Button';
@@ -35,4 +36,4 @@ import ErrorBoundary from './components/organisms/ErrorBoundary';
35
36
  // Misc
36
37
  import { palette } from './theme/palette';
37
38
  import * as getScale from './scale';
38
- export { Text, Avatar, CheckBox, Icon, Image, Input, Loading, Svg, StatusChip, palette, LoadingFullScreen, RadioButton, Select, SwipeUp, SwipeUpFlatList, SwipeUpScrollView, SwipeUpView, Carousel, ProgressBar, List, BaseButton, Button, getScale, LayoutWithBottomButtons, FullScreenMessage, Toast, configToast, SwipeList, ItemSelectionButton, SwipeItemSelectionList, MainCardList, BaseInput, Typography, Collapsible, ErrorBoundary, };
39
+ export { Text, Avatar, CheckBox, Icon, Image, Input, Loading, Svg, StatusChip, palette, LoadingFullScreen, RadioButton, Select, SwipeUp, SwipeUpFlatList, SwipeUpScrollView, SwipeUpView, Carousel, ProgressBar, List, BaseButton, Button, getScale, LayoutWithBottomButtons, FullScreenMessage, Toast, configToast, SwipeList, ItemSelectionButton, SwipeItemSelectionList, MainCardList, BaseInput, Typography, Collapsible, ErrorBoundary, Modal, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@janiscommerce/ui-native",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "description": "components library for Janis app",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -47,6 +47,7 @@
47
47
  "react": ">=17.0.2",
48
48
  "react-native": ">=0.67.5",
49
49
  "react-native-gesture-handler": ">=2.9.0",
50
+ "react-native-fast-image": "^8.5.11",
50
51
  "react-native-reanimated": "2.17.0",
51
52
  "react-native-toast-message": ">=1.6.0"
52
53
  },
@@ -96,6 +97,7 @@
96
97
  "react": "17.0.2",
97
98
  "react-dom": "^17.0.2",
98
99
  "react-native": "0.67.5",
100
+ "react-native-fast-image": "^8.5.11",
99
101
  "react-native-svg-transformer": "^1.0.0",
100
102
  "react-test-renderer": "17.0.2",
101
103
  "setup-env": "^2.0.0",