| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- app=angular.module('app', ["ngTagsInput"]);
- app.controller('main', function($scope,$http,$sce) {
- $scope.news=[];
- $scope.newsArticle="";
- $scope.keywords=[];
- $scope.selected_kw=[];
- $scope.filtered = function(q) {
- q=q.toLowerCase();
- return $scope.keywords.filter(function(e) { return e.toLowerCase().indexOf(q) > -1});
- };
- $scope.getKeywords = function() {
- $http.get("/pymnts/keywords").then(
- function(data) {
- //$scope.keywords=data.data.keywords.map(function(e) { return {text:e} });
- $scope.keywords=data.data.keywords;
- },
- function(data){
- }
- );
- };
- $scope.getKeywords();
- $scope.getArticle = function(el) {
- $http.get("/pymnts/article/"+el._id).then(
- function(data) {
- $scope.newsArticle=$sce.trustAsHtml(data.data.articles.html);
- },
- function(data){
- }
- );
- };
- $scope.filter = function() {
- var kw = $scope.selected_kw.map(function(e){return e.text});
- $http.post("/pymnts/articles/",{"mindate":$scope.mindate,"maxdate":$scope.maxdate,"site":$scope.site,"keyword":kw,"minweight":$scope.minweight}).then(
- function(data) {
- $scope.news=data.data.articles;
- },
- function(data) {
- }
- );
- };
- $scope.filter();
- $scope.parseSource = function(source,name,sel,rss,add) {
- url="/pymnts/source/test/";
- if(add==1)
- url="/pymnts/source/add/";
- $http.post(url, { "source": source, "selector":sel, "rss":rss, "name":name }).then(
- function(data) {
- console.log(data.data);
- },
- function(data){
- }
- );
- };
- });
|