For me to finish up phase 1 of Dockumo development (allowing users to tag and categorize articles), I had to let users add custom tags to their articles. If the article is made public, then the user’s tags will be indexed and searchable through the search interface. This will let other users sift through content based on tag and could eventually give some good insight into what content was most popular.
Why I created it: I’ve used angular-tag before, but I didn’t like the way it hooked in the “Delete” button, which on my macbook sometimes defaults to going to the previous page in history (like clicking the “Back” button). I also found the CSS to be a bit wonky and difficult to work with. When I would click on the input box, the box would expand and didn’t play nicely with my css. I’ve been feeling more reticent these days with respect to using untested third party libraries out there (even small). Sometimes they save me lots of time, but other times, they only cause lots of headaches. Delving into someone else’s source code, modifying their css, figuring out how to mash my code and theirs takes a lot of time. Sometimes it’s not until I do all that do I realize that the library doesn’t really do what I want it to do. Hence the frustration.
What it does: My angular directive is very simple. It lets the user bind a variable to the directive through ngModel. The variable is an array of strings (a set). The directive then renders an input text box below, letting the user enter in a comma separated list of tags. If the user clicks “add”, these tags are split by commas, trimmed and their lowercase values added to the set of tags already bound. It works similarly to wordpress’s tagging system. That’s it: no fuss, no muss.
Without further ado, here’s the source:
angular.module('mean.articles') .directive("mTag", ['$resource', function($resource) { return { restrict: 'E', controller: 'TagController', scope: { read: '=', //read or write (I provide an API in case the user only wants to show the tags and not provide the input tags: '=ngModel' //the ng-model binding }, templateUrl: 'public/system/views/directives/tag.html' }; }]);
Here’s the controller code:
'use strict'; angular.module('mean.system').controller('TagController', ['$scope', function ($scope) { //only allows inputs of alphabetic characters (no numbers or special chars) $scope.validate = function(string) { if (!string || string.length === 0) { return true; } else { return string.match(/^\s?[A-Z,\s]+$/i); } }; //Adds the tag to the set function addTag (string) { if ($scope.tags.indexOf(string.toLowerCase()) === -1) { $scope.tags.push(string); } }; //When the user clicks "Add", all unique tags will be added $scope.appendTags = function(string) { if ($scope.validate(string)) { if (string) { var split = string.split(','); split.forEach(function(tag) { if (tag.trim().length > 0) { addTag(tag.trim()); } }); $scope.temptags = ""; } } }; //When the user wants to delete a tag $scope.deleteTag = function(tag) { if (tag) { var idx = $scope.tags.indexOf(tag); if (idx > -1) { $scope.tags.splice(idx, 1); } } }; }]);
And lastly, the HTML template:
<div class="input-group" ng-show="!read"> <input type="text" name="temptags" ng-model="temptags" class="form-control" placeholder="Enter comma separated tags" ng-class="{'haserror':!validate(temptags)}" style="margin-bottom:0px"/> <span ng-show="!validate(temptags)" class="label label-danger">Please only use regular characters for tags (a-z)</span> <div class="input-group-btn" style="vertical-align:top"> <button class="btn btn-inline" ng-click="appendTags(temptags)">Add</button> </div> </div> <div class="margintopten"> <span class="label label-default normal tag marginrightten" ng-repeat="tag in tags"><a ng-click="deleteTag(tag)" ng-if="!read"><i class="fa fa-times-circle" ng-click="deleteTag(tag)"></i></a> {{tag}}</span> </div>
Here’s a working jsfiddle.

As always, let me know comments or feedback.
jsfiddle is not mentioned?