# rntpc_react-native-orientation-locker **Repository Path**: openharmony-sig/rntpc_react-native-orientation-locker ## Basic Information - **Project Name**: rntpc_react-native-orientation-locker - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: https://gitee.com/openharmony-sig/rntpc_react-native-orientation-locker - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-14 - **Last Updated**: 2025-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🚨 **重要提示 | IMPORTANT** > > **⚠️ 此代码仓已归档。新地址请访问 [rntpc_react-native-orientation-locker](https://gitcode.com/openharmony-sig/rntpc_react-native-orientation-locker)。| ⚠️ This repository has been archived. For the new address, please visit [rntpc_react-native-orientation-locker](https://gitcode.com/openharmony-sig/rntpc_react-native-orientation-locker).** > --- > # react-native-orientation-locker [![npm](https://img.shields.io/npm/v/react-native-orientation-locker.svg?style=flat-square)](https://www.npmjs.com/package/react-native-orientation-locker) A react-native module that can listen on orientation changing of device, get current orientation, lock to preferred orientation. (cross-platform support) ### Feature * lock screen orientation to PORTRAIT|LANDSCAPE-LEFT|PORTRAIT-UPSIDEDOWN|LANDSCAPE-RIGHT. * listen on orientation changing of device * get the current orientation of device ### ChangeLog
ChangeLog details v1.7.0 1. Add: Add support for new iOS orientation API on newer OS versions 2. Fix: Fix reporting UI orientation upon unlock v1.6.0 1. Add: Add vs2022 support. Remove unnecessary reference 2. Fix: Change WindowsTargetPlatformVersion to 10.0 3. Fix: added check for broadcast receiver being registered and unregistered to avoid IllegalArgumentException 4. Fix: RN-0.73 change Android configs for RN 0.73 compatibility 5. Fix: Add RECEIVER_EXPORTED/RECEIVER_NOT_EXPORTED to support Android 14 v1.5.0 1. Fix: threading issue on Windows and fix android not triggering event in some cases 2. Fix: add stub methods to remove warning while using listeners v1.4.0 1. Fix typescript types 2. Fix some bugs v1.3.1 1. Fix require cycle problem v1.3.0 **BREAKING CHANGES** 1. Add support for Window 2. Modify sample project 3. Updates Tyescript define v1.2.0 **BREAKING CHANGES** 1. Add support for lockAllOrientationsButUpsideDown 2. Ignore on web and desktop (#115) 3. Fix for not finding @ReactModule (#125) 4. Fix unlockAllOrientations on Android (#133) 5. Implement ActivityLifecycleCallbacks on Android (#131) Please be sure to add to `onCreate` of your `MainApplication` ``` import org.wonday.orientation.OrientationActivityLifecycle; @Override public void onCreate() { ... + registerActivityLifecycleCallbacks(OrientationActivityLifecycle.getInstance()); } ``` v1.1.8 1. Support FACE-UP and FACE-DOWN on iOS v1.1.7 1. Add lockToPortraitUpsideDown() to iOS 2. Minor case corrections v1.1.6 1. Catch unknown device orientation value 2. When calling unlockAllOrientations(), forcibly unlock whether locked or not v1.1.5 1. Add Orientation.isLocked() and Orientation.removeAllListeners() v1.1.4 1. Fix TypeScript declarations v1.1.3 1. Add `addLockListener` and `removeLockListener` 2. Improve Android orientation changed event sending condition v1.1.2 1. Improve Android orientation changed event timing v1.1.1 1. Fix show "supported event type for deviceOrientationDidChange..." error in debug 2. Fix getAutoRotateState() code error v1.1.0 **BREAKING CHANGES** 1. Split ```addOrientationListener(function(orientation, deviceOrientation))``` to ```addOrientationListener(function(orientation))``` and ```addDeviceOrientationListener(function(deviceOrientation))``` 2. Make sure when lockToXXX and unlockAllOrientations resend UI orientation event 3. remove setTimout from orientation listener 4. Add getAutoRotateState() for Android 5. Add TypeScript definitions [[more]](https://github.com/wonday/react-native-orientation-locker/releases)
### Notice 1. RN 0.58 + Android target SDK 27 maybe cause ```Issue: java.lang.IllegalStateException: Only fullscreen activities can request orientation``` problem, see [[#55]](https://github.com/wonday/react-native-orientation-locker/issues/55) for a solution. 2. orientationDidChange will be delayed on iPads if we set upside down to true. Simply disable upside down for iPad and everything works like a charm ([[#78]](https://github.com/wonday/react-native-orientation-locker/issues/78) Thanks [truongluong1314520](https://github.com/truongluong1314520)) 3. If you get the following build error on iOS: ```ld: library not found for -lRCTOrientation-tvOS``` Just remove it from linked libraries and frameworks 4. For Windows, locking to an orientation will only work on devices in tablet mode. 5. For Windows, getting information on device orientation and tracking its changes will only be possible on devices with an orientation sensor. If the device running your application does not have the appropriate hardware to support tracking device orientation, `getDeviceOrientation()` will return UNKNOWN. #### To run example on Windows Tablet (This will allow one to view modules full functionality) 1. Open example/windows/example.sln in Visual Studio. 2. Go to Project > Publish > Create App Packages. 3. Certificate password is "password". 4. Select "Sideloading" and hit "Next". 5. Hit "Yes, use the current certificate" and hit "Next". 6. Choose desired output location and hit "Create". 7. Got to output location and copy example__Test directory over to tablet device. 8. On tablet device open APPXBUNDLE File and hit "Install" (make sure tablet is in developer mode). App should launch after install is complete. 9. Turn on tablet mode on device to see locking to a UI orientation functionality. ### Installation #### Using yarn (RN 0.60 and and above) ``` yarn add react-native-orientation-locker ``` #### Using yarn (RN 0.59 and and below) ``` yarn add react-native-orientation-locker react-native link react-native-orientation-locker ``` #### Manual linking For Windows, if you are using RNW v0.63.0 or higher, autolinking should link the module for you. Otherwise, you must follow the steps outlined [here](https://microsoft.github.io/react-native-windows/docs/native-modules-using) for linking module. Add following to MainApplication.java (This will be added automatically by auto link. If not, please manually add the following ) ```diff //... +import org.wonday.orientation.OrientationPackage; @Override protected List getPackages() { @SuppressWarnings("UnnecessaryLocalVariable") List packages = new PackageList(this).getPackages(); // Packages that cannot be autolinked yet can be added manually here, for example: // packages.add(new MyReactNativePackage()); + packages.add(new OrientationPackage()); return packages; } //... ``` #### Using CocoaPods (iOS Only) Run ```pod install``` in the ios directory. Linking is not required in React Native 0.60 and above. ### Configuration #### iOS Add the following to your project's `AppDelegate.m`: ```diff +#import "Orientation.h" @implementation AppDelegate // ... +- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { + return [Orientation getOrientation]; +} @end ``` #### Android Add following to android/app/src/main/AndroidManifest.xml ```diff .... ``` Implement onConfigurationChanged method (in `MainActivity.java`) ```diff // ... +import android.content.Intent; +import android.content.res.Configuration; public class MainActivity extends ReactActivity { + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + Intent intent = new Intent("onConfigurationChanged"); + intent.putExtra("newConfig", newConfig); + this.sendBroadcast(intent); + } // ...... } ``` Add following to MainApplication.java ```diff +import org.wonday.orientation.OrientationActivityLifecycle; @Override public void onCreate() { + registerActivityLifecycleCallbacks(OrientationActivityLifecycle.getInstance()); } ``` ## Usage ### Imperative API Whenever you want to use it within React Native code now you can: `import Orientation from 'react-native-orientation-locker';` ```js import Orientation from 'react-native-orientation-locker'; _onOrientationDidChange = (orientation) => { if (orientation == 'LANDSCAPE-LEFT') { //do something with landscape left layout } else { //do something with portrait layout } }; componentWillMount() { //The getOrientation method is async. It happens sometimes that //you need the orientation at the moment the js starts running on device. //getInitialOrientation returns directly because its a constant set at the //beginning of the js code. var initial = Orientation.getInitialOrientation(); if (initial === 'PORTRAIT') { //do stuff } else { //do other stuff } }, componentDidMount() { Orientation.getAutoRotateState((rotationLock) => this.setState({rotationLock})); //this allows to check if the system autolock is enabled or not. Orientation.lockToPortrait(); //this will lock the view to Portrait //Orientation.lockToLandscapeLeft(); //this will lock the view to Landscape //Orientation.unlockAllOrientations(); //this will unlock the view to all Orientations //get current UI orientation /* Orientation.getOrientation((orientation)=> { console.log("Current UI Orientation: ", orientation); }); //get current device orientation Orientation.getDeviceOrientation((deviceOrientation)=> { console.log("Current Device Orientation: ", deviceOrientation); }); */ Orientation.addOrientationListener(this._onOrientationDidChange); }, componentWillUnmount: function() { Orientation.removeOrientationListener(this._onOrientationDidChange); } ``` ### Reactive component `` It is possible to have multiple `OrientationLocker` components mounted at the same time. The props will be merged in the order the `OrientationLocker` components were mounted. This follows the same usability of [\](https://reactnative.dev/docs/statusbar). ```js import React, { useState } from "react"; import { Text, View } from "react-native"; import { OrientationLocker, PORTRAIT, LANDSCAPE } from "react-native-orientation-locker"; export default function App() { const [showVideo, setShowVideo] = useState(true); return ( console.log('onChange', orientation)} onDeviceChange={orientation => console.log('onDeviceChange', orientation)} />