Removing static views in favor of vuejs components

parent fe1b40a8
@extends('layouts.master')
@section('content-header')
<h1>
{{ trans('media::media.title.edit media') }} <small>{{ $file->filename }}</small>
</h1>
<ol class="breadcrumb">
<li><a href="{{ route('dashboard.index') }}"><i class="fa fa-dashboard"></i> {{ trans('core::core.breadcrumb.home') }}</a></li>
<li><a href="{{ route('admin.media.media.index') }}">{{ trans('media::media.title.media') }}</a></li>
<li class="active">{{ trans('media::media.title.edit media') }}</li>
</ol>
@stop
@section('content')
{!! Form::open(['route' => ['admin.media.media.update', $file->id], 'method' => 'put']) !!}
<div class="row">
<div class="col-md-8">
<div class="nav-tabs-custom">
@include('partials.form-tab-headers')
<div class="tab-content">
<?php $i = 0; ?>
<?php foreach (LaravelLocalization::getSupportedLocales() as $locale => $language): ?>
<?php ++$i; ?>
<div class="tab-pane {{ App::getLocale() == $locale ? 'active' : '' }}" id="tab_{{ $i }}">
@include('media::admin.partials.edit-fields', ['lang' => $locale])
</div>
<?php endforeach; ?>
<hr>
@tags('asgardcms/media', $file)
<div class="box-footer">
<button type="submit" class="btn btn-primary btn-flat">{{ trans('core::core.button.update') }}</button>
<a class="btn btn-danger pull-right btn-flat" href="{{ route('admin.media.media.index')}}"><i class="fa fa-times"></i> {{ trans('core::core.button.cancel') }}</a>
</div>
</div>
</div> {{-- end nav-tabs-custom --}}
</div>
<div class="col-md-4">
<?php if ($file->isImage()): ?>
<img src="{{ $file->path }}" alt="" style="width: 100%;"/>
<?php else: ?>
<i class="fa fa-file" style="font-size: 50px;"></i>
<?php endif; ?>
</div>
</div>
<?php if ($file->isImage()): ?>
<div class="row">
<div class="col-md-12">
<h3>Thumbnails</h3>
<ul class="list-unstyled">
<?php foreach ($thumbnails as $thumbnail): ?>
<li style="float:left; margin-right: 10px">
<img src="{{ Imagy::getThumbnail($file->path, $thumbnail->name()) }}" alt=""/>
<p class="text-muted" style="text-align: center">{{ $thumbnail->name() }} ({{ $thumbnail->size() }})</p>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif; ?>
{!! Form::close() !!}
@stop
......@@ -76,13 +19,4 @@
@stop
@push('js-stack')
<script>
$( document ).ready(function() {
$(document).keypressAction({
actions: [
{ key: 'b', route: "<?= route('admin.media.media.index') ?>" }
]
});
});
</script>
@endpush
@extends('layouts.master')
@section('content-header')
<h1>
{{ trans('media::media.title.media') }}
</h1>
<ol class="breadcrumb">
<li><a href="{{ route('dashboard.index') }}"><i class="fa fa-dashboard"></i> {{ trans('core::core.breadcrumb.home') }}</a></li>
<li><i class="fa fa-camera"></i> {{ trans('media::media.breadcrumb.media') }}</li>
</ol>
@stop
@push('css-stack')
<link href="{!! Module::asset('media:css/dropzone.css') !!}" rel="stylesheet" type="text/css" />
<style>
.dropzone {
border: 1px dashed #CCC;
min-height: 227px;
margin-bottom: 20px;
}
</style>
@endpush
@section('content')
<div class="row">
<div class="col-md-12">
<form method="POST" class="dropzone">
{!! Form::token() !!}
</form>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<div class="box-body">
<table class="data-table table table-bordered table-hover jsFileList">
<thead>
<tr>
<th>{{ trans('core::core.table.thumbnail') }}</th>
<th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('core::core.table.actions') }}</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<th>{{ trans('core::core.table.thumbnail') }}</th>
<th>{{ trans('media::media.table.filename') }}</th>
<th>{{ trans('core::core.table.created at') }}</th>
<th>{{ trans('core::core.table.actions') }}</th>
</tr>
</tfoot>
</table>
<!-- /.box-body -->
</div>
</div>
</div>
</div>
<media-manager></media-manager>
@include('core::partials.delete-modal')
@stop
@push('js-stack')
<script src="{!! Module::asset('media:js/dropzone.js') !!}"></script>
<?php $config = config('asgard.media.config'); ?>
<script>
var maxFilesize = '<?php echo $config['max-file-size'] ?>',
acceptedFiles = '<?php echo $config['allowed-types'] ?>';
</script>
<script src="{!! Module::asset('media:js/init-dropzone.js') !!}"></script>
<?php $locale = App::getLocale(); ?>
<script type="text/javascript">
$(function () {
$('.data-table').dataTable({
"processing": true,
"serverSide": true,
"ajax": '{{ route('api.media.all') }}',
"autoWidth": true,
"order": [[ 2, "desc" ]],
"language": {
"url": '<?php echo Module::asset("core:js/vendor/datatables/{$locale}.json") ?>'
},
"columns": [
{
data: 'thumbnail',
orderable: false,
searchable: false
},
{
data: 'filename',
render: function (data, type, full) {
return '<a href="' + route('admin.media.media.edit', {media: full.id}) + '">' + data + '</a>';
}
},
{
data: "created_at",
render: function (data, type, full) {
return '<a href="' + route('admin.media.media.edit', {media: full.id}) + '">' + data + '</a>';
}
},
{
data: null,
orderable: false,
searchable: false,
render: function (data, type, full) {
return '<a href="' + route('admin.media.media.edit', {media: full.id}) + '" class="btn btn-default btn-flat">' +
'<i class="fa fa-pencil"></i></a>' +
'<button class="btn btn-danger btn-flat" data-toggle="modal" data-target="#modal-delete-confirmation" data-action-target="' + route('admin.media.media.destroy', {media: full.id}) + '"><i class="fa fa-trash"></i></button>';
}
}
],
});
});
</script>
@endpush
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment