/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.tabs;

import org.mozilla.gecko.R;
import org.mozilla.gecko.Tabs;

import android.content.Context;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.helper.ItemTouchHelper;
import android.util.AttributeSet;

abstract class TabsGridLayout extends TabsLayout {
    TabsGridLayout(Context context, AttributeSet attrs, int spanCount) {
        super(context, attrs, R.layout.tabs_layout_item_view);

        setLayoutManager(new GridLayoutManager(context, spanCount));

        setClipToPadding(false);
        setScrollBarStyle(SCROLLBARS_OUTSIDE_OVERLAY);

        setItemAnimator(new TabsGridLayoutAnimator());

        final int dragDirections = ItemTouchHelper.UP | ItemTouchHelper.DOWN | ItemTouchHelper.START | ItemTouchHelper.END;
        // A TouchHelper handler for drag and drop and swipe to close.
        final TabsTouchHelperCallback callback = new TabsTouchHelperCallback(this, dragDirections, this) {
            @Override
            protected float alphaForItemSwipeDx(float dX, int distanceToAlphaMin) {
                return 1f - 2f * Math.abs(dX) / distanceToAlphaMin;
            }
        };
        final ItemTouchHelper touchHelper = new ItemTouchHelper(callback);
        touchHelper.attachToRecyclerView(this);
    }

    @Override
    public void onCloseAll() {
        autoHidePanel();
        if (isNormal()) {
            Tabs.getInstance().closeAllTabs();
        } else {
            Tabs.getInstance().closeAllPrivateTabs();
        }
    }

    @Override
    protected boolean addAtIndexRequiresScroll(int index) {
        final GridLayoutManager layoutManager = (GridLayoutManager) getLayoutManager();
        final int spanCount = layoutManager.getSpanCount();
        final int firstVisibleIndex = layoutManager.findFirstVisibleItemPosition();
        // When you add an item at the first visible position to a GridLayoutManager and there's
        // room to scroll, RecyclerView scrolls the new position to anywhere from near the bottom of
        // its row to completely offscreen (for unknown reasons), so we need to scroll to fix that.
        // We also always need to scroll if the new tab is a new last tab on a row by itself; more
        // generally, another app can open a new last tab with the tabs tray open and the scroll at
        // an arbitrary position, so we need to always scroll in that more general case as well.
        return index == firstVisibleIndex || index == getAdapter().getItemCount() - 1;
    }
}
