當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ng-dialog.IDialogService類代碼示例

本文整理匯總了TypeScript中ng-dialog.IDialogService的典型用法代碼示例。如果您正苦於以下問題:TypeScript IDialogService類的具體用法?TypeScript IDialogService怎麽用?TypeScript IDialogService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了IDialogService類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: editLoadout

 vm.editLoadout = function editLoadout(loadout: Loadout) {
   ngDialog.closeAll();
   $rootScope.$broadcast('dim-edit-loadout', {
     loadout,
     showClass: true
   });
 };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:7,代碼來源:loadout-popup.component.ts

示例2: startFarming

 vm.startFarming = function startFarming() {
   ngDialog.closeAll();
   (vm.store.destinyVersion === 2 ? D2FarmingService : dimFarmingService).start({
     membershipId: $stateParams.membershipId,
     platformType: $stateParams.platformType
   }, vm.store.id);
 };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:7,代碼來源:loadout-popup.component.ts

示例3: applyLoadout

  vm.applyLoadout = function applyLoadout(loadout, $event, filterToEquipped) {
    $event.preventDefault();
    ngDialog.closeAll();
    dimFarmingService.stop();
    D2FarmingService.stop();

    if (filterToEquipped) {
      loadout = filterLoadoutToEquipped(loadout);
    }

    dimLoadoutService.applyLoadout(vm.store, loadout, true).then(() => {
      vm.previousLoadout = _.last(dimLoadoutService.previousLoadouts[vm.store.id]);
    });
  };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:14,代碼來源:loadout-popup.component.ts

示例4: newLoadoutFromEquipped

  vm.newLoadoutFromEquipped = function newLoadoutFromEquipped($event: IAngularEvent) {
    ngDialog.closeAll();

    const loadout = filterLoadoutToEquipped(vm.store.loadoutFromCurrentlyEquipped(""));
    // We don't want to prepopulate the loadout with a bunch of cosmetic junk
    // like emblems and ships and horns.
    loadout.items = _.pick(loadout.items,
                           'class',
                           'kinetic',
                           'energy',
                           'power',
                           'primary',
                           'special',
                           'heavy',
                           'helmet',
                           'gauntlets',
                           'chest',
                           'leg',
                           'classitem',
                           'artifact',
                           'ghost');
    loadout.classType = vm.classTypeId;
    vm.editLoadout(loadout, $event);
  };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:24,代碼來源:loadout-popup.component.ts

示例5: queueAction

 vm.pullFromPostmaster = () => {
   ngDialog.closeAll();
   return queueAction(() => pullFromPostmaster(vm.store, dimItemService, toaster));
 };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:4,代碼來源:loadout-popup.component.ts

示例6: newLoadout

 vm.newLoadout = function newLoadout($event: IAngularEvent) {
   ngDialog.closeAll();
   vm.editLoadout({}, $event);
 };
開發者ID:delphiactual,項目名稱:DIM,代碼行數:4,代碼來源:loadout-popup.component.ts


注:本文中的ng-dialog.IDialogService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。