/*
 * Copyright (C) 2019 The Android Open Source Project.
 *
 * 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 com.android.car.themeplayground;

import android.app.AlertDialog;
import android.os.Bundle;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;


/**
 * Activity that shows different dialogs from the device default theme.
 */
public class DialogSamples extends AbstractSampleActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Utils.onActivityCreateSetTheme(this);
        setContentView(R.layout.dialog_samples);

        Button showDialogButton = findViewById(R.id.showDialogBT);
        Button showDialogOnlyPositiveButton = findViewById(R.id.showDialogOnlyPositiveBT);
        Button showDialogWithoutTitleButton = findViewById(R.id.showDialogWithoutTitle);
        Button showDialogWithCheckboxButton = findViewById(R.id.showDialogWithCheckboxBT);
        setupBackgroundColorControls(R.id.dialogLayout);
        showDialogButton.setOnClickListener(v -> openDialog(false));
        showDialogOnlyPositiveButton.setOnClickListener(v -> openDialogWithOnlyPositiveButton());
        showDialogWithoutTitleButton.setOnClickListener(v -> openDialogWithoutTitle());
        showDialogWithCheckboxButton.setOnClickListener(v -> openDialog(true));
        Button showToast = findViewById(R.id.showToast);
        showToast.setOnClickListener(v -> showToast());
    }


    private void openDialog(boolean showCheckbox) {

        AlertDialog.Builder builder = new AlertDialog.Builder(this,
                R.style.Theme_Testing_Dialog_Alert);

        if (showCheckbox) {
            // Set Custom Title
            TextView title = new TextView(builder.getContext());
            // Title Properties
            title.setText("Custom Dialog Box");
            builder.setCustomTitle(title);
            builder.setMultiChoiceItems(new CharSequence[]{"I am a checkbox"},
                    new boolean[]{false},
                    (dialog, which, isChecked) -> {
                    });
        } else {
            builder.setTitle("Standard Alert Dialog")
                    .setMessage("With a message to show.");
        }

        builder.setPositiveButton("OK", (dialoginterface, i) -> {
        }).setNegativeButton("CANCEL",
                (dialog, which) -> {
                });
        builder.show();
    }

    private void openDialogWithOnlyPositiveButton() {
        AlertDialog.Builder builder = new AlertDialog.Builder(this,
                R.style.Theme_Testing_Dialog_Alert);
        builder.setTitle("Standard Alert Dialog")
                .setMessage("With a message to show.");
        builder.setPositiveButton("OK", (dialoginterface, i) -> {
        });
        builder.show();
    }

    private void openDialogWithoutTitle() {
        AlertDialog.Builder builder = new AlertDialog.Builder(this,
                R.style.Theme_Testing_Dialog_Alert);
        builder.setMessage("I dont have a titile.");
        builder.setPositiveButton("OK", (dialoginterface, i) -> {
        }).setNegativeButton("CANCEL",
                (dialog, which) -> {
                });
        builder.show();
    }

    private void showToast() {
        Toast.makeText(this, "Toast message looks like this",
                Toast.LENGTH_LONG).show();
    }
}
