master
Nick Sergeant 2013-10-19 20:50:39 -04:00
parent 8b6e11f348
commit ead89507be
2 changed files with 44 additions and 44 deletions

View File

@ -43,35 +43,35 @@ if (typeof angular !== 'undefined') {
var promise = $http({
method: 'GET',
url: '/api/private/profile/' + window.user_profile_id + '/',
headers: {
'Authorization': 'ApiKey ' + window.user + ':' + window.api_key
}
url: '/api/private/profile/' + window.user_profile_id + '/',
headers: {
'Authorization': 'ApiKey ' + window.user + ':' + window.api_key
}
});
return promise;
},
saveAccount: function(user, fields) {
saveAccount: function(user, fields) {
var promise = $http({
method: 'PUT',
url: '/api/private/profile/' + window.user_profile_id + '/',
headers: {
'Authorization': 'ApiKey ' + window.user + ':' + window.api_key
},
data: function() {
var userData = {};
var promise = $http({
method: 'PUT',
url: '/api/private/profile/' + window.user_profile_id + '/',
headers: {
'Authorization': 'ApiKey ' + window.user + ':' + window.api_key
},
data: function() {
var userData = {};
for (var i = 0; i < fields.length; i++) {
userData[fields[i]] = user[fields[i]];
}
for (var i = 0; i < fields.length; i++) {
userData[fields[i]] = user[fields[i]];
}
return userData;
}()
});
return userData;
}()
});
return promise;
}
return promise;
}
};
});
@ -92,12 +92,12 @@ if (typeof angular !== 'undefined') {
'google_ad_slot',
'google_ad_width',
'google_ad_height'
];
];
$scope.section = 'Blogging';
$scope.blogThemeOptions = [
{ id: 'D', label: 'Default' },
{ id: 'A', label: 'Pro Adams' }
{ id: 'D', label: 'Default' },
{ id: 'A', label: 'Pro Adams' }
];
};
@ -106,27 +106,27 @@ if (typeof angular !== 'undefined') {
$scope.section = 'Editor';
$scope.editorOptions = [
{ id: 'C', label: 'CodeMirror' },
{ id: 'T', label: 'Textarea' }
{ id: 'C', label: 'CodeMirror' },
{ id: 'T', label: 'Textarea' }
];
$scope.editorThemeOptions = [
{ id: 'default', label: 'Default' },
{ id: 'ambiance', label: 'Ambiance' },
{ id: 'blackboard', label: 'Blackboard' },
{ id: 'cobalt', label: 'Cobalt' },
{ id: 'eclipse', label: 'Eclipse' },
{ id: 'elegant', label: 'Elegant' },
{ id: 'erlang-dark', label: 'Erlang Dark' },
{ id: 'lesser-dark', label: 'Lesser Dark' },
{ id: 'monokai', label: 'Monokai' },
{ id: 'neat', label: 'Neat' },
{ id: 'night', label: 'Night' },
{ id: 'rubyblue', label: 'Ruby Blue' },
{ id: 'solarized dark', label: 'Solarized Dark' },
{ id: 'solarized light', label: 'Solarized Light' },
{ id: 'twilight', label: 'Twilight' },
{ id: 'vibrant-ink', label: 'Vibrant Ink' },
{ id: 'xq-dark', label: 'XQ Dark' }
{ id: 'default', label: 'Default' },
{ id: 'ambiance', label: 'Ambiance' },
{ id: 'blackboard', label: 'Blackboard' },
{ id: 'cobalt', label: 'Cobalt' },
{ id: 'eclipse', label: 'Eclipse' },
{ id: 'elegant', label: 'Elegant' },
{ id: 'erlang-dark', label: 'Erlang Dark' },
{ id: 'lesser-dark', label: 'Lesser Dark' },
{ id: 'monokai', label: 'Monokai' },
{ id: 'neat', label: 'Neat' },
{ id: 'night', label: 'Night' },
{ id: 'rubyblue', label: 'Ruby Blue' },
{ id: 'solarized dark', label: 'Solarized Dark' },
{ id: 'solarized light', label: 'Solarized Light' },
{ id: 'twilight', label: 'Twilight' },
{ id: 'vibrant-ink', label: 'Vibrant Ink' },
{ id: 'xq-dark', label: 'XQ Dark' }
];
};

View File

