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