import QtQuick 2.15 import utils 1.0 import AppLayouts.Profile.controls 1.0 ProfileShowcasePanel { id: root keyRole: "uid" roleNames: ["uid", "name", "collectionName", "backgroundColor", "imageUrl"].concat(showcaseRoles) filterFunc: (modelData) => !showcaseModel.hasItemInShowcase(modelData.uid) hiddenPlaceholderBanner: qsTr("Collectibles here will show on your profile") showcasePlaceholderBanner: qsTr("Collectibles here will be hidden from your profile") draggableDelegateComponent: CollectibleShowcaseDelegate { Drag.keys: ["x-status-draggable-showcase-item-hidden"] showcaseObj: modelData dragParent: dragParentData visualIndex: visualIndexData onShowcaseVisibilityRequested: { var tmpObj = Object() root.roleNames.forEach(role => tmpObj[role] = showcaseObj[role]) tmpObj.showcaseVisibility = value showcaseModel.upsertItemJson(JSON.stringify(tmpObj)) root.showcaseEntryChanged() } } showcaseDraggableDelegateComponent: CollectibleShowcaseDelegate { Drag.keys: ["x-status-draggable-showcase-item"] showcaseObj: modelData dragParent: dragParentData visualIndex: visualIndexData dragAxis: Drag.YAxis showcaseVisibility: !!modelData ? modelData.showcaseVisibility : Constants.ShowcaseVisibility.NoOne onShowcaseVisibilityRequested: { showcaseModel.setVisibility(showcaseObj.uid, value) root.showcaseEntryChanged() } } }