2022-05-18 21:08:58 +02:00
@ extends ( 'layouts.sidebar' )
@ section ( 'content' )
2023-04-26 15:44:39 +02:00
< div class = " conatiner-fluid content-inner mt-n5 py-0 " >
< div class = " row " >
2023-03-07 19:43:05 +01:00
2023-04-26 15:44:39 +02:00
< div class = " col-lg-12 " >
< div class = " card rounded " >
< div class = " card-body " >
< div class = " row " >
< div class = " col-sm-12 " >
2023-05-08 18:18:23 +02:00
2023-04-26 15:44:39 +02:00
@ foreach ( $pages as $page )
< section class = 'text-gray-400' >
< h3 class = " mb-4 card-header " >< i class = " bi bi-brush " > Select a theme </ i ></ h3 >
< div >
2023-05-08 18:18:23 +02:00
< button type = " button " class = " btn btn-primary mb-5 " data - bs - toggle = " modal " data - bs - target = " #exampleModal " >
Select theme
</ button >
2023-04-26 15:44:39 +02:00
< section class = " text-gray-400 " ></ section >
< div >
< div style = " max-width:1000px " class = " col-md-12 " >
< div class = " card rounded shadow-lg bg-light aos-init aos-animate " data - aos = " fade-up " data - aos - delay = " 800 " >
< div class = " flex-wrap card-header d-flex justify-content-between align-items-center bg-light " >
< div class = " header-title " >
< h4 class = " card-title " > Preview </ h4 >
</ div >
</ div >
< div class = " card-body " >
@ if ( env ( 'USE_THEME_PREVIEW_IFRAME' ) === false or $page -> littlelink_name == '' )
< center >< img style = " width:95%;max-width:700px;argin-left:1rem!important; " src = " @if(file_exists(base_path() . '/themes/' . $page->theme . '/preview.png')) { { url('/themes/' . $page->theme . '/preview.png')}}@elseif( $page->theme === 'default' or empty( $page->theme )) { { url('/assets/linkstack/images/themes/default.png')}}@else { { url('/assets/linkstack/images/themes/no-preview.png')}}@endif " ></ img ></ center >
@ else
< iframe frameborder = " 0 " allowtransparency = " true " id = " frPreview " style = " background: #FFFFFF;height:400px; " class = 'w-100' src = " { { url('') }}/@<?= Auth::user()->littlelink_name ?> " > Your browser isn ' t compatible </ iframe >
@ endif
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
</ div >
2022-11-08 16:11:59 +01:00
</ div >
2023-04-26 15:44:39 +02:00
</ div >
2022-11-08 16:11:59 +01:00
</ div >
2023-04-26 15:44:39 +02:00
< div class = " col-lg-12 " >
< div class = " card rounded " >
< div class = " card-body " >
< div class = " row " >
< div class = " col-sm-12 " >
@ if ( env ( 'ALLOW_CUSTOM_BACKGROUNDS' ) == true )
< form action = " { { route('themeBackground') }} " enctype = " multipart/form-data " method = " post " >
@ csrf
< h3 class = " mb-4 card-header " > Custom background </ h3 >
< div style = " display: none; " class = " form-group col-lg-8 " >
< select class = " form-control " name = " theme " >
< option > {{ $page -> theme }} </ option >
</ select >
< br >
</ div >
< div class = " form-group col-lg-8 " >
< figure style = " max-width:1000px;max-height:562.5px; " class = " figure " >
@ if ( ! file_exists ( base_path ( 'assets/img/background-img/' . findBackground ( Auth :: user () -> id )))) < p >< i > No image selected </ i ></ p >@ endif
< img class = " bd-placeholder-img figure-img img-fluid rounded " src = " @if(file_exists(base_path('assets/img/background-img/'.findBackground(Auth::user()->id)))) { { url('assets//img/background-img/'.findBackground(Auth::user()->id))}}@else { { url('/assets/linkstack/images/themes/no-preview.png')}}@endif " >< br >
@ if ( file_exists ( base_path ( 'assets/img/background-img/' . findBackground ( Auth :: user () -> id )))) < button class = " mt-3 ml-3 btn btn-primary " style = " background-color:tomato!important;border-color:tomato!important;transform: scale(.9); " title = " Delete background image " >< a href = " { { url('/studio/rem-background') }} " style = " color:#FFFFFF; " >< i class = " bi bi-trash-fill " ></ i > Remove background </ a ></ button >< br >@ endif
{{ -- < figcaption class = " figure-caption " > A caption for the above image .</ figcaption > -- }}
</ figure >
< br >
< br >< br >
< div class = " mb-3 " >
< input type = " file " accept = " image/jpeg,image/jpg,image/png " class = " form-control form-control-lg " name = " image " >< br >
</ div >
</ div >
< button type = " submit " class = " btn btn-primary " > Apply </ button >
</ form >
@ endif
</ div >
</ div >
</ div >
2022-05-18 21:08:58 +02:00
</ div >
2023-04-26 15:44:39 +02:00
</ div >
@ if ( auth () -> user () -> role == 'admin' )
< div class = " col-lg-12 " >
< div class = " card rounded " >
< div class = " card-body " >
< div class = " row " >
< div class = " col-sm-12 " >
< h3 class = " mb-4 card-header " > Manage themes </ h3 >
@ if ( env ( 'ENABLE_THEME_UPDATER' ) == 'true' )
< div id = " ajax-container " >
< br >< br >< br >
< div class = " accordion " >
< div class = " accordion-item " >
< h2 class = " accordion-header " id = " details-header " >
< button class = " accordion-button collapsed disabled " type = " button " aria - expanded = " false " aria - controls = " details-collapse " >
< div style = " max-height:20px;max-width:20px; " class = " spinner-border text-primary " role = " status " >
< span class = " visually-hidden " > Loading ...</ span >
</ div >
</ button >
</ h2 >
< div id = " details-collapse " class = " accordion-collapse collapse " aria - labelledby = " details-header " >
< div class = " accordion-body " ></ div >
</ div >
</ div >
</ div >
</ div >
< div id = " my-lazy-element " ></ div >
@ endif
< br >< br >< br >
< form action = " { { route('editTheme') }} " enctype = " multipart/form-data " method = " post " >
@ csrf
{{ -- < h3 > Upload themes </ h3 > -- }}
< div style = " display: none; " class = " form-group col-lg-8 " >
< select class = " form-control " name = " theme " >
< option > {{ $page -> theme }} </ option >
</ select >
< br >
</ div >
< div class = " mb-3 " >
< label > Upload theme </ label >
< input type = " file " accept = " .zip " name = " zip " class = " form-control form-control-lg " >
</ div >< br >< br >
< div class = " d-flex flex-column flex-md-row align-items-md-center " >
< button type = " submit " class = " btn btn-primary me-md-3 mb-3 mb-md-0 " > Upload theme </ button >
< button class = " btn btn-danger me-md-3 mb-3 mb-md-0 delete-themes " title = " Delete themes " >< a href = " { { url('/panel/theme') }} " class = " text-white " > Delete themes </ a ></ button >
2023-04-27 15:58:45 +02:00
< button class = " btn btn-info download-themes " title = " Download more themes " >< a href = " https://linkstack.org/themes/ " target = " _blank " class = " text-white " > Download themes </ a ></ button >
2023-04-26 15:44:39 +02:00
</ div >
</ form >
</ details >
</ div >
</ div >
</ div >
</ div >
2023-03-07 20:30:41 +01:00
</ div >
2023-04-26 15:44:39 +02:00
</ div >
@ endif
2022-09-14 13:11:38 +02:00
2022-11-08 16:11:59 +01:00
@ endforeach
2022-11-13 00:08:00 +01:00
2023-04-26 15:44:39 +02:00
< script src = " { { asset('assets/external-dependencies/jquery-1.12.4.min.js') }} " ></ script >
2023-03-07 19:43:05 +01:00
</ section >
< script >
2023-04-26 15:44:39 +02:00
$ ( window ) . on ( 'load' , function () {
2023-03-07 19:43:05 +01:00
var placeholder = $ ( '#ajax-container' );
var lazyElement = $ ( '#my-lazy-element' );
$ . ajax ({
url : '../theme-updater' ,
success : function ( response ) {
placeholder . replaceWith ( lazyElement );
lazyElement . html ( response );
}
});
});
</ script >
2022-11-13 00:08:00 +01:00
< script type = " text/javascript " > $ ( " iframe " ) . load ( function () { $ ( " iframe " ) . contents () . find ( " a " ) . each ( function ( index ) { $ ( this ) . on ( " click " , function ( event ) { event . preventDefault (); event . stopPropagation (); }); }); }); </ script >
2023-04-26 15:44:39 +02:00
2023-05-08 18:18:23 +02:00
@ push ( 'sidebar-scripts' )
< div class = " modal fade " id = " exampleModal " tabindex = " -1 " aria - labelledby = " exampleModalLabel " aria - hidden = " true " >
< div class = " modal-dialog modal-fullscreen " >
< div class = " modal-content " >
< div class = " modal-header " >
< h5 class = " modal-title " id = " exampleModalLabel " > Select a theme </ h5 >
< button type = " button " class = " btn-close " data - bs - dismiss = " modal " aria - label = " Close " ></ button >
</ div >
< div class = " modal-body " >
< form action = " { { route('editTheme') }} " enctype = " multipart/form-data " method = " post " >
@ csrf
< select id = " theme-select " style = " display:none; " name = " theme " data - base - url = " { { url('') }}/@<?= Auth::user()->littlelink_name ?> " >< option value = " default " selected ></ option ></ select >
< div class = " row " >
2023-05-08 20:19:56 +02:00
< div class = " col-lg-3 " >
< div class = " card shadow-lg @if( $page->theme == " " or $page->theme == " default " ) bg-primary @else bg-soft-primary @endif " >
< div class = " card-body pb-0 " >
< a style = " cursor:pointer; " onclick = " setTheme('default') " >
< div class = " d-flex justify-content-between " >
< div >
< img draggable = " false " class = " bd-placeholder-img bd-placeholder-img-lg img-fluid " src = " { { url('assets/linkstack/images/themes/default.png')}} " >
</ div >
</ div >
< div class = " text-center " >
< h2 class = " m-3 @if( $page->theme == " " or $page->theme == " default " ) text-white @else text-gray @endif " " >Default Theme</h2>
< div >
</ div >
</ div >
</ a >
</ div >
</ div >
</ div >
2023-05-08 18:18:23 +02:00
< ? php
if ( $handle = opendir ( 'themes' )) {
while ( false !== ( $entry = readdir ( $handle ))) {
if ( $entry != " . " && $entry != " .. " ) {
if ( file_exists ( base_path ( 'themes' ) . '/' . $entry . '/readme.md' )){
$text = file_get_contents ( base_path ( 'themes' ) . '/' . $entry . '/readme.md' );
$pattern = '/Theme Name:.*/' ;
preg_match ( $pattern , $text , $matches , PREG_OFFSET_CAPTURE );
if ( sizeof ( $matches ) > 0 ) {
$themeName = substr ( $matches [ 0 ][ 0 ], 12 );
}
}
2023-05-08 20:19:56 +02:00
if ( isset ( $themeName )){
2023-05-08 18:18:23 +02:00
?>
< div class = " col-lg-3 " >
2023-05-08 20:19:56 +02:00
< div class = " card shadow-lg @if( $page->theme == $entry ) bg-primary @else bg-soft-primary @endif " >
< div class = " card-body pb-0 " >
2023-05-08 18:18:23 +02:00
< a style = " cursor:pointer; " onclick = " setTheme(' { { $entry } }') " >
< div class = " d-flex justify-content-between " >
< div >
2023-05-08 20:19:56 +02:00
< img draggable = " false " class = " bd-placeholder-img bd-placeholder-img-lg img-fluid " src = " { { url('themes/'. $entry .'/preview.png')}} " >
2023-05-08 18:18:23 +02:00
</ div >
</ div >
< div class = " text-center " >
2023-05-08 20:19:56 +02:00
< h2 class = " m-3 @if( $page->theme == $entry ) text-white @else text-gray @endif " > {{ $themeName }} </ h2 >
2023-05-08 18:18:23 +02:00
< div >
</ div >
</ div >
</ a >
</ div >
</ div >
</ div >
< ? php
}
}
}
}
?>
</ div >
</ form >
</ div >
< div class = " modal-footer " >
< button type = " button " class = " btn btn-secondary " data - bs - dismiss = " modal " > Close </ button >
</ div >
</ div >
</ div >
</ div >
< script >
function setTheme ( themeName ) {
const selectElement = document . getElementById ( 'theme-select' );
selectElement . querySelector ( 'option' ) . value = themeName ;
selectElement . form . submit ();
}
</ script >
@ endpush
2023-03-07 19:43:05 +01:00
@ endsection