2 * Copyright (C) 2013-2015 Canonical, Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.3
22 import "../Components"
23 import "../Components/ListItems" as ListItems
28 readonly property bool navigationDisableParentInteractive: pageHeaderLoader.item ? pageHeaderLoader.item.bottomItem[0].disableParentInteractive : false
29 property bool forceNonInteractive: false
30 property var scope: null
31 property UnitySortFilterProxyModel categories: categoryFilter
32 property bool isCurrent: false
33 property alias moving: categoryView.moving
34 property bool hasBackAction: false
35 property bool enableHeightBehaviorOnNextCreation: false
36 property var categoryView: categoryView
37 property bool showPageHeader: true
38 readonly property alias subPageShown: subPageLoader.subPageShown
39 property int paginationCount: 0
40 property int paginationIndex: 0
41 property bool visibleToParent: false
42 property alias pageHeaderTotallyVisible: categoryView.pageHeaderTotallyVisible
43 property var holdingList: null
44 property bool wasCurrentOnMoveStart: false
46 property var scopeStyle: ScopeStyle {
47 style: scope ? scope.customizations : {}
50 readonly property bool processing: scope ? scope.searchInProgress || subPageLoader.processing : false
55 floatingSeeLess.companionBase = null;
58 function positionAtBeginning() {
59 categoryView.positionAtBeginning()
62 function showHeader() {
63 categoryView.showHeader()
66 function closePreview() {
67 subPageLoader.closeSubPage()
70 function resetSearch() {
71 if(pageHeaderLoader.item && showPageHeader)
72 pageHeaderLoader.item.resetSearch()
75 property var maybePreviewResult;
76 property int maybePreviewIndex;
77 property var maybePreviewResultsModel;
78 property int maybePreviewLimitedCategoryItemCount;
79 property string maybePreviewCategoryId;
81 function clearMaybePreviewData() {
82 scopeView.maybePreviewResult = undefined;
83 scopeView.maybePreviewIndex = -1;
84 scopeView.maybePreviewResultsModel = undefined;
85 scopeView.maybePreviewLimitedCategoryItemCount = -1;
86 scopeView.maybePreviewCategoryId = "";
89 function itemClicked(index, result, itemModel, resultsModel, limitedCategoryItemCount, categoryId) {
90 scopeView.maybePreviewResult = result;
91 scopeView.maybePreviewIndex = index;
92 scopeView.maybePreviewResultsModel = resultsModel;
93 scopeView.maybePreviewLimitedCategoryItemCount = limitedCategoryItemCount;
94 scopeView.maybePreviewCategoryId = categoryId;
96 scope.activate(result, categoryId);
99 function itemPressedAndHeld(index, result, resultsModel, limitedCategoryItemCount, categoryId) {
100 clearMaybePreviewData();
102 openPreview(result, index, resultsModel, limitedCategoryItemCount, categoryId);
105 function openPreview(result, index, resultsModel, limitedCategoryItemCount, categoryId) {
106 var previewStack = scope.preview(result, categoryId);
108 if (limitedCategoryItemCount > 0) {
109 previewLimitModel.model = resultsModel;
110 previewLimitModel.limit = limitedCategoryItemCount;
111 subPageLoader.model = previewLimitModel;
113 subPageLoader.model = resultsModel;
115 subPageLoader.initialIndex = -1;
116 subPageLoader.initialIndex = index;
117 subPageLoader.categoryId = categoryId;
118 subPageLoader.previewStack = previewStack;
119 subPageLoader.openSubPage("preview");
126 value: isCurrent && !subPageLoader.open && (Qt.application.state == Qt.ApplicationActive)
129 UnitySortFilterProxyModel {
131 model: scope ? scope.categories : null
132 dynamicSortFilter: true
133 filterRole: Categories.RoleCount
138 onIsCurrentChanged: {
139 if (!holdingList || !holdingList.moving) {
140 wasCurrentOnMoveStart = scopeView.isCurrent;
142 if (pageHeaderLoader.item && showPageHeader) {
143 pageHeaderLoader.item.resetSearch();
145 subPageLoader.closeSubPage();
149 target: scopeView.scope
150 property: "searchQuery"
151 value: pageHeaderLoader.item ? pageHeaderLoader.item.searchQuery : ""
152 when: isCurrent && showPageHeader
156 target: pageHeaderLoader.item
157 property: "searchQuery"
158 value: scopeView.scope ? scopeView.scope.searchQuery : ""
159 when: isCurrent && showPageHeader
163 target: scopeView.scope
164 onShowDash: subPageLoader.closeSubPage()
165 onHideDash: subPageLoader.closeSubPage()
166 onPreviewRequested: { // (QVariant const& result)
167 if (result === scopeView.maybePreviewResult) {
169 scopeView.maybePreviewIndex,
170 scopeView.maybePreviewResultsModel,
171 scopeView.maybePreviewLimitedCategoryItemCount,
172 scopeView.maybePreviewCategoryId);
174 clearMaybePreviewData();
183 wasCurrentOnMoveStart = scopeView.isCurrent;
190 color: scopeView.scopeStyle ? scopeView.scopeStyle.background : "transparent"
191 visible: color != "transparent"
196 objectName: "categoryListView"
197 interactive: !forceNonInteractive
199 x: subPageLoader.open ? -width : 0
201 Behavior on x { UbuntuNumberAnimation { } }
203 height: floatingSeeLess.visible ? parent.height - floatingSeeLess.height + floatingSeeLess.yOffset
205 clip: height != parent.height
207 model: scopeView.categories
208 forceNoClip: subPageLoader.open
211 property string expandedCategoryId: ""
212 property int runMaximizeAfterSizeChanges: 0
214 readonly property bool pageHeaderTotallyVisible: scopeView.showPageHeader &&
215 ((headerItemShownHeight == 0 && categoryView.contentY <= categoryView.originY) || (headerItemShownHeight == pageHeaderLoader.item.height))
217 onExpandedCategoryIdChanged: {
218 var firstCreated = firstCreatedIndex();
219 var shrinkingAny = false;
220 var shrinkHeightDifference = 0;
221 for (var i = 0; i < createdItemCount(); ++i) {
222 var baseItem = item(firstCreated + i);
223 if (baseItem.expandable) {
224 var shouldExpand = baseItem.category === expandedCategoryId;
225 if (shouldExpand != baseItem.expanded) {
227 if (!subPageLoader.open) {
228 var animateShrinking = !shouldExpand && baseItem.y + baseItem.item.collapsedHeight + baseItem.seeAllButton.height < categoryView.height;
229 var animateGrowing = shouldExpand && baseItem.y + baseItem.height < categoryView.height;
230 animate = shrinkingAny || animateShrinking || animateGrowing;
235 shrinkHeightDifference = baseItem.item.expandedHeight - baseItem.item.collapsedHeight;
238 if (shouldExpand && !subPageLoader.open) {
240 categoryView.maximizeVisibleArea(firstCreated + i, baseItem.item.expandedHeight + baseItem.seeAllButton.height);
242 // If the space that shrinking is smaller than the one we need to grow we'll call maximizeVisibleArea
243 // after the shrink/grow animation ends
244 var growHeightDifference = baseItem.item.expandedHeight - baseItem.item.collapsedHeight;
245 if (growHeightDifference > shrinkHeightDifference) {
246 runMaximizeAfterSizeChanges = 2;
248 runMaximizeAfterSizeChanges = 0;
253 baseItem.expand(shouldExpand, animate);
259 delegate: DashCategoryBase {
261 objectName: "dashCategory" + category
263 property Item seeAllButton: seeAll
265 readonly property bool expandable: {
266 if (categoryView.model.count === 1) return false;
267 if (cardTool.template && cardTool.template["collapsed-rows"] === 0) return false;
268 if (item && item.expandedHeight > item.collapsedHeight) return true;
271 property bool expanded: false
272 readonly property string category: categoryId
273 readonly property string headerLink: model.headerLink
274 readonly property var item: rendererLoader.item
276 function expand(expand, animate) {
277 heightBehaviour.enabled = animate;
283 objectName: "cardTool"
284 count: results ? results.count : 0
285 template: model.renderer
286 components: model.components
287 viewWidth: parent.width
290 onExpandableChanged: {
291 // This can happen with the VJ that doesn't know how height it will be on creation
292 // so doesn't set expandable until a bit too late for onLoaded
294 var shouldExpand = baseItem.category === categoryView.expandedCategoryId;
295 baseItem.expand(shouldExpand, false /*animate*/);
299 onHeightChanged: rendererLoader.updateRanges();
300 onYChanged: rendererLoader.updateRanges();
308 topMargin: name != "" ? 0 : units.gu(2)
314 animation: UbuntuNumberAnimation {
315 duration: UbuntuAnimation.FastDuration
318 heightBehaviour.enabled = false
319 if (categoryView.runMaximizeAfterSizeChanges > 0) {
320 categoryView.runMaximizeAfterSizeChanges--;
321 if (categoryView.runMaximizeAfterSizeChanges == 0) {
322 var firstCreated = categoryView.firstCreatedIndex();
323 for (var i = 0; i < categoryView.createdItemCount(); ++i) {
324 var baseItem = categoryView.item(firstCreated + i);
325 if (baseItem.category === categoryView.expandedCategoryId) {
326 categoryView.maximizeVisibleArea(firstCreated + i, baseItem.item.expandedHeight + baseItem.seeAllButton.height);
337 readonly property bool expanded: baseItem.expanded || !baseItem.expandable
338 height: expanded ? item.expandedHeight : item.collapsedHeight
341 switch (cardTool.categoryLayout) {
342 case "carousel": return "CardCarousel.qml";
343 case "vertical-journal": return "CardVerticalJournal.qml";
344 case "horizontal-list": return "CardHorizontalList.qml";
346 default: return "CardGrid.qml";
351 if (item.enableHeightBehavior !== undefined && item.enableHeightBehaviorOnNextCreation !== undefined) {
352 item.enableHeightBehavior = scopeView.enableHeightBehaviorOnNextCreation;
353 scopeView.enableHeightBehaviorOnNextCreation = false;
355 item.model = Qt.binding(function() { return results })
356 item.objectName = Qt.binding(function() { return categoryId })
357 item.scopeStyle = scopeView.scopeStyle;
358 if (baseItem.expandable) {
359 var shouldExpand = baseItem.category === categoryView.expandedCategoryId;
360 baseItem.expand(shouldExpand, false /*animate*/);
363 if (scope && scope.id === "clickscope" && (categoryId === "predefined" || categoryId === "local")) {
365 if (scopeView.width > units.gu(45)) {
366 if (scopeView.width >= units.gu(70)) {
367 cardTool.cardWidth = units.gu(9);
369 cardTool.cardWidth = units.gu(10);
372 cardTool.artShapeSize = Qt.size(units.gu(8), units.gu(7.5));
374 item.cardTool = cardTool;
377 Component.onDestruction: {
378 if (item.enableHeightBehavior !== undefined && item.enableHeightBehaviorOnNextCreation !== undefined) {
379 scopeView.enableHeightBehaviorOnNextCreation = item.enableHeightBehaviorOnNextCreation;
384 target: rendererLoader.item
385 onClicked: { // (int index, var result, var item, var itemModel)
386 scopeView.itemClicked(index, result, itemModel, target.model, categoryItemCount(), baseItem.category);
389 onPressAndHold: { // (int index, var result, var itemModel)
390 scopeView.itemPressedAndHeld(index, result, target.model, categoryItemCount(), baseItem.category);
393 function categoryItemCount() {
394 var categoryItemCount = -1;
395 if (!rendererLoader.expanded && !seeAllLabel.visible && target.collapsedItemCount > 0) {
396 categoryItemCount = target.collapsedItemCount;
398 return categoryItemCount;
403 onOriginYChanged: rendererLoader.updateRanges();
404 onContentYChanged: rendererLoader.updateRanges();
405 onHeightChanged: rendererLoader.updateRanges();
406 onContentHeightChanged: rendererLoader.updateRanges();
410 onIsCurrentChanged: rendererLoader.updateRanges();
411 onVisibleToParentChanged: rendererLoader.updateRanges();
415 onMovingChanged: if (!moving) rendererLoader.updateRanges();
418 function updateRanges() {
419 // Don't want to create stress by requesting more items during scope
420 // changes so unless you're not part of the visible scopes just return.
421 // For the visible scopes we need to do some work, the previously non visible
422 // scope needs to adjust its ranges so that we define the new visible range,
423 // that still means no creation/destruction of delegates, it's just about changing
424 // the culling of the items so they are actually visible
425 if (holdingList && holdingList.moving && !scopeView.visibleToParent) {
429 if (categoryView.moving) {
430 // Do not update the range if we are overshooting up or down, since we'll come back
431 // to the stable position and delete/create items without any reason
432 if (categoryView.contentY < categoryView.originY) {
434 } else if (categoryView.contentHeight - categoryView.originY > categoryView.height &&
435 categoryView.contentY + categoryView.height > categoryView.contentHeight) {
440 if (item && item.hasOwnProperty("displayMarginBeginning")) {
441 var buffer = wasCurrentOnMoveStart ? categoryView.height * 1.5 : 0;
442 var onViewport = baseItem.y + baseItem.height > 0 &&
443 baseItem.y < categoryView.height;
444 var onBufferViewport = baseItem.y + baseItem.height > -buffer &&
445 baseItem.y < categoryView.height + buffer;
447 if (item.growsVertically) {
448 // A item view creates its delegates synchronously from
449 // -displayMarginBeginning
451 // height + displayMarginEnd
452 // Around that area it adds the cacheBuffer area where delegates are created async
454 // We adjust displayMarginBeginning and displayMarginEnd so
455 // * In non visible scopes nothing is considered visible and we set cacheBuffer
456 // so that creates the items that would be in the viewport asynchronously
457 // * For the current scope set the visible range to the viewport and then
458 // use cacheBuffer to create extra items for categoryView.height * 1.5
459 // to make scrolling nicer by mantaining a higher number of
461 // * For non current but visible scopes (i.e. when the user changes from one scope
462 // to the next, we set the visible range to the viewport so
463 // items are not culled (invisible) but still use no cacheBuffer
464 // (it will be set once the scope is the current one)
465 var displayMarginBeginning = baseItem.y + rendererLoader.anchors.topMargin;
466 displayMarginBeginning = -Math.max(-displayMarginBeginning, 0);
467 displayMarginBeginning = -Math.min(-displayMarginBeginning, baseItem.height);
468 displayMarginBeginning = Math.round(displayMarginBeginning);
469 var displayMarginEnd = -baseItem.height + seeAll.height + categoryView.height - baseItem.y;
470 displayMarginEnd = -Math.max(-displayMarginEnd, 0);
471 displayMarginEnd = -Math.min(-displayMarginEnd, baseItem.height);
472 displayMarginEnd = Math.round(displayMarginEnd);
474 if (onBufferViewport && (scopeView.isCurrent || scopeView.visibleToParent)) {
475 item.displayMarginBeginning = displayMarginBeginning;
476 item.displayMarginEnd = displayMarginEnd;
477 if (holdingList && holdingList.moving) {
478 // If we are moving we need to reset the cache buffer of the
479 // view that was not visible (i.e. !wasCurrentOnMoveStart) to 0 since
480 // otherwise the cache buffer we had set to preload the items of the
481 // visible range will trigger some item creations and we want move to
482 // be as smooth as possible meaning no need creations
483 if (!wasCurrentOnMoveStart) {
484 item.cacheBuffer = 0;
487 // Protect us against cases where the item hasn't yet been positioned
488 if (!(categoryView.contentY === 0 && baseItem.y === 0 && index !== 0)) {
489 item.cacheBuffer = categoryView.height * 1.5;
493 var visibleRange = baseItem.height + displayMarginEnd + displayMarginBeginning;
494 if (visibleRange < 0) {
495 item.displayMarginBeginning = displayMarginBeginning;
496 item.displayMarginEnd = displayMarginEnd;
497 item.cacheBuffer = 0;
499 // This should be visibleRange/2 in each of the properties
500 // but some item views still (like GridView) like creating sync delegates even if
501 // the visible range is 0 so let's make sure the visible range is negative
502 item.displayMarginBeginning = displayMarginBeginning - visibleRange;
503 item.displayMarginEnd = displayMarginEnd - visibleRange;
504 item.cacheBuffer = visibleRange;
508 if (!onBufferViewport) {
509 // If not on the buffered viewport, don't load anything
510 item.displayMarginBeginning = 0;
511 item.displayMarginEnd = -item.innerWidth;
512 item.cacheBuffer = 0;
514 if (onViewport && (scopeView.isCurrent || scopeView.visibleToParent)) {
515 // If on the buffered viewport and the viewport and the on a visible scope
516 // Set displayMargin so that cards are rendered
517 // And if not moving the parent list also give it some extra asynchronously
519 item.displayMarginBeginning = 0;
520 item.displayMarginEnd = 0;
521 if (holdingList && holdingList.moving) {
522 // If we are moving we need to reset the cache buffer of the
523 // view that was not visible (i.e. !wasCurrentOnMoveStart) to 0 since
524 // otherwise the cache buffer we had set to preload the items of the
525 // visible range will trigger some item creations and we want move to
526 // be as smooth as possible meaning no need creations
527 if (!wasCurrentOnMoveStart) {
528 item.cacheBuffer = 0;
531 item.cacheBuffer = baseItem.width * 1.5;
534 // If on the buffered viewport but either not in the real viewport
535 // or in the viewport of the non current scope, use displayMargin + cacheBuffer
536 // to render asynchronously the width of cards
537 item.displayMarginBeginning = 0;
538 item.displayMarginEnd = -item.innerWidth;
539 item.cacheBuffer = item.innerWidth;
551 top: rendererLoader.bottom
555 height: baseItem.expandable && !baseItem.headerLink ? seeAllLabel.font.pixelSize + units.gu(4) : 0
559 if (categoryView.expandedCategoryId !== baseItem.category) {
560 categoryView.expandedCategoryId = baseItem.category;
561 floatingSeeLess.companionBase = baseItem;
563 categoryView.expandedCategoryId = "";
569 text: baseItem.expanded ? i18n.tr("See less") : i18n.tr("See all")
572 verticalCenterOffset: units.gu(-0.5)
575 font.weight: Font.Bold
576 color: scopeStyle ? scopeStyle.foreground : theme.palette.normal.baseText
587 fillMode: Image.Stretch
588 source: "graphics/dash_divider_top_lightgrad.png"
593 // FIXME Should not rely on model.count but view.count, but ListViewWithPageHeader doesn't expose it yet.
594 visible: index != categoryView.model.count - 1
596 bottom: seeAll.bottom
600 fillMode: Image.Stretch
601 source: "graphics/dash_divider_top_darkgrad.png"
606 sectionProperty: "name"
607 sectionDelegate: ListItems.Header {
608 objectName: "dashSectionHeader" + (delegate ? delegate.category : "")
609 readonly property var delegate: categoryView.item(delegateIndex)
610 width: categoryView.width
611 height: section != "" ? units.gu(5) : 0
613 color: scopeStyle ? scopeStyle.foreground : theme.palette.normal.baseText
614 iconName: delegate && delegate.headerLink ? "go-next" : ""
616 if (delegate.headerLink) scopeView.scope.performQuery(delegate.headerLink);
620 pageHeader: scopeView.showPageHeader ? pageHeaderLoader : null
624 sourceComponent: scopeView.showPageHeader ? pageHeaderComponent : undefined
626 id: pageHeaderComponent
628 objectName: "scopePageHeader"
630 title: scopeView.scope ? scopeView.scope.name : ""
631 searchHint: scopeView.scope && scopeView.scope.searchHint || i18n.ctr("Label: Hint for dash search line edit", "Search")
632 showBackButton: scopeView.hasBackAction
633 searchEntryEnabled: true
634 settingsEnabled: scopeView.scope && scopeView.scope.settings && scopeView.scope.settings.count > 0 || false
635 favoriteEnabled: scopeView.scope && scopeView.scope.id !== "clickscope"
636 favorite: scopeView.scope && scopeView.scope.favorite
637 scopeStyle: scopeView.scopeStyle
638 paginationCount: scopeView.paginationCount
639 paginationIndex: scopeView.paginationIndex
641 bottomItem: DashNavigation {
642 scope: scopeView.scope
643 anchors { left: parent.left; right: parent.right }
644 windowHeight: scopeView.height
645 windowWidth: scopeView.width
646 scopeStyle: scopeView.scopeStyle
649 onBackClicked: scopeView.backClicked()
650 onSettingsClicked: subPageLoader.openSubPage("settings")
651 onFavoriteClicked: scopeView.scope.favorite = !scopeView.scope.favorite
652 onSearchTextFieldFocused: scopeView.showHeader()
659 id: pullToRefreshClippingItem
660 anchors.left: parent.left
661 anchors.right: parent.right
662 anchors.bottom: parent.bottom
663 height: parent.height - pullToRefresh.contentY + (pageHeaderLoader.item ? pageHeaderLoader.item.bottomItem[0].height - pageHeaderLoader.item.height : 0)
668 objectName: "pullToRefresh"
671 readonly property real contentY: categoryView.contentY - categoryView.originY
672 y: -contentY - units.gu(5)
676 scopeView.scope.refresh()
678 anchors.left: parent.left
679 anchors.right: parent.right
683 onProcessingChanged: if (!scopeView.processing) pullToRefresh.refreshing = false
686 style: PullToRefreshScopeStyle {
688 activationThreshold: units.gu(14)
695 objectName: "floatingSeeLess"
697 property Item companionTo: companionBase ? companionBase.seeAllButton : null
698 property Item companionBase: null
699 property bool showBecausePosition: false
700 property real yOffset: 0
703 left: categoryView.left
704 right: categoryView.right
706 y: parent.height - height + yOffset
707 height: seeLessLabel.font.pixelSize + units.gu(4)
708 visible: companionTo && showBecausePosition
710 onClicked: categoryView.expandedCategoryId = "";
712 function updateVisibility() {
713 var companionPos = companionTo.mapToItem(floatingSeeLess, 0, 0);
714 showBecausePosition = companionPos.y > 0;
716 var posToBase = floatingSeeLess.mapToItem(companionBase, 0, -yOffset).y;
717 yOffset = Math.max(0, companionBase.item.collapsedHeight - posToBase);
718 yOffset = Math.min(yOffset, height);
720 if (!showBecausePosition && categoryView.expandedCategoryId === "") {
721 companionBase = null;
727 text: i18n.tr("See less")
730 verticalCenterOffset: units.gu(-0.5)
733 font.weight: Font.Bold
734 color: scopeStyle ? scopeStyle.foreground : theme.palette.normal.baseText
738 target: floatingSeeLess.companionTo ? categoryView : null
739 onContentYChanged: floatingSeeLess.updateVisibility();
743 target: floatingSeeLess.companionTo
744 onYChanged: floatingSeeLess.updateVisibility();
749 id: previewLimitModel
754 objectName: "subPageLoader"
757 height: parent.height
758 anchors.left: categoryView.right
760 property bool open: false
761 property var scope: scopeView.scope
762 property var scopeStyle: scopeView.scopeStyle
763 property int initialIndex: -1
764 property var previewStack;
765 property string categoryId
766 property var model: null
768 readonly property bool processing: item && item.processing || false
769 readonly property int count: item && item.count || 0
770 readonly property int currentIndex: item && item.currentIndex || 0
771 readonly property var currentItem: item && item.currentItem || null
773 property string subPage: ""
774 readonly property bool subPageShown: visible && status === Loader.Ready
776 function openSubPage(page) {
780 function closeSubPage() {
784 source: switch(subPage) {
785 case "preview": return "PreviewListView.qml";
786 case "settings": return "ScopeSettingsPage.qml";
791 item.scope = Qt.binding(function() { return subPageLoader.scope; } )
792 item.scopeStyle = Qt.binding(function() { return subPageLoader.scopeStyle; } )
793 if (subPage == "preview") {
794 item.open = Qt.binding(function() { return subPageLoader.open; } )
795 item.initialIndex = Qt.binding(function() { return subPageLoader.initialIndex; } )
796 item.model = Qt.binding(function() { return subPageLoader.model; } )
797 item.categoryId = Qt.binding(function() { return subPageLoader.categoryId; } )
798 item.initialIndexPreviewStack = subPageLoader.previewStack;
799 subPageLoader.previewStack = null;
804 onOpenChanged: pageHeaderLoader.item.unfocus()
806 onVisibleChanged: if (!visible) subPage = ""
809 target: subPageLoader.item
810 onBackClicked: subPageLoader.closeSubPage()