Search in sources :

Example 6 with NetworkMode

use of com.waz.api.NetworkMode in project wire-android by wireapp.

the class ParticipantBodyFragment method onConnectUserUpdated.

@Override
public void onConnectUserUpdated(final User user, IConnectStore.UserRequester usertype) {
    if (usertype != userRequester || user == null) {
        return;
    }
    imageAssetImageView.setVisibility(View.VISIBLE);
    imageAssetImageView.connectImageAsset(user.getPicture());
    footerMenu.setVisibility(View.VISIBLE);
    topBorder.setVisibility(View.INVISIBLE);
    final IConversation conversation = getStoreFactory().getConversationStore().getCurrentConversation();
    if (conversation.getType() == IConversation.Type.ONE_TO_ONE) {
        if (user.isMe()) {
            footerMenu.setLeftActionText(getString(R.string.glyph__profile));
            footerMenu.setLeftActionLabelText(getString(R.string.popover__action__profile));
            footerMenu.setRightActionText("");
            footerMenu.setRightActionLabelText("");
        } else {
            footerMenu.setLeftActionText(getString(R.string.glyph__add_people));
            footerMenu.setLeftActionLabelText(getString(R.string.conversation__action__create_group));
            footerMenu.setRightActionText(getString(R.string.glyph__block));
            footerMenu.setRightActionLabelText(getString(R.string.popover__action__block));
        }
    } else {
        if (user.isMe()) {
            footerMenu.setLeftActionText(getString(R.string.glyph__profile));
            footerMenu.setLeftActionLabelText(getString(R.string.popover__action__profile));
            footerMenu.setRightActionText(getString(R.string.glyph__minus));
            footerMenu.setRightActionLabelText("");
        } else {
            footerMenu.setLeftActionText(getString(R.string.glyph__conversation));
            footerMenu.setLeftActionLabelText(getString(R.string.popover__action__open));
            footerMenu.setRightActionText(getString(R.string.glyph__minus));
            footerMenu.setRightActionLabelText(getString(R.string.popover__action__remove));
        }
    }
    footerMenu.setCallback(new FooterMenuCallback() {

        @Override
        public void onLeftActionClicked() {
            if (user.isMe() || conversation.getType() != IConversation.Type.ONE_TO_ONE) {
                getControllerFactory().getConversationScreenController().hideParticipants(true, false);
                // Go to conversation with this user
                getControllerFactory().getPickUserController().hidePickUserWithoutAnimations(getContainer().getCurrentPickerDestination());
                getStoreFactory().getConversationStore().setCurrentConversation(user.getConversation(), ConversationChangeRequester.START_CONVERSATION);
            } else {
                ((BaseScalaActivity) getActivity()).injectJava(GlobalTrackingController.class).tagEvent(new OpenedGroupActionEvent());
                getControllerFactory().getConversationScreenController().addPeopleToConversation();
            }
        }

        @Override
        public void onRightActionClicked() {
            if (conversation.getType() == IConversation.Type.ONE_TO_ONE) {
                if (!user.isMe()) {
                    getContainer().toggleBlockUser(user, user.getConnectionStatus() != User.ConnectionStatus.BLOCKED);
                }
            } else {
                getStoreFactory().getNetworkStore().doIfHasInternetOrNotifyUser(new NetworkAction() {

                    @Override
                    public void execute(NetworkMode networkMode) {
                        if (user.isMe()) {
                            showLeaveConfirmation(getStoreFactory().getConversationStore().getCurrentConversation());
                        } else {
                            getContainer().showRemoveConfirmation(user);
                        }
                    }

                    @Override
                    public void onNoNetwork() {
                        if (user.isMe()) {
                            ViewUtils.showAlertDialog(getActivity(), R.string.alert_dialog__no_network__header, R.string.leave_conversation_failed__message, R.string.alert_dialog__confirmation, null, true);
                        } else {
                            ViewUtils.showAlertDialog(getActivity(), R.string.alert_dialog__no_network__header, R.string.remove_from_conversation__no_network__message, R.string.alert_dialog__confirmation, null, true);
                        }
                    }
                });
            }
        }
    });
}
Also used : BaseScalaActivity(com.waz.zclient.BaseScalaActivity) OpenedGroupActionEvent(com.waz.zclient.controllers.tracking.events.group.OpenedGroupActionEvent) IConversation(com.waz.api.IConversation) FooterMenuCallback(com.waz.zclient.views.menus.FooterMenuCallback) NetworkMode(com.waz.api.NetworkMode) NetworkAction(com.waz.zclient.core.stores.network.NetworkAction)

Example 7 with NetworkMode

use of com.waz.api.NetworkMode in project wire-android by wireapp.

the class ParticipantBodyFragment method conversationUpdated.

