Browse Source

Added activateFirstVisibleTab() method to Tab widget

close #187
tags/2.0.7
n.vanderburg 8 years ago committed by Carsten Brandt
parent
commit
aa9be414b4
No known key found for this signature in database
GPG Key ID: BE4F41DE1DEEEED0
  1. 1
      CHANGELOG.md
  2. 23
      Tabs.php
  3. 56
      tests/TabsTest.php

1
CHANGELOG.md

@ -6,6 +6,7 @@ Yii Framework 2 bootstrap extension Change Log
- Enh #131 Added `tabContentOptions` to set HTML attributes for 'tab-content' container in `Tabs` widget (AndrewKorpusov) - Enh #131 Added `tabContentOptions` to set HTML attributes for 'tab-content' container in `Tabs` widget (AndrewKorpusov)
- Enh #145: Added the ability to customize the class used to draw dropdowns in `yii\bootstrap\Nav`, `yii\bootstrapButtonDropdown` and `yii\bootstrap\Tab` widgets (PowerGamer1) - Enh #145: Added the ability to customize the class used to draw dropdowns in `yii\bootstrap\Nav`, `yii\bootstrapButtonDropdown` and `yii\bootstrap\Tab` widgets (PowerGamer1)
- Enh #187: Added `yii\bootstrap\Tabs::activateFirstVisibleTab()` to set the first visible tab as active if no active tab is set (nilsburg)
- Bug #126: `yii\bootstrap\ToggleButtonGroup` was unable to work without model (makroxyz) - Bug #126: `yii\bootstrap\ToggleButtonGroup` was unable to work without model (makroxyz)
- Bug #130: Fixed `yii\bootstrap\Collapse` to use pure numerical value on `content` property (meysampg) - Bug #130: Fixed `yii\bootstrap\Collapse` to use pure numerical value on `content` property (meysampg)
- Bug #137: Remove `role="navbar"` from `yii\bootstrap\NavBar` according to new aria specification (tino415) - Bug #137: Remove `role="navbar"` from `yii\bootstrap\NavBar` according to new aria specification (tino415)

23
Tabs.php

@ -160,8 +160,8 @@ class Tabs extends Widget
$headers = []; $headers = [];
$panes = []; $panes = [];
if (!$this->hasActiveTab() && !empty($this->items)) { if (!$this->hasActiveTab()) {
$this->items[0]['active'] = true; $this->activateFirstVisibleTab();
} }
foreach ($this->items as $n => $item) { foreach ($this->items as $n => $item) {
@ -238,6 +238,25 @@ class Tabs extends Widget
} }
/** /**
* Sets the first visible tab as active.
*
* This method activates the first tab that is visible and
* not explicitly set to inactive (`'active' => false`).
* @since 2.0.7
*/
protected function activateFirstVisibleTab()
{
foreach ($this->items as $i => $item) {
$active = ArrayHelper::getValue($item, 'active', null);
$visible = ArrayHelper::getValue($item, 'visible', true);
if ($visible && $active !== false) {
$this->items[$i]['active'] = true;
return;
}
}
}
/**
* Normalizes dropdown item options by removing tab specific keys `content` and `contentOptions`, and also * Normalizes dropdown item options by removing tab specific keys `content` and `contentOptions`, and also
* configure `panes` accordingly. * configure `panes` accordingly.
* @param string $itemNumber number of the item * @param string $itemNumber number of the item

56
tests/TabsTest.php

@ -158,4 +158,60 @@ class TabsTest extends TestCase
$this->assertContains($checkAttribute . '=', $out); $this->assertContains($checkAttribute . '=', $out);
$this->assertContains($checkValue, $out); $this->assertContains($checkValue, $out);
} }
public function testActivateFirstVisibleTab()
{
$html = Tabs::widget([
'id'=>'mytab',
'items' => [
[
'label' => 'Tab 1',
'content' => 'some content',
'visible' => false
],
[
'label' => 'Tab 2',
'content' => 'some content'
],
[
'label' => 'Tab 3',
'content' => 'some content'
],
[
'label' => 'Tab 4',
'content' => 'some content'
]
]
]);
$this->assertNotContains('<li class="active"><a href="#mytab-tab0" data-toggle="tab">Tab 1</a></li>', $html);
$this->assertContains('<li class="active"><a href="#mytab-tab1" data-toggle="tab">Tab 2</a></li>', $html);
}
public function testActivateTab()
{
$html = Tabs::widget([
'id'=>'mytab',
'items' => [
[
'label' => 'Tab 1',
'content' => 'some content',
'visible'=>false
],
[
'label' => 'Tab 2',
'content' => 'some content'
],
[
'label' => 'Tab 3',
'content' => 'some content',
'active' => true
],
[
'label' => 'Tab 4',
'content' => 'some content'
]
]
]);
$this->assertContains('<li class="active"><a href="#mytab-tab2" data-toggle="tab">Tab 3</a></li>', $html);
}
} }

Loading…
Cancel
Save