| 
									
										
										
										
											2018-01-20 23:00:54 +08:00
										 |  |  | <div class="page-editor flex-fill flex" id="page-editor" | 
					
						
							|  |  |  |      drafts-enabled="{{ $draftsEnabled ? 'true' : 'false' }}" | 
					
						
							| 
									
										
										
										
											2020-04-06 00:27:16 +08:00
										 |  |  |      @if(config('services.drawio')) | 
					
						
							|  |  |  |         drawio-url="{{ is_string(config('services.drawio')) ? config('services.drawio') : 'https://www.draw.io/?embed=1&proto=json&spin=1' }}" | 
					
						
							|  |  |  |      @endif | 
					
						
							| 
									
										
										
										
											2018-01-20 23:00:54 +08:00
										 |  |  |      editor-type="{{ setting('app-editor') }}" | 
					
						
							| 
									
										
										
										
											2019-04-07 01:36:17 +08:00
										 |  |  |      page-id="{{ $model->id ?? 0 }}" | 
					
						
							| 
									
										
										
										
											2018-09-22 20:18:26 +08:00
										 |  |  |      text-direction="{{ config('app.rtl') ? 'rtl' : 'ltr' }}" | 
					
						
							| 
									
										
										
										
											2019-04-07 01:36:17 +08:00
										 |  |  |      page-new-draft="{{ $model->draft ?? 0 }}" | 
					
						
							|  |  |  |      page-update-draft="{{ $model->isDraft ?? 0 }}"> | 
					
						
							| 
									
										
										
										
											2015-07-16 05:55:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-06 21:52:25 +08:00
										 |  |  |     @exposeTranslations([ | 
					
						
							|  |  |  |         'entities.pages_editing_draft', | 
					
						
							|  |  |  |         'entities.pages_editing_page', | 
					
						
							|  |  |  |         'errors.page_draft_autosave_fail', | 
					
						
							|  |  |  |         'entities.pages_editing_page', | 
					
						
							|  |  |  |         'entities.pages_draft_discarded', | 
					
						
							|  |  |  |         'entities.pages_edit_set_changelog', | 
					
						
							|  |  |  |     ]) | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     {{--Header Bar--}} | 
					
						
							| 
									
										
										
										
											2019-04-14 01:30:11 +08:00
										 |  |  |     <div class="primary-background-light toolbar page-edit-toolbar"> | 
					
						
							| 
									
										
										
										
											2019-05-19 22:30:58 +08:00
										 |  |  |         <div class="grid third no-break v-center"> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             <div class="action-buttons text-left px-m py-xs"> | 
					
						
							| 
									
										
										
										
											2019-04-14 01:30:11 +08:00
										 |  |  |                 <a href="{{ back()->getTargetUrl() }}" class="text-button text-primary">@icon('back')<span class="hide-under-l">{{ trans('common.back') }}</span></a> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="text-center px-m py-xs"> | 
					
						
							| 
									
										
										
										
											2019-05-05 21:43:26 +08:00
										 |  |  |                 <div v-show="draftsEnabled" dropdown dropdown-move-menu class="dropdown-container draft-display text"> | 
					
						
							| 
									
										
										
										
											2019-08-26 19:47:04 +08:00
										 |  |  |                     <button type="button" dropdown-toggle aria-haspopup="true" aria-expanded="false" title="{{ trans('entities.pages_edit_draft_options') }}" class="text-primary text-button"><span class="faded-text" v-text="draftText"></span>  @icon('more')</button> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |                     @icon('check-circle', ['class' => 'text-pos draft-notification svg-icon', ':class' => '{visible: draftUpdated}']) | 
					
						
							| 
									
										
										
										
											2019-08-25 01:26:28 +08:00
										 |  |  |                     <ul class="dropdown-menu" role="menu"> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |                         <li> | 
					
						
							| 
									
										
										
										
											2019-08-26 19:47:04 +08:00
										 |  |  |                             <button type="button" @click="saveDraft()" class="text-pos">@icon('save'){{ trans('entities.pages_edit_save_draft') }}</button> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |                         </li> | 
					
						
							|  |  |  |                         <li v-if="isNewDraft"> | 
					
						
							|  |  |  |                             <a href="{{ $model->getUrl('/delete') }}" class="text-neg">@icon('delete'){{ trans('entities.pages_edit_delete_draft') }}</a> | 
					
						
							|  |  |  |                         </li> | 
					
						
							|  |  |  |                         <li v-if="isUpdateDraft"> | 
					
						
							| 
									
										
										
										
											2019-08-26 19:47:04 +08:00
										 |  |  |                             <button type="button" @click="discardDraft" class="text-neg">@icon('cancel'){{ trans('entities.pages_edit_discard_draft') }}</button> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |                         </li> | 
					
						
							|  |  |  |                     </ul> | 
					
						
							| 
									
										
										
										
											2016-03-10 06:32:07 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="action-buttons px-m py-xs" v-cloak> | 
					
						
							| 
									
										
										
										
											2019-05-05 21:43:26 +08:00
										 |  |  |                 <div dropdown dropdown-move-menu class="dropdown-container"> | 
					
						
							| 
									
										
										
										
											2019-08-26 19:47:04 +08:00
										 |  |  |                     <button type="button" dropdown-toggle aria-haspopup="true" aria-expanded="false" class="text-primary text-button">@icon('edit') <span v-text="changeSummaryShort"></span></button> | 
					
						
							| 
									
										
										
										
											2019-05-05 21:43:26 +08:00
										 |  |  |                     <ul class="wide dropdown-menu"> | 
					
						
							| 
									
										
										
										
											2019-04-07 16:57:48 +08:00
										 |  |  |                         <li class="px-l py-m"> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  |                             <p class="text-muted pb-s">{{ trans('entities.pages_edit_enter_changelog_desc') }}</p> | 
					
						
							|  |  |  |                             <input name="summary" id="summary-input" type="text" placeholder="{{ trans('entities.pages_edit_enter_changelog') }}" v-model="changeSummary" /> | 
					
						
							|  |  |  |                         </li> | 
					
						
							|  |  |  |                     </ul> | 
					
						
							| 
									
										
										
										
											2019-05-05 21:43:26 +08:00
										 |  |  |                     <span>{{-- Prevents button jumping on menu show --}}</span> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |                 </div> | 
					
						
							| 
									
										
										
										
											2019-03-30 23:49:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-19 22:30:58 +08:00
										 |  |  |                 <button type="submit" id="save-button" class="float-left text-primary text-button text-pos-hover hide-under-m">@icon('save')<span>{{ trans('entities.pages_save') }}</span></button> | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  |     {{--Title input--}} | 
					
						
							| 
									
										
										
										
											2017-10-16 01:10:34 +08:00
										 |  |  |     <div class="title-input page-title clearfix" v-pre> | 
					
						
							| 
									
										
										
										
											2015-07-24 04:55:46 +08:00
										 |  |  |         <div class="input"> | 
					
						
							| 
									
										
										
										
											2019-04-07 19:00:09 +08:00
										 |  |  |             @include('form.text', ['name' => 'name', 'placeholder' => trans('entities.pages_title')]) | 
					
						
							| 
									
										
										
										
											2015-07-22 05:11:30 +08:00
										 |  |  |         </div> | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2016-05-13 06:12:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  |     {{--Editors--}} | 
					
						
							| 
									
										
										
										
											2015-08-31 18:43:28 +08:00
										 |  |  |     <div class="edit-area flex-fill flex"> | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         {{--WYSIWYG Editor--}} | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         @if(setting('app-editor') === 'wysiwyg') | 
					
						
							| 
									
										
										
										
											2019-07-06 21:52:25 +08:00
										 |  |  |             @include('pages.wysiwyg-editor', ['model' => $model]) | 
					
						
							| 
									
										
										
										
											2016-03-25 22:41:15 +08:00
										 |  |  |         @endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  |         {{--Markdown Editor--}} | 
					
						
							| 
									
										
										
										
											2016-03-30 02:26:13 +08:00
										 |  |  |         @if(setting('app-editor') === 'markdown') | 
					
						
							| 
									
										
										
										
											2019-07-06 21:52:25 +08:00
										 |  |  |             @include('pages.markdown-editor', ['model' => $model]) | 
					
						
							| 
									
										
										
										
											2015-08-22 22:06:03 +08:00
										 |  |  |         @endif | 
					
						
							| 
									
										
										
										
											2016-09-29 22:56:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2019-05-19 22:30:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <button type="submit" id="save-button-mobile" title="{{ trans('entities.pages_save') }}" class="text-primary text-button hide-over-m page-save-mobile-button">@icon('save')</button> | 
					
						
							| 
									
										
										
										
											2015-10-23 02:06:50 +08:00
										 |  |  | </div> |