Skip to content
Snippets Groups Projects
Commit a0f5a63a authored by Merov Linden's avatar Merov Linden
Browse files

DD-16 : WIP : Fix filtering on menu and tabs. Sort still not done

parent 748bbeaf
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "llfolderviewitem.h" #include "llfolderviewitem.h"
#include "llinventorymodel.h" #include "llinventorymodel.h"
#include "llinventorymodelbackgroundfetch.h" #include "llinventorymodelbackgroundfetch.h"
#include "llinventoryfunctions.h"
#include "llmarketplacefunctions.h" #include "llmarketplacefunctions.h"
#include "llviewercontrol.h" #include "llviewercontrol.h"
#include "llfolderview.h" #include "llfolderview.h"
...@@ -133,29 +134,34 @@ bool LLInventoryFilter::checkFolder(const LLUUID& folder_id) const ...@@ -133,29 +134,34 @@ bool LLInventoryFilter::checkFolder(const LLUUID& folder_id) const
} }
// Marketplace folder filtering // Marketplace folder filtering
const U32 filterTypes = mFilterOps.mFilterTypes; S32 depth = depth_nesting_in_marketplace(folder_id);
if (filterTypes & FILTERTYPE_MARKETPLACE_ACTIVE) if (depth > 0)
{ {
if (!LLMarketplaceData::instance().getActivationState(folder_id)) const U32 filterTypes = mFilterOps.mFilterTypes;
LLUUID listing_uuid = nested_parent_id(folder_id, depth);
if (filterTypes & FILTERTYPE_MARKETPLACE_ACTIVE)
{ {
return false; if (!LLMarketplaceData::instance().getActivationState(listing_uuid))
{
return false;
}
} }
} else if (filterTypes & FILTERTYPE_MARKETPLACE_INACTIVE)
if (filterTypes & FILTERTYPE_MARKETPLACE_INACTIVE)
{
if (LLMarketplaceData::instance().getActivationState(folder_id))
{ {
return false; if (!LLMarketplaceData::instance().isListed(listing_uuid) || LLMarketplaceData::instance().getActivationState(listing_uuid))
{
return false;
}
} }
} else if (filterTypes & FILTERTYPE_MARKETPLACE_UNASSOCIATED)
if (filterTypes & FILTERTYPE_MARKETPLACE_UNASSOCIATED)
{
if (!LLMarketplaceData::instance().getListingID(folder_id).empty())
{ {
return false; if (LLMarketplaceData::instance().isListed(listing_uuid))
{
return false;
}
} }
} }
// Always check against the clipboard // Always check against the clipboard
const BOOL passed_clipboard = checkAgainstClipboard(folder_id); const BOOL passed_clipboard = checkAgainstClipboard(folder_id);
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
function="Marketplace.ViewSort.CheckItem" function="Marketplace.ViewSort.CheckItem"
parameter="show_unassociated" /> parameter="show_unassociated" />
</menu_item_check> </menu_item_check>
<menu_item_check name="show_active" label="Show Active Listings and Folders Only"> <menu_item_check name="show_active" label="Show Active Listings Only">
<menu_item_check.on_click <menu_item_check.on_click
function="Marketplace.ViewSort.Action" function="Marketplace.ViewSort.Action"
parameter="show_active" /> parameter="show_active" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment