use of com.waz.zclient.controllers.tracking.events.group.OpenedGroupActionEvent 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);
}
}
});
}
}
});
}
use of com.waz.zclient.controllers.tracking.events.group.OpenedGroupActionEvent 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);
}
});
}
});
}
Aggregations