2016-09-02 10:42:05 +01:00
|
|
|
@extends('themes.base.layout')
|
2016-09-01 16:37:49 +01:00
|
|
|
@section('title', $album->name)
|
|
|
|
|
2016-09-09 15:06:34 +01:00
|
|
|
@section('breadcrumb')
|
2017-03-27 14:04:09 +01:00
|
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}"><i class="fa fa-fw fa-home"></i></a></li>
|
|
|
|
<li class="breadcrumb-item"><a href="{{ route('admin') }}">@lang('navigation.breadcrumb.admin')</a></li>
|
|
|
|
<li class="breadcrumb-item"><a href="{{ route('albums.index') }}">@lang('navigation.breadcrumb.albums')</a></li>
|
|
|
|
<li class="breadcrumb-item active">{{ $album->name }}</li>
|
2016-09-09 15:06:34 +01:00
|
|
|
@endsection
|
|
|
|
|
2016-09-01 16:37:49 +01:00
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2017-03-27 14:04:09 +01:00
|
|
|
<div class="col">
|
2017-03-31 22:05:57 +01:00
|
|
|
<a class="pull-right btn btn-secondary" href="{{ $album->url() }}" target="_blank"><i class="fa fa-fw fa-eye"></i> @lang('admin.open_album')</a>
|
2016-09-09 15:06:34 +01:00
|
|
|
|
|
|
|
<h1 class="page-title">{{ $album->name }}</h1>
|
2016-09-01 16:37:49 +01:00
|
|
|
<p>{{ $album->description }}</p>
|
|
|
|
<hr/>
|
2016-09-02 21:27:50 +01:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
2017-02-17 11:38:10 +00:00
|
|
|
@include(Theme::viewName('partials.tab'), ['tab_name' => 'photos', 'tab_icon' => 'photo', 'tab_text' => trans('admin.album_photos_tab')])
|
|
|
|
@include(Theme::viewName('partials.tab'), ['tab_name' => 'upload', 'tab_icon' => 'upload', 'tab_text' => trans('admin.album_upload_tab')])
|
|
|
|
@include(Theme::viewName('partials.tab'), ['tab_name' => 'permissions', 'tab_icon' => 'lock', 'tab_text' => trans('admin.album_security_tab')])
|
|
|
|
@include(Theme::viewName('partials.tab'), ['tab_name' => 'settings', 'tab_icon' => 'cog', 'tab_text' => trans('admin.album_settings_tab')])
|
2016-09-02 21:27:50 +01:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
2016-09-06 15:07:13 +01:00
|
|
|
{{-- Photos --}}
|
2017-04-10 17:29:45 +01:00
|
|
|
@include(Theme::viewName('partials.album_photos_tab'))
|
2016-09-06 15:07:13 +01:00
|
|
|
|
|
|
|
{{-- Upload --}}
|
2017-03-27 14:04:09 +01:00
|
|
|
@include(Theme::viewName('partials.album_upload_tab'))
|
2016-09-02 21:27:50 +01:00
|
|
|
|
2017-02-16 17:32:01 +00:00
|
|
|
{{-- Permissions --}}
|
|
|
|
<div role="tabpanel" class="tab-pane{{ $active_tab == 'permissions' ? ' active' : '' }}" id="permissions-tab">
|
|
|
|
<h4>@lang('admin.security_heading')</h4>
|
|
|
|
<p>@lang('admin.security_text')</p>
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<h5 style="font-weight: bold;">@lang('admin.security_groups_heading')</h5>
|
|
|
|
|
|
|
|
<form action="{{ route('albums.set_group_permissions', ['id' => $album->id]) }}" method="post">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
|
|
|
@if (count($existing_groups) > 0)
|
|
|
|
<div class="panel-group" id="groups-accordion" role="tablist" aria-multiselectable="true">
|
|
|
|
@foreach ($existing_groups as $group)
|
2017-03-21 21:48:55 +00:00
|
|
|
@include(Theme::viewName('partials.album_permissions'), [
|
|
|
|
'key_id' => 'group_' . $group->id,
|
|
|
|
'object_id' => $group->id,
|
|
|
|
'title' => $group->name,
|
|
|
|
'callback' => [$album, 'doesGroupHavePermission'],
|
|
|
|
'callback_object' => $group,
|
|
|
|
'parent_id' => 'groups-accordion'
|
|
|
|
])
|
2017-02-16 17:32:01 +00:00
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2017-03-21 21:48:55 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<select class="form-control" name="group_id" style="margin-bottom: 2px;"@if (count($add_new_groups) == 0) disabled="disabled"@endif>
|
|
|
|
@foreach ($add_new_groups as $group)
|
|
|
|
<option value="{{ $group->id }}">{{ $group->name }}</option>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-2">
|
|
|
|
<button type="submit" name="action" value="add_group" class="btn btn-primary">Assign Permissions</button>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6 text-right">
|
|
|
|
<button type="submit" name="action" value="update_group_permissions" class="btn btn-success">
|
|
|
|
<i class="fa fa-fw fa-check"></i> @lang('forms.save_action')
|
|
|
|
</button>
|
|
|
|
</div>
|
2017-02-16 17:32:01 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<h5 style="font-weight: bold;">@lang('admin.security_users_heading')</h5>
|
2017-02-17 11:38:10 +00:00
|
|
|
|
|
|
|
<form action="{{ route('albums.set_user_permissions', ['id' => $album->id]) }}" method="post">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
|
|
|
<div class="panel-group" id="users-accordion" role="tablist" aria-multiselectable="true">
|
|
|
|
{{-- Anonymous users --}}
|
2017-03-21 21:48:55 +00:00
|
|
|
@include(Theme::viewName('partials.album_permissions'), [
|
|
|
|
'key_id' => 'anonymous',
|
|
|
|
'object_id' => 'anonymous',
|
|
|
|
'title' => trans('admin.anonymous_users'),
|
|
|
|
'callback' => [$album, 'doesUserHavePermission'],
|
|
|
|
'callback_object' => null,
|
|
|
|
'parent_id' => 'users-accordion'
|
|
|
|
])
|
|
|
|
|
|
|
|
@foreach ($existing_users as $user)
|
|
|
|
@include(Theme::viewName('partials.album_permissions'), [
|
|
|
|
'key_id' => 'user_' . $user->id,
|
|
|
|
'object_id' => $user->id,
|
|
|
|
'title' => $user->name,
|
|
|
|
'callback' => [$album, 'doesUserHavePermission'],
|
|
|
|
'callback_object' => $user,
|
|
|
|
'parent_id' => 'users-accordion'
|
|
|
|
])
|
|
|
|
@endforeach
|
2017-02-17 11:38:10 +00:00
|
|
|
</div>
|
|
|
|
|
2017-03-21 21:48:55 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-4">
|
|
|
|
<input class="form-control" name="user_name" id="user-search-textbox" size="20" style="margin-bottom: 2px;" />
|
|
|
|
<input type="hidden" name="user_id" id="user-id-field" />
|
|
|
|
</div>
|
|
|
|
<div class="col-md-2">
|
|
|
|
<button type="submit" name="action" value="add_user" class="btn btn-primary">Assign Permissions</button>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6 text-right">
|
|
|
|
<button type="submit" name="action" value="update_user_permissions" class="btn btn-success">
|
|
|
|
<i class="fa fa-fw fa-check"></i> @lang('forms.save_action')
|
|
|
|
</button>
|
|
|
|
</div>
|
2017-02-17 11:38:10 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-02-16 17:32:01 +00:00
|
|
|
</div>
|
|
|
|
|
2016-09-06 15:07:13 +01:00
|
|
|
{{-- Settings --}}
|
2017-02-16 17:32:01 +00:00
|
|
|
<div role="tabpanel" class="tab-pane{{ $active_tab == 'settings' ? ' active' : '' }}" id="settings-tab">
|
2017-03-27 14:04:09 +01:00
|
|
|
<form action="{{ route('albums.update', [$album->id]) }}" method="POST">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
{{ method_field('PUT') }}
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<h4><i class="fa fa-fw fa-info"></i> @lang('admin.album_basic_info_heading')</h4>
|
|
|
|
<p>@lang('admin.album_basic_info_intro')</p>
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<div class="form-group{{ $errors->has('name') ? ' has-danger' : '' }}" style="margin-top: 20px;">
|
|
|
|
<label class="form-control-label" for="album-name">@lang('forms.name_label')</label>
|
|
|
|
<input type="text" class="form-control" id="album-name" name="name" value="{{ old('name') }}">
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
@if ($errors->has('name'))
|
|
|
|
<div class="form-control-feedback">
|
|
|
|
<strong>{{ $errors->first('name') }}</strong>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
</div>
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label class="form-control-label" for="album-description">@lang('forms.description_label')</label>
|
|
|
|
<textarea class="form-control" id="album-description" name="description">{{ old('description') }}</textarea>
|
|
|
|
</div>
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<h4><i class="fa fa-fw fa-paint-brush"></i> @lang('admin.album_appearance_heading')</h4>
|
|
|
|
<p>@lang('admin.album_appearance_intro')</p>
|
|
|
|
|
|
|
|
<div class="form-group" style="margin-top: 20px;">
|
|
|
|
<label class="control-label" for="album-view">@lang('forms.default_album_view_label')</label>
|
|
|
|
<select class="form-control" name="default_view">
|
|
|
|
@foreach ($allowed_views as $view)
|
|
|
|
<option value="{{ $view }}"{{ $view == old('default_view') ? ' selected="selected"' : '' }}>{{ $view }}</option>
|
|
|
|
@endforeach
|
|
|
|
</select>
|
|
|
|
</div>
|
2016-10-05 14:49:44 +01:00
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6 push-sm-6">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">@lang('admin.save_changes_heading')</div>
|
|
|
|
<div class="card-block">
|
|
|
|
<p>@lang('admin.save_changes_intro')</p>
|
|
|
|
<div class="text-right">
|
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-fw fa-floppy-o"></i> @lang('forms.save_action')</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-05 14:49:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
<div class="col-sm-6 pull-sm-6">
|
|
|
|
<div class="card card-outline-danger">
|
|
|
|
<div class="card-header card-danger">@lang('admin.danger_zone_heading')</div>
|
|
|
|
<div class="card-block">
|
|
|
|
<p class="text-danger">@lang('admin.danger_zone_intro')</p>
|
|
|
|
<div>
|
|
|
|
<a href="{{ route('albums.delete', ['id' => $album->id]) }}" class="btn btn-danger">@lang('forms.delete_action')</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-10-05 14:49:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-03-27 14:04:09 +01:00
|
|
|
</form>
|
2016-09-02 21:27:50 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-09-01 16:37:49 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-09-06 15:07:13 +01:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript">
|
2016-09-22 07:34:18 +01:00
|
|
|
var language = [];
|
2016-10-05 05:02:47 +01:00
|
|
|
language.action_cancel = '{!! addslashes(trans('forms.cancel_action')) !!}';
|
|
|
|
language.action_continue = '{!! addslashes(trans('forms.continue_action')) !!}';
|
|
|
|
language.action_delete = '{!! addslashes(trans('forms.delete_action')) !!}';
|
|
|
|
language.change_album_message = '{!! addslashes(trans('admin.change_album_message')) !!}';
|
|
|
|
language.change_album_title = '{!! addslashes(trans('admin.change_album_title')) !!}';
|
|
|
|
language.delete_bulk_confirm_message = '{!! addslashes(trans('admin.delete_bulk_photos_message')) !!}';
|
|
|
|
language.delete_bulk_confirm_title = '{!! addslashes(trans('admin.delete_bulk_photos_title')) !!}';
|
|
|
|
language.delete_confirm_message = '{!! addslashes(trans('admin.delete_photo_message')) !!}';
|
|
|
|
language.delete_confirm_title = '{!! addslashes(trans('admin.delete_photo_title')) !!}';
|
2017-03-27 14:04:09 +01:00
|
|
|
language.not_an_image_file = '{!! addslashes(trans('admin.upload_file_not_image_messages')) !!}';
|
2016-10-30 19:10:20 +00:00
|
|
|
language.select_all_choice_all_action = '{!! addslashes(trans('admin.select_all_choice.all_action')) !!}';
|
|
|
|
language.select_all_choice_message = '{!! addslashes(trans('admin.select_all_choice.message')) !!}';
|
|
|
|
language.select_all_choice_title = '{!! addslashes(trans('admin.select_all_choice.title')) !!}';
|
|
|
|
language.select_all_choice_visible_action = '{!! addslashes(trans('admin.select_all_choice.visible_action')) !!}';
|
2016-09-22 07:34:18 +01:00
|
|
|
language.image_failed = '{!! addslashes(trans('admin.upload_file_status_failed')) !!}';
|
|
|
|
language.image_uploaded = '{!! addslashes(trans('admin.upload_file_status_success')) !!}';
|
|
|
|
language.upload_status = '{!! addslashes(trans('admin.upload_file_status_progress')) !!}';
|
|
|
|
|
|
|
|
var urls = [];
|
2016-10-28 05:30:57 +01:00
|
|
|
urls.analyse = '{{ route('albums.analyse', ['id' => $album->id, 'queue_token' => $queue_token]) }}';
|
2016-10-05 05:02:47 +01:00
|
|
|
urls.delete_photo = '{{ route('photos.destroy', ['id' => 0]) }}';
|
2016-10-05 05:35:14 +01:00
|
|
|
urls.flip_photo = '{{ route('photos.flip', ['id' => 0, 'horizontal' => -1, 'vertical' => -2]) }}';
|
2016-10-05 05:02:47 +01:00
|
|
|
urls.move_photo = '{{ route('photos.move', ['photoId' => 0]) }}';
|
2016-10-05 05:35:14 +01:00
|
|
|
urls.regenerate_thumbnails = '{{ route('photos.regenerateThumbnails', ['photoId' => 0]) }}';
|
|
|
|
urls.rotate_photo = '{{ route('photos.rotate', ['id' => 0, 'angle' => 1]) }}';
|
2016-09-22 07:34:18 +01:00
|
|
|
|
2016-10-28 05:30:57 +01:00
|
|
|
var viewModel = new UploadPhotosViewModel('{{ $album->id }}', '{{ $queue_token }}', language, urls);
|
2017-04-10 17:29:45 +01:00
|
|
|
var editViewModel = new EditPhotosViewModel('{{ $album->id }}', language, urls);
|
2016-09-11 09:04:07 +01:00
|
|
|
|
2016-10-30 19:10:20 +00:00
|
|
|
@foreach ($photos as $photo)
|
2017-04-10 17:29:45 +01:00
|
|
|
editViewModel.data.photoIDsAvailable.push({{ $photo->id }});
|
2016-10-30 19:10:20 +00:00
|
|
|
@endforeach
|
|
|
|
|
2016-10-05 05:02:47 +01:00
|
|
|
// Populate the list of albums in the view model
|
|
|
|
@foreach ($albums as $album)
|
2017-04-10 17:29:45 +01:00
|
|
|
editViewModel.data.albums.push({
|
2016-10-05 05:02:47 +01:00
|
|
|
'id': '{{ $album->id }}',
|
|
|
|
'name': '{!! addslashes($album->name) !!}'
|
2016-09-09 09:45:11 +01:00
|
|
|
});
|
2017-04-10 17:29:45 +01:00
|
|
|
@endforeach
|
2016-09-09 09:45:11 +01:00
|
|
|
|
2016-09-06 15:07:13 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#upload-button').click(function() {
|
|
|
|
$('.nav-tabs a[href="#upload-tab"]').tab('show');
|
|
|
|
});
|
2016-09-08 23:22:29 +01:00
|
|
|
|
2016-09-09 09:45:11 +01:00
|
|
|
{{-- Photo editing tasks - the buttons beneath the photos in partials/single_photo_admin --}}
|
2017-03-27 14:04:09 +01:00
|
|
|
/*$('a.change-album').click(editViewModel.changeAlbum);
|
2016-10-05 05:02:47 +01:00
|
|
|
$('a.delete-photo').click(editViewModel.delete);
|
2016-10-05 05:35:14 +01:00
|
|
|
$('a.flip-photo-both').click(editViewModel.flipBoth);
|
|
|
|
$('a.flip-photo-horizontal').click(editViewModel.flipHorizontal);
|
|
|
|
$('a.flip-photo-vertical').click(editViewModel.flipVertical);
|
|
|
|
$('a.regenerate-thumbnails').click(editViewModel.regenerateThumbnails);
|
|
|
|
$('a.rotate-photo-left').click(editViewModel.rotateLeft);
|
2017-03-27 14:04:09 +01:00
|
|
|
$('a.rotate-photo-right').click(editViewModel.rotateRight);*/
|
2016-09-11 09:04:07 +01:00
|
|
|
|
|
|
|
{{-- Photo uploads using AJAX --}}
|
|
|
|
if (window.FormData)
|
|
|
|
{
|
2016-09-24 08:17:51 +01:00
|
|
|
$('#bulk-upload-form').submit(function(event) {
|
|
|
|
// Set the in progress flag - no need to unset it as this is a synchronous process so the browser
|
|
|
|
// will reload the page in some way after completion
|
2016-10-30 18:36:34 +00:00
|
|
|
if (!viewModel.isBulkUploadInProgress())
|
|
|
|
{
|
|
|
|
viewModel.isBulkUploadInProgress(true);
|
|
|
|
|
|
|
|
// Wait a minute to give KnockoutJS chance to update the UI
|
|
|
|
window.setTimeout(function() {
|
|
|
|
$('#bulk-upload-form').submit();
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Already set the flag, let the upload commence
|
2016-09-24 08:17:51 +01:00
|
|
|
return true;
|
|
|
|
});
|
2016-09-11 09:04:07 +01:00
|
|
|
}
|
2016-09-22 07:34:18 +01:00
|
|
|
|
2017-02-17 08:57:05 +00:00
|
|
|
{{-- Select All/None links on the permissions tab --}}
|
|
|
|
$('a.select-all').click(function() {
|
|
|
|
$('input:checkbox', $(this).closest('.panel-body')).prop('checked', true);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$('a.select-none').click(function() {
|
|
|
|
$('input:checkbox', $(this).closest('.panel-body')).prop('checked', false);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2017-03-21 21:48:55 +00:00
|
|
|
{{-- Type-ahead support for users textbox on the permissions tab --}}
|
2017-03-27 14:04:09 +01:00
|
|
|
/*var userDataSource = new Bloodhound({
|
2017-03-21 21:48:55 +00:00
|
|
|
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
|
|
|
|
queryTokenizer: Bloodhound.tokenizers.whitespace,
|
|
|
|
//prefetch: '../data/films/post_1960.json',
|
|
|
|
remote: {
|
|
|
|
url: '{{ route('users.searchJson') }}?q=%QUERY',
|
|
|
|
wildcard: '%QUERY'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#user-search-textbox').typeahead(null, {
|
|
|
|
name: 'user-search',
|
|
|
|
display: 'name',
|
|
|
|
source: userDataSource
|
|
|
|
});
|
|
|
|
$('#user-search-textbox').bind('typeahead:select', function(ev, suggestion) {
|
|
|
|
$('#user-id-field').val(suggestion.id);
|
2017-03-27 14:04:09 +01:00
|
|
|
});*/
|
2017-03-21 21:48:55 +00:00
|
|
|
|
2016-10-05 05:02:47 +01:00
|
|
|
// Bind the view models to the relevant tab
|
2017-04-10 17:29:45 +01:00
|
|
|
var appEdit = new Vue(editViewModel);
|
|
|
|
|
2017-03-27 14:04:09 +01:00
|
|
|
var appUpload = new Vue(viewModel);
|
2017-03-31 22:05:57 +01:00
|
|
|
appUpload.$watch('isUploadInProgress', function(value) {
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
$('#upload-progress-modal').modal('show');
|
|
|
|
}
|
2017-04-08 09:41:41 +01:00
|
|
|
else if (this.statusMessages.length === 0)
|
2017-03-31 22:05:57 +01:00
|
|
|
{
|
|
|
|
$('#upload-progress-modal').modal('hide');
|
|
|
|
}
|
|
|
|
});
|
2016-09-06 15:07:13 +01:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
@endpush
|