Welcome to Skeletor
Our small in-house react-native toolkit to make your life easier
Project setup
Since this is supposed to be as configurable as possible while still maintaining some form and structure with how things should be done, you'll have to set up a couple things first.
Initialize Skeletor
Add the SkeletorProvider component as the (or one of) top wrapper of your application. Example:
/// index.js
const App = () => {
return (
<SkeletorProvider>
<StoreProvider>
<RootNavigator />
</StoreProvider>
</SkeletorProvider>
);
};
Configure the SkeletorProvider properties with whatever you desire. Here is the list of all configurable properties for the SkeletorProvider component:
interface SkeletorConfig {
defaultFont: Font | undefined;
defaultFontSize: [number, number] | number;
defaultStatusBarType: "dark-content" | "light-content" | "default";
defaultTextColor: string;
}
For Skeletor to detect the fonts you have added, you will have to create a type defintion file to override the existing Font type like in the following example:
/// @types/Font.d.ts
type Font = "Helvetica" | "Roboto" | "San Francisco";
Then you can configure the defaultFont
property as follows:
<SkeletorProvider defaultFont="Helvetica">...</SkeletorProvider>
To get access to the skeletor styles in other components, you can use the provided useSkeletor
hook that will return the entire Skeletor configuration object. For instance:
const skeletor = useSkeletor();
return <SomeComponent style={{ fontFamily: skeletor.defaultFont }} />;
Components
Screen
Use this as the top-level wrapper for every screen you navigate to. Is not intended as a wrapper for other components, as you may deduce from the name.
Props
/** Pass a specific background view (gradients, animated backgrounds etc) OR just a background color value. Custom components should be 100% height and width to span the full screen area. */
background?: JSX.Element | string;
hideTopSafeArea?: boolean;
hideBottomSafeArea?: boolean;
/** Set bottom safe area background color */
bottomSafeAreaColor?: string;
/** Set top safe area background color */
topSafeAreaColor?: string;
/** Set device status bar color type. */
statusBarType?: "default" | "light-content" | "dark-content";
isLandscape?: boolean;
Usage
function Component: React.FC = () => {
return <Screen background={<GradientBackground />} statusBarType="dark-content">
...
</Screen>
}
Text
Will detect configured Font type, built with the ability to easily customize the font in use, font size, line height, letter spacing and other quick-access props so you do not have to create separate styles. Hint: Wrap Text
components into Block
components so they wrap correctly within a layout.
Props
/** Inferred from @types/Font.d.ts */
font?: Font;
/** Either define [fontSize, lineHeight] or just one size applied to both fontSize and lineHeight */
size?: [number, number] | number;
textTransform?: TextStyle["textTransform"];
letterSpacing?: TextStyle["letterSpacing"];
color?: string;
textAlign?: TextStyle["textAlign"];
opacity?: TextStyle["opacity"];
Usage
To use the Text
component, simply import it and pass in the desired props.
import { Text } from "./Text";
function MyComponent() {
return (
<Text font="Arial" size={[14, 18]} color="#333" textAlign="center">
Hello World!
</Text>
);
}
Block
This is a flexible and customizable React Native component that can be used as either a View
or a ScrollView
. The Block
component allows you to add paddings, margins, sizes, alignments, and borders to your layout. Extends ScrollViewProps
or ViewProps
depending on the value of the scrollable
prop.
Props
/** Determine if Block is scrollable or not. If scrollable, extends ScrollView props. */
scrollable?: boolean;
align?: ViewStyle["alignItems"];
alignSelf?: ViewStyle["alignSelf"];
justify?: ViewStyle["justifyContent"];
flexDirection?: ViewStyle["flexDirection"];
flexWrap?: ViewStyle["flexWrap"];
flex?: number;
width?: number | string;
height?: number | string;
minHeight?: number | string;
minWidth?: number | string;
maxHeight?: number | string;
maxWidth?: number | string;
margins?: {
marginTop?: number | string;
marginBottom?: number | string;
marginLeft?: number | string;
marginRight?: number | string;
marginHorizontal?: number | string;
marginVertical?: number | string;
margin?: number | string;
};
paddings?: {
paddingTop?: number | string;
paddingBottom?: number | string;
paddingLeft?: number | string;
paddingRight?: number | string;
paddingHorizontal?: number | string;
paddingVertical?: number | string;
padding?: number | string;
};
border?: {
borderWidth?: number;
borderTopWidth?: number;
borderBottomWidth?: number;
borderLeftWidth?: number;
borderRightWidth?: number;
borderColor?: string;
borderRadius?: number;
borderTopLeftRadius?: number;
borderTopRightRadius?: number;
borderBottomLeftRadius?: number;
borderBottomRightRadius?: number;
};
Usage
Use cases are many, but simple. This component is intended to be used as a building block for your layout. One example is:
<Block
maxHeight="75%"
flexDirection="row"
align="flex-start"
justify="space-between"
>
... ...
</Block>
InputFocusScrollView - iOS ONLY
This scroll view will automatically scroll to an active input field rendered inside it, provided you attach the onInputFocus
callback to the input onFocus
prop. This is a lambda component, returning a callback which you attach to input fields rendered within it.
NOTE — This works on iOS only, Android does this by default with android:windowSoftInputMode
Props
/** Decimal value of screen height percentage the input will be positioned at. */
/** Defaults to 0.3, just above the keyboard. */
focusPositionOffset?: number;
/** Is the scrollview 100% in height or automatic. Defaults to auto. */
height?: "full" | "auto";
Usage
<InputFocusScrollView focusPositionOffset={0.1}>
{(onInputFocus) => (
...
<Input
keyboardType="email-address"
returnKeyType="next"
placeholder="Your e-mail address"
label="E-mail Address"
emptyMessage="You must enter an e-mail."
errorMessage="E-mail is invalid."
value={state.email}
valid={validation.email}
onFocus={onInputFocus}
onChangeText={(text) => update("email", text)}
onSubmitEditing={() => passwordRef.current?.focus()}
/>
...
)}
</InputFocusScrollView>
Hooks
useForm & useFormUtils
Handle form value updates and validation with useForm
. Full TypeScript support, ability to configure optional parameters, custom validation rules.
Flexible in its function, supports multiple validation approaches through callbacks:
- For on-change validation, use
update("prop", value, true)
- To trigger standalone validation, use
validate("prop")
- Validate entire form with
validateForm()
Example 1: Simple use case with standalone validation on blur:
const {state, validation, update, validate} = useForm({email: "", password: "");
...
<Input
keyboardType="email-address"
returnKeyType="next"
label="E-mail Address"
errorMessage="Email is not valid."
emptyMessage="Email is a required field."
placeholder="What's your email address?"
value={state.email}
textContentType="emailAddress"
valid={validation.email}
onChangeText={(text) => update("email", text)}
onBlur={() => validate("email")}
/>
...
Example 2: Simple use case with on-change validation:
// See example 1
...
onChangeText={(text) => update("email", text, true)}
...
Example 3: Simple use case with on-submit validation:
// See example 1
function submit() {
if(!validateForm()) {
// Throw invalid error
// validation object will be populated
}
}
...
<Input
keyboardType="email-address"
returnKeyType="next"
label="E-mail Address"
errorMessage="Email is not valid."
emptyMessage="Email is a required field."
placeholder="What's your email address?"
value={state.email}
textContentType="emailAddress"
valid={validation.email}
onChangeText={(text) => update("email", text)}
/>
<Button onPress={submit}>Submit</Button>
Example 4: Form configuration
const { state, validation, update, validate } = useForm(
{ firstName: "", middleName: "", lastName: ""},
{
// If left empty, validation.middleName will be true
optional: ["middleName"],
// validation.lastName is invalid if lastName is <3 characters long
// state can be used to compare with other values (ie repeat password)
rules: { lastName: (value, state) => value.length >= 3,
}
Example 5: useFormUtils
Utility functions to help with standalone state validation, such as when re-validating a list of form values in a parent components.
const { stateValidation } = useFormUtils<Person>();
function validatePeople() {
return people.every(person => stateValidation(person).valid);
}
Other utilities: doesValueExist
, validateByRule
, isOptional
, fieldValidation
, stateValidation
. Some are meant for internal useForm
usage, such as fieldValidation
and validateByRule
, but are not unusable.
useAnimation & useAnimationTimeline
useAnimation
helps you quickly create simple animations and transitions using the default react-native animation toolkit. You can define as many animations as possible for a single element with a single invocation of the hook.
useAnimationTimeline
is used to lay the defined animations out on a timeline and configure when and how each animation is triggered. Available methods are stagger
, parallel
, sequence
, delay
.
Usage
const inputs = useAnimation(...);
const heading = useAnimation(
{opacity: [0, 1], translateY: [20, 0]},
{duration: 400},
);
// Use this hook to lay the animations out in a specific schedule/timeline.
useAnimTimeline({
stagger: {
elements: [heading, inputs],
stagger: 200,
start: true,
},
});
...
// Transformations cannot be applied outside the transform style.
// so translateY has to be passed in through the transform style prop.
<Animated.View
style={{
...heading.animations,
transform: [{translateY: heading.animations.translateY}],
}}
>
...
</Animated.View>
useAndroidBackHandler
Handle how the android back button behaves through enabling / disabling the button or passing in a completely custom callback. External enabled
control in order to be able to mount / unmount the back handler event based on outside integrations, such as checking if the current screen is focused or not with react-navigation
. Will always be cleared on unmount.
Usage
const Component: React.FC = () => {
useAndroidBackHandler({
handlePress: () => setOpenCancelModal(true),
enabled: !openCancelModal && isFocused,
});
...
}
useAppState
Handle what happens when the application changes state between background and foreground. Note: Background states cannot be processed on Android, only foreground.
Usage
useAppState({ onForeground: () => Alert.alert("Foreground") });
Contributions
Suggestions and requests welcome, contributions appreciated but will be reviewed.
Disclaimer
Parts of this readme file were generated with ChatGPT. Thank you for making documentation easy for a lazy programmer.