2015-07-13 04:31:15 +08:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2015-08-31 00:53:30 +08:00
|
|
|
<div class="faded-small">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2015-09-06 22:03:37 +08:00
|
|
|
<div class="col-sm-6 faded">
|
2015-08-31 00:53:30 +08:00
|
|
|
<div class="breadcrumbs">
|
2015-12-05 22:41:51 +08:00
|
|
|
<a href="{{$book->getUrl()}}" class="text-book text-button"><i class="zmdi zmdi-book"></i>{{ $book->getShortName() }}</a>
|
2015-08-31 00:53:30 +08:00
|
|
|
@if($page->hasChapter())
|
|
|
|
<span class="sep">»</span>
|
2015-09-03 01:26:33 +08:00
|
|
|
<a href="{{ $page->chapter->getUrl() }}" class="text-chapter text-button">
|
2015-08-31 00:53:30 +08:00
|
|
|
<i class="zmdi zmdi-collection-bookmark"></i>
|
2015-12-05 22:41:51 +08:00
|
|
|
{{$page->chapter->getShortName()}}
|
2015-08-31 00:53:30 +08:00
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-09-06 22:03:37 +08:00
|
|
|
<div class="col-sm-6 faded">
|
2015-08-31 00:53:30 +08:00
|
|
|
<div class="action-buttons">
|
|
|
|
@if($currentUser->can('page-update'))
|
2015-09-03 01:26:33 +08:00
|
|
|
<a href="{{$page->getUrl() . '/revisions'}}" class="text-primary text-button"><i class="zmdi zmdi-replay"></i>Revisions</a>
|
|
|
|
<a href="{{$page->getUrl() . '/edit'}}" class="text-primary text-button" ><i class="zmdi zmdi-edit"></i>Edit</a>
|
2015-08-31 00:53:30 +08:00
|
|
|
@endif
|
|
|
|
@if($currentUser->can('page-delete'))
|
2015-09-03 01:26:33 +08:00
|
|
|
<a href="{{$page->getUrl() . '/delete'}}" class="text-neg text-button"><i class="zmdi zmdi-delete"></i>Delete</a>
|
2015-08-31 00:53:30 +08:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-24 04:55:46 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-13 04:31:15 +08:00
|
|
|
</div>
|
2015-07-16 05:55:49 +08:00
|
|
|
|
2015-08-31 00:53:30 +08:00
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2015-10-23 02:41:49 +08:00
|
|
|
<div class="col-md-9 print-full-width">
|
2015-09-01 22:35:11 +08:00
|
|
|
<div class="page-content anim fadeIn">
|
2015-10-11 01:57:52 +08:00
|
|
|
|
|
|
|
<div class="pointer-container" id="pointer">
|
|
|
|
<div class="pointer anim">
|
|
|
|
<i class="zmdi zmdi-link"></i>
|
|
|
|
<input readonly="readonly" type="text" placeholder="url">
|
|
|
|
<button class="button icon" title="Copy Link" data-clipboard-text=""><i class="zmdi zmdi-copy"></i></button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
@include('pages/page-display')
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
<hr>
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
<p class="text-muted small">
|
|
|
|
Created {{$page->created_at->diffForHumans()}} @if($page->createdBy) by {{$page->createdBy->name}} @endif
|
|
|
|
<br>
|
2015-12-16 03:27:36 +08:00
|
|
|
Last Updated {{$page->updated_at->diffForHumans()}} @if($page->updatedBy) by {{$page->updatedBy->name}} @endif
|
2015-08-31 18:43:28 +08:00
|
|
|
</p>
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-10-23 02:41:49 +08:00
|
|
|
<div class="col-md-3 print-hidden">
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2015-11-27 07:45:04 +08:00
|
|
|
@include('pages/sidebar-tree-list', ['book' => $book, 'sidebarTree' => $sidebarTree])
|
2015-10-11 01:57:52 +08:00
|
|
|
|
2015-09-03 23:51:10 +08:00
|
|
|
</div>
|
2015-08-31 18:43:28 +08:00
|
|
|
</div>
|
2015-07-24 04:55:46 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
|
2015-07-22 05:11:30 +08:00
|
|
|
|
|
|
|
|
2015-07-16 05:55:49 +08:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
2015-07-17 02:15:22 +08:00
|
|
|
|
2015-10-11 01:57:52 +08:00
|
|
|
// Set up pointer
|
|
|
|
var $pointer = $('#pointer').detach();
|
2015-07-17 02:15:22 +08:00
|
|
|
var pageId = {{$page->id}};
|
2015-10-11 01:57:52 +08:00
|
|
|
var isSelection = false;
|
|
|
|
|
|
|
|
$pointer.find('input').click(function(e){$(this).select();e.stopPropagation();});
|
|
|
|
new ZeroClipboard( $pointer.find('button').first()[0] );
|
|
|
|
|
|
|
|
$(document.body).find('*').on('click focus', function(e) {
|
|
|
|
if(!isSelection) {
|
|
|
|
$pointer.detach();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.page-content [id^="bkmrk"]').on('mouseup keyup', function(e) {
|
|
|
|
var selection = window.getSelection();
|
|
|
|
if(selection.toString().length === 0) return;
|
|
|
|
// Show pointer and set link
|
|
|
|
var $elem = $(this);
|
|
|
|
var link = window.location.protocol + "//" + window.location.host + '/link/' + pageId + '#' + $elem.attr('id');
|
|
|
|
$pointer.find('input').val(link);
|
|
|
|
$pointer.find('button').first().attr('data-clipboard-text', link);
|
|
|
|
$elem.before($pointer);
|
|
|
|
$pointer.show();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
isSelection = true;
|
|
|
|
setTimeout(function() {
|
|
|
|
isSelection = false;
|
|
|
|
}, 100);
|
2015-07-17 02:15:22 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
function goToText(text) {
|
2015-10-11 01:57:52 +08:00
|
|
|
var idElem = $('.page-content').find('#' + text).first();
|
|
|
|
if(idElem.length !== 0) {
|
|
|
|
idElem.smoothScrollTo();
|
|
|
|
} else {
|
|
|
|
$('.page-content').find(':contains("'+text+'")').smoothScrollTo();
|
|
|
|
}
|
2015-07-17 02:15:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if(window.location.hash) {
|
|
|
|
var text = window.location.hash.replace(/\%20/g, ' ').substr(1);
|
|
|
|
goToText(text);
|
|
|
|
}
|
|
|
|
|
2015-07-16 05:55:49 +08:00
|
|
|
});
|
|
|
|
</script>
|
2015-08-22 22:06:03 +08:00
|
|
|
|
2015-12-01 05:44:23 +08:00
|
|
|
@include('partials/highlight')
|
2015-07-13 04:31:15 +08:00
|
|
|
@stop
|