/**
* 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/>.
*/
/**
* Renders an individual breadcrumb that reflects a single token in the current path. This is primarily used
* by [AlfBreadcrumbTrail]{@link module:alfresco/documentlibrary/AlfBreadcrumbTrail}.
*
* @module alfresco/documentlibrary/AlfBreadcrumb
* @extends external:dijit/_WidgetBase
* @mixes external:dojo/_TemplatedMixin
* @mixes external:dojo/_OnDijitClickMixin
* @mixes external:dojo/_CssStateMixin
* @mixes module:alfresco/core/Core
* @mixes module:alfresco/documentlibrary/_AlfDocumentListTopicMixin
* @author Dave Draper
*/
define(["dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_OnDijitClickMixin",
"dijit/_CssStateMixin",
"alfresco/node/NodeDropTargetMixin",
"alfresco/renderers/_PublishPayloadMixin",
"dojo/text!./templates/AlfBreadcrumb.html",
"alfresco/core/Core",
"alfresco/documentlibrary/_AlfDocumentListTopicMixin"],
function(declare, _WidgetBase, _TemplatedMixin, _OnDijitClickMixin, _CssStateMixin, NodeDropTargetMixin,
_PublishPayloadMixin, template, AlfCore, _AlfDocumentListTopicMixin) {
return declare([_WidgetBase, _TemplatedMixin, _OnDijitClickMixin, _CssStateMixin, NodeDropTargetMixin, _PublishPayloadMixin, AlfCore, _AlfDocumentListTopicMixin], {
/**
* An array of the CSS files to use with this widget.
*
* @instance cssRequirements {Array}
* @type {object[]}
* @default [{cssFile:"./css/AlfBreadcrumb.css"}]
*/
cssRequirements: [{cssFile:"./css/AlfBreadcrumb.css"}],
/**
* The HTML template to use for the widget.
* @instance
* @type {String}
*/
templateString: template,
/**
* The label for the breadcrumb
*
* @instance
* @type {string}
* @default
*/
label: null,
/**
* The path for the breadcrumb.
*
* @instance
* @type {string}
* @default
*/
path: null,
/**
* This is the topic that will be published when the breadcrumb is clicked.
*
* @instance
* @type {string}
* @default
*/
publishTopic: null,
/**
* This is the payload that will be published when the breadcrumb is clicked.
*
* @instance
* @type {object}
* @default
*/
publishPayload: null,
/**
* Implements the Dojo widget lifecycle method to set the label of the widget
* @instance
*/
postCreate: function alfresco_documentlibrary_AlfBreadcrumb__postCreate() {
if (this.label)
{
this.breadcrumbNode.innerHTML = this.message(this.label);
}
},
/**
* Handles mouse click and keyboard events to navigate to the location that the breadcrumb
* represents. Navigation is performed by publishing on the "ALF_NAVIGATE_TO_PAGE" topic
*
* @instance
* @param {object} evt The click event
*/
onClick: function alfresco_documentlibrary_AlfBreadcrumb(/* jshint unused:false */ evt) {
if (this.publishTopic)
{
var publishPayload = this.generatePayload(this.publishPayload, this.currentItem, null, this.publishPayloadType, this.publishPayloadItemMixin, this.publishPayloadModifiers);
this.alfPublish(this.publishTopic, publishPayload, (this.publishGlobal === true));
}
}
});
});