mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-16 04:12:19 +01:00
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
// Articles controller
|
|
angular.module('articles').controller('ArticlesController', ['$scope', '$stateParams', '$location', 'Authentication', 'Articles',
|
|
function($scope, $stateParams, $location, Authentication, Articles) {
|
|
$scope.authentication = Authentication;
|
|
|
|
// Create new Article
|
|
$scope.create = function() {
|
|
// Create new Article object
|
|
var article = new Articles({
|
|
title: this.title,
|
|
content: this.content
|
|
});
|
|
|
|
// Redirect after save
|
|
article.$save(function(response) {
|
|
$location.path('articles/' + response._id);
|
|
|
|
// Clear form fields
|
|
$scope.title = '';
|
|
$scope.content = '';
|
|
}, function(errorResponse) {
|
|
$scope.error = errorResponse.data.message;
|
|
});
|
|
};
|
|
|
|
// Remove existing Article
|
|
$scope.remove = function(article) {
|
|
if (article) {
|
|
article.$remove();
|
|
|
|
for (var i in $scope.articles) {
|
|
if ($scope.articles[i] === article) {
|
|
$scope.articles.splice(i, 1);
|
|
}
|
|
}
|
|
} else {
|
|
$scope.article.$remove(function() {
|
|
$location.path('articles');
|
|
});
|
|
}
|
|
};
|
|
|
|
// Update existing Article
|
|
$scope.update = function() {
|
|
var article = $scope.article;
|
|
|
|
article.$update(function() {
|
|
$location.path('articles/' + article._id);
|
|
}, function(errorResponse) {
|
|
$scope.error = errorResponse.data.message;
|
|
});
|
|
};
|
|
|
|
// Find a list of Articles
|
|
$scope.find = function() {
|
|
$scope.articles = Articles.query();
|
|
};
|
|
|
|
// Find existing Article
|
|
$scope.findOne = function() {
|
|
$scope.article = Articles.get({
|
|
articleId: $stateParams.articleId
|
|
});
|
|
};
|
|
}
|
|
]);
|