@codeleap/mobile 5.0.9 → 5.0.11
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/dist/components/Autocomplete/types.d.ts +1 -2
- package/dist/components/Backdrop/index.js +2 -2
- package/dist/components/Backdrop/index.js.map +1 -1
- package/dist/components/DatePickerModal/index.js +2 -3
- package/dist/components/DatePickerModal/index.js.map +1 -1
- package/dist/components/Modal/index.d.ts +0 -1
- package/dist/components/Modal/index.js +25 -41
- package/dist/components/Modal/index.js.map +1 -1
- package/dist/components/Modal/styles.d.ts +1 -1
- package/dist/components/Modal/types.d.ts +1 -2
- package/dist/components/Pager/PagerItem.d.ts +7 -0
- package/dist/components/Pager/PagerItem.js +12 -0
- package/dist/components/Pager/PagerItem.js.map +1 -0
- package/dist/components/Pager/index.js +34 -25
- package/dist/components/Pager/index.js.map +1 -1
- package/dist/components/Pager/types.d.ts +2 -3
- package/dist/components/Select/index.js +4 -5
- package/dist/components/Select/index.js.map +1 -1
- package/dist/components/Select/types.d.ts +1 -2
- package/dist/components/SortablePhotos/useSortablePhotos.js +2 -6
- package/dist/components/SortablePhotos/useSortablePhotos.js.map +1 -1
- package/dist/deprecated/index.d.ts +1 -0
- package/dist/deprecated/index.js +2 -0
- package/dist/deprecated/index.js.map +1 -1
- package/dist/{utils/ModalManager/context.js → deprecated/modals/Context.js} +3 -6
- package/dist/deprecated/modals/Context.js.map +1 -0
- package/dist/{utils/ModalManager → deprecated/modals}/components.js +1 -1
- package/dist/deprecated/modals/components.js.map +1 -0
- package/dist/{utils/ModalManager → deprecated/modals}/index.d.ts +1 -1
- package/dist/{utils/ModalManager → deprecated/modals}/index.js +1 -1
- package/dist/deprecated/modals/index.js.map +1 -0
- package/dist/deprecated/permissions/Context.js +1 -1
- package/dist/deprecated/permissions/Context.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/types/utility.d.ts +8 -0
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/index.js +0 -2
- package/dist/utils/index.js.map +1 -1
- package/package.json +27 -25
- package/package.json.bak +14 -12
- package/src/components/Autocomplete/types.ts +1 -2
- package/src/components/Backdrop/index.tsx +2 -2
- package/src/components/DatePickerModal/index.tsx +2 -3
- package/src/components/Modal/index.tsx +77 -96
- package/src/components/Modal/styles.ts +0 -1
- package/src/components/Modal/types.ts +1 -2
- package/src/components/Pager/PagerItem.tsx +20 -0
- package/src/components/Pager/index.tsx +57 -32
- package/src/components/Pager/types.ts +2 -3
- package/src/components/Select/index.tsx +4 -4
- package/src/components/Select/types.ts +1 -2
- package/src/components/SortablePhotos/useSortablePhotos.ts +2 -7
- package/src/deprecated/index.ts +2 -1
- package/src/{utils/ModalManager/context.tsx → deprecated/modals/Context.tsx} +9 -11
- package/src/{utils/ModalManager → deprecated/modals}/components.tsx +5 -5
- package/src/{utils/ModalManager → deprecated/modals}/index.ts +2 -2
- package/src/deprecated/permissions/Context.tsx +1 -1
- package/src/index.ts +1 -2
- package/src/types/utility.ts +8 -0
- package/src/utils/index.ts +0 -2
- package/dist/utils/KeyboardAware/context.d.ts +0 -14
- package/dist/utils/KeyboardAware/context.js +0 -15
- package/dist/utils/KeyboardAware/context.js.map +0 -1
- package/dist/utils/KeyboardAware/index.d.ts +0 -2
- package/dist/utils/KeyboardAware/index.js +0 -3
- package/dist/utils/KeyboardAware/index.js.map +0 -1
- package/dist/utils/KeyboardAware/keyboardHooks.d.ts +0 -21
- package/dist/utils/KeyboardAware/keyboardHooks.js +0 -77
- package/dist/utils/KeyboardAware/keyboardHooks.js.map +0 -1
- package/dist/utils/ModalManager/components.js.map +0 -1
- package/dist/utils/ModalManager/context.js.map +0 -1
- package/dist/utils/ModalManager/index.js.map +0 -1
- package/src/utils/KeyboardAware/context.tsx +0 -21
- package/src/utils/KeyboardAware/index.ts +0 -4
- package/src/utils/KeyboardAware/keyboardHooks.ts +0 -110
- /package/dist/{utils/ModalManager/context.d.ts → deprecated/modals/Context.d.ts} +0 -0
- /package/dist/{utils/ModalManager → deprecated/modals}/components.d.ts +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { memoBy } from '@codeleap/utils'
|
|
2
|
+
import { PageProps } from './types'
|
|
3
|
+
import { TypeGuards } from '@codeleap/types'
|
|
4
|
+
|
|
5
|
+
type PagerItemComponentProps = PageProps<any> & {
|
|
6
|
+
renderItem: (props: any) => JSX.Element
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function PagerItemComponent(props: PagerItemComponentProps) {
|
|
10
|
+
const { item, renderItem: RenderItem, ...info } = props
|
|
11
|
+
|
|
12
|
+
if (TypeGuards.isFunction(item)) {
|
|
13
|
+
const ItemComponent = item
|
|
14
|
+
return <ItemComponent {...info} />
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return <RenderItem {...info} item={item} />
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export const PagerItem = memoBy(PagerItemComponent, ['renderItem', 'item'])
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import React, { useCallback, useRef, useState } from 'react'
|
|
1
|
+
import React, { useCallback, useEffect, useRef, useState } from 'react'
|
|
2
2
|
import { ReduceMotion } from 'react-native-reanimated'
|
|
3
3
|
import Carousel, { ICarouselInstance } from 'react-native-reanimated-carousel'
|
|
4
4
|
import { CarouselRenderItemInfo, TCarouselProps } from 'react-native-reanimated-carousel/lib/typescript/types'
|
|
5
5
|
import { Dimensions, LayoutChangeEvent } from 'react-native'
|
|
6
|
-
import {
|
|
7
|
-
import { onUpdate, useConditionalState } from '@codeleap/hooks'
|
|
6
|
+
import { useConditionalState } from '@codeleap/hooks'
|
|
8
7
|
import { AnyRecord, IJSX, StyledComponentProps, useNestedStylesByKey } from '@codeleap/styles'
|
|
9
8
|
import { useStylesFor } from '../../hooks'
|
|
10
9
|
import { MobileStyleRegistry } from '../../Registry'
|
|
11
10
|
import { View } from '../View'
|
|
12
11
|
import { PageProps, PagerProps } from './types'
|
|
13
12
|
import { PagerDots } from './PagerDots'
|
|
13
|
+
import { PagerItem } from './PagerItem'
|
|
14
14
|
|
|
15
15
|
export * from './styles'
|
|
16
16
|
export * from './types'
|
|
17
17
|
export * from './PagerDots'
|
|
18
18
|
|
|
19
|
-
const window = Dimensions.get('
|
|
19
|
+
const window = Dimensions.get('screen')
|
|
20
20
|
|
|
21
21
|
export function Pager<T>(props: PagerProps<T>) {
|
|
22
22
|
const {
|
|
@@ -26,73 +26,95 @@ export function Pager<T>(props: PagerProps<T>) {
|
|
|
26
26
|
initialPage,
|
|
27
27
|
style,
|
|
28
28
|
showDots,
|
|
29
|
-
renderItem
|
|
29
|
+
renderItem,
|
|
30
30
|
footer,
|
|
31
31
|
width: carouselWidth,
|
|
32
32
|
height: carouselHeight,
|
|
33
33
|
autoCalculateFooterHeight,
|
|
34
|
+
removeFixedHeight,
|
|
35
|
+
removeFixedWidth,
|
|
34
36
|
...rest
|
|
35
37
|
} = {
|
|
36
38
|
...Pager.defaultProps,
|
|
37
39
|
...props,
|
|
38
40
|
}
|
|
39
41
|
|
|
40
|
-
const [currentPage, setCurrentPage] = useConditionalState(page, onChangePage, { initialValue: initialPage })
|
|
41
42
|
const carouselRef = useRef<ICarouselInstance>(null)
|
|
43
|
+
|
|
44
|
+
const [currentPage, setCurrentPage] = useConditionalState(page, onChangePage, { initialValue: initialPage })
|
|
42
45
|
const [footerHeight, setFooterHeight] = useState(0)
|
|
46
|
+
const [loaded, setLoaded] = useState(!showDots && !footer ? true : false)
|
|
43
47
|
|
|
44
48
|
const styles = useStylesFor(Pager.styleRegistryName, style)
|
|
45
49
|
const dotStyles = useNestedStylesByKey('dot', styles)
|
|
46
50
|
|
|
47
|
-
|
|
48
|
-
carouselRef.current?.
|
|
51
|
+
useEffect(() => {
|
|
52
|
+
if (carouselRef.current?.getCurrentIndex?.() !== currentPage) {
|
|
53
|
+
carouselRef.current?.scrollTo?.({ index: currentPage, animated: true })
|
|
54
|
+
}
|
|
49
55
|
}, [currentPage])
|
|
50
56
|
|
|
51
|
-
const
|
|
52
|
-
const
|
|
57
|
+
const getItemInfo = useCallback((index: number) => {
|
|
58
|
+
const info: Omit<PageProps<T>, 'item' | 'animationValue'> = {
|
|
53
59
|
isFirst: index === 0,
|
|
54
60
|
isLast: index === pages?.length - 1,
|
|
55
61
|
isOnly: pages?.length === 1,
|
|
56
|
-
isActive: index === currentPage,
|
|
57
|
-
isNext: index === currentPage + 1,
|
|
58
|
-
isPrevious: index === currentPage - 1,
|
|
59
62
|
index,
|
|
60
|
-
animationValue,
|
|
61
63
|
}
|
|
62
64
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
return info
|
|
66
|
+
}, [])
|
|
67
|
+
|
|
68
|
+
const customRenderItem = useCallback(({ item, index, animationValue }: CarouselRenderItemInfo<any>) => {
|
|
69
|
+
const info = getItemInfo(index)
|
|
67
70
|
|
|
68
|
-
return
|
|
69
|
-
|
|
71
|
+
return (
|
|
72
|
+
<PagerItem
|
|
73
|
+
{...info}
|
|
74
|
+
renderItem={renderItem}
|
|
75
|
+
item={item}
|
|
76
|
+
animationValue={animationValue}
|
|
77
|
+
/>
|
|
78
|
+
)
|
|
79
|
+
}, [renderItem, getItemInfo])
|
|
80
|
+
|
|
81
|
+
const onFooterLayout = useCallback((event: LayoutChangeEvent) => {
|
|
82
|
+
setFooterHeight(event.nativeEvent.layout.height)
|
|
83
|
+
setTimeout(() => setLoaded(true), 0)
|
|
84
|
+
}, [])
|
|
85
|
+
|
|
86
|
+
const width = carouselWidth - removeFixedWidth
|
|
87
|
+
const height = carouselHeight - ((autoCalculateFooterHeight ? footerHeight : 0) + removeFixedHeight)
|
|
70
88
|
|
|
71
89
|
return (
|
|
72
|
-
<View style={styles.wrapper}>
|
|
90
|
+
<View style={[{ width, opacity: !loaded ? 0 : 1 }, styles.wrapper]}>
|
|
73
91
|
<Carousel
|
|
74
92
|
data={pages}
|
|
93
|
+
autoPlay={false}
|
|
94
|
+
loop={false}
|
|
95
|
+
overscrollEnabled={false}
|
|
96
|
+
pagingEnabled={false}
|
|
97
|
+
ref={carouselRef}
|
|
98
|
+
defaultIndex={initialPage}
|
|
99
|
+
onSnapToItem={setCurrentPage}
|
|
100
|
+
maxScrollDistancePerSwipe={carouselWidth}
|
|
101
|
+
minScrollDistancePerSwipe={carouselWidth * 0.1}
|
|
102
|
+
width={width}
|
|
103
|
+
height={height}
|
|
104
|
+
renderItem={customRenderItem}
|
|
75
105
|
withAnimation={{
|
|
76
106
|
type: 'timing',
|
|
77
107
|
config: {
|
|
78
108
|
reduceMotion: ReduceMotion.Never,
|
|
79
109
|
},
|
|
80
110
|
}}
|
|
81
|
-
autoPlay={false}
|
|
82
|
-
ref={carouselRef}
|
|
83
|
-
loop={false}
|
|
84
|
-
defaultIndex={initialPage}
|
|
85
|
-
onSnapToItem={setCurrentPage}
|
|
86
|
-
maxScrollDistancePerSwipe={carouselWidth}
|
|
87
|
-
width={carouselWidth}
|
|
88
|
-
height={carouselHeight - (autoCalculateFooterHeight ? footerHeight : 0)}
|
|
89
|
-
renderItem={renderItem}
|
|
90
111
|
{...rest as TCarouselProps<T>}
|
|
91
112
|
style={styles.carousel}
|
|
92
113
|
/>
|
|
93
114
|
|
|
94
|
-
<View onLayout={
|
|
95
|
-
{
|
|
115
|
+
<View onLayout={onFooterLayout} style={styles.footerWrapper}>
|
|
116
|
+
{footer}
|
|
117
|
+
|
|
96
118
|
{showDots ? (
|
|
97
119
|
<PagerDots currentPage={currentPage} pages={pages} setCurrentPage={setCurrentPage} styles={dotStyles} />
|
|
98
120
|
) : null}
|
|
@@ -115,6 +137,9 @@ Pager.defaultProps = {
|
|
|
115
137
|
showDots: true,
|
|
116
138
|
autoCalculateFooterHeight: true,
|
|
117
139
|
initialPage: 0,
|
|
140
|
+
footer: null,
|
|
141
|
+
removeFixedHeight: 0,
|
|
142
|
+
removeFixedWidth: 0,
|
|
118
143
|
} as Partial<PagerProps<unknown>>
|
|
119
144
|
|
|
120
145
|
MobileStyleRegistry.registerComponent(Pager)
|
|
@@ -7,11 +7,8 @@ import { CarouselRenderItemInfo } from 'react-native-reanimated-carousel/lib/typ
|
|
|
7
7
|
export type PageProps<T> = CarouselRenderItemInfo<T> & {
|
|
8
8
|
isLast: boolean
|
|
9
9
|
isFirst: boolean
|
|
10
|
-
isActive: boolean
|
|
11
10
|
isOnly: boolean
|
|
12
|
-
isNext: boolean
|
|
13
11
|
index: number
|
|
14
|
-
isPrevious: boolean
|
|
15
12
|
}
|
|
16
13
|
|
|
17
14
|
export type PagerProps<T> = Partial<Omit<TCarouselProps<T>, 'data' | 'renderItem'>> & {
|
|
@@ -24,4 +21,6 @@ export type PagerProps<T> = Partial<Omit<TCarouselProps<T>, 'data' | 'renderItem
|
|
|
24
21
|
showDots?: boolean
|
|
25
22
|
footer?: ReactNode
|
|
26
23
|
autoCalculateFooterHeight?: boolean
|
|
24
|
+
removeFixedHeight?: number
|
|
25
|
+
removeFixedWidth?: number
|
|
27
26
|
}
|
|
@@ -11,10 +11,9 @@ import React, { useCallback, useMemo } from 'react'
|
|
|
11
11
|
import { List } from '../List'
|
|
12
12
|
import { TextInput } from '../TextInput'
|
|
13
13
|
import { SelectProps, ValueBoundSelectProps } from './types'
|
|
14
|
-
import { ModalManager } from '../../utils'
|
|
15
14
|
import { Button } from '../Button'
|
|
16
15
|
import { AnyRecord, AppIcon, IJSX, StyledComponentProps, useCompositionStyles } from '@codeleap/styles'
|
|
17
|
-
import Modal from '../Modal'
|
|
16
|
+
import { Modal } from '../Modal'
|
|
18
17
|
import { MobileStyleRegistry } from '../../Registry'
|
|
19
18
|
import { SearchInput } from '../SearchInput'
|
|
20
19
|
import { useStylesFor } from '../../hooks'
|
|
@@ -62,6 +61,7 @@ const OuterInput: ValueBoundSelectProps<any, boolean>['outerInputComponent'] = (
|
|
|
62
61
|
|
|
63
62
|
return <TextInput
|
|
64
63
|
value={TypeGuards.isString(currentValueLabel) ? currentValueLabel : null}
|
|
64
|
+
onValueChange={() => currentValueLabel}
|
|
65
65
|
rightIcon={clearIcon}
|
|
66
66
|
onPress={disabled ? null : () => toggle()}
|
|
67
67
|
disabled={disabled}
|
|
@@ -317,7 +317,7 @@ export const Select = <T extends string | number = string, Multi extends boolean
|
|
|
317
317
|
) : null
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
<
|
|
320
|
+
<Modal
|
|
321
321
|
title={label}
|
|
322
322
|
description={description}
|
|
323
323
|
{...modalProps}
|
|
@@ -343,7 +343,7 @@ export const Select = <T extends string | number = string, Multi extends boolean
|
|
|
343
343
|
loading,
|
|
344
344
|
}}
|
|
345
345
|
/>
|
|
346
|
-
</
|
|
346
|
+
</Modal>
|
|
347
347
|
</>
|
|
348
348
|
}
|
|
349
349
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Option, Options, PropsOf } from '@codeleap/types'
|
|
2
2
|
import { AppIcon, StyledProp } from '@codeleap/styles'
|
|
3
|
-
import { StylesOf } from '../../types/utility'
|
|
4
|
-
import { GetKeyboardAwarePropsOptions } from '../../utils'
|
|
3
|
+
import { GetKeyboardAwarePropsOptions, StylesOf } from '../../types/utility'
|
|
5
4
|
import { ActionIconProps } from '../ActionIcon'
|
|
6
5
|
import { Icon } from '../Icon'
|
|
7
6
|
import { FlatListProps } from '../List'
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { alert } from '@codeleap/modals'
|
|
2
2
|
import { useEffect, useMemo, useState } from '@codeleap/hooks'
|
|
3
3
|
import { FileInputImageSource, useFileInput } from '../FileInput'
|
|
4
4
|
import { SortablePhoto, SortablePhotosProps, WithId } from './types'
|
|
5
5
|
|
|
6
|
-
const SortableAlert = CreateOSAlert()
|
|
7
|
-
|
|
8
6
|
export const useSortablePhotos = <T extends SortablePhoto>(props: SortablePhotosProps<T>) => {
|
|
9
7
|
const {
|
|
10
8
|
onChangePhotos,
|
|
@@ -145,7 +143,7 @@ export const useSortablePhotos = <T extends SortablePhoto>(props: SortablePhotos
|
|
|
145
143
|
}
|
|
146
144
|
|
|
147
145
|
const handlePressPhoto = (photo: T, order: number) => {
|
|
148
|
-
|
|
146
|
+
alert.ask({
|
|
149
147
|
title: modalTitle,
|
|
150
148
|
body: modalBody,
|
|
151
149
|
options: [
|
|
@@ -153,9 +151,6 @@ export const useSortablePhotos = <T extends SortablePhoto>(props: SortablePhotos
|
|
|
153
151
|
{ text: modalCameraText, onPress: () => handleOpenPicker('camera', photo, order) },
|
|
154
152
|
!!photo?.filename && { text: modalDeleteText, onPress: () => handleDeletePhoto(photo, order) },
|
|
155
153
|
],
|
|
156
|
-
// @ts-expect-error
|
|
157
|
-
closable: true,
|
|
158
|
-
isRow: false,
|
|
159
154
|
})
|
|
160
155
|
|
|
161
156
|
onPressPhoto?.(data, photo, order)
|
package/src/deprecated/index.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * as Permissions from './permissions'
|
|
1
|
+
export * as Permissions from './permissions'
|
|
2
|
+
export * as Modals from './permissions'
|
|
@@ -2,7 +2,6 @@ import React from 'react'
|
|
|
2
2
|
import { AnyFunction, TypeGuards } from '@codeleap/types'
|
|
3
3
|
import { onUpdate, useState } from '@codeleap/hooks'
|
|
4
4
|
import { PortalProvider } from '@gorhom/portal'
|
|
5
|
-
import { KeyboardProvider } from '../KeyboardAware'
|
|
6
5
|
|
|
7
6
|
export type AppModalProps = {
|
|
8
7
|
visible: boolean
|
|
@@ -38,7 +37,7 @@ export function Provider({ children }) {
|
|
|
38
37
|
return !!modals[name]?.visible
|
|
39
38
|
}
|
|
40
39
|
|
|
41
|
-
const toggleModal:TModalContext['toggleModal'] = (name, set?: boolean, props?: any) => {
|
|
40
|
+
const toggleModal: TModalContext['toggleModal'] = (name, set?: boolean, props?: any) => {
|
|
42
41
|
const visible = isVisible(name)
|
|
43
42
|
|
|
44
43
|
const newVisible = typeof set === 'boolean' ? set : !visible
|
|
@@ -58,7 +57,7 @@ export function Provider({ children }) {
|
|
|
58
57
|
})
|
|
59
58
|
}
|
|
60
59
|
|
|
61
|
-
const setModal:TModalContext['setModal'] = (name, to) => {
|
|
60
|
+
const setModal: TModalContext['setModal'] = (name, to) => {
|
|
62
61
|
|
|
63
62
|
setModals((current) => ({
|
|
64
63
|
...current,
|
|
@@ -72,7 +71,7 @@ export function Provider({ children }) {
|
|
|
72
71
|
|
|
73
72
|
// const codeleapCtx = useCodeleapContext()
|
|
74
73
|
const defaultDuration = 300
|
|
75
|
-
const transition:TModalContext['transition'] = (from, to, options) => {
|
|
74
|
+
const transition: TModalContext['transition'] = (from, to, options) => {
|
|
76
75
|
return new Promise((resolve) => {
|
|
77
76
|
setTimeout(() => {
|
|
78
77
|
|
|
@@ -80,7 +79,7 @@ export function Provider({ children }) {
|
|
|
80
79
|
toggleModal(to, true, options?.props)
|
|
81
80
|
return
|
|
82
81
|
}
|
|
83
|
-
const _options:ModalTransitionOptions = {
|
|
82
|
+
const _options: ModalTransitionOptions = {
|
|
84
83
|
duration: defaultDuration,
|
|
85
84
|
...options,
|
|
86
85
|
}
|
|
@@ -137,7 +136,7 @@ export function Provider({ children }) {
|
|
|
137
136
|
setModals(newModals)
|
|
138
137
|
}
|
|
139
138
|
|
|
140
|
-
return
|
|
139
|
+
return (
|
|
141
140
|
<ModalContext.Provider value={{
|
|
142
141
|
state: modals,
|
|
143
142
|
toggleModal,
|
|
@@ -155,8 +154,7 @@ export function Provider({ children }) {
|
|
|
155
154
|
{children}
|
|
156
155
|
</PortalProvider>
|
|
157
156
|
</ModalContext.Provider>
|
|
158
|
-
|
|
159
|
-
|
|
157
|
+
)
|
|
160
158
|
}
|
|
161
159
|
|
|
162
160
|
export function useModalContext() {
|
|
@@ -175,9 +173,9 @@ export type UseModalSequenceOptions = {
|
|
|
175
173
|
|
|
176
174
|
export function useModalSequence(ids: string[], options?: UseModalSequenceOptions) {
|
|
177
175
|
|
|
178
|
-
const _options:UseModalSequenceOptions = {
|
|
176
|
+
const _options: UseModalSequenceOptions = {
|
|
179
177
|
closeLastOnFinish: true,
|
|
180
|
-
onFinish: () => {},
|
|
178
|
+
onFinish: () => { },
|
|
181
179
|
resetOnFinish: false,
|
|
182
180
|
waitForLastToCloseBeforeCallingFinish: true,
|
|
183
181
|
...options,
|
|
@@ -231,7 +229,7 @@ export function useModalSequence(ids: string[], options?: UseModalSequenceOption
|
|
|
231
229
|
}
|
|
232
230
|
|
|
233
231
|
function goto(idxOrId: string | number, props?: any) {
|
|
234
|
-
let newId:string = null
|
|
232
|
+
let newId: string = null
|
|
235
233
|
if (TypeGuards.isString(idxOrId)) {
|
|
236
234
|
newId = idxOrId
|
|
237
235
|
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import { usePrevious, onMount, onUpdate } from '@codeleap/hooks'
|
|
3
3
|
import { PropsOf } from '@codeleap/types'
|
|
4
|
-
import { useModalContext } from './
|
|
4
|
+
import { useModalContext } from './Context'
|
|
5
5
|
import { Portal } from '@gorhom/portal'
|
|
6
6
|
import { Modal as _Modal } from '../../components/Modal'
|
|
7
7
|
|
|
8
8
|
type UseManagedModalArgs = {
|
|
9
9
|
id?: string
|
|
10
|
-
initialVisible
|
|
10
|
+
initialVisible?: boolean
|
|
11
11
|
parent?: string
|
|
12
12
|
visible?: boolean
|
|
13
13
|
toggle?: PropsOf<typeof _Modal>['toggle']
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
function useManagedModal(props:UseManagedModalArgs) {
|
|
16
|
+
function useManagedModal(props: UseManagedModalArgs) {
|
|
17
17
|
const {
|
|
18
18
|
initialVisible = false,
|
|
19
19
|
parent,
|
|
@@ -61,7 +61,7 @@ export type ManagedModalProps<T = PropsOf<typeof _Modal>> = Omit<T, 'visible' |
|
|
|
61
61
|
absolute?: boolean
|
|
62
62
|
|
|
63
63
|
}
|
|
64
|
-
export const Modal:React.FC<ManagedModalProps> = ({
|
|
64
|
+
export const Modal: React.FC<ManagedModalProps> = ({
|
|
65
65
|
children,
|
|
66
66
|
absolute = true,
|
|
67
67
|
...props
|
|
@@ -81,4 +81,4 @@ export const Modal:React.FC<ManagedModalProps> = ({
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
return content
|
|
84
|
-
}
|
|
84
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useModalContext, useModalSequence, Provider } from './
|
|
1
|
+
import { useModalContext, useModalSequence, Provider } from './Context'
|
|
2
2
|
import { Modal, ManagedModalProps } from './components'
|
|
3
3
|
|
|
4
4
|
export const ModalManager = {
|
|
@@ -10,4 +10,4 @@ export const ModalManager = {
|
|
|
10
10
|
|
|
11
11
|
export type {
|
|
12
12
|
ManagedModalProps,
|
|
13
|
-
}
|
|
13
|
+
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React, { useContext, useState } from 'react'
|
|
2
|
-
import { useModalContext } from '../../utils/ModalManager/context'
|
|
3
2
|
import { onMount, onUpdate, useDebounce, usePrevious } from '@codeleap/hooks'
|
|
4
3
|
import { deepEqual } from '@codeleap/utils'
|
|
5
4
|
import { AppState, Linking } from 'react-native'
|
|
6
5
|
import { PermissionConfig, PermissionModalsConfig } from './types'
|
|
7
6
|
import { PermissionManager, PermissionTypes } from './package'
|
|
7
|
+
import { useModalContext } from '../modals/Context'
|
|
8
8
|
|
|
9
9
|
type TPermissionContext = {
|
|
10
10
|
state: Record<string, PermissionTypes.PermissionStatus>
|
package/src/index.ts
CHANGED
|
@@ -6,8 +6,7 @@ export * from './deprecated'
|
|
|
6
6
|
|
|
7
7
|
export { Linking } from 'react-native'
|
|
8
8
|
import uuid from 'react-native-uuid'
|
|
9
|
-
|
|
10
|
-
export { uuid, RNKeyboardAwareScrollView }
|
|
9
|
+
export { uuid }
|
|
11
10
|
export { MobileStyleRegistry } from './Registry'
|
|
12
11
|
|
|
13
12
|
import './modules/formConfig'
|
package/src/types/utility.ts
CHANGED
|
@@ -17,3 +17,11 @@ export type ChildrenProp = ReactNode | ReactNode[] | undefined
|
|
|
17
17
|
export type ReanimatedExitingAnimation = (values: ExitAnimationsValues) => LayoutAnimation
|
|
18
18
|
export type ReanimatedEnteringAnimation = (values: EntryAnimationsValues) => LayoutAnimation
|
|
19
19
|
|
|
20
|
+
export type GetKeyboardAwarePropsOptions = {
|
|
21
|
+
baseStyleProp?: 'style' | 'contentContainerStyle'
|
|
22
|
+
adapt?: 'height' | 'maxHeight' | 'paddingBottom' | 'marginBottom' | 'bottom'
|
|
23
|
+
enabled?: boolean
|
|
24
|
+
animated?: boolean
|
|
25
|
+
transition?: TransitionConfig
|
|
26
|
+
enableOnAndroid?: boolean
|
|
27
|
+
}
|
package/src/utils/index.ts
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
type TKeyboardCtx = {
|
|
3
|
-
isVisible: boolean;
|
|
4
|
-
height: number;
|
|
5
|
-
};
|
|
6
|
-
/**
|
|
7
|
-
*
|
|
8
|
-
* @deprecated useKeyboard does not need to be wrapped in a provider
|
|
9
|
-
*/
|
|
10
|
-
export declare const KeyboardProvider: ({ children }: {
|
|
11
|
-
children: any;
|
|
12
|
-
}) => JSX.Element;
|
|
13
|
-
export declare const useKeyboard: () => TKeyboardCtx;
|
|
14
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { useKeyboardController } from '../../hooks';
|
|
3
|
-
/**
|
|
4
|
-
*
|
|
5
|
-
* @deprecated useKeyboard does not need to be wrapped in a provider
|
|
6
|
-
*/
|
|
7
|
-
export const KeyboardProvider = ({ children }) => {
|
|
8
|
-
return <>
|
|
9
|
-
{children}
|
|
10
|
-
</>;
|
|
11
|
-
};
|
|
12
|
-
export const useKeyboard = () => {
|
|
13
|
-
return useKeyboardController();
|
|
14
|
-
};
|
|
15
|
-
//# sourceMappingURL=context.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/utils/KeyboardAware/context.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAA;AAOnD;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAAE,QAAQ,EAAE,EAAE,EAAE;IAC/C,OAAO,EACL;IAAA,CAAC,QAAQ,CACX;EAAA,GAAG,CAAA;AACL,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,WAAW,GAAG,GAAiB,EAAE;IAC5C,OAAO,qBAAqB,EAAE,CAAA;AAChC,CAAC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/KeyboardAware/index.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,WAAW,CAAA"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { TransitionConfig } from '../../types';
|
|
2
|
-
export type GetKeyboardAwarePropsOptions = {
|
|
3
|
-
baseStyleProp?: 'style' | 'contentContainerStyle';
|
|
4
|
-
adapt?: 'height' | 'maxHeight' | 'paddingBottom' | 'marginBottom' | 'bottom';
|
|
5
|
-
enabled?: boolean;
|
|
6
|
-
animated?: boolean;
|
|
7
|
-
transition?: TransitionConfig;
|
|
8
|
-
enableOnAndroid?: boolean;
|
|
9
|
-
};
|
|
10
|
-
type UseKeyboardAwareViewParams = {
|
|
11
|
-
debugName?: string;
|
|
12
|
-
styles?: any;
|
|
13
|
-
} & GetKeyboardAwarePropsOptions;
|
|
14
|
-
export declare const useKeyboardAwareView: (params?: UseKeyboardAwareViewParams) => {
|
|
15
|
-
keyboard: {
|
|
16
|
-
isVisible: boolean;
|
|
17
|
-
height: number;
|
|
18
|
-
};
|
|
19
|
-
style: any;
|
|
20
|
-
};
|
|
21
|
-
export {};
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { TypeGuards } from '@codeleap/types';
|
|
2
|
-
import { Platform, StyleSheet, Dimensions, Easing } from 'react-native';
|
|
3
|
-
import { useKeyboard } from './context';
|
|
4
|
-
export const useKeyboardAwareView = (params) => {
|
|
5
|
-
const keyboard = useKeyboard();
|
|
6
|
-
const options = params || {};
|
|
7
|
-
const _options = {
|
|
8
|
-
adapt: 'maxHeight',
|
|
9
|
-
baseStyleProp: 'style',
|
|
10
|
-
enabled: true,
|
|
11
|
-
enableOnAndroid: false,
|
|
12
|
-
animated: false,
|
|
13
|
-
...options,
|
|
14
|
-
transition: {
|
|
15
|
-
easing: Easing.linear,
|
|
16
|
-
duration: 200,
|
|
17
|
-
type: 'timing',
|
|
18
|
-
},
|
|
19
|
-
};
|
|
20
|
-
if (!_options.enabled || (Platform.OS === 'android' && !_options.enableOnAndroid)) {
|
|
21
|
-
return {
|
|
22
|
-
keyboard,
|
|
23
|
-
style: params?.styles,
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
const baseStyle = StyleSheet.flatten(params.styles || {});
|
|
27
|
-
let baseValue = baseStyle[_options.adapt];
|
|
28
|
-
if (TypeGuards.isNil(baseValue)) {
|
|
29
|
-
baseValue = 0;
|
|
30
|
-
}
|
|
31
|
-
let valid = true;
|
|
32
|
-
const warnOnNotNumber = () => {
|
|
33
|
-
if (!TypeGuards.isNil(baseValue) && !TypeGuards.isNumber(baseValue)) {
|
|
34
|
-
valid = false;
|
|
35
|
-
const debugStr = params?.debugName ? 'at ' + params?.debugName + ' ' : '';
|
|
36
|
-
console.log(debugStr);
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
let newStyleProp = {
|
|
40
|
-
...baseStyle,
|
|
41
|
-
};
|
|
42
|
-
switch (_options.adapt) {
|
|
43
|
-
case 'height':
|
|
44
|
-
warnOnNotNumber();
|
|
45
|
-
const baseHeight = baseValue || 0;
|
|
46
|
-
newStyleProp.height = baseHeight - keyboard.height;
|
|
47
|
-
break;
|
|
48
|
-
case 'maxHeight':
|
|
49
|
-
warnOnNotNumber();
|
|
50
|
-
const baseMaxHeight = baseValue || Dimensions.get('window').height;
|
|
51
|
-
newStyleProp.maxHeight = baseMaxHeight - keyboard.height;
|
|
52
|
-
break;
|
|
53
|
-
case 'paddingBottom':
|
|
54
|
-
warnOnNotNumber();
|
|
55
|
-
const basePaddingBottom = baseValue || 0;
|
|
56
|
-
newStyleProp.paddingBottom = basePaddingBottom + keyboard.height;
|
|
57
|
-
break;
|
|
58
|
-
case 'marginBottom':
|
|
59
|
-
warnOnNotNumber();
|
|
60
|
-
const baseMarginBottom = baseValue || 0;
|
|
61
|
-
newStyleProp.marginBottom = baseMarginBottom + keyboard.height;
|
|
62
|
-
break;
|
|
63
|
-
case 'bottom':
|
|
64
|
-
warnOnNotNumber();
|
|
65
|
-
const baseBottom = baseValue || 0;
|
|
66
|
-
newStyleProp.bottom = baseBottom + keyboard.height;
|
|
67
|
-
break;
|
|
68
|
-
}
|
|
69
|
-
if (!valid) {
|
|
70
|
-
newStyleProp = params.styles;
|
|
71
|
-
}
|
|
72
|
-
return {
|
|
73
|
-
keyboard,
|
|
74
|
-
style: newStyleProp,
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
//# sourceMappingURL=keyboardHooks.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keyboardHooks.js","sourceRoot":"","sources":["../../../src/utils/KeyboardAware/keyboardHooks.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.js","sourceRoot":"","sources":["../../../src/utils/ModalManager/components.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AAEhE,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA;AAC3C,OAAO,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AACvC,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,wBAAwB,CAAA;AAUxD,SAAS,eAAe,CAAC,KAAyB;IAChD,MAAM,EACJ,cAAc,GAAG,KAAK,EACtB,MAAM,EACN,EAAE,GACH,GAAG,KAAK,CAAA;IACT,MAAM,OAAO,GAAG,EAAE,CAAA;IAClB,MAAM,MAAM,GAAG,eAAe,EAAE,CAAA;IAEhC,OAAO,CAAC,GAAG,EAAE;QACX,IAAI,CAAC,OAAO;YAAE,OAAM;QACpB,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE;YACvB,UAAU,EAAE,EAAE;YACd,WAAW,EAAE,EAAE;YACf,OAAO,EAAE,cAAc;SACxB,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,MAAM,UAAU,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;IAEtC,QAAQ,CAAC,GAAG,EAAE;QACZ,IAAI,CAAC,OAAO;YAAE,OAAM;QACpB,IAAI,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,UAAU,EAAE;YAC5B,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;SAC/B;IACH,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,CAAA;IAEZ,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAA;IAEnE,MAAM,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,OAAO,CAAC,EAAE,KAAK,CAAA;IAEhD,MAAM,cAAc,GAAG;QACrB,GAAG,KAAK,EAAE,GAAG,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE;YACpD,IAAI,OAAO,EAAE;gBACX,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAA;aAC5B;iBAAM;gBACL,KAAK,EAAE,MAAM,EAAE,EAAE,CAAA;aAClB;QACH,CAAC;KACF,CAAA;IAED,OAAO,cAAc,CAAA;AACvB,CAAC;AAMD,MAAM,CAAC,MAAM,KAAK,GAA+B,CAAC,EAChD,QAAQ,EACR,QAAQ,GAAG,IAAI,EACf,GAAG,KAAK,EACT,EAAE,EAAE;IACH,MAAM,cAAc,GAAG,eAAe,CAAC,KAAK,CAAC,CAAA;IAE7C,MAAM,OAAO,GAAG,CACd,CAAC,MAAM,CAAC,IAAI,cAAc,CAAC,CACzB;MAAA,CAAC,QAAQ,CACX;IAAA,EAAE,MAAM,CAAC,CACV,CAAA;IAED,IAAI,QAAQ,EAAE;QACZ,OAAO,CAAC,MAAM,CACZ;MAAA,CAAC,OAAO,CACV;IAAA,EAAE,MAAM,CAAC,CAAA;KACV;IAED,OAAO,OAAO,CAAA;AAChB,CAAC,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.js","sourceRoot":"","sources":["../../../src/utils/ModalManager/context.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/utils/ModalManager/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAA;AACvE,OAAO,EAAE,KAAK,EAAqB,MAAM,cAAc,CAAA;AAEvD,MAAM,CAAC,MAAM,YAAY,GAAG;IAC1B,eAAe;IACf,KAAK;IACL,QAAQ;IACR,gBAAgB;CACjB,CAAA"}
|