@Override
public void conversationUpdated(final IConversation conversation) {
    footerMenu.setVisibility(View.VISIBLE);
    if (conversation.getType() == IConversation.Type.ONE_TO_ONE) {
        footerMenu.setLeftActionText(getString(R.string.glyph__plus));
        topBorder.setVisibility(View.INVISIBLE);
        footerMenu.setRightActionText(getString(R.string.glyph__more));
        getStoreFactory().getSingleParticipantStore().setUser(conversation.getOtherParticipant());
    } else {
        imageAssetImageView.setVisibility(View.GONE);
        // Check if self user is member for group conversation
        if (conversation.isMemberOfConversation()) {
            footerMenu.setLeftActionText(getString(R.string.glyph__add_people));
            footerMenu.setRightActionText(getString(R.string.glyph__more));
            footerMenu.setLeftActionLabelText(getString(R.string.conversation__action__add_people));
        } else {
            footerMenu.setLeftActionText("");
            footerMenu.setRightActionText("");
            footerMenu.setLeftActionLabelText("");
        }
        if (lastParticipantAboveFooter()) {
            topBorder.setVisibility(View.INVISIBLE);
        } else {
            topBorder.setVisibility(View.VISIBLE);
        }
    }
    footerMenu.setCallback(new FooterMenuCallback() {

        @Override
        public void onLeftActionClicked() {
            if (userRequester == IConnectStore.UserRequester.POPOVER) {
                final User user = getStoreFactory().getSingleParticipantStore().getUser();
                if (user.isMe()) {
                    getControllerFactory().getConversationScreenController().hideParticipants(true, false);
                    // Go to conversation with this user
                    getControllerFactory().getPickUserController().hidePickUserWithoutAnimations(getContainer().getCurrentPickerDestination());
                    getStoreFactory().getConversationStore().setCurrentConversation(user.getConversation(), ConversationChangeRequester.START_CONVERSATION);
                    return;
                }
            }
            if (!conversation.isMemberOfConversation()) {
                return;
            }
            ((BaseScalaActivity) getActivity()).injectJava(GlobalTrackingController.class).tagEvent(new OpenedGroupActionEvent());
            getControllerFactory().getConversationScreenController().addPeopleToConversation();
        }

        @Override
        public void onRightActionClicked() {
            getStoreFactory().getNetworkStore().doIfHasInternetOrNotifyUser(new NetworkAction() {

                @Override
                public void execute(NetworkMode networkMode) {
                    if (!conversation.isMemberOfConversation()) {
                        return;
                    }
                    if (userRequester == IConnectStore.UserRequester.POPOVER) {
                        User otherUser = conversation.getOtherParticipant();
                        getContainer().toggleBlockUser(otherUser, otherUser.getConnectionStatus() != User.ConnectionStatus.BLOCKED);
                    } else {
                        getControllerFactory().getConversationScreenController().showConversationMenu(IConversationScreenController.CONVERSATION_DETAILS, conversation, null);
                    }
                }

                @Override
                public void onNoNetwork() {
                    ViewUtils.showAlertDialog(getActivity(), R.string.alert_dialog__no_network__header, R.string.leave_conversation_failed__message, R.string.alert_dialog__confirmation, null, true);
                }
            });
        }
    });
}
Also used : User(com.waz.api.User) BaseScalaActivity(com.waz.zclient.BaseScalaActivity) OpenedGroupActionEvent(com.waz.zclient.controllers.tracking.events.group.OpenedGroupActionEvent) FooterMenuCallback(com.waz.zclient.views.menus.FooterMenuCallback) NetworkMode(com.waz.api.NetworkMode) NetworkAction(com.waz.zclient.core.stores.network.NetworkAction)

Aggregations

NetworkMode (com.waz.api.NetworkMode)7 NetworkAction (com.waz.zclient.core.stores.network.NetworkAction)5 BaseScalaActivity (com.waz.zclient.BaseScalaActivity)3 FooterMenuCallback (com.waz.zclient.views.menus.FooterMenuCallback)3 IConversation (com.waz.api.IConversation)2 OpenedGroupActionEvent (com.waz.zclient.controllers.tracking.events.group.OpenedGroupActionEvent)2 DefaultNetworkAction (com.waz.zclient.core.stores.network.DefaultNetworkAction)2 GlobalTrackingController (com.waz.zclient.tracking.GlobalTrackingController)2 SuppressLint (android.annotation.SuppressLint)1 DialogInterface (android.content.DialogInterface)1 AlertDialog (android.support.v7.app.AlertDialog)1 Preference (android.support.v7.preference.Preference)1 PreferenceScreen (android.support.v7.preference.PreferenceScreen)1 ListView (android.widget.ListView)1 ContactMethod (com.waz.api.ContactMethod)1 Fingerprint (com.waz.api.Fingerprint)1 Subscriber (com.waz.api.Subscriber)1 User (com.waz.api.User)1 OpenedGenericInviteMenuEvent (com.waz.zclient.controllers.tracking.events.connect.OpenedGenericInviteMenuEvent)1 OpenedMoreActionsEvent (com.waz.zclient.controllers.tracking.events.navigation.OpenedMoreActionsEvent)1