Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/adbayb/react-native-responsive

:package: The power of Media Queries now in your React Native project (ios and android) !
https://github.com/adbayb/react-native-responsive

library

Last synced: 2 months ago
JSON representation

:package: The power of Media Queries now in your React Native project (ios and android) !

Lists

README

        

# React Native Responsive
[![npm version](https://img.shields.io/badge/npm-v1.0.0-green.svg)](https://www.npmjs.com/package/react-native-responsive) [![react-native version](https://img.shields.io/badge/react--native-min%20v0.25.0-blue.svg)](https://github.com/facebook/react-native)


The power of Media Queries now in your React Native project (ios and android) !

This library allows you to manage layouts between different sizes and displays: Responsive Design can now be easily managed.

A set of apis, components and decorators helps you to implement and build responsive applications easily and as fast as possible.


![Demonstration Application](https://cloud.githubusercontent.com/assets/10498826/17181797/9f0b9404-5421-11e6-80d3-3b1cbdcf5c6b.gif)

*For more details, see [Demonstration Application Documentation](#demonstration-application) || For corresponding code, see [Demonstration Application Source Code](example)*



## Table of Contents

- [Installation](#installation)
- [General Usage](#general-usage)
* [Introduction](#introduction)
* [MediaQuery](#mediaquery-component-approach)
* [Props](#props)
* [MediaQueryDecorator](#mediaquerydecorator-decorator-approach)
* [Prerequisites](#prerequisites)
* [Valid Object Keys](#valid-object-keys)
* [MediaQueryStyleSheet](#mediaquerystylesheet-functional-api-approach)
* [Apis](#apis)
* [Valid Media Features Keys](#valid-media-features-keys)
- [Examples](#examples)
* [Practical Use Case](#practical-use-case)
* [Demonstration Application](#demonstration-application)
- [Misc](#misc)
* [Unit Of Measurement](#unit-of-measurement)
* [Debug Component](#mediaquerydebug-debug-component)
* [Props](#props)
* [Output Example](#output-example)
* [Important Note](#important-note-concerning-size-debugging-outputs)
* [TODOs](#todos)
- [License](#license)




## Installation


- [x] Go to your root project folder
- [x] Install react-native-responsive from npm repository:

```
npm install react-native-responsive --save
```

- [x] You are now good to go !





## General Usage


### Introduction

Before anything else, some definitions:
- [x] Responsive Design is the practice of using tools to progressively enhance a content for different viewing contexts
- [x] Media Query is a CSS tool to help adapting content rendering following conditions

For this, react-native-responsive library introduces 3 ways to implement media queries:
- [x] A component based way: [MediaQuery](#mediaquery-component-approach)
- [x] A decorator based way: [MediaQueryDecorator](#mediaquerydecorator-decorator-approach)
- [x] A functional api based way: [MediaQueryStyleSheet](#mediaquerystylesheet-functional-api-approach)


### MediaQuery (Component approach)

A MediaQuery component like any other React component with props describing common media query device rules.
If a rule is valid, all views stored inside corresponding MediaQuery are displayed. Else, they will be hidden.
Given it component nature, you can nest it and do all the normal things that you can do with regular React components.

#### Props:

> **deviceWidth** number *optional*
Describes the width of the rendering surface of the output device.


> **minDeviceWidth** number *optional*
Describes the minimum width of the rendering surface of the output device.


> **maxDeviceWidth** number *optional*
Describes the maximum width of the rendering surface of the output device.


> **deviceHeight** number *optional*
Describes the height of the rendering surface of the output device.


> **minDeviceHeight** number *optional*
Describes the minimum height of the rendering surface of the output device.


> **maxDeviceHeight** number *optional*
Describes the maximum height of the rendering surface of the output device.


> **devicePixelRatio** number *optional*
Describes the resolution in physical pixels per CSS pixel.


> **minDevicePixelRatio** number *optional*
Describes the minimum resolution in physical pixels per CSS pixel.


> **maxDevicePixelRatio** number *optional*
Describes the maximum resolution in physical pixels per CSS pixel.


> **debug** boolean *optional, default = false*
Enables console debugging.


### MediaQueryDecorator (Decorator approach)

An ES2016 syntactic sugar to describe and build media queries (a higher order component is created and responsible for that task):
```jsx
@MediaQueryDecorator(MediaFeaturesObject, debug) //debug is optional and allows console debugging
class Example extends React.Component {
...
}
```

#### Prerequisites

In order to allow Babel transpiler to parse decorator syntax, you need to enable `transform-decorators` plugin.

For this:
- [x] Go to your root project folder
- [x] If not, create `.babelrc` file
- [x] Add the following lines to your `.babelrc` file:
```
{
"extends": "react-native/packager/react-packager/rn-babelrc.json",
"plugins": ["transform-decorators-legacy"]
}
```

#### Valid Object Keys

> **deviceWidth** number *optional*
Describes the width of the rendering surface of the output device.


> **minDeviceWidth** number *optional*
Describes the minimum width of the rendering surface of the output device.


> **maxDeviceWidth** number *optional*
Describes the maximum width of the rendering surface of the output device.


> **deviceHeight** number *optional*
Describes the height of the rendering surface of the output device.


> **minDeviceHeight** number *optional*
Describes the minimum height of the rendering surface of the output device.


> **maxDeviceHeight** number *optional*
Describes the maximum height of the rendering surface of the output device.


> **devicePixelRatio** number *optional*
Describes the resolution in physical pixels per CSS pixel.


> **minDevicePixelRatio** number *optional*
Describes the minimum resolution in physical pixels per CSS pixel.


> **maxDevicePixelRatio** number *optional*
Describes the maximum resolution in physical pixels per CSS pixel.


### MediaQueryStyleSheet (Functional Api approach)

#### Apis

**`MediaQueryStyleSheet.create(baseStylesObject, mediaRulesObject);`**

> It's similar to React Native StyleSheet.create(obj) api except that it takes one more argument:

> mediaRulesObject (*optional*) stores media query rules as keys (corresponding styles are affected as values).

> Rules are written like regular css media query rules.

**`MediaQueryStyleSheet.debug();`**

> Enables console debugging.

#### Valid Media Features Keys

> **device-width** number *optional*
Describes the width of the rendering surface of the output device.


> **min-device-width** number *optional*
Describes the minimum width of the rendering surface of the output device.


> **max-device-width** number *optional*
Describes the maximum width of the rendering surface of the output device.


> **device-height** number *optional*
Describes the height of the rendering surface of the output device.


> **min-device-height** number *optional*
Describes the minimum height of the rendering surface of the output device.


> **max-device-height** number *optional*
Describes the maximum height of the rendering surface of the output device.


> **device-pixel-ratio** number *optional*
Describes the resolution in physical pixels per CSS pixel.


> **min-device-pixel-ratio** number *optional*
Describes the minimum resolution in physical pixels per CSS pixel.


> **max-device-pixel-ratio** number *optional*
Describes the maximum resolution in physical pixels per CSS pixel.





## Examples


### Practical Use Case

If you want to apply to your application a common CSS media query like this:
```css
.container {
display: flex;
flex-direction: row;
background-color: red;
}
@media (min-device-width: 320) and (max-device-height: 720) {
.container {
flex-direction: column;
}
}
```

With React Native Responsive, you would write:
- [x] Through the component MediaQuery:
```jsx
...
import { MediaQuery } from "react-native-responsive";

const Example = (props) => {
return (


Test




Test


);
};
```
- [x] Through the class decorator MediaQueryDecorator:
```jsx
...
import { MediaQueryDecorator } from "react-native-responsive";

@MediaQueryDecorator({
minDeviceWidth: 320,
maxDeviceHeight: 720
});
class Example1 extends React.Component {
...
}

@MediaQueryDecorator({
maxDeviceWidth: 319,
minDeviceHeight: 721
});
class Example2 extends React.Component {
...
}
```
- [x] Through the functional api MediaQueryStyleSheet (more concise since css properties are automatically merged):
```jsx
...
import { MediaQueryStyleSheet } from "react-native-responsive";

const styles = MediaQueryStyleSheet.create(
//Base styles:
{
container: {
flex: 1,
flexDirection: "row",
backgroundColor: "red"
}
},
//Media Queries styles:
{
"@media (min-device-width: 320) and (max-device-height: 720)": {
container: {
flexDirection: "column"
}
}
}
);
```


#### Tips for DRY Media Queries
Much like SCSS and other preprocessed libraries, you can create a variable to reuse common queries.

In scss you might do:
```scss
$xsUp: "@media all and (min-width: 320px)";
```

With ES6 you might do:
```js
const IPHONE_7_AND_UP = `@media (min-device-width: 320) and (min-device-height: 720)`;
```


For further `DRY`-ness, create a seperate file with all of your media query breakpoints and export for use throughout your application.

```js
const IPHONE_WIDTH = 320;
const IPHONE_7_HEIGHT = 720;
export const IPHONE_7_AND_UP = `@media (min-device-width: ${IPHONE_WIDTH) and (min-device-height: ${IPHONE_7_HEIGHT)`;
```

Altogether that would look like:

```js
import {IPHONE_7_AND_UP} from '../styles/breakpoints';

...

const styles = MediaQueryStyleSheet.create(
//Base styles:
{
container: {
flex: 1,
flexDirection: "row",
backgroundColor: "red"
}
},
//Media Queries styles:
{
[IPHONE_7_AND_UP]: {
container: {
flexDirection: "column"
}
}
}
);
```

### Demonstration Application

If you want an overview of this library, it's interesting to try the demonstration code located inside `./example` folder.

#### Prerequisites

To build and test this demo, just follow these steps:

- [x] Connect your device or launch your Android emulator
- [x] Clone this repository
- [x] Go to the example folder: `cd ./example`
- [x] Install npm dependencies: `npm install`
- [x] Build and deploy the demonstration application by running:
- If you develop on an ios device: `npm run cli run-ios`
- If you develop on an android device: `npm run cli run-android`
- [x] Enjoy the demonstration !

#### Screenshot output

Here's different layouts managed by React Native Responsive module (Nexus 5 smartphone vs Nexus 10 tablet):

*For corresponding code, see [Source Code](example)*

![Demonstration Application](https://cloud.githubusercontent.com/assets/10498826/17181797/9f0b9404-5421-11e6-80d3-3b1cbdcf5c6b.gif)





## Misc


### Unit Of Measurement

All Media Queries (like all React Native Css properties) are expressed in CSS pixels (<=> dip/dp: density independant pixel) (a CSS pixel may not be the same as a hardware pixel especially on high-density displays).

Typically:
```
cssPixel (in dip/dp) = hardwarePixel (in px) / pixelRatio
```
You must take in account this while writing your media rules. For example, for a device with a width of 1920 pixels, a height of 1080 pixels and a pixel ratio of 3, you would write instead 640 dp (=1920/3) for width and 360 dp (=1080/3) for height.

*See [mydevice.io](http://mydevice.io/devices/) for some units mapping according to devices*


### MediaQueryDebug (Debug Component)

If you want some information regarding to hardware specifications of your device, there is a component dedicated to this: **MediaQueryDebug**:
```jsx
import { MediaQueryDebug } from "react-native-responsive";

const Example = (props) => {
return (

);
};
```

#### Props

> [View props...](https://facebook.github.io/react-native/docs/view.html#props)


> **styleText** object *optional*
Customizes text debugging styles.

#### Output Example


MediaQueryDebug Output

#### Important note concerning size debugging outputs

On Android, a device can have screen decoration (such as a navigation bar) along the edges of the display that reduce the amount of application space available from the size returned here.
React Native Responsive computes device constraints accordingly to window available space and not to hardware screen size (due to React Native Dimensions api).

For example, a LG Nexus 5 has:
```
Hardware view = 640 x 360 dp
Content view = 592 x 360 dp (due to 48 dp of navigation bar)
```


### TODOs

- [x] Replace React Native Dimensions.get("window") api (dependent from initial orientation screen) by a custom ios/android native module independent from initial device orientation
- [x] Add more features:
- Orientation (needs to create android and ios orientation event handler native dependencies)
- Platform ios/android (checks from React Native Platform api)
- [x] Allow nested media rules through MediaQueryStyleSheet.create() api





## License

[MIT](./LICENSE "License MIT")