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('changeEntry', $timeout => ({
|
|
|
|
restrict: 'E',
|
|
|
|
templateUrl: 'changeEntryTemplate',
|
|
|
|
scope: {
|
|
|
|
entry: '=',
|
|
|
|
user: '=',
|
|
|
|
permissions: '=',
|
|
|
|
onAccept: '&',
|
|
|
|
onReject: '&',
|
|
|
|
onIndicatorClick: '&',
|
2022-06-10 05:46:19 -04:00
|
|
|
onMouseEnter: '&',
|
|
|
|
onMouseLeave: '&',
|
2021-04-27 03:52:58 -04:00
|
|
|
onBodyClick: '&',
|
2020-05-19 05:02:56 -04:00
|
|
|
},
|
|
|
|
link(scope, element, attrs) {
|
|
|
|
scope.contentLimit = 40
|
|
|
|
scope.isCollapsed = true
|
|
|
|
scope.needsCollapsing = 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.toggleCollapse = function () {
|
2020-05-19 05:02:56 -04:00
|
|
|
scope.isCollapsed = !scope.isCollapsed
|
|
|
|
return $timeout(() => scope.$emit('review-panel:layout'))
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
2020-05-19 05:02:56 -04:00
|
|
|
|
|
|
|
return scope.$watch(
|
|
|
|
'entry.content.length',
|
|
|
|
contentLength =>
|
|
|
|
(scope.needsCollapsing = contentLength > scope.contentLimit)
|
|
|
|
)
|
2021-04-27 03:52:58 -04:00
|
|
|
},
|
2020-05-19 05:02:56 -04:00
|
|
|
}))
|