BookStack/resources/views/pages/show.blade.php

128 lines
4.8 KiB
PHP
Raw Normal View History

2015-07-12 20:31:15 +00:00
@extends('base')
@section('content')
2015-08-30 16:53:30 +00:00
<div class="faded-small">
<div class="container">
<div class="row">
<div class="col-sm-6 faded">
2015-08-30 16:53:30 +00:00
<div class="breadcrumbs">
<a href="{{$book->getUrl()}}" class="text-book text-button"><i class="zmdi zmdi-book"></i>{{ $book->getShortName() }}</a>
2015-08-30 16:53:30 +00:00
@if($page->hasChapter())
<span class="sep">&raquo;</span>
<a href="{{ $page->chapter->getUrl() }}" class="text-chapter text-button">
2015-08-30 16:53:30 +00:00
<i class="zmdi zmdi-collection-bookmark"></i>
{{$page->chapter->getShortName()}}
2015-08-30 16:53:30 +00:00
</a>
@endif
</div>
</div>
<div class="col-sm-6 faded">
2015-08-30 16:53:30 +00:00
<div class="action-buttons">
@if($currentUser->can('page-update'))
<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-30 16:53:30 +00:00
@endif
@if($currentUser->can('page-delete'))
<a href="{{$page->getUrl() . '/delete'}}" class="text-neg text-button"><i class="zmdi zmdi-delete"></i>Delete</a>
2015-08-30 16:53:30 +00:00
@endif
</div>
</div>
</div>
</div>
2015-07-12 20:31:15 +00:00
</div>
2015-07-15 21:55:49 +00:00
2015-08-30 16:53:30 +00:00
2015-08-31 10:43:28 +00:00
<div class="container">
<div class="row">
<div class="col-md-9 print-full-width">
<div class="page-content anim fadeIn">
<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 10:43:28 +00:00
@include('pages/page-display')
2015-08-31 10:43:28 +00:00
<hr>
2015-08-31 10:43:28 +00:00
<p class="text-muted small">
Created {{$page->created_at->diffForHumans()}} @if($page->createdBy) by {{$page->createdBy->name}} @endif
<br>
Last Updated {{$page->updated_at->diffForHumans()}} @if($page->updatedBy) by {{$page->updatedBy->name}} @endif
2015-08-31 10:43:28 +00:00
</p>
2015-08-31 10:43:28 +00:00
</div>
</div>
<div class="col-md-3 print-hidden">
@include('pages/sidebar-tree-list', ['book' => $book, 'sidebarTree' => $sidebarTree])
</div>
2015-08-31 10:43:28 +00:00
</div>
</div>
2015-08-31 10:43:28 +00:00
2015-07-21 21:11:30 +00:00
2015-07-15 21:55:49 +00:00
<script>
$(document).ready(function() {
2015-07-16 18:15:22 +00:00
// Set up pointer
var $pointer = $('#pointer').detach();
2015-07-16 18:15:22 +00:00
var pageId = {{$page->id}};
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-16 18:15:22 +00:00
});
function goToText(text) {
var idElem = $('.page-content').find('#' + text).first();
if(idElem.length !== 0) {
idElem.smoothScrollTo();
} else {
$('.page-content').find(':contains("'+text+'")').smoothScrollTo();
}
2015-07-16 18:15:22 +00:00
}
if(window.location.hash) {
var text = window.location.hash.replace(/\%20/g, ' ').substr(1);
goToText(text);
}
2015-07-15 21:55:49 +00:00
});
</script>
@include('partials/highlight')
2015-07-12 20:31:15 +00:00
@stop