2018-11-05 05:06:39 -05:00
|
|
|
/* eslint-disable
|
|
|
|
max-len,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-19 05:02:56 -04:00
|
|
|
import App from '../../../base'
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2020-05-19 05:02:56 -04:00
|
|
|
export default App.directive('aggregateChangeEntry', $timeout => ({
|
|
|
|
restrict: 'E',
|
|
|
|
templateUrl: 'aggregateChangeEntryTemplate',
|
|
|
|
scope: {
|
|
|
|
entry: '=',
|
|
|
|
user: '=',
|
|
|
|
permissions: '=',
|
|
|
|
onAccept: '&',
|
|
|
|
onReject: '&',
|
|
|
|
onIndicatorClick: '&',
|
2021-04-27 03:52:58 -04:00
|
|
|
onBodyClick: '&',
|
2020-05-19 05:02:56 -04:00
|
|
|
},
|
|
|
|
link(scope, element, attrs) {
|
|
|
|
scope.contentLimit = 17
|
|
|
|
scope.isDeletionCollapsed = true
|
|
|
|
scope.isInsertionCollapsed = true
|
|
|
|
scope.deletionNeedsCollapsing = false
|
|
|
|
scope.insertionNeedsCollapsing = false
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
element.on('click', function (e) {
|
2020-05-19 05:02:56 -04:00
|
|
|
if (
|
|
|
|
$(e.target).is(
|
|
|
|
'.rp-entry, .rp-entry-description, .rp-entry-body, .rp-entry-action-icon i'
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
return scope.onBodyClick()
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
})
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
scope.toggleDeletionCollapse = function () {
|
2020-05-19 05:02:56 -04:00
|
|
|
scope.isDeletionCollapsed = !scope.isDeletionCollapsed
|
|
|
|
return $timeout(() => scope.$emit('review-panel:layout'))
|
|
|
|
}
|
2018-11-05 05:06:39 -05:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
scope.toggleInsertionCollapse = function () {
|
2020-05-19 05:02:56 -04:00
|
|
|
scope.isInsertionCollapsed = !scope.isInsertionCollapsed
|
|
|
|
return $timeout(() => scope.$emit('review-panel:layout'))
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
|
|
|
|
scope.$watch(
|
|
|
|
'entry.metadata.replaced_content.length',
|
|
|
|
deletionContentLength =>
|
|
|
|
(scope.deletionNeedsCollapsing =
|
|
|
|
deletionContentLength > scope.contentLimit)
|
|
|
|
)
|
|
|
|
|
|
|
|
return scope.$watch(
|
|
|
|
'entry.content.length',
|
|
|
|
insertionContentLength =>
|
|
|
|
(scope.insertionNeedsCollapsing =
|
|
|
|
insertionContentLength > scope.contentLimit)
|
|
|
|
)
|
2021-04-27 03:52:58 -04:00
|
|
|
},
|
2020-05-19 05:02:56 -04:00
|
|
|
}))
|