atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
109 lines (93 loc) • 3.9 kB
JavaScript
Object.defineProperty(exports, '__esModule', {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
var _commonsNodeCollection2;
function _commonsNodeCollection() {
return _commonsNodeCollection2 = require('../../../commons-node/collection');
}
var _flux2;
function _flux() {
return _flux2 = require('flux');
}
var _LlbuildYamlParser2;
function _LlbuildYamlParser() {
return _LlbuildYamlParser2 = require('./LlbuildYamlParser');
}
var SwiftPMTaskRunnerActions = (function () {
_createClass(SwiftPMTaskRunnerActions, null, [{
key: 'ActionType',
value: Object.freeze((0, (_commonsNodeCollection2 || _commonsNodeCollection()).keyMirror)({
UPDATE_CHDIR: null,
UPDATE_BUILD_SETTINGS: null,
UPDATE_TEST_SETTINGS: null,
UPDATE_COMPILE_COMMANDS: null
})),
enumerable: true
}]);
function SwiftPMTaskRunnerActions(dispatcher) {
_classCallCheck(this, SwiftPMTaskRunnerActions);
this._dispatcher = dispatcher;
}
_createClass(SwiftPMTaskRunnerActions, [{
key: 'updateChdir',
value: function updateChdir(chdir) {
this._dispatcher.dispatch({
actionType: SwiftPMTaskRunnerActions.ActionType.UPDATE_CHDIR,
chdir: chdir
});
}
}, {
key: 'updateBuildSettings',
value: function updateBuildSettings(configuration, Xcc, Xlinker, Xswiftc, buildPath) {
this._dispatcher.dispatch({
actionType: SwiftPMTaskRunnerActions.ActionType.UPDATE_BUILD_SETTINGS,
configuration: configuration,
Xcc: Xcc,
Xlinker: Xlinker,
Xswiftc: Xswiftc,
buildPath: buildPath
});
}
}, {
key: 'updateTestSettings',
value: function updateTestSettings(buildPath) {
this._dispatcher.dispatch({
actionType: SwiftPMTaskRunnerActions.ActionType.UPDATE_TEST_SETTINGS,
buildPath: buildPath
});
}
}, {
key: 'updateCompileCommands',
value: function updateCompileCommands(chdir, configuration, buildPath) {
var _this = this;
var yamlPath = (0, (_LlbuildYamlParser2 || _LlbuildYamlParser()).llbuildYamlPath)(chdir, configuration, buildPath);
var compileCommandsPromise = undefined;
try {
compileCommandsPromise = (0, (_LlbuildYamlParser2 || _LlbuildYamlParser()).readCompileCommands)(yamlPath);
} catch (e) {
atom.notifications.addError('The YAML produced by the Swift package manager is malformed', {
description: 'Nuclide could not parse the YAML file at `' + yamlPath + '`. ' + 'Please file a bug, and include the contents of the file in ' + 'your report.'
});
return;
}
compileCommandsPromise.then(function (compileCommands) {
_this._dispatcher.dispatch({
actionType: SwiftPMTaskRunnerActions.ActionType.UPDATE_COMPILE_COMMANDS,
compileCommands: compileCommands
});
});
}
}]);
return SwiftPMTaskRunnerActions;
})();
exports.default = SwiftPMTaskRunnerActions;
module.exports = exports.default;