繁体   English   中英

在自己的指令中包装Angular.js ui-bootstrap或ui-select指令

[英]Wrapping Angular.js ui-bootstrap or ui-select directives in own directive

我正在创建一个大的Angular.JS应用程序,它使用一些第三方模块,如ui-select和ui-bootstrap。 为了避免重复我自己,我开始创建包含例如ui-select代码和检索/搜索数据的逻辑的指令。

目标 :目标是创建一个可以在模板中使用的指令,而无需在控制器中复制代码:

<tq-car-select ng-model="model.car"></tq-car-select>

我试图避免的:

<select ng-options="car.id as car.name for car in cars"></select>

并在使用select的所有控制器中复制以下代码:

$scope.cars = carResource.query();
$scope.$watch('model'), function (newValue, oldValue) {
    $scope.cars = carResource.query({model: $scope.model});
});

我为那种选择字段创建了指令。

ui-select的实际示例

TQ铅select.html:

<ui-select ng-model="$parent.tqModel" style="display: block">
    <ui-select-match placeholder="tippen ...">{{$select.selected.bezeichnung}}</ui-select-match>
    <ui-select-choices repeat="lead in leads | filter:{bezeichnung: $select.search}">
        <div ng-bind-html="lead.bezeichnung | highlight: $select.search"></div>
    </ui-select-choices>
</ui-select>

tqLeadSelect.ts(TypeScript):

export function tqLeadSelect(tqLeadSelects): ng.IDirective {

var dir: ng.IDirective = {};

dir.scope = {
    tqModel: '=',
    tqCompany: '='
};

dir.restrict = 'E';
dir.templateUrl = '/js/templates/leadApp/tq-lead-select.html';
dir.replace = false;

dir.controller = function ($scope: any) {
    if (tqLeadSelects != null && $scope.tqCompany != null) {
        $scope.leads = tqLeadSelects.getLeadsFromFirma({ id: $scope.tqCompany });
    }

    $scope.$watch('tqCompany', (newValue, oldValue) => {
        if (newValue === oldValue) return;

        $scope.leads = tqLeadSelects.getLeadsFromFirma({ id: $scope.tqCompany });
    }, true);
}

return dir;
}

tqLeadSelect.$inject = ['tqLeadSelects'];

问题

  • 我需要隔离范围,因为一些视图使用一个字段的多个实例。
  • 我正在使用孤立的范围变量tqModel,它由ui-select指令的ngModel设置
  • 我想在不使用tqLeadSelect指令创建tq-required范围变量的情况下使用ng-required

问题

  • 我做得对吗? 有没有更好的方法来实现我的目标?
  • 如何定义具有支持控制器代码的选择字段以检索数据和附加功能?

一种解决方案是添加一个扩展现有指令的指令。

我用一个例子创建了一个Plunker: http ://plnkr.co/edit/9IZ0aW?p = preview

以下代码:

HTML:

<ui-select ng-model="address.selected" theme="bootstrap" ng-disabled="disabled" reset-search-input="false" style="width: 300px;">
  <ui-select-match placeholder="Enter an address...">{{$select.selected.formatted_address}}</ui-select-match>
  <ui-select-choices repeat="address in addresses track by $index" refresh="refreshAddresses($select.search)" refresh-delay="0">
    <div ng-bind-html="address.formatted_address | highlight: $select.search"></div>
  </ui-select-choices>
</ui-select>

控制器:

$scope.address = {};
$scope.refreshAddresses = function(address) {
  var params = {
    address: address,
    sensor: false
  };
  return $http.get(
    'http://maps.googleapis.com/maps/api/geocode/json', {
      params: params
    }
  ).then(function(response) {
    $scope.addresses = response.data.results
  });
};

可以使用配置指令简化:

<ui-select ng-model="adress.selected" tq-select></ui-select>

控制器现在是空的!

指示:

app.directive("tqSelect", function($http) {

  return {
    restrict: "A", // Attribute
    require: ["uiSelect", "ngModel"],

    compile: function compile(tElement, tAttrs, transclude) {

      // Add the inner content to the element
      tElement.append('<ui-select-match placeholder="Enter an address...">{{$select.selected.formatted_address}}</ui-select-match>\
      <ui-select-choices repeat="address in addresses track by $index" refresh="refreshAddresses($select.search)" refresh-delay="0">\
        <div ng-bind-html="address.formatted_address | highlight: $select.search"></div>\
      </ui-select-choices>');

      return {
        pre: function preLink(scope, iElement, iAttrs, controller) {},
        post: function postLink(scope, iElement, iAttrs, controller) {

          // logic from controller
          scope.address = {};
          scope.refreshAddresses = function(address) {
            var params = {
              address: address,
              sensor: false
            };
            return $http.get(
              'http://maps.googleapis.com/maps/api/geocode/json', {
                params: params
              }
            ).then(function(response) {
              scope.addresses = response.data.results
            });
          };
        }
      }
    }
  }
});

该指令是实际棘手的部分。 我在编译函数中使用了一个非常简单的逻辑。 首先,我为ui-select指令添加所需的标记。

然后在后链接函数中,我添加了通常在控制器中(或在link() - 函数中)的逻辑。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM