An AngularJS filter/directive for converting text into emoticons, embedding videos (youtube/vimeo/mp4,ogg), audio, pdf, highlighting code syntax and embedding almost every service in an ordinary text string .
The demo examples are given here
PS : The jquery version of this module is embed-js.
Install through bower
bower install --save ng-embed
Install through npm
npm install --save ng-embed
Load [ng-embed.min.css] stylesheet file
<link rel="stylesheet" href="https://github.com/ritz078/ng-embed/blob/master/path/to/ng-embed.min.css"/>
Then load [angular.min.js] and [angular-sanitize.min.js] dependencies before loading [ng-embed.min.js]
<script src="https://github.com/ritz078/ng-embed/raw/master/path/to/angular.min.js"></script>
<script src="https://github.com/ritz078/ng-embed/raw/master/path/to/angular-sanitize.min.js"></script>
<!--==== Optional =====-->
<script src="https://github.com/ritz078/ng-embed/raw/master/path/to/highlight.min.js"></script>
<script src="https://platform.twitter.com/widgets.js"></script>
<!--===================-->
<script src="https://github.com/ritz078/ng-embed/raw/master/path/to/ng-embed.min.js"></script>
Load 'ngEmbed' as a dependency
angular.module('yourAppname', ['ngEmbed'])
You can use the filter for basic use. Its features are limited to converting text into emojis, font smileys and HTML Links.
<div ng-bind-html="variable | embed"></div>
or with custom options
<div ng-bind-html="variable | embed:customOptions"></div>
<div ng-bind-html="variable | embed:{sanitizeHtml:false,linkTarget:'_blank'}"></div>
Options
Defaults:
var embed = {
fontSmiley :true, // toggle converting ascii smileys into font smileys
sanitizeHtml: true, // toggle converting html code into text
emoji :true, // toggle converting emojis short names into images
link :true, // toggle converting urls into anchor tags
linkTarget :'_self' //_blank|_self|_parent|_top|framename|cordova
}
The directive supports many features in additions to the features supported by the filter and is fully customizable.
Directive
<ng-embed
embed-data="text"
embed-template-url="template.html"
embed-options="options"
></ng-embed>
Attribute | Description |
---|---|
embed-data | The scope variable that contains the text string to be processed |
embed-options | The scope variable that contains the options object (mandatory) |
embed-template-url | User defined template for the processed text |
angular.module('yourAppName',['ngEmbed'])
.controller('yourControllerName',['$scope',function($scope){
// Default options
$scope.options = {
watchEmbedData : false, // watch embed data and render on change
sanitizeHtml : true, // convert html to text
fontSmiley : true, // convert ascii smileys into font smileys
emoji : true, // convert emojis short names into images
link : true, // convert links into anchor tags
linkTarget : '_self', //_blank|_self|_parent|_top|framename
pdf : {
embed: true // show pdf viewer.
},
image : {
embed: false // toggle embedding image after link, supports gif|jpg|jpeg|tiff|png|svg|webp.
},
audio : {
embed: true // toggle embedding audio player, supports wav|mp3|ogg
},
basicVideo : false, // embed video player, supports ogv|webm|mp4
gdevAuth :'xxxxxxxx', // Google developer auth key for YouTube data api
video : {
embed : false, // embed YouTube/Vimeo videos
width : null, // width of embedded player
height : null, // height of embedded player
ytTheme : 'dark', // YouTube player theme (light/dark)
details : false, // display video details (like title, description etc.)
thumbnailQuality: 'medium', // quality of the thumbnail low|medium|high
autoPlay : true // autoplay embedded videos
},
twitchtvEmbed : true,
dailymotionEmbed : true,
tedEmbed : true,
dotsubEmbed : true,
liveleakEmbed : true,
ustreamEmbed : true,
soundCloudEmbed : true,
soundCloudOptions: {
height : 160,
themeColor: 'f50000',
autoPlay : false,
hideRelated : false,
showComments: true,
showUser : true,
showReposts : false,
visual : false, // Show/hide the big preview image
download : false // Show/Hide download buttons
},
spotifyEmbed : true,
tweetEmbed : true, // toggle embedding tweets
tweetOptions : {
// The maximum width of a rendered Tweet in whole pixels. Must be between 220 and 550 inclusive.
maxWidth : 550,
// Toggle expanding links in Tweets to photo, video, or link previews.
hideMedia : false,
// When set to true or 1 a collapsed version of the previous Tweet in a conversation thread
// will not be displayed when the requested Tweet is in reply to another Tweet.
hideThread: false,
// Specifies whether the embedded Tweet should be floated left, right, or center in
// the page relative to the parent element.Valid values are left, right, center, and none.
// Defaults to none, meaning no alignment styles are specified for the Tweet.
align : 'none',
// Request returned HTML and a rendered Tweet in the specified.
// Supported Languages listed here (https://dev.twitter.com/web/overview/languages)
lang : 'en'
},
code : {
highlight : true, // highlight code written in 100+ languages supported by highlight
// requires highlight.js (https://highlightjs.org/) as dependency.
lineNumbers: false // display line numbers
},
codepenEmbed : true,
codepenHeight : 300,
jsfiddleEmbed : true,
jsfiddleHeight : 300,
jsbinEmbed : true,
jsbinHeight : 300,
plunkerEmbed : true,
githubgistEmbed : true,
ideoneEmbed : true,
ideoneHeight : 300
};
}]);
<!--====== Main text with emoticons and link ============-->
<div ng-bind-html="neText"></div>
<!--==========Video Embedding code (Youtube and vimeo)============-->
<div class="ne-video" ng-if="video.host" class="fade">
<div class="ne-video-preview" ng-hide="nePlayVideo">
<div class="ne-video-thumb" ng-click="nePlayVideo=!nePlayVideo">
<img ng-src="https://github.com/ritz078/ng-embed/raw/master/{{video.thumbnail}}" alt=""/>
<i class="fa fa-play-circle-o"></i>
</div>
<div class="ne-video-detail">
<div class="ne-video-title">
<a ng-href="https://github.com/ritz078/ng-embed/blob/master/{{video.url}}">{{video.title}}</a>
</div>
<div class="ne-video-desc">
{{video.description}}
</div>
<div class="ne-video-stats">
<span><i class="fa fa-eye"></i> {{video.views}}</span>
<span><i class="fa fa-heart"></i> {{video.likes}}</span>
</div>
</div>
</div>
<div class="ne-video-player" ng-if="nePlayVideo">
<iframe ng-src="https://github.com/ritz078/ng-embed/raw/master/{{video.embedSrc}}" frameBorder="0" width="{{video.width}}" height="{{video.height}}" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
<!--=====video player for mp4 and other html5 player supported videos==-->
<div class="ne-video" ng-if="video.basic">
<div class="ne-video-player">
<div class="player">
<video ng-src="https://github.com/ritz078/ng-embed/raw/master/{{video.basic}}" controls></video>
</div>
</div>
</div>
<!--====== image preview code (gif|jpg|jpeg|tiff|png|svg|webp) =======-->
<div ng-init="neImageLong=false" ng-class="{false:'ne-image', true:'ne-image ne-image-long'}[neImageLong]"
ng-if="image.url">
<div class="ne-image-wrapper">
<img ng-src="https://github.com/ritz078/ng-embed/raw/master/{{image.url}}" ng-click="neImageLong=!neImageLong" alt=""/>
</div>
</div>
<div class="ne-pdf" ng-if="pdf.url">
<div class="ne-pdf-preview" ng-hide="neShowPdf">
<div class="ne-pdf-icon">
<i class="fa fa-file-pdf-o"></i>
</div>
<div class="ne-pdf-detail" >
<div class="ne-pdf-title">
<a href="https://github.com/ritz078/ng-embed/blob/master/">{{pdf.url}}</a>
</div>
<div class="ne-pdf-view">
<button><i class="fa fa-download"></i> <a ng-href="https://github.com/ritz078/ng-embed/blob/master/{{pdf.url}}" target="_blank">Download</a></button>
<button ng-click="neShowPdf=!neShowPdf"><i class="fa fa-eye"></i> View PDF</button>
</div>
</div>
</div>
<!--====== pdf viewer =========-->
<div class="ne-pdf-viewer" ng-if="neShowPdf" ng-show="neShowPdf">
<iframe ng-src="https://github.com/ritz078/ng-embed/raw/master/{{pdf.url}}" frameBorder="0"></iframe>
</div>
</div>
<!--===== audio player ===========-->
<div class="ne-audio" ng-if="audio.url">
<audio ng-src="https://github.com/ritz078/ng-embed/raw/master/{{audio.url}}" controls></audio>
</div>
<div ng-if="tweets" ng-repeat="tweet in tweets">
<div ng-bind-html="tweet"></div>
</div>
<div ng-if="videoServices" class="ne-video" ng-repeat="v in videoServices">
<div class="ne-video-player">
<div class="player">
<div ng-bind-html="v"></div>
</div>
</div>
</div>
<div ng-if="audioServices" class="ne-audio" ng-repeat="a in audioServices">
<div ng-bind-html="a"></div>
</div>
<div ng-if="codeServices" class="ne-embed" ng-repeat="c in codeServices">
<div ng-bind-html="c"></div>
</div>
<div ng-if="gist" class="ne-gist" ng-repeat="g in gist">
<ne-gist id="{{g}}"></ne-gist>
</div>
Change the styling of the default template by styling the classes or provide a custom template. The default template is provided as an example.
There are certain variables that are available for the template. Its structure is given below.
These variable can be used while you are creating your custom template.
var video={
host :String, // youtube/vimeo
title :String, // Title of the video
thumbnail :String, // Url of the video thumbnail
description :String, // Description of the video truncating after 250 characters replacing linebreak (especially for vimeo)
rawDescription :String, // Description of the video as sent by the server
views :Number, // Number of video views
likes :Number, // No. of likes
uploader :String // username of video uploader
uploaderPage :String // url of uploader's page
uploadDate :Date, // Date of video upload
url :String, // video url
embedSrc :String, // video embed url
width :Number,
height :Number // dimensions of the embedded video
}
var image ={url:String}
var audio ={url:String}
var pdf ={url:String}
var codeServices :Array // array of embed code of links of jsbin, jsfiddle, ideone and codepen
var audioServices :Array //array of embed code of spotify and soundcloud
var videoServices :Array // Array of embed code of dailymotion, ted, liveleak, dotsub and twitch tv
var gist :Array // Array of all gist ids.
The examples are given here
Older releases are listed in RELEASES.md
ngEmbed © 2014-2017+ Ritesh Kumar.
Released under the [MIT] License.
Authored and maintained by Ritesh Kumar with help from contributors.