de6ea98c72
TODO: cache result. This is necessary at the moment because currently, they just stop working after a buffer switch
65 lines
2 KiB
JavaScript
65 lines
2 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
var weechat = angular.module('weechat');
|
|
|
|
weechat.directive('plugin', ['$rootScope', function($rootScope) {
|
|
/*
|
|
* Plugin directive
|
|
* Shows additional plugin content
|
|
*/
|
|
return {
|
|
templateUrl: 'directives/plugin.html',
|
|
|
|
scope: {
|
|
plugin: '=data'
|
|
},
|
|
|
|
controller: ['$scope', function($scope) {
|
|
|
|
$scope.displayedContent = "";
|
|
|
|
$scope.plugin.visible = $rootScope.auto_display_embedded_content;
|
|
|
|
$scope.hideContent = function() {
|
|
$scope.plugin.visible = false;
|
|
};
|
|
|
|
$scope.showContent = function() {
|
|
/*
|
|
* Shows the plugin content.
|
|
* displayedContent is bound to the DOM.
|
|
* Actual plugin content is only fetched when
|
|
* content is shown.
|
|
*/
|
|
|
|
var embed = document.querySelector(".embed_" + $scope.plugin.$$hashKey);
|
|
|
|
// If the plugin is asynchronous / lazy, execute it now and let it insert itself
|
|
// TODO store the result between channel switches
|
|
if ($scope.plugin.content instanceof Function){
|
|
// Don't rerun if the result is already there
|
|
if (embed.innerHTML === "") {
|
|
$scope.plugin.content();
|
|
}
|
|
} else {
|
|
$scope.displayedContent = $scope.plugin.content;
|
|
}
|
|
$scope.plugin.visible = true;
|
|
|
|
// Scroll embed content into view
|
|
var scroll = function() {
|
|
if (embed && embed.scrollIntoViewIfNeeded !== undefined) {
|
|
embed.scrollIntoViewIfNeeded();
|
|
}
|
|
};
|
|
setTimeout(scroll, 100);
|
|
};
|
|
|
|
if ($scope.plugin.visible) {
|
|
$scope.showContent();
|
|
}
|
|
}]
|
|
};
|
|
}]);
|
|
})();
|