2014-05-21 14:23:52 +00:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-30 15:01:00 +00:00
|
|
|
var BpmnTreeWalker = require('./BpmnTreeWalker');
|
2014-04-25 14:14:36 +00:00
|
|
|
|
|
|
|
|
2014-05-21 14:23:52 +00:00
|
|
|
/**
|
2014-08-01 05:55:47 +00:00
|
|
|
* Import the definitions into a diagram.
|
|
|
|
*
|
|
|
|
* Errors and warnings are reported through the specified callback.
|
2014-06-30 15:01:00 +00:00
|
|
|
*
|
|
|
|
* @param {Diagram} diagram
|
|
|
|
* @param {ModdleElement} definitions
|
|
|
|
* @param {Function} done the callback, invoked with (err, [ warning ]) once the import is done
|
2014-05-21 14:23:52 +00:00
|
|
|
*/
|
2014-03-13 15:06:30 +00:00
|
|
|
function importBpmnDiagram(diagram, definitions, done) {
|
|
|
|
|
2014-08-05 06:34:54 +00:00
|
|
|
var importer = diagram.get('bpmnImporter'),
|
2016-02-25 16:40:56 +00:00
|
|
|
eventBus = diagram.get('eventBus'),
|
|
|
|
translate = diagram.get('translate');
|
2014-04-25 14:14:36 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
var error,
|
|
|
|
warnings = [];
|
2014-04-25 14:14:36 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
function parse(definitions) {
|
2014-03-13 15:06:30 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
var visitor = {
|
2014-07-01 09:33:28 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
root: function(element) {
|
|
|
|
return importer.add(element);
|
|
|
|
},
|
2014-04-25 14:14:36 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
element: function(element, parentShape) {
|
|
|
|
return importer.add(element, parentShape);
|
|
|
|
},
|
2014-03-13 15:06:30 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
error: function(message, context) {
|
|
|
|
warnings.push({ message: message, context: context });
|
|
|
|
}
|
|
|
|
};
|
2014-04-25 14:14:36 +00:00
|
|
|
|
2016-02-25 16:40:56 +00:00
|
|
|
var walker = new BpmnTreeWalker(visitor, translate);
|
2014-06-18 11:05:32 +00:00
|
|
|
|
2014-08-05 06:34:54 +00:00
|
|
|
// import
|
|
|
|
walker.handleDefinitions(definitions);
|
2014-09-08 17:04:18 +00:00
|
|
|
}
|
2014-08-05 06:34:54 +00:00
|
|
|
|
2015-12-08 10:56:44 +00:00
|
|
|
eventBus.fire('import.start', { definitions: definitions });
|
2014-08-05 06:34:54 +00:00
|
|
|
|
2014-09-08 17:04:18 +00:00
|
|
|
try {
|
|
|
|
parse(definitions);
|
2014-08-05 06:34:54 +00:00
|
|
|
} catch (e) {
|
2014-09-08 17:04:18 +00:00
|
|
|
error = e;
|
2014-08-05 06:34:54 +00:00
|
|
|
}
|
2014-09-08 17:04:18 +00:00
|
|
|
|
|
|
|
eventBus.fire(error ? 'import.error' : 'import.success', { error: error, warnings: warnings });
|
|
|
|
done(error, warnings);
|
2014-03-13 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
2014-06-23 12:44:03 +00:00
|
|
|
module.exports.importBpmnDiagram = importBpmnDiagram;
|