@ -1,3 +1,3 @@
(function(){if(typeof angular!=='undefined'){var root=this;var $=root.jQuery;var controllers={};var app=root.app;app.config(function($routeProvider){$routeProvider.when('/account/',{templateUrl:'/static/js/src/modules/partials/profile.html',controller:controllers.ProfileController});$routeProvider.when('/account/billing/',{templateUrl:'/static/js/src/modules/partials/billing.html',controller:controllers.BillingController});$routeProvider.when('/account/blogging/',{templateUrl:'/static/js/src/modules/partials/blogging.html',controller:controllers.BloggingController});$routeProvider.when('/account/editor/',{templateUrl:'/static/js/src/modules/partials/editor.html',controller:controllers.EditorController});$routeProvider.otherwise({'redirectTo':function(routeParams,locationPath){window.location=locationPath;}});});app.factory('AccountStorage',function($http){return{getAccount:function(){var promise=$http({method:'GET',url:'/api/private/profile/'+window.user_profile_id+'/',headers:{'Authorization':'ApiKey '+window.user+':'+window.api_key}});return promise;},saveAccount:function(user,fields){var promise=$http({method:'PUT',url:'/api/private/profile/'+window.user_profile_id+'/',headers:{'Authorization':'ApiKey '+window.user+':'+window.api_key},data:function(){var userData={};for(var i=0;i<fields.length;i++){userData[fields[i]]=user[fields[i]];}
(function(){'use strict';if(typeof angular!=='undefined'){var root=this;var $=root.jQuery;var controllers={};var app=root.app;app.config(function($routeProvider){$routeProvider.when('/account/',{templateUrl:'/static/js/src/modules/partials/profile.html',controller:controllers.ProfileController});$routeProvider.when('/account/billing/',{templateUrl:'/static/js/src/modules/partials/billing.html',controller:controllers.BillingController});$routeProvider.when('/account/blogging/',{templateUrl:'/static/js/src/modules/partials/blogging.html',controller:controllers.BloggingController});$routeProvider.when('/account/editor/',{templateUrl:'/static/js/src/modules/partials/editor.html',controller:controllers.EditorController});$routeProvider.otherwise({'redirectTo':function(routeParams,locationPath){window.location=locationPath;}});});app.factory('AccountStorage',function($http){return{getAccount:function(){var promise=$http({method:'GET',url:'/api/private/profile/'+window.user_profile_id+'/',headers:{'Authorization':'ApiKey '+window.user+':'+window.api_key}});return promise;},saveAccount:function(user,fields){var promise=$http({method:'PUT',url:'/api/private/profile/'+window.user_profile_id+'/',headers:{'Authorization':'ApiKey '+window.user+':'+window.api_key},data:function(){var userData={};for(var i=0;i<fields.length;i++){userData[fields[i]]=user[fields[i]];}
return userData;}()});return promise;}};});controllers.BillingController=function($scope){$scope.section='Billing';};controllers.BloggingController=function($scope){$scope.fields=['blog_title','blog_theme','blog_domain','gittip_username','disqus_shortname','google_analytics_tracking_id','gauges_site_id','google_ad_client','google_ad_slot','google_ad_width','google_ad_height'];$scope.section='Blogging';$scope.blogThemeOptions=[{id:'D',label:'Default'},{id:'A',label:'Pro Adams'}];};controllers.EditorController=function($scope){$scope.fields=['default_editor','editor_theme'];$scope.section='Editor';$scope.editorOptions=[{id:'C',label:'CodeMirror'},{id:'T',label:'Textarea'}];$scope.editorThemeOptions=[{id:'default',label:'Default'},{id:'ambiance',label:'Ambiance'},{id:'blackboard',label:'Blackboard'},{id:'cobalt',label:'Cobalt'},{id:'eclipse',label:'Eclipse'},{id:'elegant',label:'Elegant'},{id:'erlang-dark',label:'Erlang Dark'},{id:'lesser-dark',label:'Lesser Dark'},{id:'monokai',label:'Monokai'},{id:'neat',label:'Neat'},{id:'night',label:'Night'},{id:'rubyblue',label:'Ruby Blue'},{id:'solarized dark',label:'Solarized Dark'},{id:'solarized light',label:'Solarized Light'},{id:'twilight',label:'Twilight'},{id:'vibrant-ink',label:'Vibrant Ink'},{id:'xq-dark',label:'XQ Dark'}];};controllers.AccountController=function($scope,$route,AccountStorage){$scope.errors=[];$scope.saveButtonText='Save';$scope.route=$route;AccountStorage.getAccount().then(function(response){$scope.user=response.data;});$scope.saveFields=function(fields){$scope.saveButtonText='Saving…';AccountStorage.saveAccount($scope.user,fields).then(function onSuccess(response){$scope.user=response.data;$scope.success=true;$scope.message=$scope.route.current.scope.section+' settings saved.';$scope.saveButtonText='Save';$scope.errors=[];setTimeout(function(){$scope.success=null;$scope.message='';$scope.$apply();},3000);},function onError(response){$scope.success=false;$scope.saveButtonText='Save';if(response){$scope.errors=response.data.profile;$scope.message='Only spaces, letters, numbers, underscores, dashes, periods, forward slashes, and "at sign" are valid.';}else{$scope.message='There was an error saving your settings.';}});};};controllers.ProfileController=function($scope){$scope.section='Profile';};app.controller(controllers);}}).call(this);