Merge pull request #4472 from romanroe/performance_improvements
Reduced Watcher Countpull/4491/head
commit
f901cb88a8
@ -1,17 +1,16 @@ |
|||||||
<span class="inplace-edit--read-value--container"> |
<span class="inplace-edit--read-value--container"> |
||||||
<span class="hidden-for-sighted" |
|
||||||
ng-attr-id="{{$ctrl.labelId}}"> |
<span class="hidden-for-sighted __d__hidden-for-sighted"></span> |
||||||
{{ ::$ctrl.label }} {{ $ctrl.displayText }} |
|
||||||
</span> |
<span class="wp-table--cell-span inplace-edit--read-value--value __d__cell" |
||||||
<span class="wp-table--cell-span inplace-edit--read-value--value" |
|
||||||
ng-switch="$ctrl.displayType" |
|
||||||
ng-click="$ctrl.activateIfEditable($event)" |
ng-click="$ctrl.activateIfEditable($event)" |
||||||
data-click-on-keypress="[13, 32]" |
data-click-on-keypress="[13, 32]" |
||||||
focus="$ctrl.shouldFocus()" |
focus="$ctrl.shouldFocus()"> |
||||||
ng-attr-tabindex="{{$ctrl.isEditable() ? '0' : '-1'}}" |
|
||||||
ng-class="{ '-placeholder' : $ctrl.isEmpty }" |
<span class="__d__renderer"> |
||||||
aria-labelledby="{{$ctrl.labelId}}"> |
<ng-include ng-if="::!$ctrl.field.isManualRenderer" |
||||||
|
src="::$ctrl.field.template"></ng-include> |
||||||
|
</span> |
||||||
|
|
||||||
<ng-include src="$ctrl.field.template"></ng-include> |
|
||||||
</span> |
</span> |
||||||
</span> |
</span> |
||||||
|
@ -0,0 +1,107 @@ |
|||||||
|
// -- copyright
|
||||||
|
// OpenProject is a project management system.
|
||||||
|
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public License version 3.
|
||||||
|
//
|
||||||
|
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||||||
|
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
||||||
|
// Copyright (C) 2010-2013 the ChiliProject Team
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public License
|
||||||
|
// as published by the Free Software Foundation; either version 2
|
||||||
|
// of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program 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 General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
//
|
||||||
|
// See doc/COPYRIGHT.rdoc for more details.
|
||||||
|
// ++
|
||||||
|
|
||||||
|
import IScope = angular.IScope; |
||||||
|
import IRootElementService = angular.IRootElementService; |
||||||
|
angular |
||||||
|
.module('openproject.workPackages.directives') |
||||||
|
.directive('wpVirtualScroll', wpVirtualScroll); |
||||||
|
|
||||||
|
function getBlockNodes(nodes) { |
||||||
|
var node = nodes[0]; |
||||||
|
var endNode = nodes[nodes.length - 1]; |
||||||
|
var blockNodes = [node]; |
||||||
|
|
||||||
|
do { |
||||||
|
node = node.nextSibling; |
||||||
|
if (!node) break; |
||||||
|
blockNodes.push(node); |
||||||
|
} while (node !== endNode); |
||||||
|
|
||||||
|
return $(blockNodes); |
||||||
|
} |
||||||
|
|
||||||
|
function wpVirtualScroll($window, $animate) { |
||||||
|
return { |
||||||
|
|
||||||
|
multiElement: true, |
||||||
|
transclude: 'element', |
||||||
|
// priority: 600,
|
||||||
|
terminal: true, |
||||||
|
restrict: 'A', |
||||||
|
// $$tlb: true,
|
||||||
|
|
||||||
|
link: ($scope, $element: IRootElementService, $attr, ctrl, $transclude) => { |
||||||
|
|
||||||
|
const parent = $element.parent(); |
||||||
|
|
||||||
|
let block: any; |
||||||
|
let childScope: IScope; |
||||||
|
let previousElements: any; |
||||||
|
|
||||||
|
let tr = document.createElement("tr"); |
||||||
|
let td = document.createElement("td"); |
||||||
|
td.innerHTML = " "; |
||||||
|
tr.appendChild(td); |
||||||
|
|
||||||
|
const value = true; |
||||||
|
|
||||||
|
if (value) { |
||||||
|
if (!childScope) { |
||||||
|
$transclude(function (clone, newScope) { |
||||||
|
childScope = newScope; |
||||||
|
block = { |
||||||
|
clone: clone |
||||||
|
}; |
||||||
|
$animate.enter(clone, parent, $element); |
||||||
|
}); |
||||||
|
} |
||||||
|
} else { |
||||||
|
if (previousElements) { |
||||||
|
previousElements.remove(); |
||||||
|
previousElements = null; |
||||||
|
} |
||||||
|
if (childScope) { |
||||||
|
childScope.$destroy(); |
||||||
|
childScope = null; |
||||||
|
} |
||||||
|
if (block) { |
||||||
|
previousElements = getBlockNodes(block.clone); |
||||||
|
$animate.leave(previousElements).then(function () { |
||||||
|
previousElements = null; |
||||||
|
}); |
||||||
|
block = null; |
||||||
|
} |
||||||
|
|
||||||
|
// adding dummy row
|
||||||
|
parent.append(tr); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
}; |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
//# sourceMappingURL=open-project.typings.js.map
|
@ -0,0 +1 @@ |
|||||||
|
{"version":3,"file":"open-project.typings.js","sourceRoot":"","sources":["open-project.typings.ts"],"names":[],"mappings":""} |
Loading…
Reference in new issue