1
0
Fork 0
pixelfed/resources/views/admin/pages/edit.blade.php

84 lines
2.5 KiB
PHP
Raw Normal View History

2018-11-04 04:16:40 +00:00
@extends('admin.partial.template')
2019-02-10 23:59:29 +00:00
@include('admin.settings.sidebar')
2018-11-04 04:16:40 +00:00
@section('section')
<div class="title">
<h3 class="font-weight-bold">Edit Page</h3>
2019-02-10 23:59:29 +00:00
<p class="lead">{{$page->slug}}</p>
2018-11-04 04:16:40 +00:00
</div>
<hr>
<div>
2019-02-10 23:59:29 +00:00
<input type="hidden" id="slug" name="slug" value="{{$page->slug}}">
<input class="form-control form-control-lg" id="title" name="title" placeholder="Title">
<p class="small text-muted">
Page URL: <span class="page-url font-weight-bold">{{$page->url()}}</span>
<span class="pl-1"><a href="#" class="font-weight-bold">Edit</a></span>
</p>
2018-11-04 04:16:40 +00:00
<div id="editor" style="height: 400px">
2019-02-10 23:59:29 +00:00
{!!$page->content!!}
</div>
<div class="mt-3 d-flex justify-content-between">
<div>
<div class="custom-control custom-switch d-inline pr-3">
<input type="checkbox" class="custom-control-input" id="activeSwitch" {{$page->active?'checked="true"':''}}>
<label class="custom-control-label font-weight-bold" for="activeSwitch">Active</label>
</div>
<a class="btn btn-light font-weight-bold py-0" href="#">Set Expire Date</a>
</div>
<div>
<a class="btn btn-light font-weight-bold py-0" href="#">Preview</a>
<a class="btn btn-primary font-weight-bold py-0 btn-save" href="#">Save</a>
</div>
2018-11-04 04:16:40 +00:00
</div>
</div>
@endsection
@push('styles')
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<style type="text/css">
.ql-container {
box-sizing: border-box;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",
Roboto,Helvetica,Arial,sans-serif;
font-size: 16px;
height: 100%;
margin: 0px;
position: relative;
}
</style>
@endpush
@push('scripts')
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<!-- Initialize Quill editor -->
<script>
2019-02-10 23:59:29 +00:00
window.editor = new Quill('#editor', {
2018-11-04 04:16:40 +00:00
theme: 'snow'
});
2019-02-10 23:59:29 +00:00
$('.btn-save').on('click', function(e) {
e.preventDefault();
let html = editor.container.firstChild.innerHTML;
let title = $('#title').val();
let active = $('#activeSwitch')[0].checked;
axios.post(window.location.href, {
slug: '{{$page->slug}}',
title: title,
content: html,
active: active
}).then((res) => {
window.location.href = '{{$page->url()}}';
}).catch((err) => {
console.log(err)
});
});
$('#title').on('change input', function(e) {
e.preventDefault();
let title = this.value.split(' ').join('-').toLowerCase();
})
2018-11-04 04:16:40 +00:00
</script>
@endpush