Git Product home page Git Product logo

react-native-activity-feed's Introduction

Stream React Native Activity Feed Components

react native activity feed

The official React Native integration library for Stream, a web service for building scalable newsfeeds and activity streams.

TL;DR built-in components for social networks and regular apps

  • Flat feeds
  • Notification feed
  • Likes
  • Comments
  • Activity detail view
  • Realtime notifications

Useful links

Get Started

Example app

Component reference docs

Installation

The components provided by this package are available for apps built with Expo (created with create-react-native-app), but also for apps with native code (created with react-native init). You should install the package that matches your situation:

# For Expo apps
npm i expo-activity-feed --save

# For apps with native code
npm i react-native-activity-feed --save

Both packages export the same components (which they re-export from the underlying react-native-activity-feed-core package).

Final setup steps for the react-native-activity-feed package

If you use the package for apps with native code you need to do some more steps to get the image upload functionality working. If you don't need that feel free to skip these steps.

  1. Run the following command:
react-native link react-native-image-picker

Add the following permissions to android/app/src/main/AndroidManifest.xml:

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Add the following key/value pairs to ios/{app-name-here}/Info.plist:

	<key>NSPhotoLibraryUsageDescription</key>
	<string>$(PRODUCT_NAME) would like access to your photo gallery</string>
	<key>NSCameraUsageDescription</key>
	<string>$(PRODUCT_NAME) would like to use your camera</string>
	<key>NSPhotoLibraryAddUsageDescription</key>
	<string>$(PRODUCT_NAME) would like to save photos to your photo gallery</string>
	<key>NSMicrophoneUsageDescription</key>
	<string>$(PRODUCT_NAME) would like to your microphone (for videos)</string>
  1. Make sure that the gradle version inside android/build.gradle is 2.2.0 or higher:
buildscript {
    // ....
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
    }
}

Usage & Activity Feed setup

Setup StreamApp component

In order to use Stream React Components in your application, you first need to initialize the StreamApp component. StreamApp holds your application config and acts as a service/data provider.

<StreamApp
  apiKey="{API_KEY}"
  appId="{APP_ID}"
  userId="{USER_ID}"
  token="{TOKEN}"
  analyticsToken="{ANALYTICS_TOKEN}"
>
{/* everything from your application interacting with Stream should be nested here */}
</StreamApp>
  1. API_KEY your Stream application API_KEY
  2. API_ID your Stream application ID
  3. USER_ID current user's ID
  4. TOKEN the authentication token for current user
  5. ANALYTICS_TOKEN [optional] the Analytics auth token

You can find your API_KEY and APP_ID on Stream's dashboard.

Generating user token

The authentication user token cannot be generated client-side (that would require sharing your API secret). You should provision a user token as part of the sign-up / login flow to your application from your backend.

var client = stream.connect(API_KEY, API_SECRET);
var userToken = client.createUserSessionToken(userId);

Generating analytics token

React components have analytics instrumentation built-in, this simplifies the integration with Stream. In order to enable analytics tracking, you need to initialize StreamApp with a valid analytics token. You can generate this server-side as well.

var client = stream.connect(API_KEY, API_SECRET);
var userToken = client.getAnalyticsToken();

Copyright and License Information

Copyright (c) 2015-2018 Stream.io Inc, and individual contributors. All rights reserved.

See the file "LICENSE" for information on the history of this software, terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.

react-native-activity-feed's People

Contributors

jeltef avatar tbarbugli avatar mgom avatar tschellenbach avatar

Watchers

James Cloos avatar Trending Technology avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.