私はmd-tabs
を実装しようとしているので、各md-tab
は、角度マテリアルを使用した個別の状態です。私の現在のマークアップは次のようになります。
md-tabs.is-flex.auto-flex(selected="selectedIndex",layout="vertical")
md-tab(on-select="selectTab(0)",label="Player",ui-sref="state1")
div.tab(ui-view)
md-tab(on-select="selectTab(1)",label="Map",ui-sref="state2")
div.tab(ui-view)
ただし、これはui-routerの有効なマークアップだとは思いません。これを現在のバージョンの角材とUIルーターで行うことはできますか?
Ui-view要素(たとえば、<div ui-view="player"></div>
)に名前を付けると、$ stateProvider構成でそれらをターゲットにできます。
そのため、template.htmlで次のマークアップを指定します。
<md-tabs md-selected="currentTab">
<md-tab label="Player" ui-sref="tabs.player">
<div ui-view="player"></div>
</md-tab>
<md-tab label="Map" ui-sref="tabs.map">
<div ui-view="map"></div>
</md-tab>
</md-tabs>
次の$ stateProvider構成を使用して、各ui-view
要素をターゲットにできます(そしてcurrentTabインデックスを更新できます)。
.state('tabs', {
abstract: true,
url: '/tabs',
templateUrl: 'template.html',
controller: function($scope) {
$scope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams) {
$scope.currentTab = toState.data.selectedTab;
});
}
})
.state('tabs.player', {
url: '/player',
data: {
'selectedTab': 0
},
views: {
'player': {
controller: playerController
}
}
})
.state('tabs.map', {
url: '/map',
data: {
'selectedTab': 1
},
views: {
'map': {
controller: mapController
}
}
})
あとは、playerControllerとmapControllerを定義するだけです。部分テンプレートなどをui-view
にロードすることもできます。 Multiple Named Views のセクションを参照してください。
こうすることでこれを実現できました
index.html
<md-toolbar ng-controller="NavigationController as vm"
ng-include="'app/components/navbar/navbar.html'"
class="md-default-theme" >
</md-toolbar>
<md-content ui-view
md-scroll-y
class="md-default-theme"
role="main"
flex>
</md-content>
navbar.html
<md-tabs md-selected="vm.currentTab" md-stretch-tabs="always" class="main-toolbar">
<md-tab label="Home" ui-sref="home"></md-tab>
<md-tab label="Portfolio" ui-sref="portfolio"></md-tab>
<md-tab label="Contact" ui-sref="contact"></md-tab>
</md-tabs>
app.js
$stateProvider
.state('home', {
url: '/',
data: {
'selectedTab' : 0
},
templateUrl: 'app/components/main/main.html',
controller: 'MainController as vm'
})
.state('portfolio', {
url: '/portfolio',
data: {
'selectedTab' : 1
},
templateUrl: 'app/components/portfolio/portfolio.html',
controller: 'PortfolioController as vm'
})
.state('contact', {
url: '/contact',
data: {
'selectedTab' : 2
},
templateUrl: 'app/components/contact/contact.html',
controller: 'ContactController as vm'
});
navigation.controller.js
function NavigationController($scope) {
var vm = this;
$scope.$on('$stateChangeSuccess', function(event, toState) {
vm.currentTab = toState.data.selectedTab;
});
}
Googleから来て、ui-routerを使用していない人は、デフォルトのng-routerでも同じことができます。インデックスファイルにタブコードを配置します。
<md-tabs md-selected="0" ng-controller="TabCtrl">
<md-tab ng-repeat="tab in tabs" md-on-select="switchTab($index)" label="{{tab}}">
<div ng-view></div>
</md-tab>
</md-tabs>
次に、TabCtrlを作成します。
// Define the titles of your tabs
$scope.tabs = ["Player", "Map"];
// Change the tab
$scope.switchTab = function(index) {
switch(index) {
case 0: $location.path('/player');break;
case 1: $location.path('/map');break;
}
}
最後に、設定でルートを定義します。
.when( '/player', {
templateUrl: 'partials/player.html',
controller: 'PlayerCtrl'
})
.when( '/map', {
templateUrl: 'partials/map.html',
controller: 'MapCtrl'
});
ここでは、元のドキュメントで少し変更されました( https://material.angularjs.org/#/demo/material.components.tabs ):
コメントを追加しました。誰かがあなたのページを離れるか更新すると、彼は同じタブに入ります...
HTML:
<md-tabs md-selected="selectedIndex">
<md-tab ng-repeat="tab in tabs" md-on-select="announceSelected(tab, $index)" md-on-deselect="announceDeselected(tab)" ng-disabled="tab.disabled" label="{{tab.title}}">
</md-tab>
</md-tabs>
コントローラ:
var tabs = [
{ title: 'welcome'},
{ title: 'profile'},
];
$scope.selectedIndex = 0;
// $scope.selectedIndex = parseInt($cookies.selectedIndex);
$scope.tabs = tabs;
$scope.announceSelected = function(tab, index) {
//$cookies["selectedIndex"] = index;
RedirectService.To(tab.title);
}
factroy:
app.factory('RedirectService', function ($location){
return{
To : function(key){
return $location.path(key)
},
};
});
タブへの直接リンクを許可し、前後の動作を保持する代替手段は、 this answer のHTML構造を使用し、$transitions
を挿入してonSuccess
リスナーを使用することです。 :
angular.module('tabs', ['ngMaterial', 'ui.router'])
.config(['$stateProvider', '$urlRouterProvider',
($stateProvider, $urlRouterProvider) => {
$stateProvider
.state('home', {
url: '/',
data: { selectedTab: 0 },
template: '<p>HOME</p>',
})
.state('portfolio', {
url: '/portfolio',
data: { selectedTab: 1 },
template: "<p>'FOLIO</p>",
})
.state('contact', {
url: '/contact',
data: { selectedTab: 2 },
template: "<p>'TACT</p>",
})
}
])
.controller('NavigationController', function($scope, $transitions) {
$transitions.onSuccess({},
function(transition) {
var $state = transition.router.stateService
var currentTab = $state.$current.data.selectedTab
$scope.selectedTab = currentTab
}
)
})
実際の例は次のとおりです。 https://dysbulic.github.io/angular-tabs/