npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-textinput-utils

v0.3.7

Published

A react native extension which allows you to control TextInput better.

Downloads

15

Readme

React Native TextInput Utils (iOS only)

npm version MIT

A react native extendsion which allows you to control TextInput better.

The original name is react-native-keyboard-toolbar, because the latest add some features, I think the old name is not suitable for this package.

react-native-textinput-utils

Timeline

0.3.7 - Now support RN 0.40

0.3.6 - New feature of setPickerRowByIndex and reloadPickerData by @DaveAdams88

0.2.5 - Added the fully support of multiline <TextInput/>

0.2.1 - Added the support of tintColor, which can set the cursor color

0.2 - Added the support of dismissKeyboard, moveCursorToLast and setSelection

0.1 - Added the support of setting an UIPickerView as the inputView

What can I do?

  1. Adding UITabBarItem(s) into the keyboard of <TextInput/>
  2. Adding a UIPickerView as a default keyboard of <TextInput/>
  3. Setting the selection area or cursor using only two parameters, which are start and length

The PickerIOS Component in React Native 0.13 cannot be styled well outside NavigatorIOS

Limitation

This extension does not support <TextInput/> with multiline={true}, and I need some time to figure out. If you got some idea, it will really welcome to send me a PR.

Installation

I am still very simple to use

cd to your React Native project directory and run

npm install react-native-textinput-utils --save

How to run

Runing the demo

Download and open the RCTTextInputUtilsDemo.xcodeproj file, and runs.

Using this package in other project

You might need to add the es7.classProperties into your PROJECT_ROOT/npm_modules/react-native/packager/transformer.js and PROJECT_ROOT/npm_modules/react-native/packager/react-packager/.babelrc

iOS configuration

  1. In XCode, in the project navigator right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-textinput-utils and ADD RCTTextInputUtils.xcodeproj
  3. Drag libRCTKeyboardToolbar.a (from 'Products' under RCTTextInputUtils.xcodeproj) into GeneralLinked Frameworks and Libraries phase. (GIF below)
  4. Run your project (Cmd+R)

RCTTextInputUtilsGuide

Basic Usage

var RCTKeyboardToolbarTextInput = require('react-native-textinput-utils');
<RCTKeyboardToolbarTextInput
  leftButtonText='I_AM_CANCEL_BUTTON'
  rightButtonText='I_AM_DONE_BUTTON'
  onCancel={(dismissKeyboard)=>dismissKeyboard()}
  onDone={(dismissKeyboard)=>dismissKeyboard()}
/>

If you want a UIPickerView

var pickerViewData = [
  {
    label: 'One',
    value: 'ValueOne'
  },
  {
    label: 'Two',
    value: 'ValueTwo'
  },
  {
    label: 'Three',
    value: 'ValueThree'
  }
];
<RCTKeyboardToolbarTextInput
  pickerViewData={pickerViewData}
  onPickerSelect={(selectedIndex)=>{console.log(`selected ${selectedIndex}`)}}
  ...
/>

If you want to set the cursor color

<RCTKeyboardToolbarTextInput
  tintColor='red'
  ...
/>

If you want to set the selection area

<RCTKeyboardToolbarTextInput
  ref='reference'
  ...
/>

and you can call

this.refs['reference'].setSelection(start, length);

Or you just want to simply move the cursor to the last

this.refs['reference'].moveCursorToLast();

Or dismiss the keyboard whenever you want

this.refs['reference'].dismissKeyboard();

Configurations

The <TabBarNavigator/> object can take the following props:

Basic Parameters

  • leftButtonText: The text in the left-side UIToolBarItem, if this value is empty, the UIToolBarItem on the left side will not be created
  • rightButtonText: The text in the right-side UIToolBarItem, if this value is empty, the UIToolBarItem on the right side will not be created
  • onCancel: The callback function of left-side UIToolBarItem
  • onDone: The callback function of right-side UIToolBarItem
  • tintColor: The cusor color

And both onCancel and onDone will passing an function back, if you call that function, the keyboard will be dismissed.

function onCancel_Or_onDone(dismissKeyboardFunction) {
    console.log(`I will dismiss the keyboard`);
    dismissKeyboardFunction();
}

PickerView related Parameters

  • pickerViewData: The data source of the PickerView, should be an Array, which each element is an Object, and the label in each Object will be display in the PickerView
  • onPickerSelect: The callback function when user picks an option, will pass the selectedIndex back, you can use this index to reference back to your data Array
function onPickerSelectCallback(selectedIndex) {
    console.log(`Selected Index is ${selectedIndex}`);
}

If you set the ref props of this Component, you can reference it back after constructor is called. You can use this.refs[YOUR_REFERENCE] to access the Component`s related methods.

Here is the methods

  • dismissKeyboard: If you want to dismiss the keyboard or the UIPickerView, just call it.
  • moveCursorToLast: If you want to set the cursor to the last position, just call it.
  • setSelection(start, length): Using this method, you can set the selection area, if the length = 0, the cursor will move to start position.

Questions

If something is undocumented here, and it is not clear with you, feel free to create an issue here, I will tried my best to answer you.

Anything else

Feel free to request new features, just create an issue. It will be very welcome to pull request for me.

My email [email protected]

Facebook Dicky Tsang

Sina Weibo @桐乃