/**
* Copyright (C) 2005-2016 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* <p>This module provides a function for converting filter query strings into JavaScript
* objects comprised of the following attributes:<ul>
* <li>filterId</li>
* <li>filterData</li>
* <li>filterDisplay</li></ul>
* It was written to service both the [_AlfHashMixin]{@link module:alfresco/documentlibrary/_AlfHashMixin}
* and [AlfDocumentList]{@link module:alfresco/documentlibrary/AlfDocumentList} modules.</p>
*
* @module alfresco/documentlibrary/_AlfFilterMixin
* @extends module:alfresco/core/Core
* @author Dave Draper
* @deprecated Since 1.0.54 - Use [_AlfHashMixin]{@link module:alfresco/documentlibrary/_AlfHashMixin} instead (call processHashFilter instead of processFilter - see AKU-813)
*/
define(["dojo/_base/declare",
"alfresco/core/Core",
"dojo/_base/lang",
"dojo/_base/array",
"dojo/io-query"],
function(declare, AlfCore, lang, array, ioQuery) {
return declare([AlfCore], {
/**
* Converts a filter string (of the form filter=<id>|<data>|<display>)) into an
* object.
*
* @instance
* @param {object} data The data to convert to a filter
* anything to happen.
*/
processFilter: function alfresco_documentlibrary__AlfFilterMixin__processFilter(data) {
var filterObj = ioQuery.queryToObject(data);
if (!filterObj)
{
// The default filter is root location in a document lib...
filterObj = {
path: "/"
};
}
return filterObj;
}
});
});