/* * Copyright (C) 2016 Payworks GmbH (http://www.payworks.com) * * The MIT License (MIT) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package io.mpos.ui.shared.view; import android.app.Activity; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import io.mpos.errors.MposError; import io.mpos.transactionprovider.TransactionProcessDetails; import io.mpos.ui.R; import io.mpos.ui.shared.MposUi; import io.mpos.ui.shared.util.UiHelper; public class ErrorFragment extends Fragment { public interface Interaction { void onErrorRetryButtonClicked(); void onErrorCloseButtonClicked(); } public static final String TAG = "ErrorFragment"; private final static String SAVED_INSTANCE_STATE_MPOS_ERROR_DATA_HOLDER = "io.mpos.ui.ErrorFragment.MPOS_ERROR_DATA_HOLDER"; private final static String SAVED_INSTANCE_STATE_PROCESS_DETAILS_INFORMATION = "io.mpos.ui.ErrorFragment.PROCESS_DETAILS_INFORMATION"; private final static String SAVED_INSTANCE_STATE_RETRY_ENABLED = "io.mpos.ui.ErrorFragment.RETRY_ENABLED"; private Interaction mInteractionActivity; private MposError mError; private TransactionProcessDetails mTransactionProcessDetails; private boolean mRetryEnabled; public static ErrorFragment newInstance(boolean retryEnabled, MposError error, TransactionProcessDetails details) { ErrorFragment fragment = new ErrorFragment(); fragment.setError(error); fragment.setRetryEnabled(retryEnabled); fragment.setTransactionProcessDetails(details); return fragment; } public ErrorFragment() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setRetainInstance(true); if (savedInstanceState != null) { mError = (MposError) savedInstanceState.getSerializable(SAVED_INSTANCE_STATE_MPOS_ERROR_DATA_HOLDER); mTransactionProcessDetails = (TransactionProcessDetails) savedInstanceState.getSerializable(SAVED_INSTANCE_STATE_PROCESS_DETAILS_INFORMATION); mRetryEnabled = savedInstanceState.getBoolean(SAVED_INSTANCE_STATE_RETRY_ENABLED); } } @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { View view = inflater.inflate(R.layout.mpu_fragment_error, container, false); Button retryButton = (Button) view.findViewById(R.id.mpu_retry_button); retryButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { mInteractionActivity.onErrorRetryButtonClicked(); } }); if (mRetryEnabled) { retryButton.setVisibility(View.VISIBLE); } else { retryButton.setVisibility(View.GONE); } Button closeButton = (Button) view.findViewById(R.id.mpu_close_button); closeButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { mInteractionActivity.onErrorCloseButtonClicked(); } }); if ("SERVER_AUTHENTICATION_FAILED".equals(mError.getErrorType())) { retryButton.setVisibility(View.GONE); } ImageView progressView = (ImageView) view.findViewById(R.id.mpu_progress_view); progressView.setVisibility(View.GONE); TextView iconView = (TextView) view.findViewById(R.id.mpu_status_icon_view); iconView.setTypeface(UiHelper.createAwesomeFontTypeface(getActivity())); iconView.setTextColor(MposUi.getInitializedInstance().getConfiguration().getAppearance().getColorPrimary()); iconView.setText(R.string.mpu_fa_times_circle); TextView errorView = (TextView) view.findViewById(R.id.mpu_status_view); if (mTransactionProcessDetails != null && mTransactionProcessDetails.getInformation() != null && mTransactionProcessDetails.getInformation().length == 2) { String message = UiHelper.joinAndTrimStatusInformation(mTransactionProcessDetails.getInformation()); errorView.setText(message); } else { errorView.setText(mError.getInfo().trim()); } return view; } @Override public void onAttach(Activity activity) { super.onAttach(activity); try { mInteractionActivity = (Interaction) activity; } catch (ClassCastException e) { throw new ClassCastException(activity.toString() + " must implement ErrorFragment.Interaction"); } } @Override public void onSaveInstanceState(Bundle outState) { outState.putSerializable(SAVED_INSTANCE_STATE_MPOS_ERROR_DATA_HOLDER, mError); outState.putSerializable(SAVED_INSTANCE_STATE_PROCESS_DETAILS_INFORMATION, mTransactionProcessDetails); outState.putBoolean(SAVED_INSTANCE_STATE_RETRY_ENABLED, mRetryEnabled); super.onSaveInstanceState(outState); } @Override public void onDetach() { super.onDetach(); mInteractionActivity = null; } public void setError(MposError error) { mError = error; } public void setRetryEnabled(boolean retryEnabled) { mRetryEnabled = retryEnabled; } public void setTransactionProcessDetails(TransactionProcessDetails transactionProcessDetails) { mTransactionProcessDetails = transactionProcessDetails; } }