mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 02:38:20 +00:00
This allows taskbar to be loaded even in case of 3P Launchers and removes dependency on LauncherActivity lifecycle Bug: 187353581 Bug: 188788621 Test: Manual Change-Id: I5a0988e0697b41677d4c58f0213aef14ec0c0972
114 lines
4.4 KiB
Java
114 lines
4.4 KiB
Java
/*
|
|
* Copyright (C) 2021 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.launcher3.util;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
import android.view.View;
|
|
|
|
import com.android.launcher3.BubbleTextView;
|
|
import com.android.launcher3.folder.Folder;
|
|
import com.android.launcher3.folder.FolderIcon;
|
|
import com.android.launcher3.graphics.PreloadIconDrawable;
|
|
import com.android.launcher3.model.data.FolderInfo;
|
|
import com.android.launcher3.model.data.ItemInfo;
|
|
import com.android.launcher3.model.data.LauncherAppWidgetInfo;
|
|
import com.android.launcher3.model.data.WorkspaceItemInfo;
|
|
import com.android.launcher3.views.ActivityContext;
|
|
import com.android.launcher3.widget.PendingAppWidgetHostView;
|
|
|
|
import java.util.HashSet;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Interface representing a container which can bind Launcher items with some utility methods
|
|
*/
|
|
public interface LauncherBindableItemsContainer {
|
|
|
|
/**
|
|
* Called to update workspace items as a result of
|
|
* {@link com.android.launcher3.model.BgDataModel.Callbacks#bindWorkspaceItemsChanged(List)}
|
|
*/
|
|
default void updateWorkspaceItems(List<WorkspaceItemInfo> shortcuts, ActivityContext context) {
|
|
final HashSet<WorkspaceItemInfo> updates = new HashSet<>(shortcuts);
|
|
ItemOperator op = (info, v) -> {
|
|
if (v instanceof BubbleTextView && updates.contains(info)) {
|
|
WorkspaceItemInfo si = (WorkspaceItemInfo) info;
|
|
BubbleTextView shortcut = (BubbleTextView) v;
|
|
Drawable oldIcon = shortcut.getIcon();
|
|
boolean oldPromiseState = (oldIcon instanceof PreloadIconDrawable)
|
|
&& ((PreloadIconDrawable) oldIcon).hasNotCompleted();
|
|
shortcut.applyFromWorkspaceItem(si, si.isPromise() != oldPromiseState);
|
|
} else if (info instanceof FolderInfo && v instanceof FolderIcon) {
|
|
((FolderIcon) v).updatePreviewItems(updates::contains);
|
|
}
|
|
|
|
// Iterate all items
|
|
return false;
|
|
};
|
|
|
|
mapOverItems(op);
|
|
Folder openFolder = Folder.getOpen(context);
|
|
if (openFolder != null) {
|
|
openFolder.iterateOverItems(op);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Called to update restored items as a result of
|
|
* {@link com.android.launcher3.model.BgDataModel.Callbacks#bindRestoreItemsChange(HashSet)}}
|
|
*/
|
|
default void updateRestoreItems(final HashSet<ItemInfo> updates, ActivityContext context) {
|
|
ItemOperator op = (info, v) -> {
|
|
if (info instanceof WorkspaceItemInfo && v instanceof BubbleTextView
|
|
&& updates.contains(info)) {
|
|
((BubbleTextView) v).applyLoadingState(false /* promiseStateChanged */);
|
|
} else if (v instanceof PendingAppWidgetHostView
|
|
&& info instanceof LauncherAppWidgetInfo
|
|
&& updates.contains(info)) {
|
|
((PendingAppWidgetHostView) v).applyState();
|
|
} else if (v instanceof FolderIcon && info instanceof FolderInfo) {
|
|
((FolderIcon) v).updatePreviewItems(updates::contains);
|
|
}
|
|
// process all the shortcuts
|
|
return false;
|
|
};
|
|
|
|
mapOverItems(op);
|
|
Folder folder = Folder.getOpen(context);
|
|
if (folder != null) {
|
|
folder.iterateOverItems(op);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Map the operator over the shortcuts and widgets.
|
|
*
|
|
* @param op the operator to map over the shortcuts
|
|
*/
|
|
void mapOverItems(ItemOperator op);
|
|
|
|
interface ItemOperator {
|
|
/**
|
|
* Process the next itemInfo, possibly with side-effect on the next item.
|
|
*
|
|
* @param info info for the shortcut
|
|
* @param view view for the shortcut
|
|
* @return true if done, false to continue the map
|
|
*/
|
|
boolean evaluate(ItemInfo info, View view);
|
|
}
|
|
}
|