| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* eslint-disable
- max-len,
- no-return-assign,
- 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.controller('HistoryV2AddLabelModalController', function(
- $scope,
- $modalInstance,
- ide,
- update
- ) {
- $scope.update = update
- $scope.inputs = { labelName: null }
- $scope.state = {
- inflight: false,
- error: false
- }
- $modalInstance.opened.then(() =>
- $scope.$applyAsync(() => $scope.$broadcast('open'))
- )
- return ($scope.addLabelModalFormSubmit = function() {
- $scope.state.inflight = true
- return ide.historyManager
- .labelCurrentVersion($scope.inputs.labelName)
- .then(function(response) {
- $scope.state.inflight = false
- return $modalInstance.close()
- })
- .catch(function(response) {
- const { data, status } = response
- $scope.state.inflight = false
- if (status === 400) {
- return ($scope.state.error = { message: data })
- } else {
- return ($scope.state.error = true)
- }
- })
- })
- }))
|