|
1 |
| - <meta charset="utf-8"> |
2 |
| - <title>File Manager</title> |
| 1 | +<meta charset="utf-8"> |
| 2 | +<title>File Manager</title> |
| 3 | +{{-- elFinder CSS (REQUIRED) --}} |
| 4 | +@bassetArchive('https://github.com/Studio-42/elFinder/archive/refs/tags/2.1.61.tar.gz', 'elfinder-2.1.61') |
| 5 | +@basset('elfinder-2.1.61/elFinder-2.1.61/css/elfinder.min.css') |
| 6 | +@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme/Material/css/theme.min.css') |
3 | 7 |
|
4 |
| - {{-- elFinder CSS (REQUIRED) --}} |
5 |
| - @bassetArchive('https://github.com/Studio-42/elFinder/archive/refs/tags/2.1.61.tar.gz', 'elfinder-2.1.61') |
6 |
| - @basset('elfinder-2.1.61/elFinder-2.1.61/css/elfinder.min.css') |
| 8 | +@bassetBlock('elfinderThemeSwitcherScript.js') |
| 9 | +<script type="text/javascript"> |
| 10 | +document.addEventListener('DOMContentLoaded', function() { |
| 11 | + function getElfinderStyleSheet(main = true) { |
| 12 | + const regex = main ? /RobiNN1\/elFinder-Material-Theme\/Material\/css\/theme\.min\.css/ : /RobiNN1\/elFinder-Material-Theme\/Material\/css\/theme-gray\.min\.css/; |
| 13 | + const linkElements = document.querySelectorAll('link[rel="stylesheet"]'); |
| 14 | + // Find the main elfinder stylesheet |
| 15 | + let selectedLinkElement; |
| 16 | + for (const linkElement of linkElements) { |
| 17 | + if (regex.test(linkElement.href)) { |
| 18 | + selectedLinkElement = linkElement; |
| 19 | + break; |
| 20 | + } |
| 21 | + } |
| 22 | + return selectedLinkElement; |
| 23 | + } |
7 | 24 |
|
8 |
| - {{-- elFinder Backpack Theme --}} |
9 |
| - @basset(base_path('vendor/backpack/filemanager/resources/assets/css/elfinder.backpack.theme.css')) |
| 25 | + function addElfinderLightStylesheet() { |
| 26 | + let themeLightAsset = `{{ Basset::basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme/Material/css/theme-gray.min.css') }}`; |
| 27 | + const match = themeLightAsset.match(/<link\s+href="([^"]+)"/i); |
| 28 | + if (match && match.length > 1) { |
| 29 | + let mainStyleSheet = getElfinderStyleSheet(); |
| 30 | + let lightStyleSheet = getElfinderStyleSheet(false); |
| 31 | + // if found append the light mode css to the main theme stylesheet |
| 32 | + if (mainStyleSheet && ! lightStyleSheet) { |
| 33 | + let themeLight = document.createElement('link'); |
| 34 | + themeLight.href = match[1]; |
| 35 | + themeLight.rel = 'stylesheet'; |
| 36 | + themeLight.type = 'text/css'; |
| 37 | + mainStyleSheet.insertAdjacentElement('afterend', themeLight); |
| 38 | + } |
| 39 | + } |
| 40 | + } |
| 41 | +
|
| 42 | + let colorMode = window.parent.colorMode?.result ?? window.colorMode?.result ?? false; |
| 43 | + |
| 44 | + if(colorMode !== 'dark') { |
| 45 | + addElfinderLightStylesheet(); |
| 46 | + } |
| 47 | +
|
| 48 | + // register a color mode change event so that we remove |
| 49 | + // the light stylesheet when the color mode change |
| 50 | + if(colorMode) { |
| 51 | + let colorModeClass = window.parent.colorMode ?? window.colorMode; |
| 52 | + colorModeClass.onChange(function(scheme) { |
| 53 | + let styleSheetType = scheme === 'dark' ? false : true; |
| 54 | + let selectedLinkElement = getElfinderStyleSheet(styleSheetType); |
| 55 | +
|
| 56 | + if (! selectedLinkElement) { |
| 57 | + return true; |
| 58 | + } |
| 59 | + // in case we switched to dark mode, remove the ligth theme css |
| 60 | + if(scheme === 'dark') { |
| 61 | + selectedLinkElement.parentNode.removeChild(selectedLinkElement); |
| 62 | + return true; |
| 63 | + } |
| 64 | + addElfinderLightStylesheet() |
| 65 | + }); |
| 66 | + } |
| 67 | +
|
| 68 | + // we dont want to style the body when elfinder is loaded as a component in a backpack view |
| 69 | + // we pass true when loading elfinder inside an iframe to style the iframe body. |
| 70 | + @if($styleBodyElement ?? false) |
| 71 | + // use the topbar and footbar darker color as the background to ease transitions |
| 72 | + document.getElementsByTagName('body')[0].style.background = '#061325'; |
| 73 | + document.getElementsByTagName('body')[0].style.opacity = 1; |
| 74 | + @endif |
| 75 | +}); |
| 76 | +</script> |
| 77 | +@endBassetBlock |
0 commit comments