forked from drsdre/yii2-wizardwidget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWizardWidget.php
190 lines (161 loc) · 5.67 KB
/
WizardWidget.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* @copyright Copyright © A.F.Schuurman, 2015
* @package yii2-wizardwidget
* @version 1.0.0
*/
namespace drsdre\wizardwidget;
use yii;
use yii\base\Widget;
use yii\web\View;
use yii\helpers\Html;
/**
* Widget for wizard widget
*
* @author A.F.Schuurman <[email protected]>
* @since 1.0
*/
class WizardWidget extends Widget {
/**
* @var string widget html id
*/
public $id = 'wizard';
/**
* @var array default button configuration
*/
public $default_buttons = [
'prev' => ['title' => 'Previous', 'options' => [ 'class' => 'btn btn-default', 'type' => 'button']],
'next' => ['title' => 'Next', 'options' => [ 'class' => 'btn btn-default', 'type' => 'button']],
'save' => ['title' => 'Save', 'options' => [ 'class' => 'btn btn-default', 'type' => 'button']],
'skip' => ['title' => 'Skip', 'options' => [ 'class' => 'btn btn-default', 'type' => 'button']],
];
/**
* @var array the wizard step definition
*/
public $steps = [];
/**
* @var integer step id to start with
*/
public $start_step = null;
/**
* @var object optional final complete step content
*/
public $complete_step = null;
/**
* Main entry to execute the widget
*/
public function run() {
parent::run();
WizardWidgetAsset::register($this->getView());
// Wizard content
$wizard_line = '';
$wizard_line_distribution = round(100/(count($this->steps)+($this->complete_step ? 1 : 0)));
$tab_content = '';
// Navigation tracker
end($this->steps);
$last_id = key($this->steps);
$first = true;
$class = '';
foreach ($this->steps as $id => $step) {
// Current or fist step is active, next steps are inactive (previous steps are available)
if ($id == $this->start_step or (is_null($this->start_step) && $class == '')) {
$class = 'active';
} elseif ($class == 'active') {
$class = 'disabled';
}
$wizard_line .= '<li role="presentation" class="'.$class.'" style="width:'.$wizard_line_distribution.'%">'.
Html::a('<span class="round-tab"><i class="'.$step['icon'].'"></i></span>', '#step'.$id, [
'data-toggle' => 'tab',
'aria-controls' => 'step'.$id,
'role' => 'tab',
'title' => $step['title'],
]).
'</li>';
// Setup tab content (first tab is always active)
$tab_content .= '<div class="tab-pane '.$class.'" role="tabpanel" id="step'.$id.'">';
$tab_content .= $step['content'];
// Setup navigation buttons
$items = [];
$button_id = "{$this->id}_step{$id}_";
if (!$first) {
$items[] = $this->navButton('prev', $step, $button_id);
}
if (array_key_exists('skippable', $step) and $step['skippable'] === true) {
$items[] = $this->navButton('skip', $step, $button_id);
}
if ($id == $last_id) {
$items[] = $this->navButton('save', $step, $button_id);
} else {
$items[] = $this->navButton('next', $step, $button_id);
}
$tab_content .= Html::ul($items, ['class' => 'list-inline pull-right', 'encode' => false]);
// Finish tab
$tab_content .= '</div>';
$first = false;
}
// Add a completed step if defined
if ($this->complete_step) {
// Check if completed tab is set as start_step
$class = 'disabled';
if ($this->start_step == 'completed') {
$class = 'active';
}
$wizard_line .= '<li role="presentation" class="'.$class.'" style="width:'.$wizard_line_distribution.'%">'.
Html::a('<span class="round-tab"><i class="' . ($this->complete_step['icon'] ? $this->complete_step['icon'] : 'glyphicon glyphicon-ok') . '"></i></span>', '#complete', [
'data-toggle' => 'tab',
'aria-controls' => 'complete',
'role' => 'tab',
'title' => $this->complete_step['title'],
]).
'</li>';
$tab_content .= '<div class="tab-pane '.$class.'" role="tabpanel" id="complete">'.$this->complete_step['content'].'</div>';
}
// Start widget
echo '<div class="wizard" id="'.$this->id.'">';
// Render the steps line
echo '<div class="wizard-inner"><div class="connecting-line"></div>';
echo '<ul class="nav nav-tabs" role="tablist">'.$wizard_line.'</ul>';
echo '</div>';
// Render the content tabs
echo '<div class="tab-content">'.$tab_content.'</div>';
// Finalize the content tabs
echo '<div class="clearfix"></div>';
// Finish widget
echo '</div>';
}
/**
* Generate navigation button
*
* @param string $button_type prev|skip|next\save
* @param array $step step configuration
* @param string $button_id
*
* @return string
*/
protected function navButton($button_type, $step, $button_id) {
// Setup a unique button id
$options = ['id' => $button_id.$button_type];
// Apply default button configuration if defined
if (isset($this->default_buttons[$button_type]['options'])) {
$options = array_merge($options, $this->default_buttons[$button_type]['options']);
}
// Apply step specific button configuration if defined
if (isset($step['buttons'][$button_type]['options'])) {
$options = array_merge($options, $step['buttons'][$button_type]['options']);
}
// Add navigation class
if ($button_type == 'prev') {
$options['class'] = $options['class'].' prev-step';
} else {
$options['class'] = $options['class'].' next-step';
}
// Display button
if (isset($step['buttons'][$button_type]['html'])) {
return $step['buttons'][$button_type]['html'];
} elseif (isset($step['buttons'][$button_type]['title'])) {
return Html::button($step['buttons'][ $button_type ]['title'], $options);
} else {
return Html::button($this->default_buttons[ $button_type ]['title'], $options);
}
}
}