-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathApp.js
108 lines (99 loc) · 2.9 KB
/
App.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
96
97
98
99
100
101
102
103
104
105
106
107
108
/**
* This example app performs a full CRUD lifecycle of a user story.
*/
Ext.define('Rally.gettingstarted.DataModels', {
extend: 'Rally.app.App',
/**
* The app execution entry point
* _getStoryModel should be called here
*/
launch: function() {
this._getStoryModel();
},
/**
* Use Rally.data.ModelFactory to retrieve the story data model.
* When complete, call _createStory
*/
_getStoryModel: function() {
console.log('Retrieving model...');
Rally.data.ModelFactory.getModel({
type: 'UserStory',
success: this._createStory,
scope: this
});
},
/**
* Create a new user story and persist it to the server.
* The model's save method should be useful here.
* When complete, call _readStory
*/
_createStory: function(model) {
var newStory = Ext.create(model, {
Name: 'App SDK 2 is awesome!'
});
console.log('Creating story...');
newStory.save({
callback: this._readStory,
scope: this
});
},
/**
* Read the record you just created.
* The model's load method should be useful here.
* When complete call _printStory
*/
_readStory: function(story, operation) {
if(operation.wasSuccessful()) {
var model = story.self;
console.log('Reading story...');
model.load(story.getId(), {
fetch: ['FormattedID'],
callback: this._printStory,
scope: this
});
}
},
/**
* Print the story's FormattedID to the console.
* The model's get method should be useful here.
* Hint: did you remember to fetch FormattedID in _readStory?
*/
_printStory: function(story, operation) {
if(operation.wasSuccessful()) {
console.log('FormattedID:', story.get('FormattedID'));
this._updateStory(story);
}
},
/**
* Set the story's PlanEstimate to 5.
* The model's set and save methods should be useful here.
* When complete call _deleteStory
*/
_updateStory: function(story) {
story.set('PlanEstimate', 5);
console.log('Updating story...');
story.save({
callback: this._deleteStory,
scope: this
});
},
/**
* Delete the story.
* The model's destroy method should be useful here.
* When complete console.log a success message.
*/
_deleteStory: function(story, operation) {
if(operation.wasSuccessful()) {
console.log('Deleting story...');
story.destroy({
callback: this._complete,
scope: this
});
}
},
_complete: function(story, operation) {
if(operation.wasSuccessful()) {
console.log('Done!');
}
}
});