私は angularjs を使用しており、ページの開始時にすべてのディレクティブをロードするのではなく、必要に応じてディレクティブをロードできるようにしたいと考えています。最も頻繁に使用するプラグインのディレクティブを作成しようとしています。
このようにyepnope
して、最終的に html をコンパイルする前に、1 つのダイレクトで必要なすべてのディレクティブをロードすることができます。
ディレクティブがページの開始時に他のディレクティブと共に読み込まれると、すべてが正常に機能します。ただし、'child' ディレクティブが後で ('parent' 内で) ロードされた場合、それは有効になりません。以下は、'parent' ディレクティブのコンパイル フィールドの pre フィールドのコードです。
...
var pre = function (scope, element, attrs) {
element.html('Please wait. Loading...');
ang.loadDirectives('caiDatePicker', function () {
console.log('loaded');
scope.data.raw = scope.rawData;
var html = createObjUi(scope, scope.data, scope.defn);
element.html(html); //data
$compile(element.contents())(scope.$new());
scope.$apply();
});
};
return { restrict:'A', compile: {pre:pre,post:function(){...}};
ang.loadDirectives
yepnope を使用してディレクティブをロードします。「子」ディレクティブのコードの一部は次のとおりです。
angular.module('mycomponents') //PS: I'm assuming this will fetch the already created module in the 'parent' directive
.directive('caiDatePicker', function ($parse) {
return {
scope: {},
restrict: 'A',
link: function (scope, element, attrs) {
scope.$watch('this.$parent.editing', function (v) {
scope.editing = v;
});
yepnope({
test: $().datePicker,
nope: [
'/content/plugins/datepicker/datepicker.js', //todo: use the loader
'/content/plugins/datepicker/datepicker.css'
],
complete: function () {
if (scope.model && scope.model.value) {
var date = scope.model.value;
element.val(date.getDate() + '/' + (date.getMonth() + 1) + '/' + date.getFullYear());
}
element.datepicker({ weekStart: 1, format: 'dd/mm/yyyy' })
.on('changeDate', function (ev) {
scope.model.value = ev.date;
scope.$apply();
});
}
});
attrs.$observe('path', function (v) {
var fn = $parse(v);
var model = fn(scope.$parent);
scope.model = model;
});
}
}
});
そもそも私がやっていることは可能ですか?
もしそうなら、私は何を間違っていますか?