[RN] Add JitsiMeetViewAbstractListener to Android SDK

This commit is contained in:
Saúl Ibarra Corretgé 2017-06-09 10:19:15 +02:00 committed by Lyubo Marinov
parent be8694f93e
commit a266a71999
3 changed files with 95 additions and 26 deletions

View File

@ -180,3 +180,10 @@ The `data` HashMap contains a "url" key with the conference URL.
Called before a conference is left.
The `data` HashMap contains a "url" key with the conference URL.
### JitsiMeetViewAbstractListener
Utility (abstract) class with stub methods for the `JitsiMeetView.Listener`
interface. Applications can innherit from this class instead of implementing
the interface in order to avoid adding stubs for methods they don't care about.

View File

@ -0,0 +1,66 @@
/*
* Copyright @ 2017-present Atlassian Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jitsi.meet.sdk;
import java.util.HashMap;
/**
* This class provides a reference implementation for {@JitsiMeetView.Listener} so applications
* don't need to add stubs for all methods in the interface if they are only interested in some.
*/
public abstract class JitsiMeetViewAbstractListener implements JitsiMeetView.Listener {
/**
* {@inheritDoc}
*/
@Override
public void onConferenceFailed(HashMap<String, Object> data) {
}
/**
* {@inheritDoc}
*/
@Override
public void onConferenceJoined(HashMap<String, Object> data) {
}
/**
* {@inheritDoc}
*/
@Override
public void onConferenceLeft(HashMap<String, Object> data) {
}
/**
* {@inheritDoc}
*/
@Override
public void onConferenceWillJoin(HashMap<String, Object> data) {
}
/**
* {@inheritDoc}
*/
@Override
public void onConferenceWillLeave(HashMap<String, Object> data) {
}
}

View File

@ -78,32 +78,28 @@ public class ExternalAPIModule extends ReactContextBaseJavaModule {
// until React Native 0.46.
final HashMap<String, Object> dataMap = new HashMap<>();
try {
switch (name) {
case "CONFERENCE_FAILED":
dataMap.put("error", data.getString("error"));
dataMap.put("url", data.getString("url"));
listener.onConferenceFailed(dataMap);
break;
case "CONFERENCE_JOINED":
dataMap.put("url", data.getString("url"));
listener.onConferenceJoined(dataMap);
break;
case "CONFERENCE_LEFT":
dataMap.put("url", data.getString("url"));
listener.onConferenceLeft(dataMap);
break;
case "CONFERENCE_WILL_JOIN":
dataMap.put("url", data.getString("url"));
listener.onConferenceWillJoin(dataMap);
break;
case "CONFERENCE_WILL_LEAVE":
dataMap.put("url", data.getString("url"));
listener.onConferenceWillLeave(dataMap);
break;
}
} catch (UnsupportedOperationException e) {
// Allow partial interface implementations.
switch (name) {
case "CONFERENCE_FAILED":
dataMap.put("error", data.getString("error"));
dataMap.put("url", data.getString("url"));
listener.onConferenceFailed(dataMap);
break;
case "CONFERENCE_JOINED":
dataMap.put("url", data.getString("url"));
listener.onConferenceJoined(dataMap);
break;
case "CONFERENCE_LEFT":
dataMap.put("url", data.getString("url"));
listener.onConferenceLeft(dataMap);
break;
case "CONFERENCE_WILL_JOIN":
dataMap.put("url", data.getString("url"));
listener.onConferenceWillJoin(dataMap);
break;
case "CONFERENCE_WILL_LEAVE":
dataMap.put("url", data.getString("url"));
listener.onConferenceWillLeave(dataMap);
break;
}
}
}