2020-07-05 16:18:17 -04:00
|
|
|
<div component="page-editor" class="page-editor flex-fill flex"
|
|
|
|
option:page-editor:drafts-enabled="{{ $draftsEnabled ? 'true' : 'false' }}"
|
2020-04-05 12:27:16 -04:00
|
|
|
@if(config('services.drawio'))
|
2022-04-20 18:32:02 -04:00
|
|
|
drawio-url="{{ is_string(config('services.drawio')) ? config('services.drawio') : 'https://embed.diagrams.net/?embed=1&proto=json&spin=1&configure=1' }}"
|
2020-04-05 12:27:16 -04:00
|
|
|
@endif
|
2020-07-05 16:18:17 -04:00
|
|
|
@if($model->name === trans('entities.pages_initial_name'))
|
|
|
|
option:page-editor:has-default-title="true"
|
|
|
|
@endif
|
2022-04-18 12:39:28 -04:00
|
|
|
option:page-editor:editor-type="{{ $editor }}"
|
2020-07-05 16:18:17 -04:00
|
|
|
option:page-editor:page-id="{{ $model->id ?? '0' }}"
|
2022-04-17 18:01:14 -04:00
|
|
|
option:page-editor:page-new-draft="{{ $isDraft ? 'true' : 'false' }}"
|
|
|
|
option:page-editor:draft-text="{{ ($isDraft || $isDraftRevision) ? trans('entities.pages_editing_draft') : trans('entities.pages_editing_page') }}"
|
2020-07-05 16:18:17 -04:00
|
|
|
option:page-editor:autosave-fail-text="{{ trans('errors.page_draft_autosave_fail') }}"
|
|
|
|
option:page-editor:editing-page-text="{{ trans('entities.pages_editing_page') }}"
|
|
|
|
option:page-editor:draft-discarded-text="{{ trans('entities.pages_draft_discarded') }}"
|
|
|
|
option:page-editor:set-changelog-text="{{ trans('entities.pages_edit_set_changelog') }}">
|
2016-09-29 10:56:57 -04:00
|
|
|
|
2022-04-20 09:03:47 -04:00
|
|
|
{{--Header Toolbar--}}
|
|
|
|
@include('pages.parts.editor-toolbar', ['model' => $model, 'editor' => $editor, 'isDraft' => $isDraft, 'draftsEnabled' => $draftsEnabled])
|
2015-08-31 06:43:28 -04:00
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
{{--Title input--}}
|
2020-07-05 16:18:17 -04:00
|
|
|
<div class="title-input page-title clearfix">
|
|
|
|
<div refs="page-editor@titleContainer" class="input">
|
2020-04-27 10:54:39 -04:00
|
|
|
@include('form.text', ['name' => 'name', 'model' => $model, '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--}}
|
2022-04-17 10:01:29 -04:00
|
|
|
@if($editor === 'wysiwyg')
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('pages.parts.wysiwyg-editor', ['model' => $model])
|
2016-03-25 10:41:15 -04:00
|
|
|
@endif
|
|
|
|
|
2016-09-29 10:56:57 -04:00
|
|
|
{{--Markdown Editor--}}
|
2022-04-17 10:01:29 -04:00
|
|
|
@if($editor === 'markdown')
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('pages.parts.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
|
|
|
|
2022-04-20 13:21:21 -04:00
|
|
|
{{--Mobile Save Button--}}
|
2020-07-05 16:18:17 -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>
|
2022-04-20 13:21:21 -04:00
|
|
|
|
|
|
|
{{--Editor Change Dialog--}}
|
|
|
|
@component('common.confirm-dialog', ['title' => trans('entities.pages_editor_switch_title'), 'ref' => 'page-editor@switchDialog'])
|
|
|
|
<p>
|
|
|
|
{{ trans('entities.pages_editor_switch_are_you_sure') }}
|
|
|
|
<br>
|
|
|
|
{{ trans('entities.pages_editor_switch_consider_following') }}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>{{ trans('entities.pages_editor_switch_consideration_a') }}</li>
|
|
|
|
<li>{{ trans('entities.pages_editor_switch_consideration_b') }}</li>
|
|
|
|
<li>{{ trans('entities.pages_editor_switch_consideration_c') }}</li>
|
|
|
|
</ul>
|
|
|
|
@endcomponent
|
2015-10-22 14:06:50 -04:00
|
|
|
</div>
|