Yii2 widget. Wrapper for angular-gantt
ScheduleWidgetYII2 is available through composer
composer require professionalweb/schedule-widget-yii2 "dev-master"
Alternatively you can add the following to the require
section in your composer.json
manually:
"professionalweb/schedule-widget-yii2": "dev-master"
Run composer update
afterwards.
Example:
use professionalweb\ScheduleWidget\ScheduleWidget;
echo ScheduleWidget::widget([
'clientOptions' => [
'daily' => 'true',
'column-magnet' => 'column',
'time-frames-magnet' => false
],
'plugins' => [
ScheduleWidget::PLUGIN_MOVABLE => [],
ScheduleWidget::PLUGIN_TABLE => [
'headers' => [
'model.name' => 'Name'
]
],
ScheduleWidget::PLUGIN_TOOLTIP => []
],
'events' => [
ScheduleWidget::EVENT_TASK_MOVEEND => new JsExpression('function(task){'
.'console.log(task.row.model);'
.'}')
],
'data' => '[
{"name":"Row №1","sortable":"false","tasks":[]},
{"name":"Row №2","sortable":"false","tasks":[]},
{"name":"Row №3","sortable":"false","tasks":[
{"name":"Task №1","from":"2015 04 16","to":"2015 04 23"}
]
}
]'
]);
Or you can use wrappers for data preparation
$result = [];
$eventRow = new Row();
$eventRow->name = Yii::t('app', 'Rent');
$result[] = $eventRow;
foreach (Room::find()->all() as $room) {
$rowRent = new Row();
$rowRent->name = $room->ROOM_NUMBER;
$rowRent->parent = $eventRow->name;
foreach (Event::find()->andWhere(['ROOM_ID' => $room->id)->all() as $event) {
$task = new Task();
$task->name = $event->CLIENT_NAME;
$task->from = Yii::$app->formatter->asDate($event->START_DATE,
'Y-MM-dd');
$task->to = Yii::$app->formatter->asDate($event->END_DATE,
'Y-MM-dd');
$task->classes = ['event-row'];
$rowRent->tasks[] = $task;
}
$result[] = $rowRent;
}
'events' => [
ScheduleWidget::EVENT_TASK_ROW_CHANGE => new JsExpression('function(task){'
.'if(task.row.model.parent===\'Rent\') {'
.'task.$element.addClass(\'event-row\');'
.'task.$element.removeClass(\'request-row\');'
.'} else {'
.'task.$element.removeClass(\'event-row\');'
.'task.$element.addClass(\'request-row\');'
.'}'
.'}'),
ScheduleWidget::EVENT_TASK_DBLCLICK => new JsExpression('function(task){console.log(task);}')
]
HTMLFilter for angular.
Example:
ScheduleWidget::PLUGIN_TOOLTIP => [
'date-format'=>'\'DD.MM.YYYY\'',
'content' => '\'<div ng-bind-html="task.model.name | unsafe"></div>{{getFromLabel() +" - "+getToLabel()}}\''
],
The MIT License (MIT)
Copyright (c) 2016 Sergey Zinchenko, Professional web
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.