I'm writing a directive that consists of an inline editor. When there is no value the edit box will appear. When there is value a regular span will appear.
This is the template chunk of the directive.
template: function (element,attrs) {
if (1 === 2) {
return "<div class='true'>{{product.title}}</div>";
} else {
return "<div class='false'>{{product.title}}</div>";
}
}
The above code works, but the condition will be based on the model value received, I passed, ngModel
, previously but it didn´t work:
require: '?ngModel',
template: function (element,attrs,ngModel) {
if (ngModel.$modelValue !== null) {
return "<div class='true'>{{product.title}}</div>";
} else {
return "<div class='false'>{{product.title}}</div>";
}
}
HTML:
<div inline-editor ng-model="product.title"></div>
How do I get an AngularJS directive to load a different template based on a model value?
EDIT: Thanks everyone for your answers!, I took your comments, now I have the following code. Working for me until now, I will continue working on it.
return {
restrict: "A",
require: '?ngModel',
link: function (scope, element, attrs, ngModel) {
if (!ngModel) return;
//Formatter
function writeElement (value) {
var template;
if (value !== null) {
template = "<span>" + value + "</span>";
} else {
//template for false
}
element.replaceWith(template);
}
ngModel.$formatters.push(writeElement);
}
This logic does not belong in the
template
function, I think, but in thetemplate
itself: