0.0.3 • Published 4 years ago

@cenui/device v0.0.3

Weekly downloads
108
License
Apache-2.0
Repository
github
Last release
4 years ago

CenUI - Nav

Helper Device for CenUI

Installation

yarn add @cenui/device

Usage

Example:

import { BrowserView, MobileView, isBrowser, isMobile } from '@cenui/device';
<BrowserView>
  <h1>This is rendered only in browser</h1>
</BrowserView>
<MobileView>
  <h1>This is rendered only on mobile</h1>
</MobileView>

if you don't need a view, you can use isMobile for conditional rendering

import {isMobile} from '@cenui/device';

renderContent = () => {
    if (isMobile) {
        return <div> This content is unavailable on mobile</div>
    }
    return <div> ...content </div>
}

render() {
    return this.renderContent();
}

If you want to leave a message to a specific browser (e.g IE), you can use isIE selector

import {isIE} from '@cenui/device';

render() {
    if (isIE) return <div> IE is not supported. Download Chrome/Opera/Firefox </div>
    return (
        <div>...content</div>
    )
}

If you want to render a view on a specific device and with a specific condition:

import { browserName, CustomView } from '@cenui/device';

render() {
    return (
        <CustomView condition={browserName === "Chrome"}>
            <div>...content</div>
        </CustomView>
    )
}

Style the view

You can style view component by passing class to viewClassName prop

<BrowserView viewClassName="custom-class">
  <p>View content</p>
</BrowserView>

or you can pass inline styles to style prop

const styles = {
  background: 'red',
  fontSize: '24px',
  lineHeight: '2',
};
<BrowserView style="{styles}">
  <p>View content</p>
</BrowserView>

Selectors and views

Selectors

proptypedescription
isMobileboolreturns true if device type is mobile or tablet
isMobileOnlyboolreturns true if device type is mobile
isTabletboolreturns true if device type is tablet
isBrowserboolreturns true if device type is browser
isSmartTVboolreturns true if device type is smarttv
isWearableboolreturns true if device type is wearable
isConsoleboolreturns true if device type is console
isAndroidboolreturns true if os type is Android
isWinPhoneboolreturns true if os type is Windows Phone
isIOSboolreturns true if os type is iOS
isChromeboolreturns true if browser is Chrome
isFirefoxboolreturns true if browser is Firefox
isSafariboolreturns true if browser is Safari
isOperaboolreturns true if browser is Opera
isIEboolreturns true if browser is Internet Explorer
isEdgeboolreturns true if browser is Edge
isYandexboolreturns true if browser is Yandex
isChromiumboolreturns true if browser is Chromium
isMobileSafariboolreturns true if browser is Mobile Safari
osVersionstringreturns os version (e.g 7 for Windows or 6 for Android)
osNamestringreturns os name (e.g Windows, Android)
fullBrowserVersionstringreturns full browser version (e.g 65.0.3325.181 for Chrome)
browserVersionstringreturns browser major version (e.g 65 in Chrome or 9 in IE)
browserNamestringreturns browser name
mobileVendorstringreturns mobile device vendor (e.g LG, iPhone etc)
mobileModelstringreturns mobile device model (e.g Nexus 5)
engineNamestringreturns browser engine name (e.g Gecko for FF or WebKit for Chrome)
engineVersionstringreturns engine version
getUAstringreturns user agent
deviceTypestringreturns device type (e.g mobile or tablet)
isIOS13booleanreturns true/false if device is running on iOS13
isIPhone13booleanreturns true/false if device is iPhone and running on iOS13
isIPad13booleanreturns true/false if device is iPad and running on iOS13
isIPod13booleanreturns true/false if device is iPod and running on iOS13
isElectronbooleanreturns true/false if running on Electron
deviceDetectfunctionreturn data object which includes all data about device (e.g version, engine, os etc.)

Views

Available views:

  • MobileView
  • BrowserView
  • TabletView
  • AndroidView
  • IOSView
  • IEView
  • WinPhoneView
  • MobileOnlyView
  • SmartTVView
  • ConsoleView
  • WearableView
  • CustomView -- has condition prop which takes any expression which results into boolean (e.g browserName === 'Chrome')

Each view accepts three props:

  1. viewClassName - to style the view
  2. style - to add inline styles to view
  3. children - to pass children to view
  4. renderWithFragment - render with React.Fragment instead of <div>

withOrientationChange

A HOC for getting isLandscape and isPortrait props for mobile

import { withOrientationChange } from '@cenui/device';

let App = props => {
  const { isLandscape, isPortrait } = props;

  if (isLandscape) {
    return <div>The device is in Landscape mode</div>;
  }

  if (isPortrait) {
    return <div>The device is in Portrait mode</div>;
  }
};

App = withOrientationChange(App);

export { App };

License

Copyright 2018-2020 Arnat Technologies E.I.R.L.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Maintenance

This repository is maintained by Arnat Technologies. Click here for a complete list of our repositories on GitHub.