mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
33 lines
807 B
Plaintext
33 lines
807 B
Plaintext
/* global twitterFetcher */
|
|
|
|
/**
|
|
* This directive will allow show latest tweet.
|
|
* Usage: <twitter profile="{{twitterName}}"/>
|
|
*/
|
|
Application.Directives.directive('twitter', [ function () {
|
|
return ({
|
|
restrict: 'E',
|
|
scope: {
|
|
profile: '@'
|
|
},
|
|
templateUrl: '<%= asset_path "home/twitter.html" %>',
|
|
link ($scope, element, attributes) {
|
|
const configProfile = {
|
|
'profile': { 'screenName': $scope.profile },
|
|
'domId': 'twitter',
|
|
'maxTweets': 1,
|
|
'enableLinks': true,
|
|
'showUser': false,
|
|
'showTime': true,
|
|
'showImages': false,
|
|
'showRetweet': true,
|
|
'showInteraction': false,
|
|
'lang': Fablab.locale
|
|
};
|
|
if ($scope.profile) {
|
|
twitterFetcher.fetch(configProfile);
|
|
}
|
|
}
|
|
});
|
|
}]);
|