2018-11-05 05:06:39 -05:00
|
|
|
/* 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')
|
2019-10-28 08:26:10 -04:00
|
|
|
// clear height if text area is empty
|
|
|
|
if (el.val() === '') {
|
|
|
|
el.css('height', 'unset')
|
|
|
|
}
|
|
|
|
// otherwise expand to fit text
|
|
|
|
else if (fitHeight > curHeight) {
|
2018-11-05 05:06:39 -05:00
|
|
|
scope.$emit('expandable-text-area:resize')
|
2019-10-28 08:26:10 -04:00
|
|
|
el.css('height', fitHeight)
|
2018-11-05 05:06:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return scope.$watch(() => el.val(), resetHeight)
|
|
|
|
}
|
|
|
|
})))
|