2018-01-20 16:00:54 +01:00
|
|
|
<div class="page-editor flex-fill flex" id="page-editor"
|
|
|
|
drafts-enabled="{{ $draftsEnabled ? 'true' : 'false' }}"
|
2020-04-05 18:27:16 +02: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 16:00:54 +01:00
|
|
|
editor-type="{{ setting('app-editor') }}"
|
2019-04-06 19:36:17 +02:00
|
|
|
page-id="{{ $model->id ?? 0 }}"
|
2018-09-22 14:18:26 +02:00
|
|
|
text-direction="{{ config('app.rtl') ? 'rtl' : 'ltr' }}"
|
2019-04-06 19:36:17 +02:00
|
|
|
page-new-draft="{{ $model->draft ?? 0 }}"
|
|
|
|
page-update-draft="{{ $model->isDraft ?? 0 }}">
|
2015-07-15 23:55:49 +02:00
|
|
|
|
2019-07-06 15:52:25 +02: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 16:56:57 +02:00
|
|
|
|
|
|
|
{{--Header Bar--}}
|
2019-04-13 19:30:11 +02:00
|
|
|
<div class="primary-background-light toolbar page-edit-toolbar">
|
2019-05-19 16:30:58 +02:00
|
|
|
<div class="grid third no-break v-center">
|
2019-03-30 16:49:14 +01:00
|
|
|
|
|
|
|
<div class="action-buttons text-left px-m py-xs">
|
2019-04-13 19:30:11 +02: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 16:49:14 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center px-m py-xs">
|
2019-05-05 15:43:26 +02:00
|
|
|
<div v-show="draftsEnabled" dropdown dropdown-move-menu class="dropdown-container draft-display text">
|
2019-08-26 13:47:04 +02: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 16:49:14 +01:00
|
|
|
@icon('check-circle', ['class' => 'text-pos draft-notification svg-icon', ':class' => '{visible: draftUpdated}'])
|
2019-08-24 19:26:28 +02:00
|
|
|
<ul class="dropdown-menu" role="menu">
|
2019-03-30 16:49:14 +01:00
|
|
|
<li>
|
2019-08-26 13:47:04 +02:00
|
|
|
<button type="button" @click="saveDraft()" class="text-pos">@icon('save'){{ trans('entities.pages_edit_save_draft') }}</button>
|
2019-03-30 16:49:14 +01: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 13:47:04 +02:00
|
|
|
<button type="button" @click="discardDraft" class="text-neg">@icon('cancel'){{ trans('entities.pages_edit_discard_draft') }}</button>
|
2019-03-30 16:49:14 +01:00
|
|
|
</li>
|
|
|
|
</ul>
|
2016-03-09 23:32:07 +01:00
|
|
|
</div>
|
2019-03-30 16:49:14 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="action-buttons px-m py-xs" v-cloak>
|
2019-05-05 15:43:26 +02:00
|
|
|
<div dropdown dropdown-move-menu class="dropdown-container">
|
2019-08-26 13:47:04 +02: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 15:43:26 +02:00
|
|
|
<ul class="wide dropdown-menu">
|
2019-04-07 10:57:48 +02:00
|
|
|
<li class="px-l py-m">
|
2019-03-30 16:49:14 +01: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 15:43:26 +02:00
|
|
|
<span>{{-- Prevents button jumping on menu show --}}</span>
|
2015-08-31 12:43:28 +02:00
|
|
|
</div>
|
2019-03-30 16:49:14 +01:00
|
|
|
|
2019-05-19 16:30:58 +02: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 12:43:28 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
{{--Title input--}}
|
2017-10-15 19:10:34 +02:00
|
|
|
<div class="title-input page-title clearfix" v-pre>
|
2015-07-23 22:55:46 +02:00
|
|
|
<div class="input">
|
2019-04-07 13:00:09 +02:00
|
|
|
@include('form.text', ['name' => 'name', 'placeholder' => trans('entities.pages_title')])
|
2015-07-21 23:11:30 +02:00
|
|
|
</div>
|
2015-07-12 22:31:15 +02:00
|
|
|
</div>
|
2016-05-13 00:12:05 +02:00
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
{{--Editors--}}
|
2015-08-31 12:43:28 +02:00
|
|
|
<div class="edit-area flex-fill flex">
|
2016-09-29 16:56:57 +02:00
|
|
|
|
|
|
|
{{--WYSIWYG Editor--}}
|
2016-03-29 20:26:13 +02:00
|
|
|
@if(setting('app-editor') === 'wysiwyg')
|
2019-07-06 15:52:25 +02:00
|
|
|
@include('pages.wysiwyg-editor', ['model' => $model])
|
2016-03-25 15:41:15 +01:00
|
|
|
@endif
|
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
{{--Markdown Editor--}}
|
2016-03-29 20:26:13 +02:00
|
|
|
@if(setting('app-editor') === 'markdown')
|
2019-07-06 15:52:25 +02:00
|
|
|
@include('pages.markdown-editor', ['model' => $model])
|
2015-08-22 16:06:03 +02:00
|
|
|
@endif
|
2016-09-29 16:56:57 +02:00
|
|
|
|
2015-07-12 22:31:15 +02:00
|
|
|
</div>
|
2019-05-19 16:30:58 +02: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-22 20:06:50 +02:00
|
|
|
</div>
|