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

rn-harold-test

v1.1.1

Published

React Native Custom Component & Functions Package

Downloads

19

Readme

npm version code style: prettier

rn-harold-test

"React Native Package for Custom Components & Functions"

Prerequisites

This project requires NodeJS (version 8 or later) and NPM. Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.

$ npm -v && node -v
6.4.1
v8.16.0

Table of contents

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Installation

BEFORE YOU INSTALL: please read the prerequisites

To install and set up the library, run:

npm i rn-harold-test

Or if you prefer using Yarn:

yarn add rn-harold-test

Usage

Serving the app

react-native run-android

Running the tests

npm test

Building a distribution version on Android App

./gradlew assembleRelease

This task will create a apk distribution version of the project inside your local android/app/build/outputs/release folder

Serving the distribution version on Ios Machine

react-native run-ios

API

Use Components

import { CContainerView, CDetailView, normalize, Icon, CSliderMenu } from 'rn-harold-test'

Supported options and result fields for the Components are listed below.

Options

props

| Type | Default value | | --- | --- | | string | '' |

If present, the request will be performed as soon as the component is mounted

Example:

import React,{useState} from 'react';
import { Text, View } from 'react-native';
import { CContainerView, CDetailView, normalize, Icon, CSliderMenu,NetworkServiceCall  } from 'rn-harold-test'

const Test = () => {
  const [isShowSlidermenu, setIsShowSlidermenu] = useState(false);
  var optionData = [
    { optionname: 'Home',key:1,iconname:"home",navigation:"Dashboard" },
    { optionname: 'Location',key:2,iconname:"search-location" ,navigation:"Home"},
    { optionname: 'Video Call',key:3 ,iconname:"video",navigation:"Login"},
    { optionname: 'Precription Report',key:4,iconname:"key",navigation:"Dashboard" },
];

  return (
    <CContainerView>
      <Icon.FontAwesome5 name={'home'} color="red" size={normalize(30)} onPress={()=>setIsShowSlidermenu(true)}/>
      <Text style={{ color: 'white', fontSize: normalize(30) }}>11111</Text>
      <CDetailView>
        <Text>HHHH</Text>
      </CDetailView>
      {isShowSlidermenu ?
        <CSliderMenu
          navigation={props.navigation}
          optionArray={optionData}
          isShow={isShowSlidermenu}
          visibility={(val) => (val == undefined ? null : setIsShowSlidermenu(val))}
        /> : null}
    </CContainerView>
  )
}
export default Test;

delay

| Type | Default value | Description | | --- | --- | --- | | number | 0 | Time in milliseconds |

If present, the request will be delayed by the given amount of time

Example:

type Joke = {
  value: {
    id: number;
    joke: string;
  };
};

const MyComponent: React.FC = () => {
  const { data, error, loading } = useBasicFetch<Joke>('https://api.icndb.com/jokes/random', 2000);

  if (error) {
    return <p>Error</p>;
  }

  if (loading) {
    return <p>Loading...</p>;
  }

  return (
    <div className="App">
      <h2>Chuck Norris Joke of the day</h2>
      {data && data.value && <p>{data.value.joke}</p>}
    </div>
  );
};

fetchData

fetchData(url: string)

Perform an asynchronous http request against a given url

type Joke = {
  value: {
    id: number;
    joke: string;
  };
};

const ChuckNorrisJokes: React.FC = () => {
  const { data, fetchData, error, loading } = useBasicFetch<Joke>();
  const [jokeId, setJokeId] = useState(1);

  useEffect(() => {
    fetchData(`https://api.icndb.com/jokes/${jokeId}`);
  }, [jokeId, fetchData]);

  const handleNext = () => setJokeId(jokeId + 1);

  if (error) {
    return <p>Error</p>;
  }

  const jokeData = data && data.value;

  return (
    <div className="Comments">
      {loading && <p>Loading...</p>}
      {!loading && jokeData && (
        <div>
          <p>Joke ID: {jokeData.id}</p>
          <p>{jokeData.joke}</p>
        </div>
      )}
      {!loading && jokeData && !jokeData.joke && <p>{jokeData}</p>}
      <button disabled={loading} onClick={handleNext}>
        Next Joke
      </button>
    </div>
  );
};

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Add your changes: git add .
  4. Commit your changes: git commit -am 'Add some feature'
  5. Push to the branch: git push origin my-new-feature
  6. Submit a pull request :sunglasses:

Credits

TODO: Write credits

Built With

  • Dropwizard - Bla bla bla
  • Maven - Maybe
  • Atom - ergaerga
  • Love

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

MIT License © Andrea SonnY