From fd7b7aa1bade514a87667ff90b94dc3050f68560 Mon Sep 17 00:00:00 2001 From: emkael Date: Wed, 6 Apr 2016 11:35:13 +0200 Subject: * scaffold page for calendar modification --- app/php/components/CalendarScaffold.php | 127 ++++++++++++++++++++++++++++++++ app/php/components/CalendarScaffold.tpl | 57 ++++++++++++++ app/php/components/HeaderMenu.tpl | 4 + 3 files changed, 188 insertions(+) create mode 100644 app/php/components/CalendarScaffold.php create mode 100644 app/php/components/CalendarScaffold.tpl (limited to 'app/php/components') diff --git a/app/php/components/CalendarScaffold.php b/app/php/components/CalendarScaffold.php new file mode 100644 index 0000000..f265d53 --- /dev/null +++ b/app/php/components/CalendarScaffold.php @@ -0,0 +1,127 @@ +setViewState('Facade', $facade); + } + + public function getFacade() { + return $this->getViewState('Facade'); + } + + public function onPreRender($param) { + parent::onPreRender($param); + if (!$this->Page->IsPostBack && !$this->Page->IsCallBack) { + $this->_rebindData(); + } + } + + private function _rebindCalendars(array $calendars) { + $this->Calendars->DataSource = $calendars; + $this->Calendars->dataBind(); + } + + private function _rebindCategoryList(array $categories) { + foreach ($this->Calendars->Columns as $column) { + if ($column->ID === 'Category' + && $column instanceof TActiveDropDownListColumn) { + $column->ListDataSource = $categories; + } + } + } + + private function _rebindData($refresh = FALSE) { + $this->_rebindCategoryList( + $this->_getCategories() + ); + $this->_rebindCalendars( + $this->_getCalendars($refresh) + ); + } + + private function _getCalendars($refresh = FALSE) { + if ($refresh) { + $this->clearViewState('Calendars'); + } + $calendars = $this->getViewState( + 'Calendars', + $this->getFacade()->getAll() + ); + $this->setViewState('Calendars', $calendars); + return $calendars; + } + + private function _getCategories() { + $categories = $this->getViewState( + 'Categories', + $this->getFacade()->getCategories() + ); + $this->setViewState('Categories', $categories); + return $categories; + } + + public function editRow($sender, $param) { + $this->Calendars->EditItemIndex = $param->Item->ItemIndex; + $this->_rebindData(); + } + + private function _compileSaveData(TDataGridItem $item) { + return [ + 'CategoryID' => $item->Category->DropDownList->SelectedValue, + 'Visible' => $item->Visible->CheckBox->Checked, + 'CustomName' => $item->CustomName->TextBox->SafeText, + 'CustomUrl' => $item->CustomUrl->TextBox->SafeText, + 'CustomImage' => $item->CustomImage->Value->SafeText + ]; + } + + public function saveRow($sender, $param) { + $calendar = $this->getFacade()->get( + $sender->DataKeys[$param->Item->ItemIndex] + ); + if ($calendar) { + foreach ($calendar as $c) { + $c->saveData($this->_compileSaveData($param->Item)); + } + } else { + throw new TInvalidDataValueException('Calendar not found'); + } + $this->Calendars->EditItemIndex = -1; + $this->_rebindData(TRUE); + } + + public function cancelRowEdit($sender, $param) { + $this->Calendars->EditItemIndex = -1; + $this->_rebindData(); + } + + public function uploadRowFile($sender, $param) { + $fileType = $sender->getFileType(); + if (preg_match('/^image\//', $fileType)) { + $calendar = $this->getFacade()->get($sender->CustomData); + if ($calendar) { + $targetFile = $calendar[0]->getCustomImagePath( + $sender->getLocalName(), + $fileType + ); + if ($sender->saveAs($targetFile)) { + $sender->NamingContainer->CustomImage->Value->Text = basename( + $targetFile + ); + } + } else { + throw new TInvalidDataValueException('Calendar not found'); + } + } else { + throw new TInvalidDataTypeException('Invalid file type'); + } + } + +} + +?> diff --git a/app/php/components/CalendarScaffold.tpl b/app/php/components/CalendarScaffold.tpl new file mode 100644 index 0000000..6688869 --- /dev/null +++ b/app/php/components/CalendarScaffold.tpl @@ -0,0 +1,57 @@ + + + + + + + + + + + + <%# $this->Parent->Data->CustomImageUrl %> + + + + + <%# $this->Parent->Data->CustomImage %> +
+ + <%# $this->Parent->Data->UID %> + +
+
+ +
diff --git a/app/php/components/HeaderMenu.tpl b/app/php/components/HeaderMenu.tpl index ff1d417..603a231 100644 --- a/app/php/components/HeaderMenu.tpl +++ b/app/php/components/HeaderMenu.tpl @@ -15,4 +15,8 @@ <%= $this->Service->constructUrl('Signup') %> <%= $this->User->getIsAdmin() %> + + <%= $this->Service->constructUrl('Admin') %> + <%= $this->User->getIsAdmin() %> + -- cgit v1.2.3