Skip to content
Snippets Groups Projects
Commit 08e72d86 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

map name column

parent 45248a48
No related branches found
No related tags found
4 merge requests!488Merge 12.1.1 into master,!48712.1.1 into master,!484v12.1.1 release,!482Resolve "Corrections to Export functionality"
...@@ -136,7 +136,7 @@ ElementExportPanel.prototype._createResponseCell = function (alias, column) { ...@@ -136,7 +136,7 @@ ElementExportPanel.prototype._createResponseCell = function (alias, column) {
if (Functions.isString(column.method)) { if (Functions.isString(column.method)) {
valuePromise = Promise.resolve(alias[column.method]()); valuePromise = Promise.resolve(alias[column.method]());
} else { } else {
valuePromise = Promise.resolve(column.method(alias)); valuePromise = Promise.resolve(column.method(alias, this.getProject()));
} }
return valuePromise.then(function (value) { return valuePromise.then(function (value) {
if (column.formatFunction !== undefined) { if (column.formatFunction !== undefined) {
...@@ -199,6 +199,17 @@ ElementExportPanel.prototype.getAllColumns = function () { ...@@ -199,6 +199,17 @@ ElementExportPanel.prototype.getAllColumns = function () {
"columnName": "modelId", "columnName": "modelId",
"method": "getModelId", "method": "getModelId",
"name": "Map id" "name": "Map id"
}, {
/**
*
* @param {BioEntity} bioEntity
* @param {Project} project
* @returns {string}
*/
"method": function (bioEntity, project) {
return project.getModelById(bioEntity.getModelId()).getName();
},
"name": "Map name"
}, { }, {
"columnName": "type", "columnName": "type",
"method": "getType", "method": "getType",
......
...@@ -280,7 +280,7 @@ describe('ElementExportPanel', function () { ...@@ -280,7 +280,7 @@ describe('ElementExportPanel', function () {
project: helper.createProject(), project: helper.createProject(),
configuration: helper.getConfiguration() configuration: helper.getConfiguration()
}); });
var alias = helper.createAlias(); var alias = helper.createAlias(exportObject.getProject().getModels()[0]);
var desc = "test\ntest2\n"; var desc = "test\ntest2\n";
alias.setDescription(desc); alias.setDescription(desc);
return exportObject.createResponseRow(alias, exportObject.getAllColumns(), []).then(function (rowString) { return exportObject.createResponseRow(alias, exportObject.getAllColumns(), []).then(function (rowString) {
......
...@@ -200,15 +200,17 @@ Helper.prototype.createUser = function () { ...@@ -200,15 +200,17 @@ Helper.prototype.createUser = function () {
/** /**
* *
* @param {AbstractCustomMap} [map] * @param {AbstractCustomMap| MapModel} [map]
* @returns {Alias} * @returns {Alias}
*/ */
Helper.prototype.createAlias = function (map) { Helper.prototype.createAlias = function (map) {
var mapId; var mapId;
if (map === undefined) { if (map instanceof AbstractCustomMap) {
mapId = this.idCounter++; mapId = map.getId();
} else { } else if (map instanceof Model) {
mapId = map.getId(); mapId = map.getId();
} else {
mapId = this.idCounter++;
} }
var result = new Alias({ var result = new Alias({
idObject: this.idCounter++, idObject: this.idCounter++,
...@@ -223,8 +225,10 @@ Helper.prototype.createAlias = function (map) { ...@@ -223,8 +225,10 @@ Helper.prototype.createAlias = function (map) {
}, },
references: [] references: []
}); });
if (map !== undefined) { if (map instanceof AbstractCustomMap) {
map.getModel().addAlias(result); map.getModel().addAlias(result);
} else if (map instanceof Model) {
map.addAlias(result);
} }
return result; return result;
}; };
...@@ -462,10 +466,10 @@ Helper.prototype.createSbmlFunction = function () { ...@@ -462,10 +466,10 @@ Helper.prototype.createSbmlFunction = function () {
"functionId": "fun", "functionId": "fun",
"name": "fun name", "name": "fun name",
"definition": "<lambda>" + "definition": "<lambda>" +
"<bvar><ci> x </ci></bvar>" + "<bvar><ci> x </ci></bvar>" +
"<bvar><ci> y </ci></bvar>" + "<bvar><ci> y </ci></bvar>" +
"<apply><plus/><ci> x </ci><ci> y </ci><cn type=\"integer\"> 2 </cn></apply>" + "<apply><plus/><ci> x </ci><ci> y </ci><cn type=\"integer\"> 2 </cn></apply>" +
"</lambda>\n\n", "</lambda>\n\n",
"arguments": ["x", "y"], "arguments": ["x", "y"],
"id": this.idCounter++ "id": this.idCounter++
}); });
...@@ -486,9 +490,9 @@ Helper.prototype.createKineticLaw = function () { ...@@ -486,9 +490,9 @@ Helper.prototype.createKineticLaw = function () {
return new KineticLaw({ return new KineticLaw({
"parameterIds": [], "parameterIds": [],
"definition": '<math xmlns="http://www.w3.org/1998/Math/MathML">' + "definition": '<math xmlns="http://www.w3.org/1998/Math/MathML">' +
'<apply xmlns="http://www.w3.org/1998/Math/MathML">' + '<apply xmlns="http://www.w3.org/1998/Math/MathML">' +
'<divide/><apply><times/><ci>ca1</ci><apply><plus/><ci>sa1</ci><ci>sa2</ci></apply></apply><cn type=\"integer\"> 2 </cn>' + '<divide/><apply><times/><ci>ca1</ci><apply><plus/><ci>sa1</ci><ci>sa2</ci></apply></apply><cn type=\"integer\"> 2 </cn>' +
'</apply></math>', '</apply></math>',
"functionIds": [] "functionIds": []
}); });
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment