This repository was archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMinervaModel.js
95 lines (87 loc) · 3.24 KB
/
MinervaModel.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import _ from 'underscore';
import ItemModel from 'girder/models/ItemModel';
import { restRequest } from 'girder/rest';
import events from './events';
const MinervaModel = ItemModel.extend({
defaults: {},
initialize: function () {
var minervaMetadata = this.getMinervaMetadata();
if (minervaMetadata) {
this.setMinervaMetadata(minervaMetadata);
}
},
/**
* Utility method to get this model's current minerva metadata as
* it exists on the client, updating this model's minerva metadata to the
* minervaMetadata param if passed, but will not save the update.
*
* @param {minervaMetadata} the object to set as this model's minerva metadata if passed.
* @returns {object} current minerva metadata of this model.
*/
metadata: function (minervaMetadata) {
if (minervaMetadata) {
this.setMinervaMetadata(minervaMetadata);
} else {
return this.getMinervaMetadata();
}
},
/**
* Gets this model's current minerva metadata as it exists on the client.
*
* @returns {object} current minerva metadata of this model.
*/
getMinervaMetadata: function () {
// for now assume that keys exists and allow exceptions to happen if they don't
var meta = this.get('meta');
if (meta) {
var minervaMetadata = meta.minerva;
return minervaMetadata;
} else {
return false;
}
},
/**
* Sets this model's minerva metadata to the passed object, but does not save
* the update.
*
* @param {minervaMetadata} the object to set as this model's minerva metadata.
*/
setMinervaMetadata: function (minervaMetadata) {
this.set('meta', _.extend(this.get('meta') || {}, { minerva: minervaMetadata }));
if (minervaMetadata.geojson && minervaMetadata.geojson.data) {
this.geoJsonAvailable = true;
this.fileData = minervaMetadata.geojson.data;
}
return minervaMetadata;
},
/**
* Async function that saves the metadata on this model, either the current minerva
* metadata on the model, or if a minervaMetadata param is passed, first updating the
* minerva metadata on this model to the passed object and then saving.
*
* @param {minervaMetadata} the object to set as this model's minerva metadata before saving.
* @fires 'm:metadata_saved' event upon the metadata being saved.
*/
saveMinervaMetadata: function (minervaMetadata) {
if (minervaMetadata) {
this.setMinervaMetadata(minervaMetadata);
}
restRequest({
url: 'item/' + this.get('_id') + '/metadata',
type: 'PUT',
contentType: 'application/json',
data: JSON.stringify(this.get('meta'))
}).done(_.bind(function () {
this.trigger('m:metadata_saved', this);
}, this)).fail(_.bind(function (err) {
console.error(err);
events.trigger('g:alert', {
icon: 'cancel',
text: 'Could not update Minerva metadata in Item.',
type: 'danger',
timeout: 4000
});
}, this));
}
});
export default MinervaModel;