overleaf/services/web/frontend/js/directives/expandableTextArea.js
Ersun Warncke 9a252b6629 reset comment height when empty
GitOrigin-RevId: 8f4144354dd2fc9f2070e0ef7955f318aaece502
2019-11-06 12:46:07 +00:00

31 lines
956 B
JavaScript

/* eslint-disable
no-undef,
*/
// 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
*/
define(['base'], App =>
App.directive('expandableTextArea', () => ({
restrict: 'A',
link(scope, el) {
const resetHeight = function() {
const curHeight = el.outerHeight()
const fitHeight = el.prop('scrollHeight')
// clear height if text area is empty
if (el.val() === '') {
el.css('height', 'unset')
}
// otherwise expand to fit text
else if (fitHeight > curHeight) {
scope.$emit('expandable-text-area:resize')
el.css('height', fitHeight)
}
}
return scope.$watch(() => el.val(), resetHeight)
}
})))