UserController.php
5.26 KB
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
namespace Tests\Controllers;
use Dcat\Admin\Form;
use Dcat\Admin\Grid;
use Dcat\Admin\Http\Controllers\AdminController;
use Dcat\Admin\Layout\Content;
use Dcat\Admin\Show;
use Tests\Models\Tag;
use Tests\Repositories\User;
class UserController extends AdminController
{
/**
* Index interface.
*
* @return Content
*/
public function index(Content $content)
{
$content->header('All users');
$content->description('description');
return $content->body($this->grid());
}
/**
* Edit interface.
*
* @param $id
* @return Content
*/
public function edit($id, Content $content)
{
$content->header('Edit user');
$content->description('description');
$content->body($this->form()->edit($id));
return $content;
}
/**
* Create interface.
*
* @return Content
*/
public function create(Content $content)
{
$content->header('Create user');
return $content->body($this->form());
}
/**
* Show interface.
*
* @param mixed $id
* @param Content $content
* @return Content
*/
public function show($id, Content $content)
{
return $content
->header('User')
->description('Detail')
->body($this->detail($id));
}
/**
* Make a grid builder.
*
* @return Grid
*/
protected function grid()
{
$grid = new Grid(new User());
$grid->model()->with(['tags', 'profile']);
$grid->number();
$grid->id('ID')->sortable();
$grid->username();
$grid->email();
$grid->mobile();
$grid->full_name;
$grid->avatar()->display(function ($avatar) {
return "<img src='{$avatar}' />";
});
$grid->column('profile.postcode', 'Post code')->sortable('SIGNED');
$grid->column('profile.address');
$grid->column('profile.color');
$grid->column('profile.start_at', '开始时间');
$grid->column('profile.end_at', '结束时间');
$grid->column('column1_not_in_table')->display(function () {
return 'full name:'.$this->full_name;
});
$grid->column('column2_not_in_table')->display(function () {
return $this->email.'#'.$this->profile['color'];
});
$grid->tags()->display(function ($tags) {
$tags = collect($tags)->map(function ($tag) {
return "<code>{$tag['name']}</code>";
})->toArray();
return implode('', $tags);
});
$grid->created_at();
$grid->updated_at();
$grid->quickSearch('profile.postcode', 'username');
$grid->filter(function (Grid\Filter $filter) {
$filter->equal('id');
$filter->like('username');
$filter->like('email');
$filter->equal('profile.postcode');
$filter->between('profile.start_at')->datetime();
$filter->between('profile.end_at')->datetime();
});
$grid->actions(function (Grid\Displayers\Actions $actions) {
if ($actions->getKey() % 2 == 0) {
$actions->append('<a href="/" class="btn btn-xs btn-danger">detail</a>');
}
});
return $grid;
}
/**
* Make a show builder.
*
* @param mixed $id
* @return Show
*/
protected function detail($id)
{
return Show::make($id, new User(), function (Show $show) {
$show->id('ID');
$show->username();
$show->email;
$show->divider();
$show->full_name();
$show->field('profile.postcode');
$show->tags->json();
});
}
/**
* Make a form builder.
*
* @return Form
*/
protected function form()
{
Form::extend('map', Form\Field\Map::class);
Form::extend('editor', Form\Field\Editor::class);
$form = new Form(new User());
$form->disableDeleteButton();
$form->display('id', 'ID');
$form->text('username');
$form->email('email')->rules('required');
$form->mobile('mobile');
$form->image('avatar')->help('上传头像', 'fa-image');
$form->ignore(['password_confirmation']);
$form->password('password')->rules('confirmed');
$form->password('password_confirmation');
$form->divider();
$form->text('profile.first_name');
$form->text('profile.last_name');
$form->text('profile.postcode')->help('Please input your postcode');
$form->textarea('profile.address')->rows(15);
//$form->map('profile.latitude', 'profile.longitude', 'Position');
$form->text('profile.color');
$form->datetime('profile.start_at');
$form->datetime('profile.end_at');
$form->multipleSelect('tags', 'Tags')->options(Tag::all()->pluck('name', 'id'))->customFormat(function ($value) {
if (! $value) {
return [];
}
return array_column($value, 'id');
});
$form->display('created_at', 'Created At');
$form->display('updated_at', 'Updated At');
$form->html('<a html-field>html...</a>');
return $form;
}
}