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-jitsi-meet-extended

v0.1.5

Published

Jitsi Meet wrapper for react native

Downloads

11

Readme

react-native-jitsi-meet-extended

Jitsi Meet wrapper for react-native. This package was made as the react-native-jitsi-meet is kind of outdated and no one is releasing any new version of it with new jitsi meet sdk

Installation

npm install react-native-jitsi-meet-extended

or

yarn add react-native-jitsi-meet-extended

Note

At the moment this package only works with Android as I don't own a Mac to develop and test it for IOS, Hope to see some community support for developing it and also one of my friend will soon start looking into the IOS part. Also, there may be some bugs and issues in the java code, it would be great if some super devs from the community can verify and correct them :) + there are issues with TS as I'm not that much into typescript.

Android setup

important

There seems to be an issue with latest react-native version 0.64 with jitsi sdk, as buttons are unresponsive and other bugs, so until the issue is sorted out it is advised to use the 0.63

   {
  "name": "react-native-jitsi-meet-extended-example",
  "description": "Example app for react-native-jitsi-meet-extended",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "start": "react-native start"
  },
  "dependencies": {
    "react": "17.0.2",
    "react-native": "0.63.4" <-- this line
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/runtime": "^7.12.5",
    "babel-plugin-module-resolver": "^4.0.0",
    "metro-react-native-babel-preset": "^0.64.0"
  }
}

  1. In android/build.gradle, add the following code
allprojects {
    repositories {
        mavenLocal()
        mavenCentral()
         maven { // <---- Add this block
            url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
        }
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url("$rootDir/../node_modules/react-native/android")
        }
        maven {
            // Android JSC is installed from npm
            url("$rootDir/../node_modules/jsc-android/dist")
        }

        google()
        jcenter()
        maven { url 'https://www.jitpack.io' }
    }
}
  1. Set minimum SDK level to 24
buildscript {
    ext {
        buildToolsVersion = "29.0.3"
        minSdkVersion = 24 // <-- this line
        compileSdkVersion = 29
        targetSdkVersion = 29
        ndkVersion = "20.1.5948944"
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:4.1.0")
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
  1. Remove allow back up from Androidmanifest.xml

Checking on how this can be fixed but for now, remove it from xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.sdktest">

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

    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false" <-- this line
      android:theme="@style/AppTheme">
      <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
        android:launchMode="singleTask"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
    </application>
</manifest>

Usage

The package can be invoked in two modes

  1. As an intent from react-native app
  2. As a view that can be embedded inside the react-native app

⁍ ‣ Invoking it as native activity (Eg)

For checking props that can be passed, please check the section after example section

import * as React from 'react';

import { StyleSheet, View, Text, TouchableOpacity } from 'react-native';
import { JitsiMeetExtended, JitsiMeetView } from 'react-native-jitsi-meet-extended';

export default function App() {

  const runActivity = () => {
    const options = {
      roomId: "cowboybtr125d44d5",
      userInfo: {
        displayName: "APJ"
       }
     }

    JitsiMeetExtended.activityMode(options)
  }

  return (
    <View style={styles.container}>
     
      <TouchableOpacity onPress={runActivity} style={styles.button}>
        <Text>Start meet activity</Text>
      </TouchableOpacity>
    
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 0.9,
    alignItems: 'center',
    justifyContent: 'center',
  },
  button: {
    borderRadius: 10,
    width: 250,
    height: 50,
    padding:10,
    margin:10,
    borderWidth:2,
    borderColor: "gray",
    justifyContent:"center",
    alignItems:"center",
  }
});

This will start Jitsi meet on top of your application.

⁍ ‣ Starting as a view inside react-native (Eg)

For checking props that can be passed, please check the section after example section

import * as React from 'react';

import { StyleSheet, View, Text, TouchableOpacity } from 'react-native';
import { JitsiMeetExtended, JitsiMeetView } from 'react-native-jitsi-meet-extended';

export default function App() {

  const [showMeet, setShowMeet] = React.useState<Boolean>(false);


  function conferenceTerminated(nativeEvent: any) {
    console.log(nativeEvent)
  }

 const runMeet = () => {
    setShowMeet(true);
  }

  return (
    <View style={styles.container}>
     
    {showMeet && (
        <JitsiMeetView
          style={{
            flex: 10,
            height: '100%',
            width: '100%',
          }}
          options={{
            roomId: "randomfox895678dc5d6",
            chatEnabled: false,
            inviteEnabled: false,
            meetingNameEnabled: false,
            userInfo: {
              displayName: "Nikola Tesla"
            }
          }}
        
          onConferenceTerminated={(e: any) => conferenceTerminated(e)}
        />
      )}

      <TouchableOpacity onPress={runMeet} style={styles.button}>
        <Text>Start meet as view inside app</Text>
      </TouchableOpacity>
    
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 0.9,
    alignItems: 'center',
    justifyContent: 'center',
  },
  button: {
    borderRadius: 10,
    width: 250,
    height: 50,
    padding:10,
    margin:10,
    borderWidth:2,
    borderColor: "gray",
    justifyContent:"center",
    alignItems:"center",
  }
});

This will start Jitsi meet as a view inside react-native.

Usage Options and Props

⁍ To JitsiMeetView you can pass a prop called options which should be an object and it supports the following features.

| key | Data type | Default | Description | |------------------------|-----------|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------| | roomId | String | random string | Room id for Jitsi Meet | | serverUrl | String | https://meet.jit.si | Valid server url | | chatEnabled | boolean | true | Enable or disable chat icon in Jitsi | | addPeopleEnabled | boolean | true | Allow adding people or not | | inviteEnabled | boolean | true | Allow inviting people or not | | meetingNameEnabled | boolean | true | Show or hide roomid/name in Jitsi meet | | raiseHandEnabled | boolean | false | Enable or disable raise hand in Jitsi meet | | conferenceTimerEnabled | boolean | true | Show or hide conference timer in Jitsi meet | | recordingEnabled | boolean | false | Enable or disable recording in Jitsi meet | | liveStreamEnabled | boolean | false | Enable or disable live-stream in Jitsi meet | | toolBoxEnabled | boolean | true | Enable or disable toolbox in Jitsi meet | | toolBoxAlwaysVisible | boolean | true | Make toolbox always visible or not | | meetingPasswordEnabled | boolean | true | Enable or disable meeting password | | pipModeEnabled | boolean | false | Only for activity mode, This flag is not available in JitsiMeet view mode | | userInfo | Object | | This can have three keys as follows userInfo:{ displayName: "APJ", email: "[email protected]", avatarURL: "valid URL" } |

Supported events (only in JitsiMeetView)

  1. onConferenceJoined
  2. onConferenceTerminated
  3. onConferenceWillJoin
  4. onAudioMuted
  5. onParticipantJoined
    <JitsiMeetView
          style={{
            flex: 10,
            height: '100%',
            width: '100%',
          }}
          options={{
            roomId: "randomfox895678dc5d6",
            chatEnabled: false,
            inviteEnabled: false,
            meetingNameEnabled: false,
            userInfo: {
              displayName: "Nikola Tesla"
            }
          }}
        
          onConferenceTerminated={(e: any) => conferenceTerminated(e)}
          onConferenceJoined={(e: any) => conferenceJoined(e)}
          onConferenceWillJoin={(e: any) => conferenceWillJoin(e)}
          onAudioMuted={(e: any) => audioMuted(e)}
          onParticipantJoined={(e: any) => participantJoined(e)}
        />

Supported actions

  1. leaveMeet()
  2. muteAudio()
  3. muteVideo()
  4. endPointTextMessage()
import { JitsiMeetExtended } from 'react-native-jitsi-meet-extended';

// code
// functions

JitsiMeetExtended.leaveMeet(); // used to leave a meeting 

JitsiMeetExtended.muteAudio(true); // used to mute and unmute audio, pass true or false 

JitsiMeetExtended.muteVideo(true); // used to disable or enable video, pass true or false 

JitsiMeetExtended.endPointTextMessage(to, message); // accepts to parameter and message,  haven't checked it yet


Trouble setting it up ?

for linking related issues please check https://github.com/skrafft/react-native-jitsi-meet.

The package name of this package is com.reactnativejitsimeetextended.JitsiMeetExtendedPackage and you can import it in mainActivity by calling new JitsiMeetExtendedPackage()

Support on

Patreon

Buymeacoffee

This documentation was made possible using https://www.makeareadme.com/

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT