mirror of
https://github.com/aclindsa/moneygo.git
synced 2025-07-01 03:58:38 -04:00
Add initial UI for user-editable securities
This commit is contained in:
62
js/actions/SecurityTemplateActions.js
Normal file
62
js/actions/SecurityTemplateActions.js
Normal file
@ -0,0 +1,62 @@
|
||||
var SecurityTemplateConstants = require('../constants/SecurityTemplateConstants');
|
||||
|
||||
var ErrorActions = require('./ErrorActions');
|
||||
|
||||
var models = require('../models.js');
|
||||
var Security = models.Security;
|
||||
var Error = models.Error;
|
||||
|
||||
function searchSecurityTemplates(searchString, searchType) {
|
||||
return {
|
||||
type: SecurityTemplateConstants.SEARCH_SECURITY_TEMPLATES,
|
||||
searchString: searchString,
|
||||
searchType: searchType
|
||||
}
|
||||
}
|
||||
|
||||
function securityTemplatesSearched(searchString, searchType, securities) {
|
||||
return {
|
||||
type: SecurityTemplateConstants.SECURITY_TEMPLATES_SEARCHED,
|
||||
searchString: searchString,
|
||||
searchType: searchType,
|
||||
securities: securities
|
||||
}
|
||||
}
|
||||
|
||||
function search(searchString, searchType, limit) {
|
||||
return function (dispatch) {
|
||||
dispatch(searchSecurityTemplates(searchString, searchType));
|
||||
|
||||
if (searchString == "")
|
||||
return;
|
||||
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
url: "securitytemplate/?search="+searchString+"&type="+searchType+"&limit="+limit,
|
||||
success: function(data, status, jqXHR) {
|
||||
var e = new Error();
|
||||
e.fromJSON(data);
|
||||
if (e.isError()) {
|
||||
ErrorActions.serverError(e);
|
||||
} else if (data.securities == null) {
|
||||
dispatch(securityTemplatesSearched(searchString, searchType, new Array()));
|
||||
} else {
|
||||
dispatch(securityTemplatesSearched(searchString, searchType,
|
||||
data.securities.map(function(json) {
|
||||
var s = new Security();
|
||||
s.fromJSON(json);
|
||||
return s;
|
||||
})));
|
||||
}
|
||||
},
|
||||
error: function(jqXHR, status, error) {
|
||||
ErrorActions.ajaxError(e);
|
||||
}
|
||||
});
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
search: search
|
||||
};
|
Reference in New Issue
Block a user