我们如何链接 $uibModal 对话框?

How could we chain $uibModal dialogs?

我是 AngularJS 的初学者。现在我想使用 ui.bootstrap $uibModal 服务创建对话框链。我想从 .txt 文件接收到对话框的数据。这意味着,我最初不知道链中对话的数量,这将取决于 .txt 数据。现在我尝试用循环来做到这一点,但它很愚蠢,然后我将无法使用 "previous"、"next" 等功能,好的,然后取消。有什么明智的解决方案吗?预先感谢您的回答。

var app = angular.module('myApp', ['ui.bootstrap']);

angular.module('myApp').config(['$uibModalProvider', function($uibModalProvider) {
  $uibModalProvider.options.windowClass = 'show';
  $uibModalProvider.options.backdropClass = 'show';
}]);



app.factory('modalDialog', function($uibModal) {
    var arr_items = [];

    var showModalDialog =function(items) {
      return $uibModal.open({
         templateUrl:  'test.html', //just the dialog body for the info
         animation: true,
          size: 'sm',
          ariaLabelledBy: 'modal-title',
          ariaDescribedBy: 'modal-body',
          controller: 'dialogCtrl',
          controllerAs: "$ctrl",
          resolve: { items: function () { console.log("items before travelling" + JSON.stringify(items));
          return items; } }
        });
      
    }

     return {showModalDialog: showModalDialog};


});


app.controller('TestCtrl', function($scope, $http, modalDialog){
  $scope.cancelled = false;
  $scope.test = function(){
    $http.get('test.txt')
        .then(function(response) {
           $scope.items=response.data;
           for (var i=0; i<$scope.items.length; i++) {
            console.log($scope.cancelled); 
            if ($scope.cancelled) return ;
           var showModalDialog = function() {
              console.log("here");
              modalDialog.items = $scope.items[i];
              modalDialog.showModalDialog($scope.items[i]);
            };
            showModalDialog();
          };
        });
  };
});


app.controller('dialogCtrl', function ($scope, $uibModalInstance, items) {
  var $ctrl =this;
  console.log("here are my items" + items.request + " " + JSON.stringify(items));

  $scope.items = items;

  $ctrl.ok = function () {
    $uibModalInstance.close($scope.items);
  };

    $ctrl.cancel = function () {
      console.log("cancel");
      $scope.cancelled = true;
      return $uibModalInstance .dismiss('cancel');
  };
});
<!doctype html>
<html ng-app="myApp">
  <head>
   <meta charset="utf-8">
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.js"></script>
    <script src="ui-bootstrap-tpls-2.5.0.js"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>
<div ng-controller="TestCtrl">
    <button class="btn btn-primary" ng-click="test()">Test</button>
</div>

 <script type="text/ng-template" id="test.html">
  <div><div class="modal-header">
  <h1 class="modal-title">Test Modal</h1>
</div>
<div class="modal-body">
  Test Data:
<div>{{items}}</div>
</div>
<div class="modal-footer">
    <button class="btn btn-primary" type="button" ng-click="$ctrl.ok()">OK</button>
    <button class="btn btn-primary" type="button" ng-click="$ctrl.cancel()">Cancel</button>
</div>
</div>

 </script>



    <script src="script.js"></script>


  </body>
</html>

这是我的 test.txt 文件:

[{
        "request": "new user",
        "dialogs": [
            ["input", "checkbox"],
            ["input", "radiobutton"],
            ["input", "input"]
        ]
    },
    {
        "request": "new project",
        "dialogs": [
            ["input", "input"],
            ["radiobutton", "radiobutton"],
            ["input", "input"]
        ]
    },
    {
        "request": "delete project",
        "dialogs": [
            ["checkbox", "checkbox"],
            ["input", "radiobutton"],
            ["input", "input"]
        ]
    }
]

Here you go ! Check this plunkr

循环的主要逻辑在

function initiateModal(itemList,index){
  modalDialog.showModalDialog(itemList[index]).result
    .then(function(resp){
              if(resp === 'cancel'){ // if user cancel the process in between
                $scope.userSeletion.length = 0;
                return ;
              }else if(itemList.length === (index+1)){ // for pushing the last modal data into array
                $scope.userSeletion.push(resp);
                return ;
              }else{
                $scope.userSeletion.push(resp);
                index++;
                initiateModal (itemList,index);
              }
       })
} 

等待前面的 promise 打开下一个。

现在,我将 userInput 作为数据传递,我可以根据用户表单输入来填充它