Last active
March 10, 2017 19:56
-
-
Save sunnygleason/5b604fa436af8eba644102858bead22d to your computer and use it in GitHub Desktop.
PubNub Content Analysis UI w/ Diffbot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.4.5.0.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script> | |
<script src="https://cdn.pubnub.com/sdk/pubnub-angular/pubnub-angular-4.0.2.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script> | |
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" /> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" /> | |
</head> | |
<body> | |
<div class="container" ng-app="PubNubAngularApp" ng-controller="MyTextCtrl"> | |
<pre> | |
NOTE: make sure to update the PubNub keys below with your keys, | |
and ensure that the text analysis BLOCK is configured properly! | |
</pre> | |
<h3>MyText Content Analysis</h3> | |
<input ng-model="toSend" placeholder="type URL here" /> | |
<input type="button" ng-click="publish()" value="Send!" /> | |
<br /><br /> | |
<ul> | |
<li ng-repeat="message in messages track by $index"> | |
<a href="{{message.url}}">{{message.diffbotResponse.title}}</a> by {{message.diffbotResponse.objects[0].author}} | |
<br /> | |
url: <a href="{{message.url}}">{{message.url}}</a> | |
<br /> | |
type: {{message.diffbotResponse.type}}; language: {{message.diffbotResponse.humanLanguage}} | |
<br /> | |
<span style="color:gray" ng-repeat="tag in message.diffbotResponse.objects[0].tags track by $index">{{tag.label}}={{tag.score}}; </span> | |
</li> | |
</ul> | |
</div> | |
<script> | |
angular.module('PubNubAngularApp', ["pubnub.angular.service"]) | |
.controller('MyTextCtrl', function($rootScope, $scope, Pubnub) { | |
$scope.messages = []; | |
$scope.channel = 'diffbot-channel'; | |
if (!$rootScope.initialized) { | |
Pubnub.init({ | |
publishKey: 'YOUR_PUB_KEY', | |
subscribeKey: 'YOUR_SUB_KEY', | |
ssl:true | |
}); | |
$rootScope.initialized = true; | |
} | |
var msgCallback = function(payload) { | |
$scope.$apply(function() { | |
$scope.messages.unshift(payload); | |
}); | |
}; | |
$scope.publish = function() { | |
Pubnub.publish({ | |
channel: $scope.channel, | |
message: {url:$scope.toSend} | |
}); | |
$scope.toSend = ""; | |
}; | |
Pubnub.subscribe({ channels: [$scope.channel] }); | |
Pubnub.addListener({ message: msgCallback }); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment