Supercharged Local Directory File Browser

Makes file:/// directory ("Index of...") pages (and many server-generated index pages) actually useful. Adds sidebar and preview pane, keyboard navigation, audio and video player, markdown/plain text preview and editing, image and font previews and grid views, sorting, user-defined shortcuts, more.

As of 2019-02-16. See the latest version.

  1. // ==UserScript==
  2. // @name Supercharged Local Directory File Browser
  3. // @version 3.2.2
  4. // @description Makes file:/// directory ("Index of...") pages (and many server-generated index pages) actually useful. Adds sidebar and preview pane, keyboard navigation, audio and video player, markdown/plain text preview and editing, image and font previews and grid views, sorting, user-defined shortcuts, more.
  5. // @author Gaspar Schott (Michael Schrauzer) mshroud@gmail.com
  6. // @license GPL-3.0-or-later
  7. // @homepageURL https://openuserjs.org/scripts/gaspar_schot/Supercharged_Local_Directory_File_Browser
  8. // @contributionURL https://paypal.me/mschrauzer
  9. // @include file://*/
  10. // @include file://*/?*
  11. // @include *!localhost*/
  12.  
  13. // @require https://code.jquery.com/jquery-latest.min.js
  14. // @require https://cdnjs.cloudflare.com/ajax/libs/markdown-it/8.4.2/markdown-it.js
  15.  
  16.  
  17. // NOTE: By default, userscripts will not run on file:/// urls, so for this script to work, you will have to enable it in your browser extension settings.
  18. // E.G.: For Tampermonkey in Chrome, go to Chrome the extension page, click the details button on the Tampermonkey pane and check 'Allow access to file URLs'.
  19. // NOTE: Safari does not allow local directories to be browsed, so the script will not work on local directories, but it will work on remote directories (or on local directories through a local server).
  20. // NOTE: This script was developed in Vivaldi, running on Mac OS Mojave. It has been tested in several other Chrome and Gecko-based browsers.
  21. // It has been very minimally tested on Windows and not at all on other OSes or browsers. It should work, but please report any issues.
  22.  
  23. // @namespace https://greatest.deepsurf.us/users/16170
  24. // ==/UserScript==
  25.  
  26. (function() {
  27. 'use strict';
  28. var $ = jQuery;
  29.  
  30. // ***** USER SETTINGS ***** //
  31.  
  32. const $settings = {
  33.  
  34. // Paste your exported settings between the two lines below:
  35. //--------------------------------------------------------//
  36.  
  37. shortcuts: // N.B.: Directory links must end with "/", file links must end with another character.
  38. // You may add as many menus and links as you like; just copy the example below and edit as needed.
  39. // Local directory shortcuts must begin with "file:///"; external shortcuts must begin with the correct protocol ("http://" or "ftp://", etc.).
  40. // Hint: you can add query strings to your urls to override user settings on a site by site basis.
  41. // Note that because of same-origin security concerns, the browser will not allow you to navigate from an external webpage to a local directory.
  42. // (But see this page for possible workarounds: https://stackoverflow.com/questions/39007243/cannot-open-local-file-chrome-not-allowed-to-load-local-resource)
  43. [
  44. {
  45. "menu_title":"My Sample Menu",
  46. "links":
  47. [
  48. { "link_name":"My Directory Link 1", "link":"file:///Path/To/My/Directory/" },
  49. { "link_name":"My Directory Link 2", "link":"file:///Path/To/My/Directory_2/" },
  50. { "link_name":"My External Link", "link":"https://www.mywebpage.com/" },
  51. { "link_name":"My File Link", "link":"file:///Path/To/My/File.ext" },
  52. ]
  53. },
  54. {
  55. "menu_title":"My Second Sample Menu",
  56. "links":
  57. [
  58. { "link_name":"My Directory Link 1", "link":"file:///Path/To/My/Directory/" },
  59. { "link_name":"My Directory Link 2", "link":"file:///Path/To/My/Directory_2/" },
  60. { "link_name":"My External Link", "link":"https://www.mywebpage.com/" },
  61. { "link_name":"My File Link", "link":"file:///Path/To/My/File.ext" },
  62. ]
  63. },
  64. ],
  65.  
  66. UI_font: // Choose an installed font for the UI.
  67. 'lucidagrande, sans-serif',
  68. UI_font_size: // Choose a default UI font size; use any standard CSS units.
  69. '13px',
  70. alternate_background: // If true (default true), alternate sidebar row background color.
  71. true,
  72. ignore_files: // If true (default), ignored files (see "$row_settings" below, after Keybindings and Changelog) will be greyed-out (default) in the file list and will not be loaded in the content pane when selected;
  73. // If false, they will be treated as normal files, so if they are selected, the browser will attempt to download any file types it can't handle (which makes keyboard navigation inconvenient).
  74. true,
  75. hide_ignored_files: // If true, ignored files will be completely hidden from the file list;
  76. // If false (default), ignored files will appear greyed-out.
  77. false,
  78. hide_invisibles: // Un*x/Mac OS only: If true (default), files or directories beginning with a "." will be hidden.
  79. true,
  80. hide_details: // If true (default), hide file and directory details; if false, show them.
  81. true,
  82. default_sort: // Choose from: 'name', 'size', 'date', 'kind', 'ext', 'default'.
  83. // default = Chrome sorting: dirs on top, files alphabetical.
  84. 'default',
  85. dirs_on_top: // If true, directories will always be listed firs except when sorting by "name" (since otherwise sorting by "name" would equal "default").
  86. // If false (default), directories and files will be sorted together. (In practice, dirs will typically still be separated when sorting by size, kind, and extension.)
  87. false,
  88. apps_as_dirs: // Un*x/Mac OS only: if true, treat apps as directories; allows app contents to be browsed. This is the default behavior for Chrome.
  89. // If false (default), treat apps as ignored files.
  90. false,
  91. dark_theme: // If true (default: false), gives the content pane a dark background, and inverts html and text content.
  92. false,
  93. grid_image_size: // Default = 150
  94. 150,
  95. grid_font_size: // Default = 1
  96. 1,
  97. autoload_media: // If true (defautl: true), the first audio or video file found in a directory will be automatically selected and loaded for playback; also, cover art (if any, will be loaded in the preview pane).
  98. true,
  99. autoload_index_files: // If true (default: false), automatically select first "index.ext" file found in directory.
  100. false,
  101. use_custom_icons: // if true (default), use custom icons for dirs and files
  102. // if false, use browser/server default icons
  103. true,
  104. // TEXT EDITING SETTINGS
  105. preview_text: // If true (default), show rendered plain text and markdown file load;
  106. // if false, show editable source text on file load.
  107. // Note that split_view = true overrides this setting.
  108. true,
  109. split_view: // If true (default: false), show split view on plain text file load
  110. // if false, use default preview_text setting.
  111. false,
  112. sync_scroll: // Sync scrolling in split view.
  113. false
  114. //--------------------------------------------------------//
  115. // Paste your exported settings between the above two lines.
  116. }
  117.  
  118. // $ROW_TYPES:
  119. // DO NOT DELETE ANY EXISTING CATEGORIES!
  120. // Add file extensions for sorting and custom icon display to the existing categories.
  121. // You can also define your own new categories, but do not add an extension to more than one row_type category.
  122. // Do not add leading "." to the extensions.
  123. const $row_types = {
  124. // myCategory: ['ext1','ext2',],
  125. dir: ['/'],
  126. app: ['app/','app','exe','msi'],
  127. archive: ['zip','rar','cbr','7z','tar','gz','dmg','pkg','archive'],
  128. audio: ['mp3','m4a','aac','aif','aiff','ape','flac','ogg','wav'],
  129. font: ['otf','ttf','woff','woff2','afm','pfb','pfm','tfm'],
  130. graphics: ['indd','idml','indt','icml','ai','eps','pages','qxp','qxb','qxd','mif','sla','dtp','pmd','pub','fm','book','inx'],
  131. htm: ['htm','html','xhtm','xhtml'],
  132. image: ['jpg','jpeg','png','apng','gif','bmp','webp','svg','tif','tiff','psd','raw','dng','cr2','nef','arw'],
  133. markdown: ['md','markdown','mdown','mkdn','mkd','mdwn','mdtxt','mdtext'],
  134. office: ['doc','docx','epub','xls','xlsx','xlm','odt','odf','rtf'],
  135. pdf: ['pdf'],
  136. text: ['txt','log','nfo'],
  137. code: ['bak','bash','c','cnf','codes','conf','csh','cshrc','css','default','dist','example','gemspec','h','hd','ini','js','json','jsx','less','list','local','lock','login','logout','lua','old','php','pl','plist','pth','py','rb','rc','rdoc','sass','sh','strings','tcl','xml','yaml','yml'],
  138. video: ['mpeg','mov','m4v','webm','mp4'],
  139. };
  140.  
  141. // $ROW_SETTINGS: Ignore or Exclude files by extension
  142. const $row_settings = {
  143. ignore: // Files with these extensions will not be loaded if selected in the sidebar (prevents the browser from attempting to download the file).
  144. ['exe','doc','docx','rtf','xls','xlsx','odt','odp','csv','msi','dll','indd','idml','pages','numbers','tif','tiff','raw','dng','cr2','nef','arw','eps','psd','ai','afm','pfb','pfm','tfm','zip','pkg','swf','pls','ics','DS_Store','ds_store','ds_store','alias','dmg','gz','qxp','icon.jpg','thumbs.db','ape','srf','epub'],
  145. exclude: // Files with these exensions will not be inverted in dark mode
  146. ['htm','html','xhtm','xhtml'],
  147. };
  148.  
  149. // ***** END USER SETTINGS ***** //
  150.  
  151. // FEATURES INCLUDE
  152. // Resizable sidebar and file preview pane.
  153. // Keyboard navigation in sidebar.
  154. // Sort files in sidebar.
  155. // Preview all file types supported by browser (html, text, images, pdf, audio, video) plus fonts.
  156. // Preview and edit markdown and plain text files.
  157. // Audio and video playback, with shuffle, loop, skip ahead and behind; view other files in directory while playing audio.
  158. // Grid view for images and fonts.
  159. // Light and Dark theme.
  160. // Show/Hide file details.
  161. // User-definable bookmarks for directories.
  162. // User settings for various UI features.
  163.  
  164. // KEYBINDINGS (These don't work in all browsers):
  165.  
  166. // Arrow Up/Down: Select prev/next item. If audio is playing, and prev/next file is also audio, it will be selected but not loaded in the audio player; press return to load it.
  167. // Arrow Left/Right: Select prev/next row of the same kind as the current selection, except if current selection is a media file, select and begin playback of that item.
  168. // Cmd/Ctrl + Arrow Up: Go to parent directory
  169. // Opt/Alt + Arrow Left/Right: Skip audio ±10s
  170. // Shift + Opt/Alt + Arrow Left/Right: Skip audio ±30s
  171. // Space: Pause/Play media files
  172. // Return: Open selected directory, select file, or pause/play media.
  173. // Cmd/Ctrl + D: Toggle file details (size, date modified) in some index page types.
  174. // Cmd/Ctrl + G: Show or Reset Grid
  175. // Cmd/Ctrl + I: Toggle Invisibles
  176. // Cmd/Ctrl + Shift + O: Open selected item in new window/tab
  177. // Cmd/Ctrl + R: Reload grids and previewed content, reset scaled images/fonts, reset media files to beginning.
  178. // Cmd/Ctrl + W: Close previewed content (doesn't work in all browsers; use close button instead), or close window if no content is being previewed.
  179. // Cmd/Ctrl + Shift + </>: Scale preview items and grids.
  180.  
  181. // CHANGELOG:
  182.  
  183. //• 3.2.2 More bug fixes.
  184. //• FIXED: Source text was being interpreted as HTML.
  185. //• FIXED: Checkboxes added to markdown weren't "live."
  186. //• IMPROVED: Live preview update on input.
  187. //• IMPROVED: Nested blockquote styling.
  188.  
  189. //• 3.2.1
  190. //• FIXED: A bad bug with saving source text.
  191. //• ADDED: Made text split-view resizable.
  192. //• IMPROVED: Various UI tweaks for text editing.
  193.  
  194. //• 3.2.0
  195. //• NEW!: Preview, edit, and save Markdown and plain-text files. (Now how much would you pay? Or donate?)
  196. //• Basic Markdown syntax is rendered via markdownit.js (https://github.com/markdown-it/markdown-it).
  197. //• View editable source text or rendered HTML preview, or both in split pane.
  198. //• Live preview of source edits in split-pane view.
  199. //• Render Checkboxes/Checklists with [x] and [ ], with live updating of source text.
  200. //• Save edited source text or rendered HTML.
  201. //• More to come.
  202. //• Caveat: You must manually save your work if you want to keep it; autosave is not possible.
  203. //• Moreover, because of security concerns with local files, the editing iframe cannot communicate with the parent index page, or vice versa.
  204. //• * It is therefore entirely possible to navigate away from the page and LOSE YOUR WORK. *
  205. //• To help prevent loss of work, the script will attempt to warn you when the editing pane loses focus (if you have made any edits),
  206. //• e.g., when you click in the script sidebar or in the browser UI, or when the browser tab/window or the browser itself loses focus.
  207. //• But note that if the editing pane is already unfocused, the warning will not be issued.
  208. //• ADDED: New user settings: set default view for markdown/text files: source or preview, or split pane view. See user settings for details.
  209. //• IMPROVED: Plain text and code file type detection.
  210. //• CHANGED: Treat files without extensions as text (code) files. (Extension-less binary files will still initiate a download.)
  211. //• FIXED: Malformed URI error if file name included "%".
  212. //• FIXED: Some issues with image zoom.
  213. //• FIXED: An issue with content pane sizing.
  214. //• FIXED: An issue with parent directory navigation.
  215.  
  216. // ***** GENERAL SETUP ***** //
  217.  
  218. // ************************************ //
  219. // DON'T EDIT ANYTHING BELOW THIS LINE. //
  220. // ************************************ //
  221.  
  222. const $userAgent = navigator.userAgent;
  223.  
  224. // PATHS
  225. // Fix "%" error in file name; see https://stackoverflow.com/questions/7449588/why-does-decodeuricomponent-lock-up-my-browser
  226. function decodeURIComponentSafe(uri, mod) {
  227. var out = new String(), arr, i = 0, l, x;
  228. typeof mod === "undefined" ? mod = 0 : 0;
  229. arr = uri.split(/(%(?:d0|d1)%.{2})/);
  230. for (l = arr.length; i < l; i++) {
  231. try {
  232. x = decodeURIComponent(arr[i]);
  233. } catch (e) {
  234. x = mod ? arr[i].replace(/%(?!\d+)/g, '%25') : arr[i];
  235. }
  236. out += x;
  237. }
  238. return out;
  239. }
  240. var $href = decodeURIComponentSafe(window.location.href); // complete URL including query string: http://www.host.com/path/to/my_dir/?query_string
  241. var $location = decodeURIComponentSafe( [location.protocol, '//', location.host, location.pathname].join('') );
  242. var $location_arr = $location.split('/');
  243. var $current_dir_path = $location.replace(/\//g,'/<wbr>').replace(/_/g,'_<wbr>').replace(/—/g,'—<wbr>').replace(/\\/g,'/'); // URL w/o query string for display
  244. var $current_dir_name = $location.replace(/%20/g,' ').slice(0,-1);
  245. $current_dir_name = $current_dir_name.slice($current_dir_name.lastIndexOf('/') + 1); // Dir name without parents for display: "my_dir"
  246.  
  247. // QUERY PREFS
  248. var getQueryPrefs = function() { return new URLSearchParams( window.location.search ); };
  249. var $query_prefs = getQueryPrefs();
  250. var $UI_pref_width = $query_prefs.get('width') === null ? '25' : (Math.round(100*($query_prefs.get('width'))/window.innerWidth)).toString(); // number string
  251. var $UI_pref_theme = $query_prefs.get('dark_theme') === null ? $settings.dark_theme : JSON.parse( $query_prefs.get('dark_theme') ); // bool
  252. var $UI_pref_background = $query_prefs.get('alternate_background') === null ? $settings.alternate_background : JSON.parse( $query_prefs.get('alternate_background') ); // bool
  253. var $UI_pref_details = $query_prefs.get('hide_details') === null ? $settings.hide_details : JSON.parse( $query_prefs.get('hide_details') );
  254. var $UI_pref_sort = $query_prefs.get('sort') === null ? $settings.default_sort.toLowerCase() : $query_prefs.get('sort');
  255. var $UI_pref_file = $query_prefs.get('file') === null ? '' : $query_prefs.get('file');
  256. var $UI_pref_autoload_media = $query_prefs.get('autoload_media') == null ? $settings.autoload_media : JSON.parse( $query_prefs.get('autoload_media') );
  257. var $UI_pref_split_view = $settings.split_view;
  258. var $UI_pref_preview_text = $settings.preview_text;
  259. // var $UI_pref_invisibles = $query_prefs.get('hide_invisibles') == null ? $settings.hide_invisibles.toLowerCase() : $query_prefs.get('hide_invisibles');
  260. var $UI_pref_selected = $query_prefs.get('selected') === null ? '' : JSON.parse( $query_prefs.get('selected') );
  261. var $UI_pref_history = $query_prefs.get('history') === null ? '' : $query_prefs.get('history');
  262. var $UI_pref_history_arr;
  263. var $grid_image_size = $settings.grid_image_size ? $settings.grid_image_size : 150;
  264. var $grid_font_size = $settings.grid_font_size ? $settings.grid_font_size : 1;
  265. // set query key/value
  266.  
  267. function setQuery(key, value) {
  268. $query_prefs = getQueryPrefs();
  269. $query_prefs.set( key, value );
  270. updateQuery();
  271. }
  272. // toggle query key
  273. function toggleQuery(key) {
  274. var value;
  275. $query_prefs = getQueryPrefs();
  276. value = $query_prefs.has(key) ? JSON.parse( $query_prefs.get(key) ) : $settings[key];
  277. value === true ? $query_prefs.set( key, 'false' ) : $query_prefs.set( key, 'true' );
  278. updateQuery();
  279. }
  280. // update query string
  281. function updateQuery() {
  282. $query_prefs = decodeURIComponent($query_prefs);
  283. window.history.replaceState({}, document.title, window.location.pathname +'?'+ $query_prefs);
  284. }
  285.  
  286. // Styles for iFrame Directory Index pages
  287. const $fileName = window.location.pathname.slice(window.location.pathname.lastIndexOf('/') + 1);
  288. const $textFiles = $row_types.markdown.concat($row_types.text, $row_types.code);
  289.  
  290. if ( ( window.frameElement !== null || window.top !== window.self ) && window.location.href.endsWith('/') ) {
  291.  
  292. const $custom_iframe_styles = document.createElement("style");
  293. var $iframe_styles = '';
  294.  
  295. $iframe_styles += 'a.up' +
  296. '{ background:transparent; }';
  297. $iframe_styles += ':root, html, body' +
  298. '{ background-color:#BBB; }';
  299. $iframe_styles += 'body > table > thead, body > table > tbody > tr, body ul li' +
  300. '{ background:rgba(221,221,221,0.5); }';
  301. $iframe_styles += 'body > table > tbody > tr:nth-of-type(odd), body > ul > li:nth-of-type(odd)' +
  302. '{ background:rgba(221,221,221,1); }';
  303. $iframe_styles += 'body > table > tbody > tr:hover, body > ul > li:hover:not(:first-of-type)' +
  304. '{ background:#ABABAB; }';
  305.  
  306. $iframe_styles += ':root, html, body' +
  307. '{ border:0 !important; }';
  308. $iframe_styles += 'body > table' +
  309. '{ border-top:solid 1px #888888; }';
  310. $iframe_styles += 'body > ul > li:first-of-type' +
  311. '{ border-bottom:solid 1px #888888; }';
  312. $iframe_styles += 'html, body' +
  313. '{ border-radius:0; }';
  314. $iframe_styles += 'body > table' +
  315. '{ border-collapse:collapse; }';
  316. $iframe_styles += 'html, body' +
  317. '{ box-sizing:border-box; }';
  318.  
  319. $iframe_styles += '#parentDirLinkBox span' +
  320. '{ color:transparent; }';
  321. $iframe_styles += 'a:hover' +
  322. '{ color:#000000; }';
  323. $iframe_styles += 'a, #parentDirLinkBox span:before' +
  324. '{ color:#111111; }';
  325.  
  326. $iframe_styles += '#parentDirLinkBox span:before' +
  327. '{ content:"Parent Directory"; }';
  328.  
  329. $iframe_styles += '#UI_goUp a.up:before' +
  330. '{ display:none; }';
  331. $iframe_styles += 'a, li' +
  332. '{ display:block; }';
  333. $iframe_styles += '#UI_goUp, #UI_showHidden' +
  334. '{ display:inline-table; }';
  335.  
  336. $iframe_styles += 'body > table table a:before' +
  337. '{ float:left; }';
  338.  
  339. $iframe_styles += ':root, html, body, *' +
  340. '{ font-family:'+ $settings.UI_font +'; }';
  341. const $font_size_units = $settings.UI_font_size.replace(/\d*/,'');
  342. $iframe_styles += 'html, body' +
  343. '{ font-size:'+ parseFloat($settings.UI_font_size) * 0.875 + $font_size_units +'; }';
  344. $iframe_styles += 'body > div, body > table, thead, body p' +
  345. '{ font-size: 1em; }';
  346. $iframe_styles += 'body > ul > li:first-of-type, #parentDirLinkBox span:before, #UI_goUp a' +
  347. '{ font-weight:bold; }';
  348.  
  349. $iframe_styles += 'html' +
  350. '{ height:100%; }';
  351. $iframe_styles += 'body' +
  352. '{ height:auto; }';
  353. $iframe_styles += '#UI_goUp, #UI_showHidden, #UI_showHidden label' +
  354. '{ height:1.5em !important; }';
  355.  
  356. $iframe_styles += 'body > table > tbody > tr, body > ul > li' +
  357. '{ line-height:1.5; }';
  358. $iframe_styles += '#UI_goUp, #UI_showHidden' +
  359. '{ line-height:2; }';
  360.  
  361. $iframe_styles += 'body > ul' +
  362. '{ list-style:none; }';
  363.  
  364. $iframe_styles += 'html, body, body div, body > ul > li a, #UI_goUp, #UI_showHidden, #parentDirLink, #parentDirLinkBox' +
  365. '{ margin:0; }';
  366. $iframe_styles += 'body > div' +
  367. '{ margin:1em; }';
  368. $iframe_styles += 'body p' +
  369. '{ margin:1rem; }';
  370. $iframe_styles += 'body > ul > li' +
  371. '{ margin-bottom:0; }';
  372. $iframe_styles += '.up' +
  373. '{ margin-inline-start:0; }';
  374. $iframe_styles += '.dir::before, .file > img' + // firefox
  375. '{ margin-inline-end: 6px; }';
  376.  
  377. $iframe_styles += ':root, html, body, body > div, body > ul > li, .up' +
  378. '{ padding:0; }';
  379.  
  380. $iframe_styles += 'body > table > tbody > tr > td, body > table > thead > tr > th, body > ul > li a, #parentDirLinkBox, #UI_goUp, #UI_showHidden' +
  381. '{ padding-top:3px; }';
  382.  
  383. $iframe_styles += 'body > table > tbody > tr > td:first-of-type, body > table > thead > tr > th:first-of-type, body > ul > li a' +
  384. '{ padding-right:0; }';
  385. $iframe_styles += 'body > table th:last-of-type, body > table > tbody > tr > td:last-of-type, body > ul > li a, #parentDirLinkBox, #UI_showHidden' +
  386. '{ padding-right:1em; }';
  387.  
  388. $iframe_styles += '#parentDirLinkBox' +
  389. '{ padding-bottom:0; }';
  390. $iframe_styles += 'body > table > tbody > tr > td, body > table > thead > tr > th, body > ul > li a, #parentDirLinkBox, #UI_goUp, #UI_showHidden' +
  391. '{ padding-bottom:3px; }';
  392.  
  393. $iframe_styles += 'body > ul' +
  394. '{ padding-left:0; }';
  395. $iframe_styles += 'body > table > tbody > tr > td:first-of-type, body > table > thead > tr > th:first-of-type, body > ul > li a, #parentDirLinkBox, #UI_goUp' +
  396. '{ padding-left:1em; }';
  397.  
  398. $iframe_styles += 'th:not(:first-of-type)' +
  399. '{ text-align:right; }';
  400. $iframe_styles += 'th:first-of-type' +
  401. '{ text-align:left; }';
  402. $iframe_styles += 'a, a:hover, td:hover, li:hover' +
  403. '{ text-decoration:none !important; }';
  404. $iframe_styles += 'a.icon' +
  405. '{ text-indent:2px; }';
  406.  
  407. $iframe_styles += '#UI_goUp, #UI_showHidden' +
  408. '{ vertical-align:middle; }';
  409.  
  410. $iframe_styles += 'html, body, body > table' +
  411. '{ width:100%; }';
  412. $iframe_styles += 'thead th:first-of-type' +
  413. '{ width:50%; }';
  414. $iframe_styles += 'html, body' +
  415. '{ max-width:100%; }';
  416. $iframe_styles += 'html, body' +
  417. '{ min-width:100%; }';
  418. $iframe_styles += 'body table tr, body ul li, body > table > tbody > tr:hover' +
  419. '{ outline:0; }';
  420.  
  421. $('body').css({'font-family':$settings.UI_font});
  422. $('body > h1, address, body > hr').remove();
  423. $('body > table > tbody').find('hr').closest('tr').remove();
  424. $('body > table th:contains("Name")').css({'text-align':'left'});
  425. $('body > table th:contains("Size")').css({'text-align':'right'});
  426. // pre type
  427. if ( $('body > pre').length ) {
  428. let $list_items = $('body pre').html();
  429. let $parent_dir = $('body pre').find('a:contains("Parent")').first().attr('href');
  430. $list_items = '<table>' + $list_items.replace(/<a.+?>Parent Directory<\/a>/,'').replace(/^\s*<a.+?<\/a><hr>/g,'').replace(/<a /g,'<tr><td><a ').replace(/\r/g,'</td></tr>').replace(/\s{2,}/g,'</td><td>') + '</table>';
  431. $('body').empty().append($list_items).find('tr:first-of-type').remove();
  432. $('body').prepend('<div id="parentDirLinkBox"><a href="'+ $parent_dir +'">Parent Directory</a></div>');
  433.  
  434. }
  435.  
  436. $custom_iframe_styles.appendChild(document.createTextNode(""));
  437. $custom_iframe_styles.append($iframe_styles);
  438. document.head.appendChild($custom_iframe_styles);
  439.  
  440. return;
  441. // MARKDOWN FILES $row_types.markdown
  442. } else if ( ( window.frameElement !== null || window.top !== window.self ) && ( $textFiles.includes( window.location.href.slice( window.location.href.lastIndexOf('.') + 1 ) ) ) ) {
  443. const $custom_iframe_MDstyles = document.createElement("style");
  444.  
  445. var $iframe_MDstyles = '';
  446. $iframe_MDstyles += 'body' +
  447. '{ margin:0;padding:32px 0 0; font-size:1rem; position:relative; }';
  448. $iframe_MDstyles += 'body #source:focus' +
  449. '{ outline:none; background:white; }';
  450. $iframe_MDstyles += 'body #source, body #preview' +
  451. '{ margin:0; padding:1rem; height:100%; box-sizing:border-box; position:relative; z-index:1; font-size:1rem; border:0; overflow-y:scroll; }';
  452. $iframe_MDstyles += 'body.preview:not(.split) #source, body.source:not(.split) #preview, li#saveBtn div, .comment' +
  453. '{ display:none; }';
  454. $iframe_MDstyles += 'body.split #preview, body.split #source' +
  455. '{ width:50%; float:left; }';
  456. $iframe_MDstyles += 'body.split #preview' +
  457. '{ border-left:solid 1px #999; }';
  458. $iframe_MDstyles += '#MDhandle' +
  459. '{ width:8px; position:absolute; top:0; bottom:0; left:calc(50% - 4px); cursor:col-resize; z-index:11; }';
  460.  
  461. // buttons
  462. $iframe_MDstyles += '#buttons' + //ul
  463. '{ margin:-32px 0 0; padding:0; display:block; width:100%; position:fixed; z-index:100; background:#EEE; border-bottom: solid 1px #999; font-size:0.875em; -webkit-user-select: none; -moz-user-select: none; user-select:none; }';
  464. $iframe_MDstyles += '#buttons li' +
  465. '{ margin:4px; padding:4px; width:3.5em; height:100%; display:block; opacity:0.5; list-style-type:none; cursor:pointer; }';
  466. $iframe_MDstyles += '#buttons li:hover, body.preview:not(.split) #buttons li#showPreview, body.source:not(.split) #buttons li#showSRC, body.split #buttons li#toggleSplit, body.edited #saveBtn' +
  467. '{ opacity:1; }';
  468. $iframe_MDstyles += '#buttons li#toggleSplit' + // toggle split
  469. '{ float:left; width:16px; height: 16px; margin: 4px 0 4px 4px; background:url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' enable-background=\'new 0 0 16 16\' xml:space=\'preserve\'><path fill=\'%23444444\' d=\'M0,0v16h16V0H0z M15,15H8.5V1H15V15z M7.5,15H1V1h6.5V15z\'/></svg>") center no-repeat; }';
  470. $iframe_MDstyles += '#buttons li#syncScroll' + // sync scroll
  471. '{ width:8em; float:left; opacity:1; }';
  472. $iframe_MDstyles += '#buttons li#syncScroll label' + // sync scroll
  473. '{ width:8em; display:block; font-size:0.875em; line-height:1.5; }';
  474. $iframe_MDstyles += '#buttons li#showSRC' + // show source
  475. '{ float:left; width:16px; height: 16px; margin: 4px 0 4px 8px; background:url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'42px\' height=\'16px\' viewBox=\'0 0 42 16\' enable-background=\'new 0 0 42 16\' xml:space=\'preserve\'><g> <path fill=\'%23444444\' d=\'M0.08,7.02L5.94,3.9l0.43,0.78L1.18,7.42l5.19,2.74l-0.43,0.78L0.08,7.82V7.02z\'/> <path fill=\'%23444444\' d=\'M7.84,16.01H6.82L13.78,0h1.02L7.84,16.01z\'/> <path fill=\'%23444444\' d=\'M21.75,7.87l-5.86,3.12l-0.43-0.78l5.19-2.74l-5.19-2.74l0.43-0.78l5.86,3.12V7.87z\'/> <path fill=\'%23444444\' d=\'M30.98,2.65h-3.63V1.58h8.55v1.07h-3.63v9.65h-1.28V2.65z\'/> <path fill=\'%23444444\' d=\'M36.38,4.71h1.3l0.42-2h0.8v2h2.45v0.99h-2.45v4.63c0,0.74,0.27,1.15,0.96,1.15c0.43,0,1.09-0.21,1.39-0.35 l0.18,0.95c-0.42,0.26-1.18,0.45-1.81,0.45c-1.36,0-1.94-0.7-1.94-2.19V5.71h-1.3V4.71z\'/></g></svg>") left 5px no-repeat; }';
  476. $iframe_MDstyles += '#buttons li#showPreview' + // show preview
  477. '{ float:left; width:16px; height: 16px; margin: 4px 0 4px 4px; background:url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'42px\' height=\'16px\' viewBox=\'0 0 42 16\' enable-background=\'new 0 0 42 16\' xml:space=\'preserve\'><g> <path fill=\'%23444444\' d=\'M0.08,7.02L5.94,3.9l0.43,0.78L1.18,7.42l5.19,2.74l-0.43,0.78L0.08,7.82V7.02z\'/> <path fill=\'%23444444\' d=\'M7.84,16.01H6.82L13.78,0h1.02L7.84,16.01z\'/> <path fill=\'%23444444\' d=\'M21.75,7.87l-5.86,3.12l-0.43-0.78l5.19-2.74l-5.19-2.74l0.43-0.78l5.86,3.12V7.87z\'/> <path fill=\'%23444444\' d=\'M30.98,2.65h-3.63V1.58h8.55v1.07h-3.63v9.65h-1.28V2.65z\'/> <path fill=\'%23444444\' d=\'M36.38,4.71h1.3l0.42-2h0.8v2h2.45v0.99h-2.45v4.63c0,0.74,0.27,1.15,0.96,1.15c0.43,0,1.09-0.21,1.39-0.35 l0.18,0.95c-0.42,0.26-1.18,0.45-1.81,0.45c-1.36,0-1.94-0.7-1.94-2.19V5.71h-1.3V4.71z\'/></g></svg>") -24px 5px no-repeat; }';
  478. // Save button
  479. $iframe_MDstyles += '#buttons li#saveBtn' + // show preview
  480. '{ float:right; width:20px; height: 16px; background: url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' enable-background=\'new 0 0 16 16\' xml:space=\'preserve\'><g> <path fill=\'%23444444\' d=\'M16,0v10.02h-1.33V1.33H1.33v8.69H0V0H16z\'/> <path fill=\'%23444444\' d=\'M8.47,16h-0.7l-3.08-3.08l0.94-0.94l1.83,1.83V4.28h1.33v9.53l1.81-1.82l0.94,0.93L8.47,16z\'/></g></svg>") 8px 4px no-repeat; position:relative; }';
  481. $iframe_MDstyles += 'body.edited #buttons li#saveBtn' + // show preview
  482. '{ background: url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' enable-background=\'new 0 0 16 16\' xml:space=\'preserve\'><g> <path fill=\'%23DD2222\' d=\'M16,0v10.02h-1.33V1.33H1.33v8.69H0V0H16z\'/> <path fill=\'%23DD2222\' d=\'M8.47,16h-0.7l-3.08-3.08l0.94-0.94l1.83,1.83V4.28h1.33v9.53l1.81-1.82l0.94,0.93L8.47,16z\'/></g></svg>") 8px 4px no-repeat; position:relative; }';
  483. $iframe_MDstyles += '#buttons li#saveBtn div' + // show preview
  484. '{ position:relative; top:-9px; left:-24px; color:#999; text-align:right; }';
  485. $iframe_MDstyles += '#buttons li#saveBtn:hover div' + // show preview
  486. '{ display:block; }';
  487. $iframe_MDstyles += '#buttons li#saveBtn span' + // show preview
  488. '{ width:6rem; padding:4px 6px; background: #EEE; float:right; display:block; border:solid 1px #999; }';
  489. $iframe_MDstyles += '#buttons li#saveBtn span:first-of-type' + // show preview
  490. '{ border-bottom-width:0px; }';
  491. $iframe_MDstyles += '#buttons li#saveBtn span:hover' + // show preview
  492. '{ color:#444; }';
  493. // textarea source
  494. $iframe_MDstyles += '#source' +
  495. '{ width:100%; height:100%; min-height:100%; line-height:1.2; overflow-y:visible; font-family:monospace; resize: none; position:relative; top:0;bottom:0; background:#EEE; }';
  496. $iframe_MDstyles += '#source:focus' +
  497. '{ background:#FFF; }';
  498. // preview styles
  499. $iframe_MDstyles += '#preview' +
  500. '{ background:#FFF; }';
  501. $iframe_MDstyles += '#preview p' +
  502. '{ margin:1em 0; }';
  503. $iframe_MDstyles += '#preview blockquote blockquote' +
  504. '{ padding-top:0; padding-bottom:0; }';
  505. $iframe_MDstyles += '#preview img' +
  506. '{ width:auto; height:auto; max-width:100%; max-height:100%; margin:1em 0; }';
  507. $iframe_MDstyles += '#preview pre, #preview blockquote' +
  508. '{ padding:1em; background:#EEE; }';
  509. $iframe_MDstyles += '#preview pre' +
  510. '{ display:block; border:solid 1px #BBB; border-radius:3px; white-space:pre-wrap; word-break:break-word; }';
  511. $iframe_MDstyles += '#preview blockquote' +
  512. '{ margin:1em 0; border-left:solid 2px #999; }';
  513. $iframe_MDstyles += '#preview .no_list' +
  514. '{ list-style:none; }';
  515. $iframe_MDstyles += '#preview > .no_list' +
  516. '{ padding:0; }';
  517. $iframe_MDstyles += '#preview kbd' +
  518. '{ padding:2px 4px; background:#eee; }';
  519. $iframe_MDstyles += 'input[type="checkbox"]' +
  520. '{ margin-right:6px; float:left; }';
  521.  
  522. $custom_iframe_MDstyles.appendChild(document.createTextNode(""));
  523. $custom_iframe_MDstyles.append($iframe_MDstyles);
  524. document.head.appendChild($custom_iframe_MDstyles);
  525.  
  526. // Attempt to prettify dark theme styles; doesn't respond to user changing
  527. // $settings.dark_theme === true ? $('input,a').css({'filter':'invert(87.5%)'}) : null;
  528.  
  529. // UI Elements: source
  530. let $md = '';
  531. $md = document.querySelectorAll('pre')[0].innerText;
  532. $('body > pre').first().remove();
  533.  
  534. const sourceEl = $('<textarea id="source"></textarea>');
  535. const previewEl = $('<div id="preview"></div>')
  536. const MDhandle = $('<div id="MDhandle"></div>');
  537.  
  538. // UI Elements: Buttons
  539. const toggleSplitBtn = $('<li id="toggleSplit" title="Toggle Split"></li>');
  540. const syncScrollEl = $('<li id="syncScroll"><input name="syncScroll" type="checkbox"><label for="syncScroll">Sync Scroll</label></li>')
  541. const toggleSrcBtn = $('<li id="showSRC" title="Show Source"></li>');
  542. const togglePreviewBtn = $('<li id="showPreview" title="Show Preview"></li>');
  543. const saveBtn = $('<li id="saveBTN" title=""><div><span id="saveText">Save Source</span><span id="saveHTML">Save HTML</span></div></li>');
  544. const buttonsCont = $('<ul id="buttons"></div>');
  545. buttonsCont.append(toggleSrcBtn, togglePreviewBtn, toggleSplitBtn, syncScrollEl, saveBtn);
  546.  
  547. // BUILD UI
  548. $('body').append(buttonsCont, sourceEl, previewEl, MDhandle);
  549.  
  550. // INIT UI
  551. $settings.split_view === true ? $('body').addClass("split") : null;
  552. $settings.preview_text === true ? $('body').addClass("preview") : $('body').addClass("source");
  553. $settings.sync_scroll === true ? $('#syncScroll input').prop({checked:true}) : null;
  554.  
  555. // Resize Sidebar/Content Pane
  556. function resizeSplit(f) {
  557. f.stopPropagation();
  558. var $startX = f.pageX;
  559. var $split_width = sourceEl.width();
  560. var $window_width = window.innerWidth;
  561. $('#MDhandle').on('mousedown',function() {
  562. });
  563. $(document).on('mousemove',function(e) {
  564. e.stopPropagation();
  565. e.preventDefault();
  566. var $deltaX = e.pageX - $startX;
  567. if ( e.pageX > 200 && e.pageX < $window_width - 200 ) {
  568. MDhandle.css({'left':$split_width + $deltaX + -4 + 'px'});
  569. sourceEl.css({'width':$split_width + $deltaX + 'px'});
  570. previewEl.css({'width':($window_width - $split_width) - $deltaX + 'px'});
  571. }
  572. });
  573. $(document).on('mouseup',function() {
  574. $(document).off('mousemove');
  575. $split_width = sourceEl.width();
  576. });
  577. }
  578. MDhandle.on('mousedown', resizeSplit );
  579.  
  580. // BUTTONS functions
  581. $('#buttons').on('mousedown','li,span',function(e) {
  582. e.stopPropagation();
  583. sourceEl.off('blur', unsavedWarning);
  584. let $name = decodeURI($fileName);
  585. let $thisId = $(this).attr('id');
  586. $thisId === 'toggleSplit' ? $('body').toggleClass('split').find('#source,#preview,#MDhandle').attr('style','') :
  587. $thisId === 'showSRC' ? $('body').removeClass('split preview').addClass('source').find('#source,#preview,#MDhandle').attr('style','') :
  588. $thisId === 'showPreview' ? $('body').removeClass('split source').addClass('preview').find('#source,#preview,#MDhandle').attr('style','') :
  589. $thisId === 'saveText' ? saveMD( $name, sourceEl.val() ) :
  590. $thisId === 'saveHTML' ? saveMD( $name.slice(0,$name.lastIndexOf('.') + 1) + 'html', previewEl.html() ) : null;
  591. });
  592. $('#buttons').on('mouseup','li,#saveText,#saveHTML',function(e) {
  593. e.stopPropagation();
  594. sourceEl.focus();
  595. sourceEl.on('blur', unsavedWarning);
  596. });
  597. $('body').on('mouseover','#preview,#buttons',function(e) {
  598. e.stopPropagation();
  599. sourceEl.off('blur', unsavedWarning);
  600. });
  601. $('body').on('mouseout','#preview,#buttons',function(e) {
  602. e.stopPropagation();
  603. sourceEl.one('blur', unsavedWarning);
  604. });
  605. $(window).on('resize',function() {
  606. $('#source,#preview,#MDhandle').attr('style','');
  607. });
  608.  
  609. // SOURCE
  610. sourceEl.val($md);
  611. document.getElementById('source').setSelectionRange(0,0);
  612.  
  613. // PREVIEW
  614. // (req: markdown-it) new MarkdownIt([presetName][, options])
  615. var MDit = window.markdownit({linkify:false,html:true});
  616.  
  617. // SYNC Scroll
  618. $('#syncScroll label').on('click',function(e){
  619. e.stopPropagation();
  620. $('#syncScroll input').click();
  621. });
  622. previewEl.on('scroll', function () {
  623. document.querySelector('input[name="syncScroll"').checked ? sourceEl.scrollTop($(this).scrollTop()) : null;
  624. });
  625. sourceEl.on('scroll', function () {
  626. document.querySelector('input[name="syncScroll"').checked ? previewEl.scrollTop($(this).scrollTop()) : null;
  627. });
  628.  
  629. // Custom processing for Markdown and non-Markdown text.
  630. function customPreProcess(src) {
  631. return src;
  632. }
  633. function customPostProcess(html) {
  634. html = html.replace(/<p>\-*\s*\[x\]\s*(.+)$/gm,'<p class="checklist"><input type="checkbox" checked><label>$1</label></p>')
  635. .replace(/<p>\-*\s*\[\s*\]\s*(.+)$/gm,'<p class="checklist"><input type="checkbox"><label>$1</label></p>')
  636. .replace(/<li>\-*\s*\[x\]\s*(.+)$/gm,'<li class="checklist"><input type="checkbox" checked><label>$1</label></li>')
  637. .replace(/<li>\-*\s*\[\s*\]\s*(.+)$/gm,'<li class="checklist"><input type="checkbox"><label>$1</label></li>');
  638. return html;
  639. }
  640. function markdown(src) {
  641. let MDpreview = MDit.render( customPreProcess( src ) ); // render markdown from preprocessed source text
  642. previewEl.html( customPostProcess( MDpreview ) ); // set previewed html
  643. checklistStyle();
  644. }
  645. markdown($('#source').val() );
  646. console.log($('#source').val());
  647.  
  648. // EDITING
  649.  
  650. // "Live" Checkboxes
  651. function replaceAt(str, replacement, position) {
  652. return str = str.substring(0, position) + replacement + str.substring(position + replacement.length);
  653. }
  654. function replaceNthSubStr(str,substr,replacement,index) {
  655. let count = 0;
  656. let found;
  657.  
  658. while ( (found = substr.exec(str)) !== null) {
  659. if ( count === index ) {
  660. return replaceAt(str, replacement, found.index );
  661. } else {
  662. count++;
  663. }
  664. }
  665. }
  666. function checklistStyle() {
  667. $('.checklist').closest('ul').addClass('no_list');
  668. }
  669. // TODO: update source text when toggling previewed checkboxes
  670. $('#preview').on('click','p.checklist input',function(e) {
  671. e.stopPropagation();
  672. $('p.checklist').removeClass('clicked');
  673. $(this).closest('p').addClass('clicked');
  674. let checkboxLength = $('#preview p.checklist').length;
  675. let thisIndex = $('#preview p.checklist').index( $('.clicked') );
  676. let srctext = $('#source').val();
  677. let substr = new RegExp(/\[.\]/g);
  678. let replacement = $(this).is(':checked') ? '[x]' : '[ ]';
  679. $('#source').val( replaceNthSubStr(srctext,substr,replacement,thisIndex) );
  680. addEditedClass();
  681. });
  682.  
  683. // Live preview, add edited warning
  684. sourceEl.on('input', function(e) {
  685. addEditedClass();
  686. markdown( $('#source').val() );
  687. });
  688.  
  689. function addEditedClass() {
  690. if ( !sourceEl.hasClass('edited') ) {
  691. $('#source, body').addClass('edited');
  692. }
  693. }
  694.  
  695. function unsavedWarning() {
  696. if ( $('#source, body').hasClass('edited') ) {
  697. let r = window.confirm('Warning! You have unsaved changes. Do you want to save the file before closing?');
  698. if ( r == true ) {
  699. $('#saveText').trigger('mousedown');
  700. } else {
  701. //$('#source').one('blur',unsavedWarning );
  702. }
  703. }
  704. }
  705. sourceEl.on('blur', unsavedWarning);
  706.  
  707. // SAVE SOURCE or HTML
  708. var saveMD = function(filename, data) {
  709. var blob = new Blob([data], {type: 'text/plain'});
  710. var temp = window.document.createElement('a');
  711. temp.href = window.URL.createObjectURL(blob);
  712. temp.download = filename;
  713. document.body.appendChild(temp);
  714. $(temp).on('mousedown mouseup',function(e){
  715. e.stopImmediatePropagation();
  716. sourceEl.off('blur', unsavedWarning);
  717. })
  718. temp.click();
  719. document.body.removeChild(temp);
  720. URL.revokeObjectURL(blob);
  721. $('body,#source').removeClass('edited');
  722. }
  723.  
  724. //
  725. } // END IFRAME FUNCTIONS
  726.  
  727. // Don't run script in previewed contentEditable text and html files.
  728. if ( window.location.pathname.slice(-1) != '/') {
  729. return;
  730. }
  731.  
  732. // Globals
  733. var e, i, j, n;
  734.  
  735. // ***** SET UP UI ELEMENTS ***** //
  736.  
  737. const $body = $('body');
  738. $body.attr('lang','en').find('> h1:contains("Index of"),> #parentDirLinkBox,> #UI_goUp,#UI_showHidden').remove();
  739. $('head').prepend('<meta charset="utf-8">');
  740.  
  741. // ***** SIDEBAR ELEMENTS ***** //
  742. const $parent_dir_menu = $('<nav id="parent_dir_menu"><a href="">&nbsp;</a></nav>');
  743. const $parents_dir_menu = $('<nav id="parents_dir_menu"><div></div></nav><ul class="menu"></ul>');
  744. const $shortcuts_menu = $('<nav id="shortcuts_menu"><div>&nbsp;</div></nav><ul id="shortcuts" class="menu"></ul>');
  745. const $details_btn = $('<button id="details_btn" tabindex="-1"><span>Show details</span><span>Hide details</span></button>');
  746. const $inv_checkbox = $('<label ><input type="checkbox" id="inv_checkbox" for="inv_checkbox" name="inv_checkbox" tabindex="-1" />Hide Invisibles</label>');
  747. const $grid_btn = $('<div id="grid_btn" tabindex="-1" title="Show Grid"><ul class="menu"><li id="show_image_grid">Show Image Grid</li><li id="show_font_grid">Show Font Grid</li></ul></div>');
  748. const $sidebar_header = $('<table id="sidebar_header"><thead><tr><th colspan="3">INDEX OF</th></tr></thead><tbody><tr><td></td><td></td><td></td></tr><tr><td colspan="3"></td></tr></tbody></table>');
  749. const $dir_list_head = $('<thead id="thead"><tr id="theader" class="header"><th id="name" class="name"><input id="play_toggle" type="checkbox" tabindex="-1" checked="true" />Name</th><th id="size" class="details">Size</th><th id="date" class="details">Date</th><th id="kind" class="details">Kind</th><th id="ext" class="details">Ext</th><th id="default" class="details">Default</th></tr></thead>');
  750. const $dir_list_body = $('<tbody id="tbody"></tbody>');
  751. const $dir_list = $('<table id="dir_list"></table>');
  752. const $dir_list_wrapper = $('<div id="dir_list_wrapper"></div>');
  753. const $sidebar = $('<div id="sidebar"></div>');
  754. const $handle = $('<div id="handle"></div>');
  755. const $sidebar_wrapper = $('<td id="sidebar_wrapper"></td>');
  756. const $toggle_sidebar = $('<div id="toggle_sidebar"></div>');
  757.  
  758. // ***** CONTENT PANE ELEMENTS ***** //
  759. const $content_grid = $('<div id="content_grid" data-grid-scale-factor="0" data-kind="grid"></div>');
  760. const $image_grid_item_el = $('<div class="image_grid_item"><a href=""><img src="/" /></a></div>');
  761. const $font_grid_item_el = $('<div class="font_grid_item"></div>');
  762. const $content_scale = $('<div id="scale"><span id="increase"></span><span id="decrease"></span></div>');
  763. const $sample_string = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ<br />abcdefghijklmnopqrstuvwxyz<br />0123456789 [(!@#$%^&*;:)]';
  764. const $lorem_string = 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.';
  765. const $specimen = $('<div class="specimen" style="font-size:3em;">'+ $sample_string +'</div><div class="lorem first" style="font-size:1em;">'+ $lorem_string +'</div><div class="lorem" style="font-size:1em;">'+ $lorem_string +'</div><div class="lorem" style="font-size:1em;">'+ $lorem_string +'</div>');
  766. const $content_font = $('<div id="content_font" spellcheck="false" contenteditable="true" data-kind="font"></div>');
  767. const $image = $('<img class="" data-kind="image" />');
  768. const $content_image = $('<div id="content_image" data-image-scale-factor="1" data-kind="image"></div>');
  769. const $content_pdf = $('<embed id="content_pdf" name="plugin" type="application/pdf" tabindex="0" data-kind="pdf"></embed>');
  770. const $content_iframe = $('<iframe id="content_iframe" sandbox="allow-scripts allow-modals" tabindex="0" data-kind="file"></iframe>');
  771. const $content_video = $('<video id="content_video" class="media" controls data-kind="video">Your browser does not support the video tag.</video>');
  772. const $content_audio_title = $('<tr id="content_audio_title"><td colspan="3"></td></tr>');
  773. const $content_audio = $('<tr id="content_audio"><td colspan="3"></td></tr>');
  774. const $prev_track = $('<div id="prev_track" class="prev_next_track_btn" title="Previous track"></div>');
  775. const $next_track = $('<div id="next_track" class="prev_next_track_btn" title="Next track"></div>');
  776. const $audio = $('<audio id="audio" preload="auto" tabindex="0" controls>Sorry, your browser does not support HTML5 audio.</audio>');
  777. const $loop = $('<label><input type="checkbox" id="loop" for="loop" name="loop" tabindex="0" />Loop</label>');
  778. const $shuffle = $('<label><input type="checkbox" id="shuffle" for="shuffle" name="shuffle" tabindex="0" />Shuffle</label>');
  779. const $close_audio = $('<div id="close_audio" title="Close audio"></div>');
  780. const $checkbox_cont = $('<div id="checkbox_div"></div>');
  781. const $content_reload_btn = $('<td><button id="reload_btn" tabindex="-1">Reload</button></td>');
  782. const $content_stop_btn = $('<td><button id="stop" tabindex="-1">Stop</button></td>');
  783. const $content_title = $('<tr id="content_title"><td id="title"></td></tr>');
  784. const $content_close_btn = $('<td><button id="close_btn" tabindex="-1">Close</button></td>');
  785. const $content_header = $('<header id="content_header"><table><tbody></tbody></table></header>');
  786. const $prev_btn = $('<div class="nav_btn" id="prev_btn"></div>');
  787. const $next_btn = $('<div class="nav_btn" id="next_btn"></div>');
  788. const $content_container = $('<section id="content_container"></section>');
  789. const $content_pane = $('<td id="content_pane"></td>');
  790.  
  791. // SVG UI ICONS
  792. const $svg_prefix = 'url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' ';
  793. const $up_arrow = $svg_prefix + 'width=\'12.728px\' height=\'7.779px\' viewBox=\'0 0 12.728 7.779\' enable-background=\'new 0 0 12.728 7.779\' xml:space=\'preserve\'><path fill=\'%23444444\' d=\'M6.364,2.828l4.95,4.949l1.414-1.414L6.364,0l0,0L0,6.363l1.413,1.416L6.364,2.828\'/></svg>")';
  794. const $up_arrow_inv = $svg_prefix + 'width=\'12.728px\' height=\'7.779px\' viewBox=\'0 0 12.728 7.779\' enable-background=\'new 0 0 12.728 7.779\' xml:space=\'preserve\'><path fill=\'%23CCCCCC\' d=\'M6.364,2.828l4.95,4.949l1.414-1.414L6.364,0l0,0L0,6.363l1.413,1.416L6.364,2.828\'/></svg>")';
  795. const $svg_arrow = $svg_prefix + 'width=\'11px\' height=\'16px\' viewBox=\'234.5 248 11 16\' enable-background=\'new 234.5 248 11 16\' xml:space=\'preserve\'><path d=\'M245.5,261l-3,3l-8-8l8-8l3,3l-5,5L245.5,261z\'/></svg>")';
  796. const $toggle = $svg_prefix + 'width=\'13.779px\' height=\'12.729px\' viewBox=\'2.474 -2.475 13.779 12.729\' enable-background=\'new 2.474 -2.475 13.779 12.729\' xml:space=\'preserve\'> <path fill=\'%23444444\' d=\'M5.302,3.889l4.949-4.95L8.838-2.475L2.474,3.889l0,0l6.363,6.364l1.416-1.413L5.302,3.889\'/> <path fill=\'%23444444\' d=\'M11.302,3.889l4.949-4.95l-1.414-1.414L8.474,3.889l0,0l6.363,6.364l1.416-1.413L11.302,3.889\'/> </svg>")';
  797. const $check_mark = $svg_prefix + 'width=\'17px\' height=\'14px\' viewBox=\'250.182 490.01 17 14\' enable-background=\'new 250.182 490.01 16.971 14.143\' xml:space=\'preserve\'><polygon fill=\'%23444444\' points=\'255.839,498.495 253.011,495.667 250.182,498.496 255.839,504.152 267.152,492.838 264.323,490.01 \'/></svg>")';
  798. const $check_mark_inv = $svg_prefix + 'width=\'17px\' height=\'14px\' viewBox=\'250.182 490.01 17 14\' enable-background=\'new 250.182 490.01 16.971 14.143\' xml:space=\'preserve\'><polygon fill=\'%23CCCCCC\' points=\'255.839,498.495 253.011,495.667 250.182,498.496 255.839,504.152 267.152,492.838 264.323,490.01 \'/></svg>")';
  799. const $menu_arrow = $svg_prefix + 'width=\'24px\' height=\'16px\' viewBox=\'0 0 24 16\' enable-background=\'new 0 0 24 16\' xml:space=\'preserve\'> <polygon fill=\'%23444444\' points=\'0,0 13.873,8.008 0.001,16.017 \'/> </svg>")';
  800. const $menu_arrow_inv = $svg_prefix + 'width=\'24px\' height=\'16px\' viewBox=\'0 0 24 16\' enable-background=\'new 0 0 24 16\' xml:space=\'preserve\'> <polygon fill=\'%23CCCCCC\' points=\'0,0 13.873,8.008 0.001,16.017 \'/> </svg>")';
  801. const $menu_icon = $svg_prefix + 'width=\'13px\' height=\'10px\' viewBox=\'0 0 13 10\' enable-background=\'new 0 0 13 10\' xml:space=\'preserve\'><rect fill=\'%23444444\' width=\'13\' height=\'2\'/><rect y=\'4\' fill=\'%23444444\' width=\'13\' height=\'2\'/><rect y=\'8\' fill=\'%23444444\' width=\'13\' height=\'2\'/></svg>")';
  802. const $grid_icon = $svg_prefix + 'width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' enable-background=\'new 0 0 16 16\' xml:space=\'preserve\'><g><path fill=\'%23666666\' d=\'M5,2v3H2V2H5 M7,0H0v7h7V0L7,0z\'/></g><g><path fill=\'%23666666\' d=\'M14,2v3h-3V2H14 M16,0H9v7h7V0L16,0z\'/></g><g><path fill=\'%23666666\' d=\'M5,11v3H2v-3H5 M7,9H0v7h7V9L7,9z\'/></g><g><path fill=\'%23666666\' d=\'M14,11v3h-3v-3H14 M16,9H9v7h7V9L16,9z\'/></g></svg>")';
  803. const $plus_sign = $svg_prefix + 'width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' xml:space=\'preserve\'><polygon points=\'16,6.5 9.5,6.5 9.5,0 6.5,0 6.5,6.5 0,6.5 0,9.5 6.5,9.5 6.5,16 9.5,16 9.5,9.5 16,9.5 \'/></svg>")';
  804. const $minus_sign = $svg_prefix + 'width=\'16px\' height=\'16px\' viewBox=\'0 0 16 16\' xml:space=\'preserve\'> <rect x=\'1\' y=\'6.499\' width=\'14\' height=\'3.001\'/> </svg>")';
  805. const $next_track_arrow = $svg_prefix + 'width=\'12.8px\' height=\'14px\' viewBox=\'-2 0 12.8 14\' enable-background=\'new -2 0 12.8 14\' xml:space=\'preserve\'><polygon fill=\'%23919191\' points=\'10.873,14.017 0,7.01 10.872,0 \'/><rect x=\'-2\' y=\'0\' fill=\'%23919191\' width=\'2\' height=\'14\'/></svg>")';
  806. const $next_track_arrow_gecko = $svg_prefix + 'width=\'12.8px\' height=\'14px\' viewBox=\'-2 0 12.8 14\' enable-background=\'new -2 0 12.8 14\' xml:space=\'preserve\'><polygon fill=\'white\' points=\'10.873,14.017 0,7.01 10.872,0 \'/><rect x=\'-2\' y=\'0\' fill=\'white\' width=\'2\' height=\'14\'/></svg>")';
  807. const $next_track_arrow_gecko_hover = $svg_prefix + 'width=\'12.8px\' height=\'14px\' viewBox=\'-2 0 12.8 14\' enable-background=\'new -2 0 12.8 14\' xml:space=\'preserve\'><polygon fill=\'%236bb5ff\' points=\'10.873,14.017 0,7.01 10.872,0 \'/><rect x=\'-2\' y=\'0\' fill=\'%236bb5ff\' width=\'2\' height=\'14\'/></svg>")';
  808. const $music = $svg_prefix + 'width=\'143.717px\' height=\'199.404px\' viewBox=\'0 0 143.717 199.404\' enable-background=\'new 0 0 143.717 199.404\' xml:space=\'preserve\'><g opacity=\'0.2\'> <path fill=\'%23757679\' d=\'M143.717,143.82c0,10.033-4.573,18.425-13.717,25.183c-8.394,6.143-17.776,9.211-28.149,9.211 c-6.074,0-11.056-1.432-14.943-4.297c-4.301-3.275-6.45-7.849-6.45-13.719c0-9.279,4.403-17.438,13.204-24.466 c8.326-6.616,17.266-9.93,26.82-9.93c8.052,0,13.922,1.605,17.606,4.812V25.487L63.26,45.654v119.354 c0,10.03-4.573,18.427-13.717,25.181c-8.394,6.142-17.778,9.215-28.148,9.215c-6.077,0-11.055-1.437-14.947-4.302 C2.151,191.827,0,187.253,0,181.386c0-9.282,4.401-17.436,13.206-24.465c8.323-6.615,17.262-9.929,26.817-9.929 c8.051,0,13.921,1.605,17.606,4.812V23.237L143.717,0V143.82z\'/></g></svg>")';
  809. //SVG FILE ICONS
  810. // Chrome default icons
  811. const $file_icon_dir_default = 'url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII= ")';
  812. const $file_icon_file_default = 'url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABnRSTlMAAAAAAABupgeRAAABHUlEQVR42o2RMW7DIBiF3498iHRJD5JKHurL+CRVBp+i2T16tTynF2gO0KSb5ZrBBl4HHDBuK/WXACH4eO9/CAAAbdvijzLGNE1TVZXfZuHg6XCAQESAZXbOKaXO57eiKG6ft9PrKQIkCQqFoIiQFBGlFIB5nvM8t9aOX2Nd18oDzjnPgCDpn/BH4zh2XZdlWVmWiUK4IgCBoFMUz9eP6zRN75cLgEQhcmTQIbl72O0f9865qLAAsURAAgKBJKEtgLXWvyjLuFsThCSstb8rBCaAQhDYWgIZ7myM+TUBjDHrHlZcbMYYk34cN0YSLcgS+wL0fe9TXDMbY33fR2AYBvyQ8L0Gk8MwREBrTfKe4TpTzwhArXWi8HI84h/1DfwI5mhxJamFAAAAAElFTkSuQmCC ")';
  813. // Custom file icons
  814. const $svg_icon_prefix = 'url("data:image/svg+xml;utf8,<svg version=\'1.1\' id=\'Layer_1\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\' x=\'0px\' y=\'0px\' width=\'14px\' height=\'14px\' viewBox=\'0 0 14 14\' enable-background=\'new 0 0 14 14\' xml:space=\'preserve\'> ';
  815. const $file_icon_dir = $svg_icon_prefix + '<polygon fill=\'%233399FF\' points=\'6.1,2.7 4.8,1 0,1 0,13 14,13 14,2.7 \'/> <rect x=\'1.5\' y=\'4.2\' fill=\'%2399CCFF\' width=\'11\' height=\'7.3\'/> </svg> ")';
  816. const $file_icon_dir_invisible = $svg_icon_prefix + '<polygon fill=\'%23888888\' points=\'6.1,2.7 4.8,1 0,1 0,13 14,13 14,2.7 \'/> <rect x=\'1.5\' y=\'4.2\' fill=\'%23BBBBBB\' width=\'11\' height=\'7.3\'/> <circle fill=\'%23888888\' cx=\'7\' cy=\'7.9\' r=\'1\'/> </svg> ")';
  817. const $file_icon_app = $svg_icon_prefix + '<g> <polygon style=\'fill:%230066FF;\' points=\'14,0 0,0 0,14 14,14 \'/> </g> <path style=\'fill:%23FFFFFF;\' d=\'M6.466,3.696L5.854,3.421c-0.175-0.078-0.381,0.003-0.455,0.18L5.086,4.348l1.241,0.578l0.315-0.791 C6.71,3.965,6.632,3.771,6.466,3.696z\'/> <polygon style=\'fill:%23FFFFFF;\' points=\'4.955,4.663 2.755,9.922 4.091,10.544 6.201,5.243 \'/> <polygon style=\'fill:%23FFFFFF;\' points=\'2.625,10.237 2.563,12.166 3.955,10.856 \'/> <polygon style=\'fill:%23FFFFFF;\' points=\'9.998,6.663 10.569,8.027 13.143,8.027 13.143,6.663 \'/> <path style=\'fill:%23FFFFFF;\' d=\'M9.838,7.164L7.594,1.797C7.52,1.619,7.314,1.538,7.139,1.616L6.527,1.893 C6.36,1.968,6.282,2.16,6.35,2.329l2.17,5.449L9.838,7.164z\'/> <polygon style=\'fill:%23FFFFFF;\' points=\'9.97,7.479 8.646,8.096 9.021,9.035 10.367,8.43 \'/> <path style=\'fill:%23FFFFFF;\' d=\'M10.479,8.753l-1.3,0.585L9.178,9.339c-0.041,0.311-0.073,0.736,0.073,1.07 c0.35,0.798,1.045,1.264,0.923,1.959c0,0,0.887-1.152,0.989-1.896C11.286,9.579,10.82,9.05,10.479,8.753z\'/> <polygon style=\'fill:%23FFFFFF;\' points=\'5.459,8.027 8.251,8.027 7.708,6.663 6.003,6.663 \'/> <polygon style=\'fill:%23FFFFFF;\' points=\'3.749,6.663 0.857,6.663 0.857,8.027 3.178,8.027 \'/> </svg> ")';
  818. const $file_icon_file = $svg_icon_prefix + '<g> <polygon fill=\'%23888888\' points=\'8.3,0 1.5,0 1.5,14 12.5,14 12.5,4.2 \'/> <polygon fill=\'%23FFFFFF\' points=\'11,12.5 3,12.5 3,1.5 6.8,1.5 6.8,5.7 11,5.7 \'/> <polygon fill=\'%23FFFFFF\' points=\'8.3,4.2 10.2,4.2 8.3,2.2 \'/> </g> </svg> ")';
  819. const $file_icon_text = $svg_icon_prefix + '<g> <polygon style=\'fill:%238888AA;\' points=\'14,0 0,0 0,14 14,14 \'/> </g> <g> <rect x=\'2.155\' y=\'2.187\' style=\'fill:%23FFFFFF;\' width=\'9.69\' height=\'1.14\'/> </g> <g> <rect x=\'2.155\' y=\'5.036\' style=\'fill:%23FFFFFF;\' width=\'9.69\' height=\'1.14\'/> </g> <g> <rect x=\'2.155\' y=\'7.886\' style=\'fill:%23FFFFFF;\' width=\'9.69\' height=\'1.141\'/> </g> <g> <rect x=\'2.155\' y=\'10.736\' style=\'fill:%23FFFFFF;\' width=\'6.555\' height=\'1.14\'/> </g> </svg> ")';
  820. const $file_icon_image = $svg_icon_prefix + '<g id=\'Layer_2\'> </g> <circle fill=\'%23FFEE22\' cx=\'5.5\' cy=\'3.2\' r=\'1.5\'/> <g> <path fill=\'%23FFFFFF\' d=\'M5.6,7.5L3.8,6L0.2,8.7c0.1,0.6,0.6,1.5,0.5,1.3l3-2.4L5.6,9l4.7-4l3.6,3.2l0,0C14,7.8,14,7.4,14,7 c0-0.1,0-0.3,0-0.4l-3.6-3.2L5.6,7.5z\'/> </g> <path fill=\'%2399AADD\' d=\'M3.8,6l1.8,1.5l4.8-4.1L14,6.6C13.8,2.9,10.7,0,7,0C3.1,0,0,3.1,0,7c0,0.6,0.1,1.2,0.2,1.7L3.8,6z\'/> <path fill=\'%233366CC\' d=\'M10.3,5L5.6,9L3.7,7.6l-3,2.4c1.1,2.4,3.5,4,6.3,4c3.4,0,6.3-2.5,6.9-5.8L10.3,5z\'/> <circle fill=\'%23FFE650\' cx=\'5.5\' cy=\'3.2\' r=\'1.5\'/> </svg> ")';
  821. const $file_icon_pdf = $svg_icon_prefix + '<g> <polygon style=\'fill:%23D84444;\' points=\'14,0 0,0 0,14 14,14 14,0 \'/> </g> <path style=\'fill:%23FFFFFF;\' d=\'M12.634,9.094c-0.074,0.047-0.288,0.075-0.423,0.075c-0.439,0-0.981-0.202-1.745-0.529 c0.294-0.022,0.562-0.031,0.803-0.031c0.441,0,0.569,0,1.002,0.108C12.7,8.824,12.705,9.047,12.634,9.094z M4.99,9.162 c0.17-0.3,0.345-0.616,0.521-0.952c0.435-0.822,0.712-1.469,0.914-1.997c0.409,0.742,0.917,1.37,1.51,1.876 C8.011,8.151,8.09,8.212,8.174,8.276C6.962,8.519,5.914,8.809,4.99,9.162z M6.404,1.383c0.241,0,0.38,0.606,0.391,1.179 c0.011,0.568-0.12,0.965-0.287,1.265c-0.14-0.441-0.203-1.129-0.203-1.581C6.305,2.245,6.295,1.383,6.404,1.383z M1.663,12.3 c0.14-0.374,0.68-1.113,1.479-1.771c0.051-0.037,0.175-0.155,0.289-0.263C2.596,11.603,2.033,12.133,1.663,12.3z M12.864,8.31 c-0.24-0.238-0.781-0.363-1.599-0.373c-0.555-0.008-1.218,0.041-1.923,0.138C9.03,7.893,8.707,7.697,8.451,7.459 c-0.683-0.64-1.25-1.524-1.606-2.497c0.021-0.094,0.044-0.171,0.062-0.253c0,0,0.383-2.186,0.28-2.925 c-0.015-0.104-0.021-0.131-0.05-0.21L7.104,1.486c-0.103-0.241-0.31-0.497-0.633-0.483L6.283,0.997H6.28 c-0.358,0-0.654,0.184-0.729,0.456c-0.233,0.864,0.007,2.15,0.444,3.818L5.882,5.544c-0.312,0.76-0.704,1.527-1.048,2.203 L4.787,7.836c-0.362,0.71-0.693,1.315-0.99,1.825l-0.31,0.165c-0.021,0.014-0.551,0.292-0.675,0.367 c-1.053,0.628-1.752,1.343-1.868,1.91c-0.037,0.179-0.009,0.41,0.178,0.52l0.299,0.148c0.129,0.064,0.269,0.096,0.406,0.096 c0.75,0,1.621-0.931,2.817-3.023c1.387-0.452,2.965-0.828,4.347-1.035c1.052,0.595,2.346,1.006,3.163,1.006 c0.146,0,0.271-0.013,0.373-0.042c0.155-0.04,0.288-0.129,0.369-0.254c0.156-0.235,0.191-0.563,0.146-0.901 C13.032,8.519,12.95,8.395,12.864,8.31z\'/> </svg> ")';
  822. const $file_icon_font = $svg_icon_prefix + '<g><polygon style=\'fill:%23770099;\' points=\'14,0 0,0 0,14 14,14 \'/></g><g><path style=\'fill:%23FFFFFF;\' d=\'M4.599,11.321h1.44V2.774H3.334v1.088H1.83V1.222h10.34v2.641h-1.505V2.774H7.977v8.547h1.393v1.457 H4.599V11.321z\'/></g></svg>")';
  823. const $file_icon_code = $svg_icon_prefix + '<g> <polygon style=\'fill:%237722DD;\' points=\'14,0 0,0 0,14 14,14 \'/> </g> <g> <path style=\'fill:%23FFFFFF;\' d=\'M5.892,12.965c-1.049,0-1.784-0.161-2.209-0.48c-0.425-0.317-0.638-0.82-0.638-1.503V8.915 c0-0.446-0.146-0.764-0.438-0.95C2.315,7.777,1.898,7.684,1.351,7.684V6.316c0.547,0,0.967-0.094,1.259-0.28s0.438-0.5,0.438-0.938 V3.006c0-0.675,0.217-1.172,0.65-1.491C4.13,1.195,4.862,1.036,5.893,1.036v1.312c-0.401,0.01-0.718,0.09-0.952,0.24 c-0.233,0.15-0.348,0.426-0.348,0.827V5.4c0,0.876-0.511,1.396-1.532,1.559v0.083c1.021,0.154,1.532,0.67,1.532,1.544v1.997 c0,0.41,0.116,0.688,0.349,0.835c0.233,0.146,0.55,0.223,0.951,0.232L5.892,12.965L5.892,12.965z\'/> <path style=\'fill:%23FFFFFF;\' d=\'M8.045,12.965v-1.313c0.392-0.009,0.706-0.089,0.944-0.239c0.236-0.15,0.355-0.426,0.355-0.829 V8.588c0-0.867,0.511-1.382,1.531-1.545V6.959C9.855,6.795,9.345,6.28,9.345,5.413V3.416c0-0.41-0.116-0.688-0.349-0.834 C8.764,2.436,8.447,2.358,8.045,2.349V1.036c1.049,0,1.785,0.159,2.21,0.479c0.423,0.319,0.637,0.821,0.637,1.505v2.065 c0,0.447,0.146,0.765,0.438,0.951c0.292,0.187,0.711,0.28,1.257,0.28v1.367c-0.546,0.012-0.967,0.107-1.259,0.287 C11.035,8.153,10.89,8.47,10.89,8.915v2.08c0,0.674-0.217,1.172-0.65,1.491C9.808,12.805,9.075,12.965,8.045,12.965z\'/> </g> </svg>")';
  824. const $file_icon_html = $svg_icon_prefix + '<path style=\'fill:%23FFFFFF;\' d=\'M7,14c-3.9,0-7-3.1-7-7C0,3.2,3.1,0,7,0H7C8.9,0,10.6,0.7,12,2C13.3,3.4,14,5.1,14,7 c0,1.9-0.7,3.6-2,5C10.7,13.3,8.9,14,7,14C7,14,7,14,7,14z\'/> <g> <path style=\'fill:%23EE7700;\' d=\'M5.3,1.1C4.7,1.9,4.2,2.6,3.8,3.5C3.4,3.3,3,3.1,2.6,2.8C3.3,2.1,4.2,1.5,5.3,1.1z M2,3.6 c0.5,0.3,1,0.6,1.5,0.8C3.3,5,3.2,5.6,3.1,6.3c0,0.1,0,0.2,0,0.3H0.9C1,5.4,1.4,4.4,2,3.6z M2,10.4c-0.6-0.9-1-1.9-1.1-3h2.1 c0,0.8,0.2,1.5,0.4,2.2C2.9,9.9,2.5,10.1,2,10.4z M2.6,11.2c0.4-0.3,0.8-0.5,1.2-0.6c0.3,0.8,0.8,1.5,1.4,2.2c0,0,0.1,0.1,0.1,0.1 C4.2,12.5,3.3,11.9,2.6,11.2z M6.5,12.9c-0.2-0.2-0.5-0.5-0.7-0.7c-0.5-0.6-0.9-1.3-1.2-1.9C5.3,10,5.9,9.9,6.5,9.9V12.9z M6.5,9 C5.8,9,5,9.1,4.3,9.4C4.1,8.7,4,8.1,4,7.5h2.6V9z M6.5,6.5H4c0-0.1,0-0.1,0-0.2c0.1-0.6,0.2-1.2,0.3-1.7C5.1,4.9,5.8,5,6.5,5V6.5z M6.5,4.1C5.9,4.1,5.3,4,4.7,3.8c0.4-1,1.1-1.9,1.9-2.6V4.1z M12,3.6c0.6,0.9,1,1.9,1.1,3h-2.2c0-0.8-0.2-1.5-0.4-2.2 C11,4.1,11.5,3.9,12,3.6z M11.3,2.7c0,0,0.1,0.1,0.1,0.1c-0.4,0.3-0.8,0.5-1.2,0.7C9.9,2.7,9.4,2,8.8,1.3C8.8,1.3,8.7,1.2,8.7,1.1 C9.7,1.4,10.6,2,11.3,2.7z M7.5,1.2c0.2,0.2,0.5,0.5,0.7,0.7C8.6,2.5,9,3.1,9.3,3.8C8.7,4,8.1,4.1,7.5,4.1V1.2z M7.5,5 c0.7,0,1.5-0.2,2.2-0.4C9.9,5.3,10,5.9,10,6.5H7.5V5z M7.5,7.5H10c0,0.1,0,0.2,0,0.2c0,0.6-0.2,1.1-0.3,1.7C9,9.1,8.2,9,7.5,9V7.5z M7.5,12.9v-3c0.6,0,1.3,0.1,1.9,0.3C8.9,11.2,8.3,12.1,7.5,12.9z M11.3,11.3c-0.7,0.7-1.6,1.3-2.6,1.5c0.6-0.7,1.1-1.5,1.5-2.3 c0.4,0.2,0.8,0.4,1.2,0.6C11.4,11.2,11.4,11.2,11.3,11.3z M10.5,9.7c0.2-0.6,0.3-1.2,0.4-1.9c0-0.1,0-0.2,0-0.3h2.2 c-0.1,1.1-0.4,2.1-1.1,3C11.5,10.1,11,9.9,10.5,9.7z M7,0C3.1,0,0,3.1,0,7s3.1,7,7,7s7-3.1,7-7S10.9,0,7,0z\'/> </g> </svg>")';
  825. const $file_icon_ignored = $svg_icon_prefix + '<path fill=\'%23CCCCCC\' d=\'M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0L7,0z\'/><path fill=\'%23EEEEEE\' d=\'M7,2c2.8,0,5,2.2,5,5s-2.2,5-5,5c-2.8,0-5-2.2-5-5S4.2,2,7,2\'/><rect x=\'0.8\' y=\'5.9\' transform=\'matrix(0.7071 -0.7071 0.7071 0.7071 -2.8818 7.0063)\' fill=\'%23CCCCCC\' width=\'12.5\' height=\'2.3\'/></svg>")';
  826. const $file_icon_ignored_inv = $svg_icon_prefix + '<path fill=\'%23444444\' d=\'M7,0C3.1,0,0,3.1,0,7c0,3.9,3.1,7,7,7c3.9,0,7-3.1,7-7C14,3.1,10.9,0,7,0L7,0z\'/><path fill=\'%23555555\' d=\'M7,2c2.8,0,5,2.2,5,5s-2.2,5-5,5c-2.8,0-5-2.2-5-5S4.2,2,7,2\'/><rect x=\'0.8\' y=\'5.9\' transform=\'matrix(0.7071 -0.7071 0.7071 0.7071 -2.8818 7.0063)\' fill=\'%23444444\' width=\'12.5\' height=\'2.3\'/></svg>")';
  827. const $file_icon_invisible = $svg_icon_prefix + '<g> <polygon fill=\'%23888888\' points=\'8.3,0 1.5,0 1.5,14 12.5,14 12.5,4.2 \'/> <polygon fill=\'%23BBBBBB\' points=\'11,12.5 3,12.5 3,1.5 6.8,1.5 6.8,5.7 11,5.7 \'/> <polygon fill=\'%23BBBBBB\' points=\'8.3,4.2 10.2,4.2 8.3,2.2 \'/> </g> <circle fill=\'%23777777\' cx=\'7\' cy=\'9\' r=\'1\'/> </svg>")';
  828. // const $file_icon_video = 'url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><style type=\'text/css\'>.st0{fill:%23FFFFFF;}.st1{fill:%23EF6F2E;}</style><rect class=\'st0\' width=\'100\' height=\'100\'/><path class=\'st1\' d=\'M100 100H0V0h100V100zM9.7 90h80.7V10H9.7\'/><path class=\'st1\' d=\'M21 26.4v47.1h58V26.4H21zM31.9 69.9h-7.2v-7.2h7.2V69.9zM31.9 59.1h-7.2v-7.2h7.2V59.1zM31.9 48.2h-7.2v-7.2h7.2V48.2zM31.9 37.3h-7.2v-7.2h7.2V37.3zM42.8 62.7V37.3L60.9 50 42.8 62.7zM75.4 69.9h-7.2v-7.2h7.2V69.9zM75.4 59.1h-7.2v-7.2h7.2V59.1zM75.4 48.2h-7.2v-7.2h7.2V48.2zM75.4 37.3h-7.2v-7.2h7.2V37.3z\'/></svg>")';
  829. // const $file_icon_audio = 'url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><style type=\'text/css\'>.st0{fill:%23FFFFFF;}.st1{fill:%230E3693;}.st2{fill:%23003399;}</style><rect class=\'st0\' width=\'100\' height=\'100\'/><path class=\'st1\' d=\'M100 100H0V0h100V100zM9.7 90h80.7V10H9.7\'/><polyline class=\'st2\' points=\'32.5 37.5 23.5 37.5 23.5 62.5 32.5 62.5 53.6 77 53.6 23 32.5 37.5 \'/><path class=\'st2\' d=\'M71.9 50c0 6.8-3.7 12.7-9.1 15.8l2.8 4.9c7.1-4.1 11.9-11.8 11.9-20.7 0-8.8-4.8-16.6-11.9-20.7l-2.8 4.9C68.2 37.3 71.9 43.2 71.9 50z\'/><path class=\'st2\' d=\'M62.1 50c0 3.2-1.7 5.9-4.3 7.4l2.7 4.7c4.2-2.4 7-6.9 7-12.1 0-5.2-2.8-9.7-7-12.1l-2.7 4.7C60.4 44.1 62.1 46.8 62.1 50z\'/></svg>")';
  830. // const $file_icon_archive = 'url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><style type=\'text/css\'>.st0{fill:%23FFFFFF;}.st1{fill:%23D8A13F;}</style><rect class=\'st0\' width=\'100\' height=\'100\'/><path class=\'st1\' d=\'M100 100H0V0h100V100zM9.7 90h80.7V10H9.7\'/><path class=\'st1\' d=\'M72.4 38.5h-7.9v-7.9L72.4 38.5zM51.1 30.6v28.8h21.4v-19h-9.9v-9.9H51.1zM54.4 23H30.8v5.6h9.3l-5.9 4.5v4.8l8.6-6.6v-2.7h30.1v-2.3L54.4 23zM42.9 35.1l-8.6 6.6v4.8l8.6-6.6V35.1zM34.2 55.1l8.6-6.6v-4.8l-8.6 6.6V55.1zM42.9 57.1v-4.8l-8.6 6.6v2.6h-3.4v5.6h5.3v3.8H33c-0.6-1-1.6-1.6-2.8-1.6 -1.8 0-3.2 1.4-3.2 3.2s1.4 3.2 3.2 3.2c1.2 0 2.2-0.6 2.8-1.6h3.1V77h4.8v-2.9H44c0.6 1 1.6 1.6 2.8 1.6 1.8 0 3.2-1.4 3.2-3.2s-1.4-3.2-3.2-3.2c-1.2 0-2.2 0.6-2.8 1.6h-3.1v-3.8h13.5l18.5-3.3v-2.3H37.1L42.9 57.1z\'/></svg>")';
  831.  
  832.  
  833. // Assemble UI Elements
  834. function assembleUIElements() {
  835. $parents_dir_menu.find('div').append( $current_dir_path );
  836. $sidebar_header.find('thead th').append($toggle_sidebar);
  837. $sidebar_header.find('tbody tr').first().find('td').first().append( $parent_dir_menu ).next().append( $parents_dir_menu ).next().append( $shortcuts_menu );
  838. $sidebar_header.find('tbody tr:last-child td').append( $details_btn, $inv_checkbox, $grid_btn );
  839.  
  840. $dir_list.append($dir_list_head, $dir_list_body);
  841. $sidebar.append($sidebar_header, $dir_list);
  842. $sidebar_wrapper.append( $sidebar, $handle );
  843.  
  844. $content_image.append( $image );
  845. $checkbox_cont.append( $loop, $shuffle );
  846. $content_audio.find('td').append( $prev_track, $next_track, $audio, $close_audio, $checkbox_cont );
  847. // $content_audio_title.find('td').after( $close_audio );
  848. $content_title.prepend($content_reload_btn).append($content_close_btn);
  849. $content_header.find('tbody').append( $content_title, $content_audio_title, $content_audio );
  850. $content_font.append( $specimen );
  851. $content_container.append( $content_header, $content_image, $content_grid, $content_font, $content_pdf, $content_video, $content_iframe, $prev_btn, $next_btn, $content_scale );
  852. $content_pane.append( $content_container );
  853. }
  854. assembleUIElements();
  855.  
  856. //***** STYLES *****//
  857.  
  858. // DEFINE STYLES
  859. var $styles = '';
  860.  
  861. // background-color
  862. $styles += '#sidebar_wrapper, body.light_theme #sidebar, body.light_theme #sidebar ul, body.light_theme #content_header' +
  863. '{ background-color: lightgray }';
  864. $styles += 'body.light_theme #dir_list .selected, body.light_theme #dir_list .playing' + //body.light_theme #dir_list .selected.audio,
  865. '{ background-color: lightsteelblue; }';
  866. $styles += 'body.dark_theme #dir_list .selected' +
  867. '{ background-color: slategray; }';
  868. $styles += 'body.dark_theme #content_grid, #content_image, body.dark_theme #content_pane' +
  869. '{ background-color: #333; }';
  870. $styles += 'body.dark_theme #sidebar ul, body.dark_theme #sidebar_header thead, body.dark_theme #sidebar_header tbody tr:first-of-type, body.dark_theme.alternate_background #dir_list tbody tr:nth-of-type(odd):not(.selected)' +
  871. '{ background-color: #444; }';
  872. $styles += 'body.dark_theme #content_grid:not(.has_grid) .image_grid_item:hover, body.dark_theme #content_grid:not(.has_grid) div.image_grid_item.hovered, body.dark_theme #sidebar, body.dark_theme #content_header, body.dark_theme #dir_list #tbody, body.dark_theme #grid_btn .menu li, body.dark_theme .font_grid_item:hover, body.dark_theme .font_grid_item.hovered, body.dark_theme .image_grid_item:hover, body.dark_theme .image_grid_item.hovered' +
  873. '{ background-color: #555; }';
  874. $styles += 'body.dark_theme #content_grid:not(.has_grid) .image_grid_item.selected, body.dark_theme #sidebar ul li:hover, body.dark_theme #content_grid .font_grid_item.selected, body.dark_theme #content_grid .image_grid_item.selected' +
  875. '{ background-color: #666; }';
  876. $styles += 'body.dark_theme #grid_btn .menu li:hover, body.dark_theme #dir_list tbody tr:hover, body.dark_theme #dir_list tbody li:hover, body.dark_theme.alternate_background #dir_list #tbody tr:hover, body.dark_theme #sidebar .hovered, body.dark_theme #content_iframe[href^="/"], body.dark_theme.alternate_background #dir_list #tbody tr:nth-of-type(odd).hovered' +
  877. '{ background-color: #777; }';
  878. $styles += 'body.light_theme #sidebar_header thead tr, body.light_theme #sidebar_header tbody tr:first-of-type, #parents_dir_menu + ul li:hover, #shortcuts_menu + ul li:not(.has_submenu):hover, #grid_btn.has_images.has_fonts:hover .menu li:hover, body.light_theme #dir_list tbody tr:hover, body.light_theme.alternate_background #dir_list #tbody tr:hover, body.light_theme #dir_list .hovered, body.light_theme.alternate_background #dir_list #tbody tr.hovered' +
  879. '{ background-color: #BBB; }';
  880. $styles += 'body.light_theme #grid_btn .menu li, body.light_theme #content_grid div.selected, body.light_theme.alternate_background #dir_list tbody tr:nth-of-type(odd):not(.selected)' +
  881. '{ background-color: #CCC; }';
  882. $styles += 'body.light_theme #content_grid div:hover, body.light_theme #content_grid div.hovered' +
  883. '{ background-color: #DDD; }';
  884. $styles += 'body.light_theme #dir_list tbody' +
  885. '{ background-color: #DFDFDF; }';
  886. $styles += 'body.light_theme #content_pane, #content_image .img, body.light_theme #content_grid, #content_font, #content_iframe' +
  887. '{ background-color: #FFF; }';
  888. // EXCLUDED: Prevent previewed files with these extensions from being inverted in dark mode
  889. for ( let i = 0, n = $row_settings.exclude.length; i < n; i += 1) {
  890. $styles += 'body.dark_theme #content_iframe[src*="'+ $row_settings.exclude[i] +'" i] { background:#FFF; filter: unset; }';
  891. }
  892. $styles += 'body.dark_theme #content_iframe[src$="/" i]' +
  893. '{ background:#AAA; filter:unset; }';
  894. $styles += '#scale' +
  895. '{ background-color: rgba(128,128,128,0.3); }';
  896. $styles += 'body.is_chrome #audio' +
  897. '{ background-color: rgb(241, 243, 244); }';
  898. $styles += 'body.dark_theme #dir_list .playing, body.dark_theme.alternate_background #dir_list tbody tr.playing:nth-of-type(odd)' + //body.dark_theme #dir_list .selected.audio,
  899. '{ background-color: #4C7E80; }';
  900. $styles += '#dir_list tbody tr, #dir_list .audio a, #dir_list .video a, body.has_audio #content_pane.has_ignored #content_image, body.light_theme #grid_btn .menu, body.dark_theme #grid_btn .menu, body #dir_list tr.file.audio a.icon, body #dir_list tr.file.video a.icon, body.use_custom_icons #dir_list tr.file.ignore a.icon' +
  901. '{ background-color: transparent; }';
  902.  
  903. // BACKGROUND SVG IMAGES & ICONS
  904. $styles += '#parent_dir_menu a { background:' + $up_arrow + 'center no-repeat; }';
  905. $styles += '#shortcuts_menu div { background:'+ $menu_icon + 'center no-repeat; }';
  906. $styles += 'body.light_theme #shortcuts > li.has_submenu { background:'+ $menu_arrow +' right no-repeat; background-size: 12px; }';
  907. $styles += 'body.light_theme #shortcuts > li.has_submenu:hover { background:#BBB '+ $menu_arrow +' right no-repeat; background-size: 12px; }';
  908. $styles += 'body.light_theme #shortcuts li.checked span { background:'+ $check_mark +' 4px center no-repeat; background-size:12px; }';
  909. $styles += '#grid_btn { background:'+ $grid_icon +' center no-repeat; }';
  910. $styles += '#toggle_sidebar { background:'+ $toggle +' center no-repeat; background-size:12px; }';
  911. $styles += '#dir_list thead th.checked { background:'+ $check_mark +' 10px 2px no-repeat; background-size:10px; }';
  912. $styles += 'body.light_theme #dir_list thead th.checked:after { background:'+ $up_arrow +' center no-repeat; background-size:10px; }';
  913. $styles += '#dir_list tbody a { background-size:auto 13px; background-position:6px 4px; }';
  914. $styles += 'body.has_audio #content_pane { background-image: ' + $music +'; background-position: center; background-repeat: no-repeat; background-size:33.33%; }';
  915. $styles += '#prev_track, #next_track { background: rgb(241, 243, 244) '+ $next_track_arrow +' center no-repeat; background-blend-mode:difference; }';
  916. $styles += '#prev_track:hover, #next_track:hover, #close_audio:hover { background-blend-mode:normal; }';
  917. $styles += '#close_audio { background:rgb(241, 243, 244); }';
  918. $styles += '#close_audio:after { background:'+ $plus_sign +' center no-repeat; background-blend-mode:difference; background-size:14px; }';
  919. $styles += '#scale span:first-of-type { background:'+ $plus_sign +' center no-repeat; }';
  920. $styles += '#scale span:last-of-type { background:'+ $minus_sign +' center no-repeat; }';
  921. $styles += '#prev_btn, #next_btn { background: ' + $svg_arrow + ' center no-repeat; }';
  922. $styles += 'body #content_pane.has_ignored { background-image:'+ $file_icon_ignored +'; background-position: center; background-repeat: no-repeat; background-size:50%; }';
  923. // Dark theme
  924. $styles += 'body.dark_theme #content_pane.has_ignored { background-image:'+ $file_icon_ignored_inv +'; background-position: center; background-repeat: no-repeat; background-size:50%; }';
  925. $styles += 'body.dark_theme #shortcuts > li.has_submenu { background:'+ $menu_arrow_inv +' right no-repeat; background-size: 12px; }';
  926. $styles += 'body.dark_theme #shortcuts > li.has_submenu:hover { background:#666 '+ $menu_arrow_inv +' right no-repeat; background-size: 12px; }';
  927. $styles += 'body.dark_theme #shortcuts li.checked span { background:'+ $check_mark_inv +' 4px center no-repeat; background-size:12px; }';
  928. $styles += 'body.dark_theme #dir_list thead th.checked { background:'+ $check_mark_inv +' 10px 2px no-repeat; background-size:10px; }';
  929. $styles += 'body.dark_theme #dir_list thead th.checked:after { background:'+ $up_arrow_inv +' center no-repeat; background-size:10px; }';
  930. // Default File Icons
  931. $styles += 'body.use_default_icons #dir_list .dir a.icon { background:'+ $file_icon_dir_default + ' 6px 4px no-repeat; background-size:auto 13px; }';
  932. $styles += 'body.use_default_icons #dir_list .file a.icon { background:'+ $file_icon_file_default + ' 6px 4px no-repeat; background-size:auto 13px; }';
  933. // Custom File Icons
  934. $styles += 'body.use_custom_icons #dir_list tr.file:not(.dir) a.icon { background: '+ $file_icon_file +' 6px 4px no-repeat; background-size:14px 14px; }';
  935. $styles += 'body.use_custom_icons #dir_list tr.file.audio a.icon, body.use_custom_icons #dir_list tr.file.video a.icon { background: transparent; }';
  936. $styles += 'body.use_custom_icons #dir_list tr.file.font a.icon { background: '+ $file_icon_font +' 6px 4px no-repeat; background-size:14px 14px; }';
  937. $styles += 'body.use_custom_icons #dir_list tr.file.image a.icon { background: '+ $file_icon_image +' 6px 4px no-repeat; background-size:14px 14px; }';
  938. $styles += 'body.use_custom_icons #dir_list tr.file.pdf a.icon { background: '+ $file_icon_pdf +' 6px 4px no-repeat; background-size:14px 14px; }';
  939. $styles += 'body.use_custom_icons #dir_list tr.file[class*="htm"] a.icon { background: '+ $file_icon_html +' 6px 4px no-repeat; background-size:14px 14px; }';
  940. $styles += 'body.use_custom_icons #dir_list tr.file.ignore a.icon { background: '+ $file_icon_ignored +' 6px 4px no-repeat; }';
  941. $styles += 'body.use_custom_icons #dir_list tr.file.invisible a.icon { background: '+ $file_icon_invisible +' 6px 4px no-repeat; background-size:14px 14px; }';
  942. $styles += 'body.use_custom_icons #dir_list tr.dir.invisible a.icon { background: '+ $file_icon_dir_invisible +' 6px 4px no-repeat; background-size:14px 14px; }';
  943. $styles += 'body.use_custom_icons #dir_list tr.dir:not(.app) a.icon { background: '+ $file_icon_dir +' 6px 4px no-repeat; background-size:14px 14px; }';
  944. $styles += 'body.use_custom_icons #dir_list tr.app a { background: '+ $file_icon_app +' 6px 4px no-repeat !important; background-size:14px 14px; }';
  945. $styles += 'body.use_custom_icons #dir_list tr.file.code a.icon { background: '+ $file_icon_code +' 6px 4px no-repeat; background-size:14px 14px }';
  946. $styles += 'body.use_custom_icons #dir_list tr.file.text a.icon,body.use_custom_icons #dir_list tr.file.markdown a.icon { background: '+ $file_icon_text +' 6px 4px no-repeat; background-size:14px 14px }';
  947. // Plain text file icons
  948. for ( let i = 0, n = $row_types.text.length; i < n; i += 1) {
  949. // $styles += 'body.use_custom_icons #dir_list tr.file.'+ $row_types.text[i] +' a.icon { background: '+ $file_icon_text +' 6px 4px no-repeat; background-size:14px 14px }';
  950. }
  951.  
  952. // border
  953. $styles += ':root, html, body, #sidebar_wrapper, #sidebar_header, #dir_list, #main_content, #content_pane, #content_pdf, #content_iframe' +
  954. '{ border: 0 !important; }';
  955. $styles += 'body.dark_theme ul' +
  956. '{ border: solid 1px #222; }';
  957. $styles += '#details_btn' +
  958. '{ border: solid 1px #333; }';
  959. $styles += 'body.light_theme #sidebar ul, body.light_theme .image_grid_item img' +
  960. '{ border: solid 1px gray; }';
  961. // border-top
  962. $styles += 'body.dark_theme #sidebar_header .menu, body.dark_theme #sidebar #grid_btn ul.menu' +
  963. '{ border-top:solid 1px #111; }';
  964. $styles += 'body.dark_theme #dir_list #tbody' +
  965. '{ border-top:solid 1px #222; }';
  966. $styles += 'body.light_theme #dir_list tbody, #grid_btn .menu, .font_grid_item:not(:first-of-type), .image_grid_item + .font_grid_item' +
  967. '{ border-top:solid 1px grey; }';
  968. $styles += '#sort_by' + // , tr.dir ~ tr:not(.dir,.invisible,.ignore)
  969. '{ border-top:solid 1px #999; }';
  970. $styles += 'body.dark_theme.is_dirs_on_top #dir_list tbody tr.dir + tr.file' +
  971. '{ border-top:solid 1px #CCC; }';
  972. // border-right
  973. $styles += '#parents_dir_menu + ul, #shortcuts_menu + ul, body.dark_theme #sidebar #grid_btn ul.menu' +
  974. '{ border-right:0 !important; }';
  975. $styles += 'body.dark_theme #parents_dir_menu, body.dark_theme #sidebar, body.dark_theme #sidebar #grid_btn .menu li' +
  976. '{ border-right:solid 1px #111; }';
  977. $styles += '#sidebar, body.light_theme #parents_dir_menu, #grid_btn .menu li, .image_grid_item' +
  978. '{ border-right:solid 1px grey; }';
  979. // border-bottom
  980. $styles += 'body.dark_theme #sidebar_header thead tr, body.dark_theme #sidebar_header tbody tr:first-of-type' +
  981. '{ border-bottom:solid 1px black; }';
  982. $styles += 'body.dark_theme #sidebar_header .menu, body.dark_theme #content_header, body.dark_theme #sidebar #grid_btn .menu li:first-of-type, body.dark_theme #sidebar #grid_btn ul.menu' +
  983. '{ border-bottom:solid 1px #111; }';
  984. $styles += 'body.dark_theme #content_header tr:first-of-type' +
  985. '{ border-bottom:solid 1px #333; }';
  986. $styles += 'body.light_theme #sidebar_header thead tr, body.light_theme #sidebar_header tbody tr:first-of-type, #grid_btn .menu li:first-of-type, #grid_btn .menu, .specimen, .font_grid_item:last-of-type, .image_grid_item' +
  987. '{ border-bottom:solid 1px grey; }';
  988. $styles += '#content_header tr:first-of-type' +
  989. '{ border-bottom:solid 1px #888; }';
  990. $styles += '#shortcuts_menu + ul > li.has_submenu.ruled, body.is_dirs_on_top #dir_list tbody tr.sorted:not(:last-of-type), .rule' +
  991. '{ border-bottom:solid 1px #999; }';
  992. $styles += 'body.light_theme #content_header' +
  993. '{ border-bottom:solid 1px #AAA; }';
  994. $styles += 'body.dark_theme.is_dirs_on_top #dir_list tbody tr.sorted:not(:last-of-type), body.dark_theme #content_pane.has_font #content_font hr' +
  995. '{ border-bottom:solid 1px #CCC; }';
  996. // border-left
  997. $styles += '#parents_dir_menu + ul, #shortcuts_menu + ul' +
  998. '{ border-left:0; }';
  999. $styles += 'body.dark_theme #parents_dir_menu, body.dark_theme #sidebar #grid_btn ul.menu' +
  1000. '{ border-left:solid 1px #111; }';
  1001. $styles += 'body.light_theme #parents_dir_menu, #grid_btn .menu' +
  1002. '{ border-left:solid 1px grey; }';
  1003.  
  1004. // border-collapse
  1005. $styles += 'table' +
  1006. '{ border-collapse: collapse; }';
  1007.  
  1008. // border-radius
  1009. $styles += 'html, body, :root' +
  1010. '{ border-radius: 0; }';
  1011. $styles += '#details_btn' +
  1012. '{ border-radius: 3px; }';
  1013.  
  1014. // bottom
  1015. $styles += '#handle, #parent_dir_menu, #close_audio:after, #content_image, #content_pdf, #content_iframe, #content_grid, #content_font, #prev_btn, #next_btn, #dir_list tbody' +
  1016. '{ bottom: 0; }';
  1017.  
  1018. // box-shadow
  1019. $styles += 'body.light_theme #sidebar ul' +
  1020. '{ box-shadow: 0px 2px 3px -2px #888; }';
  1021. $styles += 'body.dark_theme #sidebar ul' +
  1022. '{ box-shadow:0px 2px 3px -2px #111; }';
  1023. $styles += 'body.dark_theme #sidebar #grid_btn ul.menu' +
  1024. '{ box-shadow:none; }';
  1025.  
  1026. // box-sizing
  1027. $styles += 'html, body, :root, #sidebar, #grid_btn .menu li' +
  1028. '{ box-sizing: border-box; }';
  1029.  
  1030. // clear
  1031. $styles += '#dir_list tbody .name' +
  1032. '{ clear:right; }';
  1033. $styles += '#checkbox_div label, #grid_btn .menu li, #dir_list tbody tr, #content_grid .font_grid_item' +
  1034. '{ clear: both; }';
  1035.  
  1036. // columns
  1037. $styles += '.lorem + .lorem' +
  1038. '{ columns:2; column-gap:2em; }';
  1039. $styles += '.lorem + .lorem + .lorem' +
  1040. '{ columns:3; }';
  1041.  
  1042. // color
  1043. $styles += 'body.dark_theme #shortcuts_menu + ul > li > ul, body.dark_theme #shortcuts_menu + ul > li.has_submenu + li:not(.has_submenu), #content_font' +
  1044. '{ color: #111 }';
  1045. $styles += '#sidebar, #parents_dir_menu + ul li a, body.light_theme #shortcuts_menu + ul li a, body.light_theme #shortcuts_menu + ul li:not(.disabled) > span, body.light_theme #dir_list th:not(.disabled), #dir_list tbody a, #dir_list .selected a, #dir_list .playing a, #content_header, body.dark_theme #details_btn span, .font_grid_item a, .image_grid_item p' +
  1046. '{ color: #111 }';
  1047. $styles += 'body.dark_theme #sidebar_header thead tr, body.dark_theme #sidebar_header tbody tr:first-of-type' +
  1048. '{ color: #444 }';
  1049. $styles += '#scale span:hover' +
  1050. '{ color: #666 }';
  1051. $styles += '#dir_list tr.ignore a, #dir_list tr.ignore.app a, #dir_list tr.ignore td.details' +
  1052. '{ color: #777 }';
  1053. $styles += '#sort_menu .disabled span, #dir_list th.disabled' +
  1054. '{ color: #999 }';
  1055. $styles += 'body.dark_theme #dir_list tr.file.ignore a.icon, body.dark_theme #dir_list tr.ignore td.details' +
  1056. '{ color: #BBB }';
  1057. $styles += 'body.dark_theme .font_grid_item p, body.dark_theme .font_grid_item a, body.dark_theme .image_grid_item p' +
  1058. '{ color: #DDD }';
  1059. $styles += 'body.dark_theme #sidebar th:not(.disabled), body.dark_theme #sidebar td, body.dark_theme #sidebar a, body.dark_theme #content_header tr, body.dark_theme #sidebar tbody tr:first-of-type span' +
  1060. '{ color: #EEE }';
  1061.  
  1062. // content
  1063. $styles += '#dir_list thead th.checked:after, body.has_hidden_sidebar #handle, #dir_list thead th.checked:before, #dir_list thead td.icon, #dir_list tr:empty, #dir_list .audio td.icon, #dir_list .video td.icon, body.hide_invisibles .invisible, body.hide_ignored .ignore, body.use_custom_icons #dir_list tr.file.ignore a.icon::before, #close_audio:after' +
  1064. '{ content:"" }';
  1065. $styles += 'body.dark_theme #dir_list thead th.checked:after' +
  1066. '{ content:" " }';
  1067. $styles += '#content_pane.has_audio #content_audio_title td:before, body #content_pane.has_video #title:before' +
  1068. '{ content:"Playing: " }'; // .audio, .video
  1069. $styles += '#content_pane.has_dir:not(.has_grid) #title:before' +
  1070. '{ content:"Index of: " }'; // .dir
  1071. $styles += '#content_pane.has_grid:not(.has_ignored) #title:before' +
  1072. '{ content:"Fonts and Images from: " }'; // font and image grid
  1073. $styles += 'body:not(.has_images) #content_pane.has_grid:not(.has_ignored) #title:before, #content_pane.has_grid #title.font_grid:before' +
  1074. '{ content:"Fonts from: " }'; // font grid
  1075. $styles += 'body:not(.has_fonts) #content_pane.has_grid:not(.has_ignored) #title:before, #content_pane.has_grid #title.image_grid:before' +
  1076. '{ content:"Images from: " }'; // image grid
  1077. $styles += '#content_pane.has_ignored:not(.has_grid) #title:before' +
  1078. '{ content:"Ignored content: " }'; // .ignored
  1079.  
  1080. // cursor
  1081. $styles += '#sidebar_header thead th, #sort_menu .disabled span, #dir_list .disabled' +
  1082. '{ cursor: default; }';
  1083. $styles += '#sidebar_header tbody tr:first-of-type td:hover, #parents_dir_menu div, #shortcuts_menu div, #grid_btn, #dir_list thead th, #scale span' +
  1084. '{ cursor: pointer; }';
  1085. $styles += '#handle' +
  1086. '{ cursor: col-resize; }';
  1087. $styles += '#content_image img:not(.zoom_img)' +
  1088. '{ cursor: zoom-in; }';
  1089. $styles += '#content_image img.zoom_img' +
  1090. '{ cursor: zoom-out; }';
  1091.  
  1092. // display
  1093. $styles += '#sidebar tbody tr:first-of-type ul, #light_theme, #details_btn span:last-of-type, #grid_btn, #grid_btn:not(:hover) .menu, #dir_list thead .name input, #dir_list .details, body.has_hidden_sidebar #handle, #dir_list thead th.checked:before, #dir_list thead td.icon, #dir_list tr td:not(.name), body.has_hidden_sidebar #dir_list tr td, #dir_list tr:empty, #dir_list tr.audio td.icon, #dir_list tr.video td.icon, body.hide_invisibles #tbody tr.invisible, body.hide_ignored #tbody tr.ignore, #content_title:before, #content_header, #content_audio_title, #content_audio td, #content_pane section header ~ *[id^="content"], .nav_btn, #content_grid, #content_pane.has_hidden_grid #content_grid, #scale, body.light_theme #dark_theme, body.dark_theme #light_theme, body.preview_text #edit_text, body:not(.preview_text) #preview_text, body.use_custom_icons #dir_list img, #dir_list tr.file.audio a img, #dir_list tr.file.video a img' +
  1094. '{ display: none; }';
  1095. $styles += '#sidebar li, #parent_dir_menu, #parent_dir_menu a, #parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu + ul > li:hover > ul, #shortcuts_menu + ul > li > ul:hover, #default, #dir_list tbody a, #content_pane[class^="has_"] #content_header, #content_pane.has_image:hover #scale, #content_pane.has_font:hover #scale, #content_pane.has_font #content_font, #content_pane.has_image #content_image, #content_pane.has_pdf #content_pdf, #content_pane.has_video #content_video, #content_pane.has_iframe #content_iframe, #content_pane.has_dir #content_iframe, #content_pane.has_grid #content_grid.has_grid, #content_pane.has_grid #content_grid.has_font_grid, .font_grid_item, .image_grid_item a, #content_pane.has_grid .nav_btn, #content_pane.has_font .nav_btn, #content_pane.has_image .nav_btn, #scale span, #checkbox_div label, body.dark_theme #dark_theme, body.light_theme #light_theme, body.use_custom_icons #dir_list tr.file.ignore a.icon::before, body:not(.has_hidden_sidebar) #dir_list .name' +
  1096. '{ display: block; }';
  1097. $styles += 'body.has_images.has_fonts #grid_btn:hover ul.menu' +
  1098. '{ display:block !important; }';
  1099. $styles += '#parents_dir_menu div, body.has_fonts #grid_btn, body.has_images #grid_btn, #dir_list thead th.checked:after, #dir_list.show_details th:not(.name), #dir_list.show_details td:not(.name):not(.ext), body.has_audio #dir_list thead input, #content_grid .image_grid_item, #checkbox_div, #prev_track, #next_track, #close_audio, body.dark_theme #dir_list thead th.checked:after, #content_pane[class^="has_"] #content_container' +
  1100. '{ display: inline-block; }';
  1101. $styles += '#content_pane.has_audio #content_audio_title, #content_pane.has_audio #content_audio' +
  1102. '{ display: table-row !important; }';
  1103. $styles += '#shortcuts_menu div, #content_pane[class^="has"] #title, #content_pane[class^="has"] #content_header, #content_pane.has_audio #content_audio td' +
  1104. '{ display: table-cell !important; }';
  1105. $styles += '#content_pane.has_grid #content_grid.has_image_grid' +
  1106. '{ display: grid !important; }';
  1107. $styles += '#content_grid.has_image_grid' +
  1108. '{ grid-gap:0; grid-template-columns:repeat(auto-fill, minmax(200px, 1fr)); align-content: start; }';
  1109. $styles += '#thead, #theader, body[class^="is_default"] #tbody tr, body[class^="is_converted"] #tbody tr, body.show_invisibles #tbody tr, body.hide_invisibles #tbody tr:not(.invisible)' +
  1110. '{ display: table; }'; // needed to make rows full width and dir_list scrollable
  1111.  
  1112. // filter
  1113. $styles += '#prev_btn, #next_btn' +
  1114. '{ filter:invert(50%); }';
  1115. $styles += 'body.dark_theme #content_iframe, body.dark_theme #content_font' +
  1116. '{ filter:invert(87.5%); }';
  1117. $styles += '#scale span:hover, body.dark_theme #sidebar #grid_btn, body.dark_theme #grid_btn .menu, body.dark_theme #parent_dir_menu, body.dark_theme #shortcuts_menu, body.dark_theme #toggle_sidebar' +
  1118. '{ filter:invert(100%); }';
  1119.  
  1120. // float
  1121. $styles += '#content_header tr:first-of-type td:first-of-type, #checkbox_div label' +
  1122. '{ float: left; }';
  1123. $styles += '#grid_btn, #content_header tr:first-of-type td:last-of-type' +
  1124. '{ float: right; }';
  1125.  
  1126. // font-family
  1127. $styles += 'html, body, :root' +
  1128. '{ font-family:'+ $settings.UI_font +', arial, "fira sans", helvetica, sans-serif; }';
  1129.  
  1130. // font-size
  1131. $styles += 'html' +
  1132. '{ font-size: 100.001%; }';
  1133. $styles += 'body, :root' +
  1134. '{ font-size:'+ $settings.UI_font_size +'; }';
  1135. $styles += '#sidebar, #sidebar_header, #sidebar_header thead th, #dir_list, #dir_list .details, #content_header, #content_header table' +
  1136. '{ font-size: 0.875rem; }';
  1137. $styles += '#content_grid, .font_grid_item p' +
  1138. '{ font-size: 1rem; }';
  1139. $styles += '#scale span' +
  1140. '{ font-size: 2rem; }';
  1141. $styles += '#content_grid .font_grid_item h2' +
  1142. '{ font-size:'+ $grid_font_size * 4 +'em; }';
  1143. $styles += '#content_font' +
  1144. '{ font-size:'+ $grid_font_size +'em; }';
  1145. $styles += '.lorem.first:first-line' +
  1146. '{ font-size:'+ $grid_font_size*1.33 +'em; }';
  1147.  
  1148. // font-variant
  1149. $styles += '.lorem.first:first-line' +
  1150. '{ font-variant: small-caps }';
  1151.  
  1152. // font-weight
  1153. $styles += '#sidebar_header thead th, h2' +
  1154. '{ font-weight: normal }';
  1155. $styles += '#dir_list .selected a, #dir_list .playing a' +
  1156. '{ font-weight: bold }';
  1157.  
  1158. // height
  1159. $styles += 'html, body, :root, #parent_dir_menu a, #content_container, #main_content, #content_pdf, #content_iframe, .image_grid_item a' +
  1160. '{ height: 100%; }';
  1161. $styles += '#sidebar_header, #parents_dir_menu, #parents_dir_menu div, #content_grid div img, #content_image img:not(.zoom_img)' +
  1162. '{ height: auto; }';
  1163. $styles += '#dir_list thead th.checked:after' +
  1164. '{ height: 8px; }';
  1165. $styles += '#toggle_sidebar' +
  1166. '{ height: 14px; }';
  1167. $styles += '#dir_list td.icon' +
  1168. '{ height: 16px; }';
  1169. $styles += '#grid_btn, body.use_custom_icons #dir_list tr.file.ignore a.icon::before' +
  1170. '{ height: 18px; }';
  1171. $styles += '#audio' +
  1172. '{ height: 32px; }';
  1173. $styles += 'body.dark_theme #dir_list thead th.checked:after' +
  1174. '{ height: 1em; }';
  1175. $styles += '#scale span' +
  1176. '{ height: 2rem; }';
  1177. $styles += '#content_grid.has_grid .image_grid_item' +
  1178. '{ height: '+ $grid_image_size +'px; }';
  1179. $styles += '#sidebar' +
  1180. '{ height:'+ window.innerHeight +'px; }';
  1181.  
  1182. // max-height
  1183. $styles += '#content_image img.zoom_img' +
  1184. '{ max-height: none; }';
  1185. $styles += '#content_grid div img' +
  1186. '{ max-height:'+ ($grid_image_size - $grid_image_size/8) +'px; }';
  1187. // min-height
  1188. $styles += '#sidebar' +
  1189. '{ min-height: 100%; }';
  1190.  
  1191. // hyphens
  1192. $styles += '#parents_dir_menu div, #content_header td button, #content_font' +
  1193. '{ hyphens: none; }';
  1194. $styles += 'html, body, :root, .lorem' +
  1195. '{ hyphens: auto; }';
  1196.  
  1197. // left
  1198. $styles += '#sidebar ul, #parent_dir_menu, #dir_list thead, #dir_list tbody, #close_audio:after, #content_header, #content_image, #content_pdf, #content_iframe, #content_grid, #content_font, body.use_custom_icons #dir_list tr.file.ignore a.icon::before, body.has_hidden_sidebar #toggle_sidebar' +
  1199. '{ left: 0; }';
  1200. $styles += '#sidebar #grid_btn ul.menu' +
  1201. '{ left: unset; }';
  1202. $styles += 'body.has_hidden_sidebar #sidebar_wrapper' +
  1203. '{ left: 3px; }';
  1204. $styles += '#shortcuts_menu + ul > li > ul' +
  1205. '{ left: 100%; }';
  1206.  
  1207. // letter-spacing
  1208. $styles += '.lorem.first:first-line, .font_grid_item p' +
  1209. '{ letter-spacing: 0.1em }';
  1210. $styles += '#sidebar_header thead th' +
  1211. '{ letter-spacing: 0.5em }';
  1212.  
  1213. // line-height
  1214. $styles += '.font_grid_item p' +
  1215. '{ line-height: 1 }';
  1216. $styles += '#dir_list tr a, .lorem' +
  1217. '{ line-height: 1.4 }';
  1218.  
  1219. // list-style
  1220. $styles += '#sidebar ul, #grid_btn .menu li' +
  1221. '{ list-style-type: none; }';
  1222.  
  1223. // margin
  1224. $styles += 'html, body, :root, #sidebar ul, #parent_dir_menu, #parent_dir_menu, #parents_dir_menu, #parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu, #grid_btn, #dir_list tbody a, #content_grid p, #content_grid h2' +
  1225. '{ margin: 0; }';
  1226. // margin-top
  1227. $styles += '.image_grid_item + .font_grid_item' +
  1228. '{ margin-top:-1px; }';
  1229. $styles += '#checkbox_div label input, #details_btn' +
  1230. '{ margin-top: 0; }';
  1231. $styles += 'body.has_audio #dir_list input' +
  1232. '{ margin-top: 1px; }';
  1233. // margin-right
  1234. $styles += '#content_video' +
  1235. '{ margin-right: auto; }';
  1236. $styles += '#dir_list thead th.checked' +
  1237. '{ margin-right: 0; }';
  1238. $styles += 'body.has_audio #dir_list input, #reload_btn' +
  1239. '{ margin-right: 8px; }';
  1240. $styles += '#details_btn' +
  1241. '{ margin-right: 0.5em; }';
  1242. $styles += '#dir_list thead th:last-of-type' +
  1243. '{ margin-right: 1em; }';
  1244. $styles += '#checkbox_div' +
  1245. '{ margin-right: calc(-6em - 4px); }';
  1246. // margin-bottom
  1247. $styles += '#details_btn' +
  1248. '{ margin-bottom: 0; }';
  1249. $styles += 'body.has_audio #dir_list input' +
  1250. '{ margin-bottom: 1px; }';
  1251. // margin-left
  1252. $styles += '#content_video' +
  1253. '{ margin-left: auto; }';
  1254. $styles += '#dir_list thead th.checked' +
  1255. '{ margin-left: 0; }';
  1256. $styles += 'body.has_hidden_sidebar #reload_btn' +
  1257. '{ margin-left: 16pt; }';
  1258. $styles += '#details_btn' +
  1259. '{ margin-left: 0.5em; }';
  1260. $styles += '#dir_list tbody tr' +
  1261. '{ margin-inline-start:0; }';
  1262. // -webkit-margin
  1263. $styles += '#sidebar ul' +
  1264. '{ -webkit-margin-before:0em !important; -webkit-margin-after:0em !important; -webkit-padding-start:0em; }';
  1265.  
  1266. // opacity
  1267. $styles += '#content_pane #scale' +
  1268. '{ opacity:0; }';
  1269. $styles += '#scale span:first-of-type, #scale span:last-of-type, #content_pane.has_ignored:before, #close_audio::after' +
  1270. '{ opacity:0.3; }';
  1271. $styles += '#scale span:hover' +
  1272. '{ opacity:0.5; }';
  1273. $styles += '#prev_btn, #next_btn, #close_audio:hover::after' +
  1274. '{ opacity:0.6; }';
  1275. $styles += '#sidebar_header tbody tr:first-of-type td:last-of-type:hover > div, #shortcuts_menu div, #shortcuts_menu div, #parent_dir_menu, #prev_btn, #next_btn, #toggle_sidebar, body.use_custom_icons #dir_list tr.file.ignore a.icon::before' +
  1276. '{ opacity: 0.7; }';
  1277. $styles += '#content_grid div img' +
  1278. '{ opacity:0.8; }';
  1279. $styles += '#grid_btn:hover, #parent_dir_menu:hover, #prev_btn:hover, #next_btn:hover, #toggle_sidebar:hover, #content_pane.has_grid:hover #scale, #content_pane.has_font:hover #content_font ~ #scale, #content_pane.has_image:hover #content_image ~ #scale' +
  1280. '{ opacity:1; }';
  1281.  
  1282. // outline
  1283. $styles += '#grid_btn, #dir_list tbody, #dir_list tbody a, #content_grid .font_grid_item, #content_font' +
  1284. '{ outline: none; }';
  1285.  
  1286. // overflow
  1287. $styles += '#content_container' +
  1288. '{ overflow: visible; }';
  1289. $styles += 'html, body, :root, #parents_dir_menu div, #shortcuts_menu, #dir_list, #dir_list tbody a, #main_content, #close_audio' +
  1290. '{ overflow: hidden; }';
  1291. $styles += '#content_font, #content_grid, #content_image' +
  1292. '{ overflow: auto; }';
  1293. $styles += '#dir_list tbody' +
  1294. '{ overflow-y: auto; }';
  1295. $styles += '#sidebar, #content_font' +
  1296. '{ overflow-wrap: break-word; }';
  1297. $styles += '.lorem' +
  1298. '{ overflow-wrap: normal; }';
  1299.  
  1300. // padding
  1301. $styles += 'html, body, :root, #sidebar_wrapper, #sidebar ul, #parent_dir_menu, #sidebar_header tbody tr td, #parent_dir_menu, #parent_dir_menu a, #parents_dir_menu, #shortcuts_menu, #dir_list .details a, #content_pane, #content_pdf, #content_iframe, audio::-webkit-media-controls-panel' +
  1302. '{ padding: 0; }';
  1303. $styles += '#sidebar_header thead th' +
  1304. '{ padding: 4px; }';
  1305. $styles += '.image_grid_item' +
  1306. '{ padding:6px; }';
  1307. // padding-top
  1308. $styles += '#dir_list thead th, #dir_list .details, #prev_track, #next_track, #close_audio' +
  1309. '{ padding-top: 0; }';
  1310. $styles += '#details_btn, #prev_btn, #next_btn' +
  1311. '{ padding-top: 2px; }';
  1312. $styles += '#parents_dir_menu div, #grid_btn .menu li, #dir_list tbody a, #content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type, #title, body #content_audio_title td, #content_audio td' +
  1313. '{ padding-top: 4px; }';
  1314. $styles += '#sidebar_header tbody tr:last-of-type td, #parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu + ul li div span' +
  1315. '{ padding-top: 6px; }';
  1316. $styles += '#content_header table' +
  1317. '{ padding-top: 7px; }';
  1318. $styles += '#content_grid .font_grid_item, .font_grid_item p' +
  1319. '{ padding-top: 0.5rem; }';
  1320. $styles += '#content_image, #content_font div' +
  1321. '{ padding-top: 2rem; }';
  1322. // padding-right
  1323. $styles += '#sidebar_header tbody tr:last-of-type td, #dir_list .details, #prev_track, #next_track, #close_audio' +
  1324. '{ padding-right: 0; }';
  1325. $styles += '#parents_dir_menu div, #details_btn, #grid_btn .menu li, #dir_list tbody a, #content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type, #content_audio td, #close_audio' +
  1326. '{ padding-right: 6px; }';
  1327. $styles += '#parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu + ul li div span' +
  1328. '{ padding-right: 8px; }';
  1329. $styles += '#dir_list tbody tr, #content_header table, #title, #prev_btn, #next_btn' +
  1330. '{ padding-right: 12px; }';
  1331. $styles += '#grid_btn .menu, #dir_list thead th, #content_audio_title td' +
  1332. '{ padding-right: 29px; }';
  1333. $styles += '#content_grid .font_grid_item, #content_image, #content_font div' +
  1334. '{ padding-right: 2.5rem; }';
  1335. // padding-bottom
  1336. $styles += '#prev_track, #next_track, #close_audio, #prev_btn, #next_btn' +
  1337. '{ padding-bottom: 0px }';
  1338. $styles += '#details_btn, body.is_dirs_on_top #dir_list tbody tr.sorted:not(:last-of-type)' +
  1339. '{ padding-bottom: 2px; }';
  1340. $styles += '#title, body #content_audio_title td' +
  1341. '{ padding-bottom: 3px;}';
  1342. $styles += '#parents_dir_menu div, #grid_btn .menu li, #dir_list tbody a, #dir_list .details' +
  1343. '{ padding-bottom: 4px; }';
  1344. $styles += '.specimen, .font_grid_item p' +
  1345. '{ padding-bottom: 0.25em; }';
  1346. $styles += '#content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type' +
  1347. '{ padding-bottom: 3px; }';
  1348. $styles += '#content_header table' +
  1349. '{ padding-bottom: 5px; }';
  1350. $styles += '#sidebar_header tbody tr:last-of-type td, #parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu + ul li div span, #dir_list thead th, #content_audio td' +
  1351. '{ padding-bottom: 6px; }';
  1352. $styles += '#dir_list thead th.details' +
  1353. '{ padding-bottom: 9px; }';
  1354. $styles += '#content_grid .font_grid_item' +
  1355. '{ padding-bottom: 0.5rem; }';
  1356. $styles += '#content_grid.has_image_grid' +
  1357. '{ padding-bottom: 1rem; }';
  1358. $styles += '#content_image, #content_font div:first-of-type' +
  1359. '{ padding-bottom: 2rem; }';
  1360. // padding-left
  1361. $styles += '#grid_btn .menu, #sidebar_header tbody tr:last-of-type td' +
  1362. '{ padding-left: 0; }';
  1363. $styles += '#dir_list .audio a, #dir_list .video a, #checkbox_div' +
  1364. '{ padding-left: 4px; }';
  1365. $styles += '#parents_dir_menu div, #dir_list td.icon, #dir_list .icon + td.name a, #checkbox_div #parents_dir_menu div, #details_btn, #grid_btn .menu li, #content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type, #content_audio td, #prev_track' +
  1366. '{ padding-left: 6px; }';
  1367. $styles += '#parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #shortcuts_menu + ul li div span' +
  1368. '{ padding-left: 8px; }';
  1369. $styles += '#content_header table, #dir_list td.size, #title, #prev_btn, #next_btn' +
  1370. '{ padding-left: 12px; }';
  1371. $styles += '#dir_list thead th, #dir_list .details, #dir_list td.date' +
  1372. '{ padding-left: 24px; }';
  1373. $styles += '#dir_list tbody a' +
  1374. '{ padding-left: 27px; -webkit-padding-start: 27px; }';
  1375. $styles += '#content_audio_title td' +
  1376. '{ padding-left: 29px; }';
  1377. $styles += '#sort_menu li span, #dir_list thead .name, #default' +
  1378. '{ padding-left: 2em; }';
  1379. $styles += '#content_grid .font_grid_item, #content_image, #content_font div' +
  1380. '{ padding-left: 2.5rem; }';
  1381. //-webkit-padding
  1382. $styles += '#dir_list .icon + td.name a' +
  1383. '{ -webkit-padding-start:1em; }';
  1384.  
  1385. // position
  1386. $styles += '#sidebar_wrapper, #sidebar_header, #sidebar_header tbody tr, #sidebar_header tbody tr:first-of-type td:first-of-type, #sidebar_header tbody tr:last-of-type td, #dir_list, #dir_list thead, #dir_list thead th.checked ,#dir_list tr.ignore a, #dir_list tr.ignore.app a, #dir_list tr.ignore td.details, #shortcuts_menu + ul > li.has_submenu, #content_pane, #close_audio, #content_grid div img, #content_image img:not(.zoom_img)' +
  1387. '{ position: relative; }';
  1388. $styles += '#sidebar ul, #handle, #parent_dir_menu, #toggle_sidebar, body.has_hidden_sidebar #sidebar_wrapper, #dir_list tbody, #dir_list thead th.checked:after, #content_header, #close_audio:after, #content_grid, #content_image, #content_font, #content_pdf, #content_iframe, #scale, #prev_btn, #next_btn, body.use_custom_icons #dir_list tr.file.ignore a.icon::before' +
  1389. '{ position: absolute; }';
  1390.  
  1391. // right
  1392. $styles += '#sidebar ul, #parent_dir_menu, #grid_btn .menu, #dir_list thead, #dir_list tbody, #close_audio:after, #content_header, #content_image, #content_pdf, #content_iframe, #content_grid, #content_font, #next_btn' +
  1393. '{ right: 0; }';
  1394. $styles += '#toggle_sidebar' +
  1395. '{ right: 4px; }';
  1396. $styles += '#handle' +
  1397. '{ right: -4px; }';
  1398. $styles += '#scale' +
  1399. '{ right: 1rem; }';
  1400.  
  1401. // table-layout
  1402. $styles += '#dir_list' +
  1403. '{ table-layout: fixed; }';
  1404.  
  1405. // text-align
  1406. $styles += '#sidebar ul, #dir_list thead, #dir_list tbody, #dir_list tbody .name, #dir_list .details, #content_header tr:first-of-type td:first-of-type, #content_grid, #content_grid .font_grid_item, .specimen' +
  1407. '{ text-align: left; }';
  1408. $styles += '#parent_dir_menu a, #parents_dir_menu, #parents_dir_menu div, #shortcuts_menu div, #content_header, #title, #content_grid .image_grid_item, #content_image, #content_audio_title, #content_audio td, #scale span' +
  1409. '{ text-align: center; }';
  1410. $styles += '#grid_btn .menu li, #dir_list .size, #dir_list .date, #content_header tr:first-of-type td:last-of-type' +
  1411. '{ text-align: right; }';
  1412. $styles += '.lorem' +
  1413. '{ text-align: justify; }';
  1414.  
  1415. // text-decoration
  1416. $styles += 'a, a:hover' +
  1417. '{ text-decoration: none !important; }';
  1418.  
  1419. // text-indent
  1420. $styles += '#shortcuts li' +
  1421. '{ text-indent: 1em; }';
  1422.  
  1423. // text-transform
  1424. $styles += '.font_grid_item p' +
  1425. '{ text-transform: uppercase; }';
  1426.  
  1427. // top
  1428. $styles += '#handle, #parent_dir_menu, #content_container, #content_header, #close_audio:after, #content_image, #content_image img.zoom_img, #content_pdf, #content_iframe, #prev_btn, #next_btn, body.use_custom_icons #dir_list tr.file.ignore a.icon::before' +
  1429. '{ top: 0; }';
  1430. $styles += '#shortcuts_menu + ul > li > ul, body.light_theme #grid_btn .menu' +
  1431. '{ top: -1px !important; }';
  1432. $styles += 'body.has_hidden_sidebar #sidebar_wrapper, #dir_list thead th.checked:after' +
  1433. '{ top: 2px; }';
  1434. $styles += '#toggle_sidebar' +
  1435. '{ top: 4px; }';
  1436. $styles += 'body.dark_theme #grid_btn .menu' +
  1437. '{ top: -7px; }';
  1438. $styles += '#content_grid div img, #content_image img:not(.zoom_img), .vert_center' +
  1439. '{ top: 50%; }';
  1440.  
  1441. // transform
  1442. $styles += 'body.has_hidden_sidebar #toggle_sidebar, #dir_list thead th.checked:not(.up):after, #next_track, #next_btn' +
  1443. '{ transform:rotate(180deg); }';
  1444. $styles += '#close_audio:after' +
  1445. '{ transform:rotate(45deg); }';
  1446. $styles += '.vert_center' +
  1447. '{ transform:translateY(50%); }';
  1448. $styles += '#content_grid div img, #content_image img:not(.zoom_img)' +
  1449. '{ transform:translateY(-50%); }';
  1450. $styles += '#content_image img.zoom_img' +
  1451. '{ transform:translateY(0); }';
  1452.  
  1453. // transition
  1454. $styles += '#scale' +
  1455. '{ transition:opacity 1s ease-in-out; }';
  1456.  
  1457. // user-select
  1458. $styles += '#sidebar_header, #content_image img:not(.zoom_img)' +
  1459. '{ user-select:none; -webkit-user-select:none; }';
  1460.  
  1461. // vertical-align
  1462. $styles += '#dir_list .details' +
  1463. '{ vertical-align: top }';
  1464. $styles += '#sidebar_header tbody tr:last-of-type td, #parent_dir_menu a, #parents_dir_menu div, #shortcuts_menu div, #content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type, #title, #content_grid .image_grid_item' +
  1465. '{ vertical-align:middle; }';
  1466.  
  1467. // white-space
  1468. $styles += '#sidebar_header tbody tr:last-of-type td, #parents_dir_menu div, #parents_dir_menu + ul li a, #shortcuts_menu + ul li a, #shortcuts_menu + ul li > span, #dir_list tbody a, .specimen, .lorem' +
  1469. '{ white-space: normal; }';
  1470. $styles += '#grid_btn .menu li' +
  1471. '{ white-space: pre; }';
  1472. $styles += '#dir_list thead' +
  1473. '{ white-space: pre-wrap; }';
  1474.  
  1475. // width
  1476. $styles += 'html, body, :root, table, #sidebar_header tbody tr:first-of-type td:nth-of-type(even), #parent_dir_menu a, #dir_list thead, #tbody, #tbody tr, #shortcuts_menu + ul > li > ul, #grid_btn .menu li, body.has_hidden_sidebar #content_pane, #content_container, #content_header, #content_pdf, #content_iframe' +
  1477. '{ width: 100%; }';
  1478. $styles += '#content_grid, #content_grid div img, #content_image img:not(.zoom_img)' +
  1479. '{ width: auto; }';
  1480. $styles += '#handle' +
  1481. '{ width: 8px; }';
  1482. $styles += '#toggle_sidebar' +
  1483. '{ width: 16px; }';
  1484. $styles += 'body.use_custom_icons #dir_list tr.file.ignore a.icon::before' +
  1485. '{ width: 20px; }';
  1486. $styles += '#sidebar_header tbody tr:first-of-type td:nth-of-type(odd)' +
  1487. '{ width: 24px; }';
  1488. $styles += '#grid_btn' +
  1489. '{ width: 28px; }';
  1490. $styles += '#dir_list thead th.checked:after, #prev_track, #next_track, #close_audio, #scale span' +
  1491. '{ width: 2rem; }';
  1492. $styles += '#shortcuts_menu div, #checkbox_div' +
  1493. '{ width: 6em; }';
  1494. $styles += '#content_header tr:first-of-type td:first-of-type, #content_header tr:first-of-type td:last-of-type' +
  1495. '{ width: 4em; }';
  1496. $styles += 'body.has_hidden_sidebar #sidebar_wrapper' +
  1497. '{ width: 0 !important; }';
  1498. $styles += '#dir_list .size, #dir_list .kind' +
  1499. '{ width: 16%; }';
  1500. $styles += '#dir_list .date' +
  1501. '{ width: 30%; }';
  1502. $styles += '#content_grid.has_grid .image_grid_item' +
  1503. '{ width: '+ $grid_image_size +'px; }';
  1504. $styles += 'body.has_hidden_sidebar #content_pane, #content_header tr:first-of-type td:nth-of-type(2)' +
  1505. '{ width: 100% !important; }';
  1506. $styles += 'body:not(.has_hidden_sidebar) #sidebar_wrapper' +
  1507. '{ width:'+ $UI_pref_width +'%; }';
  1508. $styles += '#content_pane' +
  1509. '{ width:'+ (100 - $UI_pref_width).toString() +'%; }';
  1510. $styles += '#content_grid .font_grid_item' +
  1511. '{ width:calc(100% - 5rem); }';
  1512. // max-width
  1513. $styles += 'html, body, :root, #content_image img:not(.zoom_img)' +
  1514. '{ max-width: 100%; }';
  1515. $styles += '#content_image img.zoom_img' +
  1516. '{ max-width: none; }';
  1517. $styles += '#sidebar_header tbody tr:first-of-type td:nth-of-type(odd)' +
  1518. '{ max-width: 24px; }';
  1519. $styles += '#content_grid div img' +
  1520. '{ max-width:'+ ($grid_image_size - $grid_image_size/8) +'px; }';
  1521. // min-width
  1522. $styles += 'body:not(.has_hidden_sidebar) #sidebar_header tbody tr:first-of-type td:nth-of-type(odd)' +
  1523. '{ min-width: 24px; }';
  1524. $styles += '#dir_list .size, #dir_list .kind' +
  1525. '{ min-width: 5em; }';
  1526. $styles += '#dir_list td.date' +
  1527. '{ min-width: 12em; }';
  1528. $styles += 'body:not(.has_hidden_sidebar) #dir_list' +
  1529. '{ min-width: 100px; }';
  1530. $styles += 'body:not(.has_hidden_sidebar) #sidebar_wrapper' +
  1531. '{ min-width: 220px; }';
  1532.  
  1533. // will-change
  1534. $styles += '#sidebar_wrapper, #content_pane' +
  1535. '{ will-change: width }';
  1536.  
  1537. // word-break
  1538. $styles += '#content_header td button' +
  1539. '{ word-break: none; }';
  1540. $styles += '#title' +
  1541. '{ word-break: break-word; }';
  1542. $styles += '#content_font' +
  1543. '{ word-break: break-all; }';
  1544. $styles += '.lorem' +
  1545. '{ word-break: normal; }';
  1546.  
  1547. // z-index
  1548. $styles += '#content_grid' +
  1549. '{ z-index: -1; }';
  1550. $styles += '#content_pane.has_grid #content_grid' +
  1551. '{ z-index: 1; }';
  1552. $styles += '#scale, #prev_btn, #next_btn' +
  1553. '{ z-index: 10; }';
  1554. $styles += '#parents_dir_menu + ul, #content_header' +
  1555. '{ z-index: 20; }';
  1556. $styles += '#handle' +
  1557. '{ z-index: 1000; }';
  1558. $styles += '#sidebar_header' +
  1559. '{ z-index: 2000; }';
  1560. $styles += '#shortcuts_menu + ul, #toggle_sidebar' +
  1561. '{ z-index: 9999; }';
  1562. $styles += 'body.has_hidden_sidebar #sidebar_header' +
  1563. '{ z-index:unset; }';
  1564.  
  1565. // Gecko Styles:
  1566. var $gecko_styles = '';
  1567.  
  1568. $gecko_styles += 'html, body.is_gecko { border: solid 1px gray !important; }';
  1569. $gecko_styles += 'body.is_gecko button { padding:0; }';
  1570. $gecko_styles += 'body.is_gecko #grid_btn .menu { top:-7px; left:-120px; }';
  1571. $gecko_styles += 'body.is_gecko thead {font-size:100%;}';
  1572. $gecko_styles += 'body.is_gecko #dir_list th, body.is_gecko #dir_list td {width:auto;}';
  1573. $gecko_styles += 'body.is_gecko #dir_list .dir::before {position:absolute;}';
  1574. $gecko_styles += 'body.is_gecko.use_default_icons:not(.is_converted_list) #dir_list .file .name .icon { padding-left:4px; background:none; }';
  1575. $gecko_styles += 'body.is_gecko.use_default_icons #dir_list .file .name .icon img { margin-right:6px; height:14px; }';
  1576. $gecko_styles += 'body.is_gecko #tbody > tr > td:not(:first-of-type) { float:left }';
  1577. $gecko_styles += 'body.is_gecko #content_audio_title td { padding-top: 6px; }';
  1578. $gecko_styles += 'body.is_gecko #content_audio_title td { padding-bottom: 0; }';
  1579. $gecko_styles += 'body.is_gecko #prev_track { padding-left: 16px; }';
  1580. $gecko_styles += 'body.is_gecko #close_audio { background-color: #252525; }';
  1581. $gecko_styles += 'body.is_gecko #close_audio:after { filter:invert(100%); opacity:0.5; }';
  1582. $gecko_styles += 'body.is_gecko #close_audio:hover:after { opacity:0.75; }';
  1583. $gecko_styles += 'body.is_gecko.dark_theme #prev_track, body.is_gecko.dark_theme #next_track { background: #252525 '+ $next_track_arrow_gecko +' center no-repeat; }';
  1584. $gecko_styles += 'body.is_gecko #prev_track:hover, body.is_gecko #next_track:hover { background: #252525 '+ $next_track_arrow_gecko_hover +' center no-repeat; }';
  1585. $gecko_styles += 'body.is_gecko #content_title td:first-of-type, body.is_gecko #content_title td:last-of-type { padding-top:8px; }';
  1586.  
  1587. // ADD STYLES
  1588. const $font_preview_styles = document.createElement('style');
  1589. const $custom_styles = document.createElement("style");
  1590. const $custom_gecko_styles = document.createElement("style");
  1591.  
  1592. const $highlightjs_link = document.createElement('link');
  1593. $highlightjs_link.setAttribute('rel','stylesheet') ;
  1594. $highlightjs_link.setAttribute('href','http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.14.2/styles/default.min.css') ;
  1595. document.head.appendChild($highlightjs_link);
  1596.  
  1597. function addStyles() {
  1598. // for font previews
  1599. $font_preview_styles.appendChild(document.createTextNode(""));
  1600. document.head.append($font_preview_styles);
  1601. var $font_styles = '';
  1602. $font_preview_styles.append( $font_styles );
  1603. // basic UI styles
  1604. $custom_styles.appendChild(document.createTextNode(""));
  1605. $custom_styles.append($styles);
  1606. document.head.appendChild($custom_styles);
  1607. // Gecko styles
  1608. if ( $userAgent.indexOf('Firefox') > -1 ) {
  1609. $custom_gecko_styles.appendChild(document.createTextNode(""));
  1610. $custom_gecko_styles.append($gecko_styles);
  1611. document.head.appendChild($custom_gecko_styles);
  1612. }
  1613. }
  1614. addStyles();
  1615. // ***** END STYLES ***** //
  1616.  
  1617. // ***** BUILD MENUS ***** //
  1618. var $paths_arr = [];
  1619. const parentLinksArr = function() { // create array of parent links from $location w/o query string
  1620. let $path = $location; // https://www.example.com/path/to/my/dir/
  1621. while ( $path.lastIndexOf('/') > 0 && !$path.endsWith(':/') ) {
  1622. $path = $path.slice( 0,$path.lastIndexOf('/') );
  1623. $paths_arr.push($path);
  1624. }
  1625. $paths_arr.pop(); // remove last element
  1626. return $paths_arr;
  1627. };
  1628. parentLinksArr();
  1629.  
  1630. // MENUS: Create menu list items
  1631. var $menu_item;
  1632. const menuItems = function(x,y,i,b) { // (link, name, count, boolean)
  1633. let $qstr = '/?';
  1634. if ( b === true ) { // don't include query string in link
  1635. $qstr = '';
  1636. $query_prefs = '';
  1637. }
  1638. $menu_item = '<li><a href="'+ x[i] + $qstr + $query_prefs +'">' + y[i] + '/</a></li>';
  1639. return $menu_item;
  1640. };
  1641. // Parent directory link setup
  1642. var $parent_dir_link;
  1643. function setParentLink() {
  1644. let $query_prefs = new URLSearchParams( window.location.search );
  1645. $query_prefs.delete('file');
  1646.  
  1647. $UI_pref_history_arr = $query_prefs.get('history') !== null ? $query_prefs.get('history').split(' ') : [];
  1648.  
  1649. if ( $UI_pref_history_arr.length == 1 ) {
  1650. $query_prefs.set('selected',$UI_pref_history_arr.shift(0));
  1651. $query_prefs.delete('history');
  1652. } else if ( $UI_pref_history_arr.length > 1 ) {
  1653. $query_prefs.set('selected',$UI_pref_history_arr.shift(0));
  1654. $query_prefs.set('history',$UI_pref_history_arr.join('+'));
  1655. } else {
  1656. $query_prefs.delete('selected');
  1657. }
  1658. let $qstr = $query_prefs.toString().length == 0 ? '' : '?';
  1659. $query_prefs.sort();
  1660. $parent_dir_link = $location_arr.slice(0,-2).join('/') + '/' + $qstr + decodeURIComponent($query_prefs);
  1661.  
  1662. $parent_dir_menu.find('a').attr( 'href', $parent_dir_link );
  1663. }
  1664. setParentLink();
  1665. // Click parent directory menu button
  1666. $parent_dir_menu.on('click','a',function(e) {
  1667. e.preventDefault();
  1668. setParentLink(); // update link in case query string has changed
  1669. $('#parent_dir_menu').find('a').attr( 'href', $parent_dir_link );
  1670. window.location = $parent_dir_link;
  1671. });
  1672.  
  1673. // MENUS: Directory Parents Links
  1674. const parents_dir_menu_arr = function() {
  1675. var $parents_dir_menu_items = [];
  1676. // make array of directory parents menu items
  1677. for ( let i = 1, n = $paths_arr.length + 1; i < n; i+=1 ) {
  1678. $parents_dir_menu_items[i] = menuItems( $paths_arr, $paths_arr, i, false);
  1679. }
  1680. $parents_dir_menu_items.pop(); // remove current directory
  1681.  
  1682. if ( $parents_dir_menu_items[1] !== undefined ) {
  1683. let str = $parents_dir_menu_items[1].slice($parents_dir_menu_items[1].lastIndexOf('?'),$parents_dir_menu_items[1].lastIndexOf('">'));
  1684. for ( let i = 1; i < $parents_dir_menu_items.length; i+=1 ) { // recursively update selected and history query str
  1685. str = str.replace(/selected=\d+&*/,'').replace(/history=(\d+)$/,'selected=$1').replace(/history=(\d+)\+/,'selected=$1&history=').replace(/&$/,'');
  1686. $parents_dir_menu_items[i] = $parents_dir_menu_items[i].replace(/\?.+?">/,str +'">');
  1687. }
  1688. }
  1689. // cleanup links
  1690. $parents_dir_menu_items = $parents_dir_menu_items.join('')
  1691. .replace(/%20/g,' ').replace(/file=.+?&/g,'&').replace(/file=.+?/g,'').replace(/>\/(?!\/)/g,'>').replace(/>\/\/\/\/</,'>/<').replace(/>\/\/\/</,'>/<');
  1692. return $parents_dir_menu_items;
  1693. };
  1694.  
  1695. // MENUS: User Shortcuts
  1696. var $menu_items = [];
  1697. var $shortcuts_links_arr = [];
  1698.  
  1699. const shortcutMenus = function() {
  1700. const $shortcuts = $settings.shortcuts;
  1701.  
  1702. if ( $shortcuts.length > 0 ) {
  1703. for ( let i = 0; i < $shortcuts.length; i+=1 ) {
  1704. var $links_arr = [];
  1705. var $links = $shortcuts[i].links;
  1706. // make array of links
  1707. for ( let j = 0; j < $links.length; j+=1 ) {
  1708. if ( !$links[j].link.endsWith('/') ) {
  1709. $links[j].link = $links[j].link.slice(0,$links[j].link.lastIndexOf('/') + 1) + '?file=' + $links[j].link.slice($links[j].link.lastIndexOf('/') + 1) ;
  1710. }
  1711. $shortcuts_links_arr.push($links[j].link);
  1712. $links_arr[j] = '<li><a href="'+ $links[j].link +'">' + $links[j].link_name + '</a></li>';
  1713. }
  1714. var $links_arr_str = $links_arr.join('');
  1715. $menu_items[i] = '<li class="has_submenu"><a>'+ $shortcuts[i].menu_title +'</a><ul>'+ $links_arr_str +'</ul></li>';
  1716. }
  1717. $menu_items = $menu_items.join('');
  1718. }
  1719. return ($shortcuts_links_arr,$menu_items);
  1720. };
  1721. shortcutMenus();
  1722.  
  1723. // MENUS: Other menu items
  1724. var $sort_by = $('<li id="sort_by" class="has_submenu rule"><span>Sort by&hellip;</span><ul id="sort_menu"><li><span>Name</span></li><li id="sort_by_size"><span>Size</span></li><li id="sort_by_date"><span>Date</span></li><li><span>Kind</span></li><li><span>Extension</span></li><li><span>Default</span></li></ul>');
  1725. const $autoload_media = $('<li id="autoload_media" class="rule"><span id="autoload_media_menu">Autoload Media</span></li>');
  1726. const $toggle_dark_theme = $('<li id="toggle_dark_theme_menu_item" class="checked"><div><span id="dark_theme">Dark Theme</span><span id="light_theme">Light Theme</span></div></li>');
  1727. const $toggle_alt_bckgrd = $('<li id="toggle_alternate_background_menu_item" class="rule"><span id="alternate_background">Alternate Backgrounds</span></li>');
  1728. // const $text_editing = $('<li id="text_editing" class="has_submenu rule"><span>Text Editing</span><ul id="text_editing_menu"><li id="split_view_menu_item"><span id="split_view">Split View</span></li><li id="preview_text_menu_item" class="rule"><span id="preview_text">Preview Text Files</span><span id="edit_text">Edit Text Files</span></li></ul>');
  1729. const $default_settings = $('<li><a href="#" id="default_settings" title="Delete URL query string and reload page.">Default User Settings</a></li>');
  1730. const $export_settings = $('<li class="rule"><a href="#" id="export_settings" title="Export user settings to text file.">Export User Settings</a></li>');
  1731. const $contact_link = $('<li><a id="contact" href="mailto:mshroud@vivaldi.net">Contact</a></li>');
  1732. const $donate_link = $('<li><a id="donate" href="https://paypal.me/mschrauzer" target="_blank">Donate</a></li>');
  1733.  
  1734. function assembleMenus() { // called by buildUI();
  1735. $parents_dir_menu.siblings('ul').append( parents_dir_menu_arr() );
  1736. $shortcuts_menu.siblings('ul').append( $menu_items, $sort_by, $toggle_dark_theme, $toggle_alt_bckgrd, $autoload_media, $default_settings, $export_settings, $contact_link, $donate_link );
  1737. }
  1738. assembleMenus();
  1739. // ***** END BUILD MENUS ***** //
  1740.  
  1741. // ***** DIRECTORY LIST Setup ***** //
  1742. // CONVERT INDEX PAGES TO DEFAULT (Chrome) STRUCTURE
  1743.  
  1744. // Convert matched date and size strings to default size and date format, calculate data-values for sorting
  1745. var yr, mo, dd, pref;
  1746. var factor = {k:1, kb:1, m:1000, mb:1000, g:1000000, gb:1000000, t:1000000000,tb:1000000000}; // for file size conversion
  1747. var sizeCalc = function(x,y) { // x = number, y = byte size
  1748. y === '' ? y = 'k' : y = y;
  1749. return x == '-' ? 0 : x * factor[ y.toString().toLowerCase() ]; // convert byte size to multiplication factor
  1750. };
  1751. var sizeAndDate = function(match,p1,p2,p3,p4,p5,p6,offset,string) {
  1752. p1.toString().length == 4 ? (yr = p1, dd = p3) : (yr = p3, dd = p1);
  1753. p2.toString().length == 3 ? mo = "JanFebMarAprMayJunJulAugSepOctNovDec".indexOf(p2)/3 + 1 : mo = p2; // convert month into number, or use number
  1754. p6 = undefined|'' ? p6 = 1 : p6 = p6;
  1755. mo.toString().length == 1 ? pref = 0 : pref = null; // add a zero before single digit months (i.e., multiply year by 10)
  1756. return '<td class="size details" data-value="'+ sizeCalc(p5,p6) +'">' + [p5,p6].join('') + '</td><td class="date details" data-value="' + [yr, pref, mo, dd, p4.replace(/:/, '') ].join('') +'">'+ [yr, mo, dd].join('-') +' '+ [p4].join(':') +'</td></tr>\n';
  1757. };
  1758. // Standardize directory lists
  1759. function convertDirList() {
  1760. var $list_items;
  1761. // AMPPS index pages
  1762. let $protocol = window.location.protocol;
  1763. if ( $protocol.indexOf('localhost') > -1 && $body.find('> title:contains(AMPPS)').length ) {
  1764. $dir_list = $body.find('> center > div > table');
  1765. $dir_list.remove();
  1766. $body.addClass('is_ampps').empty().append($dir_list);
  1767. }
  1768. // Pre-type
  1769. if ( $protocol !== 'file:' && $body.find('> pre').length > 0 ) {
  1770. $list_items = $body.find('> pre').html();
  1771. $body.addClass('is_converted_pre').find('> pre').remove();
  1772.  
  1773. $list_items = $list_items
  1774. .replace(/^.+?\n/, '') // delete header row
  1775. .replace(/^.+?Parent Directory.+?\n/gm, '\n') // delete parent directory link
  1776. .replace(/^\s*<a.+?>\.\.\/<\/a>\s*$/gm, '') // delete parent directory link (list type)
  1777. .replace(/^\s*<img .+?>\s*/gm, '') // delete all images (icons)
  1778. .replace(/^\s*<address>.+?<\/address>\s*/,'') // delete address element
  1779. .replace(/^\s*<a href="(.+?)">(.+?)<\/a>\s*/gm, '<tr><td data-value=""><a class="icon" href="$1">$2</a></td>') // create name cell
  1780. .replace(/(\d{2}|\d{4})[\/-](\d{2}|\w{3})[\/-](\d{2}|\d{4})\s+?([\d:]+)\s*([\.\d]+)([A-z]{0,2})\s*$/gm, sizeAndDate); // dates (search dd-mmm-yyyy hh:mm) and sizes
  1781. };
  1782. // List-type
  1783. if ( $protocol !== 'file:' && $body.find('> ul').length > 0 ) {
  1784. $list_items = $body.find('> ul').html();
  1785. $body.addClass('is_converted_list').find('> ul').remove();
  1786.  
  1787. if ( $list_items.indexOf('</a></li>') != -1 ) {
  1788. $list_items = $list_items.replace(/<li>\s*/g,'<tr><td data-value="">').replace(/\s*<\/li>/g, '</td></tr>\n');
  1789. $list_items = $list_items.replace(/data-value=""><a href="(.+?)">\s+(.+?)<\/a>/g, 'data-value=""><a class="icon" href="$1">$2<\/a>');
  1790. $list_items = $list_items.replace(/<tr.+?Parent Directory.+?<\/tr>/,'');
  1791. }
  1792. }
  1793. // Table-type
  1794. if ( $protocol !== 'file:' && $body.find('> table').length > 0 ) {
  1795. $list_items = $body.find('> table:last-of-type tbody').length > 0 ? $body.find('> table:last-of-type tbody').html() : $body.find('> table:last-of-type');
  1796. $body.addClass('is_converted_table').find('> table').remove();
  1797.  
  1798. $list_items = $list_items
  1799. // .replace(/<img .+?>/g, '') // delete all images (icons)
  1800. .replace(/<tr><th.+?\/th><\/tr>/g, '') // delete empty tr
  1801. .replace(/<tr><td.+?Parent Dir.+?<\/td><\/tr>/, '') // delete empty tr
  1802. .replace(/(?:<th>|<td>|<td \w+="\w+">)(?:&nbsp;|\s*)(?:<\/th>|<\/td>)/g, '') // delete empty th or td
  1803. .replace(/<td>\s*<a href="(.+?)">(.+?)<\/a>\s*<\/td>/g, '<td class="name" data-value=""><a class="icon" href="$1">$2</a></td>')
  1804. .replace(/<tr><td.*?><img (.+?)><\/td><td (.+?)><a (.+?)>(.+?)<\/a>/g, '<tr><td $2><a $3><img $1>$4</a>') // move default image to .name td
  1805. .replace(/(?:<td>|<td \w+="\w+">)(\d{4}|\d{2})-(\d{2}|\w{3})-(\d{4}|\d{2})\s*([\d:-]*)\s*<\/td>(?:<td>|<td \w+="\w+">)\s*([-\.\d]*)([A-z]*)\s*<\/td><\/tr>/g, sizeAndDate)
  1806. .replace(/^\s*<address>.+?<\/address>\s*$/,''); // delete address line
  1807. }
  1808. // Gecko-style local index pages
  1809. if ( $protocol === 'file:' && $userAgent.indexOf('Firefox') > -1 ) {
  1810. $body.find('> table').find('> thead').find('th[colspan="2"]').attr('colspan',1);
  1811. $list_items = $body.find('> table').find('> tbody').html();
  1812. $body.find('> table').remove();
  1813.  
  1814. $list_items = $list_items
  1815. .replace(/<table class="ellipsis"><tbody><tr><td>/g,'')
  1816. .replace(/<\/a><\/td><\/tr><\/tbody><\/table>/g,'')
  1817. .replace(/sortable-data="\d+?/g,'data-value="')
  1818. .replace(/<td data-value="(\d+)">([\d-]+)<\/td>\s*<td>(.+?)<\/td>/g,'<td data-value="$1">$2, $3</td>')
  1819. .replace(/<td(.+?)><a/g,'<td class="name" $1><a class="icon"');
  1820. }
  1821. // Default Chrome type
  1822. if ( $protocol === 'file:' && $body.find('> table').length > 0 && $userAgent.indexOf('Firefox') < 0) {
  1823. $list_items = $body.find('> table tbody').html();
  1824. $body.addClass('is_default_table').find('> table').remove();
  1825. }
  1826. $dir_list_body.append($list_items);
  1827. }
  1828. convertDirList();
  1829. // ***** END CONVERT INDEX PAGES ***** //
  1830.  
  1831. // Append directory list
  1832.  
  1833. var $dir_list_row = $dir_list_body.find('> tr');
  1834. var $dir_list_item_name = $dir_list_row.find('a').parent('td');
  1835. var $dir_list_details = $dir_list_item_name.nextAll();
  1836. $dir_list_details.addClass('details');
  1837.  
  1838. // ***** END CONVERT INDEX PAGES ***** //
  1839.  
  1840. // ***** PREPARE DIR LIST ***** //
  1841.  
  1842. var $this_link;
  1843. var $this_text;
  1844. var $this_ext;
  1845.  
  1846. // Get dir_list item row
  1847. var thisRow = function(x) {
  1848. return $(x).closest('#dir_list > tbody > tr').length > 0 ? $(x).closest('#dir_list > tbody > tr') : $(x).closest('#dir_list > li');
  1849. };
  1850. // Get row link
  1851. var thisLink = function(x) {
  1852. return $(x).find('a').length > 0 ? $(x).find('a').attr('href') : $(x).attr('href');
  1853. };
  1854. // Get row name
  1855. var thisText = function(x) {
  1856. return $(x).find('a').length > 0 ? decodeURIComponentSafe( $(x).find('a').text().toLocaleLowerCase() ) : decodeURIComponentSafe( $(x).text().toLocaleLowerCase() );
  1857. };
  1858. // get row text
  1859. var thisExt = function(x) {
  1860. let $this_name = thisText(x);
  1861. // return $this_link.endsWith('app/') ? 'app' : $this_link.endsWith('/') ? '/' : $this_link.lastIndexOf('.') === -1 ? undefined : $this_link.toLowerCase().slice( $this_link.lastIndexOf('.') + 1 );
  1862. return $this_name.endsWith('app/') ? 'app' : $this_name.endsWith('/') ? '/' : $this_name.lastIndexOf('.') === -1 ? undefined : $this_name.toLowerCase().slice( $this_name.lastIndexOf('.') + 1 );
  1863. };
  1864. // Normalize row name data-value
  1865. function stringNormalize(str) {
  1866. return str.normalize('NFD').replace(/[\u0300-\u036f]/g, "").replace(/ª/g,'a').replace(/[æÆ]/g,'ae').replace(/©/g,'c').replace(/[ÐÐ]/g,'d').replace(/fi/g,'fi').replace(/fl/g,'fl').replace(/[œŒ]/g,'oe').replace(/[ºøØ]/g,'o').replace(/π∏/g,'p').replace(/®/g,'r').replace(/ß/g,'ss').replace(/™/g,'tm').replace(/[‘’]/g,'\'').replace(/[“”«»]/g,'"').replace(/[†‡§]/g,'*');
  1867. }
  1868. // Dir_List: Classify items
  1869. function classifyDirListItems() {
  1870. $dir_list_row.each(function() {
  1871. let row = {};
  1872. $this_link = thisLink(this);
  1873. $this_text = thisText(this).endsWith('/') ? thisText(this).slice(0,-1) : thisText(this); // don't include '/'
  1874. $this_ext = thisExt(this);
  1875. // add classes and data to row cells
  1876. $(this).attr('id',$(this).index()).find('td').first().addClass('name').attr( 'data-value',stringNormalize( $this_text )).next('td:not(.kind)').attr('class','size').next('td:not(.kind)').attr('class','date'); // add tr ID and td.name data-value
  1877. // add dir or file classes
  1878. if ( $this_ext === '/' ) { // add tr data-ext
  1879. $(this).addClass('dir').attr('data-ext','dir');
  1880. } else {
  1881. $(this).addClass('file').attr('data-ext',$this_ext);
  1882. }
  1883. // add tr invisible class
  1884. if ( $this_text.startsWith('.') ) {
  1885. $(this).addClass('invisible');
  1886. }
  1887. // add kind and ext detail columns
  1888. $(this).append('<td class="detailsColumn details kind" data-value="File">File</td>')
  1889. .append('<td class="detailsColumn details ext" data-value="'+ $this_ext +'">&nbsp;</td>');
  1890. if ( $this_ext == undefined ) {
  1891. $(this).addClass('code').attr('data-type','Code').attr('data-kind','code').find('td.kind').attr('data-value','Code').text('Code');
  1892. return;
  1893. } else if ( !JSON.stringify($row_types).includes($this_ext) ) { // else classify as "other" if extension is not in $row_types.
  1894. $(this).addClass('other').attr('data-type','Other').attr('data-kind','other').find('td.kind').attr('data-value','other').text('Other');
  1895. }
  1896. for ( let key in $row_types ) { // Categorize rows by listed supported file types
  1897. if ( $row_types[key].includes($this_ext) ) {
  1898. let $display_key = key.charAt(0).toUpperCase() + key.slice(1); // make display name for file type
  1899. let kind = $display_key === undefined ? 'File' : $display_key;
  1900. $(this).addClass(key).addClass($this_ext).attr('data-type',$display_key).attr('data-kind',kind.toLowerCase() ).find('td.kind').attr('data-value',kind).text(kind); // add kind and ext classes, data-type, data-kind
  1901.  
  1902. if ( key === 'audio' || key === 'video' ) { // media classes and prepend checkbox
  1903. $(this).addClass('media').find('a').prepend('<input type="checkbox" tabindex="-1" checked="true" />');
  1904. };
  1905. }
  1906. }
  1907. // For ignored and excluded items
  1908. for ( let key in $row_settings ) {
  1909. if ( $row_settings[key].includes($this_ext) ) {
  1910. $(this).addClass(key);
  1911. }
  1912. if ( $row_settings[key].includes($this_ext) && key == 'ignore' ) {
  1913. }
  1914. }
  1915.  
  1916. }); // end classify dir_list items
  1917. }
  1918. classifyDirListItems();
  1919.  
  1920. // ***** END DIR_LIST SETUP ***** //
  1921.  
  1922. // ***** UI SETUP ***** //
  1923.  
  1924. // Add body classes
  1925. function setupUI() {
  1926. if ( $dir_list.find('.audio').length > 0 ) {
  1927. $body.add($dir_list).addClass('has_audio has_media');
  1928. }
  1929. if ( $dir_list.find('.font').length > 0 ) {
  1930. $body.addClass('has_fonts');
  1931. }
  1932. if ( $dir_list.find('.image').length > 0 ) {
  1933. $body.addClass('has_images');
  1934. }
  1935. if ( $dir_list.find('.video').length > 0 ) {
  1936. $body.add($dir_list).addClass('has_video has_media');
  1937. }
  1938. setQuery('autoload_media',$UI_pref_autoload_media);
  1939. if ( $UI_pref_autoload_media === true ) {
  1940. $body.addClass('autoload_media');
  1941. $autoload_media.addClass('checked');
  1942. } else {
  1943. $body.removeClass('autoload_media');
  1944. $autoload_media.removeClass('checked');
  1945. }
  1946. if ( $settings.autoload_index_files === true ) {
  1947. $body.addClass('autoload_index_files');
  1948. }
  1949. if ( $settings.use_custom_icons === true ) {
  1950. $body.addClass('use_custom_icons')
  1951. } else {
  1952. $body.addClass('use_default_icons');
  1953. }
  1954. if ( $settings.hide_ignored_files === true ) {
  1955. $body.addClass('hide_ignored');
  1956. }
  1957. if ( navigator.platform.indexOf('Win') > -1 || $location.indexOf('file:') < 0 ) {
  1958. $inv_checkbox.hide();
  1959. } else if ( $settings.hide_invisibles === true ) {
  1960. $inv_checkbox.find('input').prop('checked',true);
  1961. $body.addClass('hide_invisibles').removeClass('show_invisibles')
  1962. } else {
  1963. $inv_checkbox.find('input').prop('checked',false);
  1964. $body.addClass('show_invisibles').removeClass('hide_invisibles')
  1965. }
  1966. setQuery('alternate_background',$UI_pref_background);
  1967. if ( $UI_pref_background === true ) {
  1968. $body.addClass('alternate_background');
  1969. $toggle_alt_bckgrd.addClass('checked');
  1970. } else {
  1971. $body.removeClass('alternate_background');
  1972. $toggle_alt_bckgrd.removeClass('checked');
  1973. }
  1974. if ( $UI_pref_details === false ) {
  1975. $dir_list.addClass('show_details');
  1976. $dir_list_body.css({'top':$dir_list_head.height() + 1 +'px'});
  1977. $details_btn.find('span').first().hide().next().show();
  1978. }
  1979. if ( $UI_pref_theme === true ) {
  1980. $body.addClass('dark_theme');
  1981. } else {
  1982. $body.addClass('light_theme');
  1983. }
  1984. if ( $userAgent.indexOf('Chrome') > 0 ) { $body.addClass('is_chrome'); }
  1985. if ( $userAgent.indexOf('Firefox') > 0 ) { $body.addClass('is_gecko'); }
  1986. };
  1987. setupUI();
  1988.  
  1989. // Build UI
  1990. function buildUI() {
  1991. $dir_list.appendTo($sidebar);
  1992.  
  1993. var $main_content = $('<table id="main_content"><tbody><tr></tr></tbody></table>');
  1994. $main_content.find('tr').append( $sidebar_wrapper, $content_pane );
  1995.  
  1996. $body.empty().prepend($main_content);
  1997.  
  1998. if ( $body.hasClass('is_converted_list') ) {
  1999. $('#sort_by_size, #sort_by_date, #size, #date').addClass('disabled');
  2000. }
  2001. if ( $body.hasClass('is_converted_table') || $body.hasClass('is_converted_pre') ) {
  2002. if ( $dir_list.find('td.size').length < 1 ) {
  2003. $('#sort_by_size,th#size').addClass('disabled');
  2004. }
  2005. if ( $dir_list.find('td.date').length < 1 ) {
  2006. $('#sort_by_date,th#date').addClass('disabled');
  2007. }
  2008. }
  2009. }
  2010. buildUI();
  2011.  
  2012. // ***** BASIC UI FUNCTIONS ***** //
  2013. // Show Menus
  2014. function showMenus(el) {
  2015. var $position = $(el).position();
  2016. $(el).find('> ul').css({'top':$position.top + $(el).innerHeight() + 'px'}).toggle().parent('td').siblings('td').find('.menu').hide();
  2017. }
  2018. $parents_dir_menu.add($shortcuts_menu).parent('td').on('click',function(e) {
  2019. e.stopPropagation();
  2020. showMenus(this);
  2021. });
  2022. // Hide Menus
  2023. function hideMenus() {
  2024. $('.menu').hide();
  2025. }
  2026. $(document).on('click', hideMenus );
  2027. // Toggle Invisibles
  2028. function toggleInvisibles() {
  2029. $body.toggleClass('hide_invisibles').toggleClass('show_invisibles');
  2030. }
  2031. $inv_checkbox.on('click','input', toggleInvisibles );
  2032. // Toggle Autoload Media
  2033. function toggleAutoloadMedia(e) {
  2034. e.preventDefault();
  2035. $body.toggleClass('autoload_media');
  2036. toggleQuery('autoload_media');
  2037. $autoload_media.toggleClass('checked');
  2038. }
  2039. $autoload_media.on('click', toggleAutoloadMedia );
  2040. // Toggle Dark Theme
  2041. function toggleDarkMode(e) {
  2042. e.preventDefault();
  2043. $body.toggleClass('dark_theme').toggleClass('light_theme');
  2044. toggleQuery('dark_theme');
  2045. }
  2046. $toggle_dark_theme.on('click', toggleDarkMode );
  2047. // Toggle Alternating Row Background
  2048. function toggleAlternateBackground(e) {
  2049. e.preventDefault();
  2050. $body.toggleClass('alternate_background');
  2051. toggleQuery('alternate_background');
  2052. $toggle_alt_bckgrd.toggleClass('checked');
  2053. }
  2054. $toggle_alt_bckgrd.on('click', toggleAlternateBackground );
  2055. // Toggle Details
  2056. function toggleDetails() {
  2057. $dir_list.toggleClass('show_details');
  2058. $dir_list_body.css({'top':$dir_list_head.height() + 1 +'px'});
  2059. $details_btn.find('span').toggle();
  2060. toggleQuery('hide_details');
  2061. }
  2062. $details_btn.on('click', toggleDetails );
  2063. // Show/Hide Sidebar
  2064. function toggleSidebar() {
  2065. $body.toggleClass('has_hidden_sidebar');
  2066. setContentHeight();
  2067. }
  2068. $toggle_sidebar.on('click', function() {
  2069. toggleSidebar();
  2070. scrollThis('dir_list','selected',true); // true = instant scroll
  2071. });
  2072. // Default settings: remove queries;
  2073. function defaultSettings() {
  2074. $location = window.location.href;
  2075. $location = $location.slice(0,$location.lastIndexOf('?'));
  2076. window.location.assign($location);
  2077. }
  2078. $default_settings.on('click', function() {
  2079. if (window.confirm( "Are you sure you want to reset all your temporary UI settings to the defaults in your user_settings?" ) ) {
  2080. defaultSettings();
  2081. }
  2082. });
  2083.  
  2084. //***** UI SETUP *****//
  2085.  
  2086. // Set Content Height
  2087. function setContentHeight() {
  2088. let $window_height = window.innerHeight;
  2089. let $dir_list_head_height = $dir_list_head.length ? $dir_list_head.height() : 0;
  2090. let $content_header_height = $content_header.outerHeight();
  2091. $dir_list.add($dir_list_wrapper).css({'height':$window_height - $sidebar_header.outerHeight() });
  2092. $dir_list.find($dir_list_body).css({'top': $dir_list_head_height });
  2093. $content_image.add($prev_btn).add($next_btn).css({'top':$content_header_height });
  2094. $content_pane.hasClass('has_image') ? $content_image.find('img').css({'max-height':$content_image.innerHeight() - 52 + 'px'}) : null;
  2095. $content_grid.add($content_pdf).add($content_iframe).add($content_font).css({'height':$window_height - $content_header_height,'top':$content_header_height });
  2096. $content_scale.css({'top':$content_header_height + 13 });
  2097. $('#prev_track, #next_track, #close_audio').css({'height':$audio.height() });
  2098. }
  2099. window.addEventListener('resize', function(e) {
  2100. setContentHeight();
  2101. });
  2102.  
  2103. // Set Content Title
  2104. const $title = $content_pane.find('#title');
  2105.  
  2106. function setContentTitle() {
  2107. let $title_text = '';
  2108. if ( $('.playing').hasClass('audio') ) { // set audio player title
  2109. $content_audio_title.find('td').empty().append( $('.playing').find('td.name a').text() );
  2110. }
  2111. if ( $content_pane.hasClass('has_grid') ) { // set main title for other content
  2112. $title_text = $current_dir_name;
  2113. } else {
  2114. $title_text = $title_text + $('.selected:not(.audio)').find('td.name a').text(); // Assemble title
  2115. }
  2116. $title.empty().text( $title_text ); // Add file name
  2117. if ( $('.selected').hasClass('image') && !$content_pane.hasClass('has_grid') ) {
  2118. setDimensions($('.selected.image'));
  2119. }
  2120. }
  2121. // Get Image Dimensions
  2122. function getDimensions(link, callback) {
  2123. var img = new Image();
  2124. img.src = link;
  2125. img.onload = function() { callback( this.width, this.height ); };
  2126. }
  2127. function setDimensions(row) {
  2128. getDimensions( thisLink(row), function( width, height ) {
  2129. $title.append(' <span style="text-transform:lowercase;">(' + width + 'px &times; ' + height + 'px</span>)' );
  2130. });
  2131. }
  2132. // Scroll Selected Items
  2133. function scrollThis(elID,className,bool) {
  2134. let $behavior = 'smooth';
  2135. bool === undefined ? null : $behavior = 'instant';
  2136. var $block = $userAgent.indexOf('Firefox') > -1 ? $block = 'start' : $block = 'nearest';
  2137. if ( document.getElementsByClassName(className).length > 0 ) {
  2138. document.getElementById(elID).getElementsByClassName(className)[0].scrollIntoView({ behavior:$behavior, block:$block, inline:'nearest' });
  2139. }
  2140. }
  2141.  
  2142. // ***** SORTING ***** //
  2143. var $sort_all = $dir_list_body.find('tr');
  2144. var $sort_dirs = $dir_list_body.find('tr.dir').not('.app');
  2145. var $sort_files = $dir_list_body.find('tr').not('.dir').add('.app');
  2146. var currentIndex, prevIndex;
  2147. var $default_index = $('#thead').find('#default').index();
  2148. var $sort_order = 1;
  2149.  
  2150. var dataName = function(x) {
  2151. return $(x).find('td').eq(0).data('value').toString();
  2152. };
  2153. var dataData = function(x,index) {
  2154. return $(x).find('td').eq(index).attr('data-value') === undefined ? '' : $(x).find('td').eq(index).attr('data-value').toString();
  2155. };
  2156. // Sort comparison functions
  2157. var sortByName = function(x,y,sortDirection) {
  2158. return sortDirection === 1 ? dataName(x).localeCompare(dataName(y)) : dataName(y).localeCompare(dataName(x));
  2159. };
  2160. var sortByData = function(x,y,index,sortDirection) { // sort by data then by name
  2161. if ( sortDirection === 1 ) {
  2162. return dataData(x,index).localeCompare(dataData(y,index), undefined, { numeric:true }) === 0 ? dataName(x).localeCompare(dataName(y)) : dataData(x,index).localeCompare(dataData(y,index), undefined, { numeric:true });
  2163. } else {
  2164. return dataData(y,index).localeCompare(dataData(x,index), undefined, { numeric:true }) === 0 ? dataName(y).localeCompare(dataName(x)) : dataData(y,index).localeCompare(dataData(x,index), undefined, { numeric:true });
  2165. }
  2166. };
  2167. // Sort elements: sort by name if index = 0, else sort by data-value.
  2168. var sortEls = function(els,index,sortDirection) {
  2169. els.detach().sort(function(a,b) {
  2170. return index === 0 ? sortByName(a,b,sortDirection) : sortByData(a,b,index,sortDirection);
  2171. });
  2172. };
  2173. // Sort Dir List
  2174. function sortDirList(index, sortDirection) {
  2175. $dir_list_row.removeClass('sorted');
  2176.  
  2177. if ( index == $default_index ) {
  2178. if ( index == $default_index ) {
  2179. index = 0;
  2180. }
  2181. // sort dirs and files separately
  2182. sortEls( $sort_dirs, index, sortDirection );
  2183. sortEls( $sort_files, index, sortDirection );
  2184. if (sortDirection === 1 ) { // append dirs and files according to sort direction
  2185. $.each($sort_dirs, function() { $dir_list_body.append(this); });
  2186. $.each($sort_files, function() { $dir_list_body.append(this); });
  2187. } else {
  2188. $.each($sort_files, function() { $dir_list_body.append(this); });
  2189. $.each($sort_dirs, function() { $dir_list_body.append(this); });
  2190. }
  2191. } else if ( $settings.dirs_on_top === false || index == 0 && index !== $default_index ) { // sort all dirs and files, append, remove body class
  2192. sortEls( $sort_all, index, sortDirection );
  2193. $.each($sort_all, function() { $dir_list_body.append(this); });
  2194. $body.removeClass('is_dirs_on_top');
  2195. } else if ( $settings.dirs_on_top === true || index !== 0 ) { // sort dirs and files separately
  2196. sortEls( $sort_dirs, index, sortDirection );
  2197. sortEls( $sort_files, index, sortDirection );
  2198. if (sortDirection === 1 ) { // append dirs and files according to sort direction
  2199. $.each($sort_dirs, function() { $dir_list_body.append(this); });
  2200. $.each($sort_files, function() { $dir_list_body.append(this); });
  2201. } else {
  2202. $.each($sort_files, function() { $dir_list_body.append(this); });
  2203. $.each($sort_dirs, function() { $dir_list_body.append(this); });
  2204. }
  2205. }
  2206. if ( index === $('#thead').find('#kind').index() || index === $('#thead').find('#ext').index() ) {
  2207. $body.addClass('is_dirs_on_top');
  2208. addSortStyle( index, sortDirection );
  2209. }
  2210. }
  2211. // Add Sort Styles (for rules)
  2212. function addSortStyle(index, sortDirection) {
  2213. var $this_value, $next_value;
  2214. $dir_list_row.removeClass('sorted');
  2215.  
  2216. $dir_list_row.filter(':visible').not('.dir').add('.app').each(function() {
  2217. $this_value = $(this).find('td').eq(index).attr('data-value');
  2218. $next_value = $(this).next('tr:visible').find('td').eq(index).attr('data-value');
  2219.  
  2220. if ( $this_value !== $next_value ) {
  2221. $(this).addClass('sorted');
  2222. }
  2223. if ( $(this).attr('data-type') !== $(this).next('tr:visible').attr('data-type') ) {
  2224. $(this).addClass('sorted');
  2225. }
  2226. });
  2227. // for last dir
  2228. if ( sortDirection == 1 ) {
  2229. $dir_list_row.filter('.dir').last().addClass('sorted');
  2230. }
  2231. }
  2232. // Sort on click
  2233. function clickSort(x,y) { // x = clicked sort link, y = bool (false ? don't set query_prefs)
  2234. currentIndex = x.index();
  2235. // Only reverse sort order after clicking a sort column once.
  2236. if ( currentIndex != prevIndex ) {
  2237. prevIndex = currentIndex;
  2238. $sort_order = 1;
  2239. }
  2240.  
  2241. sortDirList(currentIndex, $sort_order);
  2242. $sort_order = -1 * $sort_order;
  2243.  
  2244. x.toggleClass('up').addClass('checked').siblings().removeClass('checked up');
  2245. $('#sort_menu').find('li').eq(currentIndex).addClass('checked').siblings().removeClass('checked');
  2246.  
  2247. setContentHeight();
  2248. // set sorting query pref
  2249. if ( y === true ) {
  2250. $query_prefs = getQueryPrefs();
  2251. $query_prefs.set('sort',$('#sort_menu').find('li').eq(currentIndex).text().toLowerCase() );
  2252. updateQuery();
  2253. }
  2254. }
  2255. // Sort on clicking dir_list sort header
  2256. $('#thead').on('click','th:not(.disabled)',function(e) {
  2257. e.preventDefault();
  2258. e.stopPropagation();
  2259. var i = $(this).index();
  2260. clickSort( $(this),true)
  2261. });
  2262. // Sort Menu: click the list header that contains the selected menu text.
  2263. $('#sort_menu').on('click','li:not(.disabled)',function(e) {
  2264. e.preventDefault();
  2265. e.stopPropagation();
  2266. $(this).addClass('checked').siblings().removeClass('checked');
  2267. $('#theader th[id*="'+ thisText($(this)).slice(0,2) +'" i]').click();
  2268. });
  2269. // Initialize sort
  2270. function initialSort() {
  2271. switch ( $UI_pref_sort ) {
  2272. case 'name':
  2273. i = 0;
  2274. break;
  2275. case 'size':
  2276. i = 1;
  2277. break;
  2278. case 'date':
  2279. i = 2;
  2280. break;
  2281. case 'kind':
  2282. i = 3;
  2283. break;
  2284. case 'extension':
  2285. i = 4;
  2286. break;
  2287. default:
  2288. i = 5;
  2289. }
  2290. $('#theader').find('th').eq(i).click();
  2291. }
  2292. initialSort();
  2293.  
  2294. // ***** END SORTING ***** //
  2295. // ***** END BASIC UI FUNCTIONS ***** //
  2296.  
  2297. // ***** CONTENT PANE ***** //
  2298.  
  2299. var $selected = $dir_list.find('.selected');
  2300. var $playing = $dir_list.find('.playing');
  2301. var $media = $dir_list.find('td').filter('.media:not(.unchecked):not(.ignored)');
  2302.  
  2303. // SELECT ROW on click and set classes for $content_pane
  2304. function selectThis(row) {
  2305. let $grid_selected = $content_grid.find('div.font_grid_item a[href="'+ thisLink(row) +'"]').closest('div').add('div.image_grid_item a[href="'+ thisLink(row) +'"]').closest('div').addBack();
  2306. if ( $content_pane.hasClass('has_grid') ) { // Select corresponding grid item
  2307. row.addClass('selected').siblings().removeClass('selected hovered');
  2308. $grid_selected.addClass('selected').siblings().removeClass('selected');
  2309. } else if ( row.hasClass('audio') ) { // if row is audio, remove playing and selected classes
  2310. row.addClass('selected playing').siblings('.media').removeClass('selected playing hovered');
  2311. } else { // remove classes from rows, but leave .audio with playing
  2312. row.addClass('selected').siblings().removeClass('selected hovered');
  2313. }
  2314. }
  2315.  
  2316. //***** SHOW CONTENT *****//
  2317.  
  2318. // Show Font
  2319. var $font_family_arr = [];
  2320. function showFont(row) {
  2321. var $font_family = thisText(row);
  2322. if ( $font_family_arr.indexOf($font_family) == -1 ) { // if font family is not in array, add it
  2323. $font_family_arr.push($font_family);
  2324. $font_preview_styles.append('@font-face { font-family: "'+ $font_family +'"; src: url("'+ thisLink(row) +'"); }'); // only add style if it doesn't exist
  2325. }
  2326. $content_font.css({ 'font-family':'"'+ $font_family +'"' });
  2327. }
  2328. // Show Grid
  2329. function showGrid() {
  2330. $content_pane.removeClass('has_hidden_grid').addClass('has_grid');
  2331. setContentSource($content_grid);
  2332. setContentTitle();
  2333. setContentHeight();
  2334. selectThis($('.selected'));
  2335. }
  2336. // Hide Grid
  2337. function hideGrid() {
  2338. if ( $content_pane.hasClass('has_grid') ) {
  2339. $content_pane.removeClass('has_grid').addClass('has_hidden_grid');
  2340. }
  2341. }
  2342. // Set Content Source
  2343. function setContentSource(el,link) { // add source attribute to content containers, excluding $content_font
  2344. let $el_ID = $(el).attr('id');
  2345. switch ($el_ID) {
  2346. case 'content_audio':
  2347. $(el).find('audio').attr('src',link);
  2348. break;
  2349. case 'content_image':
  2350. $(el).find('img').attr('src',link);
  2351. break;
  2352. case 'content_font':
  2353. break;
  2354. default: // content_pdf, content_video, or content_iframe
  2355. $(el).removeAttr('srcdoc').attr('src',link);
  2356. }
  2357. }
  2358. // SHOW CONTENT
  2359. function showContent(row) { // show any content excluding grids
  2360. if ( row.length > 0 ) { // needed for left/right arrow nav when there are no valid items (i.e. images or fonts)
  2361. let kind = thisRow(row).hasClass('ignore') ? 'ignored' : thisRow(row).attr('data-kind'); // get file kind
  2362. !['audio','font','image','pdf','video','ignored'].includes(kind) || kind === 'dir' ? kind = 'iframe' : null; // load dirs and any other kind of content except audio, font, image, pdf, or video into iframe
  2363. let link = kind === 'pdf' ? thisLink(row) + '?#view=fitB&scrollbar=1&toolbar=1&navpanes=1' : thisLink(row); // add pdf query str to link
  2364. $content_pane.hasClass('has_grid') ? hideGrid() : null;
  2365. closeAllContent(row); // except audio and grids
  2366. if ( kind === 'ignored' ) {
  2367. $content_pane.addClass('has_ignored');
  2368. } else {
  2369. setContentSource( '#content_'+ kind, link ); // set content container source
  2370. kind === 'font' ? showFont(row) : null; // set $content_font css
  2371. kind === 'image' ? $content_grid.find('a[href="' + thisLink(row) + '"]').parent('div').addClass('selected').siblings().removeClass('selected') : null; // set image source
  2372. kind === 'video' ? closeAudio() : null; // if video, close audio
  2373. }
  2374. thisRow(row).attr('data-kind') === 'dir' ? $content_pane.addClass( 'has_dir' ) : $content_pane.addClass( 'has_'+ kind ); // add content pane class
  2375. setContentHeight();
  2376. setContentTitle();
  2377. kind === 'audio' ? autoLoadCoverArt() : null; // autoload cover art on selecting audio
  2378. }
  2379. }
  2380.  
  2381. //***** CLOSE CONTENT (Close button or Cmd/Ctrl + W) *****//
  2382. // Close Audio
  2383. function closeAudio() {
  2384. $('.audio.playing').removeClass('playing');
  2385. $content_pane.removeClass('has_audio').find('#content_audio_title td').empty();
  2386. $audio.trigger('pause').attr('src','');
  2387. setContentHeight();
  2388. }
  2389. // Close audio button click
  2390. $close_audio.on('click',function(e) {
  2391. e.stopPropagation();
  2392. closeAudio();
  2393. });
  2394. // Close Grid
  2395. function closeGrid() {
  2396. $content_pane.removeClass('has_grid');
  2397. $content_grid.empty().removeClass().attr('style','').find('.image_grid_item, img').attr('style','');
  2398. }
  2399. // Close content excluding audio and grids
  2400. function closeAllContent(row) {
  2401. if ( row !== undefined && row.hasClass('audio') ) {
  2402. return;
  2403. } else {
  2404. let $content_classes = $content_pane.attr('class') !== undefined ? $content_pane.attr('class').split(' ') : []; // get array of content pane classes
  2405. for ( let $content_class of $content_classes ) { // for each content_pane class, define the associated content container, remove class and source
  2406. let $container_name = '#content_'+ $content_class.substring(4);
  2407. let $content_el = $( $container_name ); // define content container from content pane class name
  2408. if ( ['has_font','has_image','has_pdf','has_video','has_iframe','has_dir','has_ignored'].includes($content_class) ) { // if not grid or audio, remove class
  2409. $content_pane.removeClass($content_class);
  2410. if ( $content_class === 'has_font' ) { // remove font style
  2411. $content_font.css({'font-family':''})
  2412. $content_font.css({'font-size':'1em'}); // reset font: comment out to retain font scale after loading other content
  2413. } else if ( $content_class === 'has_image' ) { // remove image src
  2414. $content_image.find('img').attr('src','');
  2415. $content_image.attr('data-image-scale-factor',1).find('img').removeClass('zoom_img').attr('style',''); // reset image: comment out to retain image scale after loading other content
  2416. } else if ( $content_class === 'has_video' ) { // remove video src
  2417. $content_video.trigger('pause').attr('src','');
  2418. } else {
  2419. $content_el.attr('src',''); // remove src for anything else
  2420. $content_iframe.attr('src',''); // remove src for anything else
  2421. }
  2422. }
  2423. }
  2424. $content_title.removeClass().find('#title').empty();
  2425. setContentHeight();
  2426. }
  2427. }
  2428. // CLOSE CONTENT
  2429. function closeContent() {
  2430. if ( $content_pane.hasClass('has_grid') ) {
  2431. closeGrid(); // if has_grid, close grid
  2432. } else if ( $content_pane.hasClass('has_hidden_grid') ) {
  2433. showGrid(); // if has_hidden_grid, close content, show grid
  2434. } else if ( ['has_font','has_image','has_pdf','has_video','has_iframe','has_dir','has_ignored'].some( c => $content_pane.attr('class').split(' ').indexOf( c ) >= 0 ) ) {
  2435. closeAllContent(); // close content if content pane has one of these classes, except audio and grids
  2436. } else { // close audio last of all
  2437. closeAudio();
  2438. }
  2439. setContentHeight();
  2440. }
  2441. $('#close_btn').on('click', function(e) {
  2442. e.preventDefault();
  2443. e.stopPropagation();
  2444. closeContent();
  2445. });
  2446.  
  2447. //***** RESET CONTENT (Reset button or Cmd/Ctrl + R) *****//
  2448. function resetContent() {
  2449. if ( $content_pane.attr('class') === '' ) { window.location = window.location.href } // reload page
  2450. if ( $content_pane.hasClass('has_audio') ) { $audio.prop('currentTime', 0).trigger('pause'); }
  2451. if ( $content_pane.hasClass('has_grid') ) { $grid_btn.click(); }
  2452. if ( $content_pane.hasClass('has_font') ) { $content_font.css({'font-size':'1em'});}
  2453. if ( $content_pane.hasClass('has_image') ) { $content_image.attr('data-image-scale-factor',1).find('img').removeClass('zoom_img').attr('style',''); }
  2454. if ( $content_pane.hasClass('has_video') ) { $content_video.prop('currentTime',0).trigger('pause'); }
  2455. if ( $content_pane.hasClass('has_iframe') || $content_pane.hasClass('has_dir') ) { $('.selected').find('a').click(); }
  2456. setContentHeight();
  2457. }
  2458. $('#reload_btn').on('click', function(e) {
  2459. e.preventDefault();
  2460. e.stopPropagation();
  2461. resetContent();
  2462. });
  2463.  
  2464. //***** SELECT ROWS *****//
  2465. var prevRow = function(className) {
  2466. return ( !$('.selected').length || !$('.selected').prevAll(':visible:not(.unchecked)').filter(className).length ) ? $('#tbody').find('tr').filter(className).last() : $('.selected').prevAll(':visible:not(.unchecked)').filter(className).first();
  2467. };
  2468. var nextRow = function(className) { // if nothing selected, or if no next row with classname, return first row with classname, else return next row with classname
  2469. return ( !$('.selected').length || !$('.selected').nextAll(':visible:not(.unchecked)').filter(className).length ) ? $('#tbody').find('tr').filter(className).first() : $('.selected').nextAll(':visible:not(.unchecked)').filter(className).first();
  2470. };
  2471.  
  2472. //***** SELECT ROWS by typed string *****//
  2473. var str = '', timer, $next_ltr;
  2474. function timeoutID() {
  2475. timer = window.setTimeout( function() {
  2476. str = '';
  2477. }, 1500 );
  2478. }
  2479. function alphaNav(e) { // Select Dir_List row by typed string; Todo: select next row by nearest letter
  2480. if (typeof timer == 'number' ) {
  2481. window.clearTimeout( timer );
  2482. timer = 0; // id
  2483. }
  2484. timeoutID();
  2485. str += e.key
  2486. str = str.toLowerCase();
  2487. if ( $('#dir_list').find('td.name[data-value^="'+ str +'"]').length ) {
  2488. $('#dir_list').find('td.name[data-value^="'+ str +'"]').first().find('a').click();
  2489. console.log(char[str.index]);
  2490. } else {
  2491. // $('#dir_list').find('td.name[data-value^="'+ str +'"]').first().find('a').click();
  2492. null; // replace this with next closest match function
  2493. }
  2494. }
  2495.  
  2496. // Click Prev/Next Arrows
  2497. function prevNextBtn(el) {
  2498. let f = $.Event("keydown");
  2499. if ( el.attr('id') === 'prev_btn' ) {
  2500. f.key = 'ArrowLeft';
  2501. }
  2502. if ( el.attr('id') === 'next_btn' ) {
  2503. f.key = 'ArrowRight';
  2504. }
  2505. $body.trigger(f);
  2506. }
  2507. $content_pane.on( 'click','#prev_btn, #next_btn', function(e) {
  2508. e.stopPropagation();
  2509. e.preventDefault();
  2510. prevNextBtn( $(this) );
  2511. });
  2512. // Click grid button
  2513. $sidebar_header.on('click', '#grid_btn, #show_font_grid, #show_image_grid', function(e) {
  2514. makeGrids(e,$(this));
  2515. showGrid();
  2516. });
  2517.  
  2518. // Click prev/next track buttons
  2519. $('.prev_next_track_btn').on('click',function() {
  2520. $(this).attr('id') === 'prev_track' ? playPrevNextTrack('ArrowLeft') : playPrevNextTrack('ArrowRight') ;
  2521. });
  2522.  
  2523. // SELECT ROWS prev/next media track with arrow keys
  2524. function playPrevNextTrack(key) {
  2525. let $key = key.key;
  2526. $shuffle.find('input').prop('checked') === true ? shuffle() : null;
  2527. $playing = $('.playing');
  2528. let kind = $playing.attr('data-kind');
  2529. if ( $body.hasClass('has_media') ) {
  2530. if ( $playing.length === 0 ) { // if no media selected, select first shuffle or first media file
  2531. if ( $shuffle.find('input').prop('checked') === true ) {
  2532. clickRow( $('.audio').eq($count) );
  2533. } else {
  2534. switch ( $key ) {
  2535. case 'ArrowLeft': clickRow( $media.last() ); break;
  2536. case 'ArrowRight': clickRow( $media.first() ); break;
  2537. }
  2538. }
  2539. }
  2540. if ( $playing.length == 1 ) {
  2541. if ( $shuffle.find('input').prop('checked') === true ) {
  2542. selectThis( $('.audio').eq($count) );
  2543. showContent( $('.audio').eq($count) );
  2544. $shuffleList.length !== 0 ? playMedia('play') : null;
  2545. } else {
  2546. switch ( key ) {
  2547. case 'ArrowLeft':
  2548. if ( $playing.prevAll('.media[data-kind="'+ kind +'"]:not(.unchecked)').length === 0 ) {
  2549. clickRow( $dir_list_row.filter('.media[data-kind="'+ kind +'"]:not(.unchecked)').last() );
  2550. } else {
  2551. clickRow( $playing.prevAll('.media[data-kind="'+ kind +'"]:not(.unchecked)').first() );
  2552. }
  2553. break;
  2554. case 'ArrowRight':
  2555. if ( $playing.nextAll('.media[data-kind="'+ kind +'"]:not(.unchecked)').length === 0 && $loop.find('input').is(':checked') === false ) { // loop playback
  2556. selectThis( $dir_list_row.filter('.media[data-kind="'+ kind +'"]:not(.unchecked)').first() );
  2557. autoLoadCoverArt();
  2558. return true;
  2559. } else if ( $playing.nextAll('.media[data-kind="'+ kind +'"]:not(.unchecked)').length === 0 ) { // else click first media file
  2560. clickRow( $dir_list_row.filter('.media[data-kind="'+ kind +'"]:not(.unchecked)').first() );
  2561. } else {
  2562. clickRow( $playing.nextAll('.media[data-kind="'+ kind +'"]:not(.unchecked)').first() ); // else click next media file
  2563. }
  2564. break;
  2565. }
  2566. }
  2567. playMedia('play');
  2568. }
  2569. }
  2570. }
  2571.  
  2572. // SELECT ROWS by arrow keys
  2573. function leftRightArrowNavigation(key,kind) {
  2574. if ( $body.hasClass('has_media') && $('.selected').hasClass('audio') && !$('.selected').hasClass('playing') ) { // play selected track (e.g., after up/down arrow)
  2575. clickRow( $('.audio.selected') );
  2576. playMedia('play');
  2577. } else if ( $body.hasClass('has_media') && $('.selected').hasClass('audio')) { // play next audio track
  2578. playPrevNextTrack(key);
  2579. playMedia('play');
  2580. } else { // select prev/next row of same sort kind
  2581. if ( key === 'ArrowLeft' ) { clickRow( prevRow('[data-kind="'+ kind +'"]:visible') ); }
  2582. if ( key === 'ArrowRight' ) { clickRow( nextRow('[data-kind="'+ kind +'"]:visible') ); }
  2583. if ( $('.selected').hasClass('video') ) { playMedia('play') };
  2584. }
  2585. }
  2586. function arrowNavigation(e) {
  2587. let $key = e.key;
  2588. let $selected = $('.selected');
  2589. let kind = $('.selected').attr('data-kind') === undefined ? $dir_list.find('tbody tr:visible').first().attr('data-kind') : $('.selected').attr('data-kind');
  2590. if ( $content_pane.hasClass('has_grid') ) { // Grid navigation: L/R arrow selects images and fonts only; U/D arrow clicks row.
  2591. switch ( $key ) {
  2592. case 'ArrowUp': clickRow( prevRow('.dir:visible,.file:visible') ); break;
  2593. case 'ArrowDown': clickRow( nextRow('.dir:visible,.file:visible') ); break;
  2594. case 'ArrowLeft':
  2595. if ( $content_grid.hasClass('has_font_grid') ) {
  2596. selectThis( prevRow('.font:visible') );
  2597. } else if ( $content_grid.hasClass('has_image_grid') ) {
  2598. selectThis( prevRow('.image:not(.ignore):visible') );
  2599. } else {
  2600. selectThis( prevRow('.image:not(.ignore):visible,.font:visible') );
  2601. }
  2602. break;
  2603. case 'ArrowRight':
  2604. if ( $content_grid.hasClass('has_font_grid') ) {
  2605. selectThis( nextRow('.font:visible') );
  2606. } else if ( $content_grid.hasClass('has_image_grid') ) {
  2607. selectThis( nextRow('.image:not(.ignore):visible') );
  2608. } else {
  2609. selectThis( nextRow('.image:not(.ignore):visible,.font:visible') );
  2610. }
  2611. break;
  2612. }
  2613. } else {
  2614. switch ( $key ) {
  2615. case 'ArrowUp': // if audio player not visible, show and load audio when selected; else if audio player visible, select but don't load prev/next audio file.
  2616. if ( prevRow('.dir:visible,.file:visible').hasClass('audio') ) {
  2617. closeAllContent(); // except audio and grids
  2618. if ( !$content_pane.hasClass('has_audio') ) {
  2619. clickRow( prevRow('.audio:visible') );
  2620. $('.selected:not(.audio)').removeClass('selected');
  2621. } else {
  2622. prevRow('.audio:visible').addClass('selected').siblings().removeClass('selected hovered');
  2623. autoLoadCoverArt();
  2624. }
  2625. } else {
  2626. clickRow( prevRow('.dir:visible,.file:visible') );
  2627. }
  2628. break;
  2629. case 'ArrowDown':
  2630. if ( nextRow('.dir:visible,.file:visible').hasClass('audio') ) { // if next row is audio...
  2631. closeAllContent(); // except audio and grids
  2632. if ( !$content_pane.hasClass('has_audio') ) { // if audio player is closed, click next row to load and show file
  2633. clickRow( nextRow('.audio:visible') );
  2634. $('.selected:not(.audio)').removeClass('selected');
  2635. } else { // else simply select the next audio file without closing currently playing audio
  2636. nextRow('.audio:visible').addClass('selected').siblings().removeClass('selected hovered');
  2637. autoLoadCoverArt();
  2638. }
  2639. } else {
  2640. clickRow( nextRow('.dir:visible,.file:visible') );
  2641. }
  2642. break;
  2643. case 'ArrowLeft':
  2644. leftRightArrowNavigation('ArrowLeft',kind);
  2645. break;
  2646. case 'ArrowRight':
  2647. leftRightArrowNavigation('ArrowRight',kind);
  2648. break;
  2649. }
  2650. }
  2651. scrollThis('dir_list','selected');
  2652. $content_pane.hasClass('has_grid') && $content_grid.find('.selected').length > 0 ? scrollThis('content_grid','selected') : null;
  2653. }
  2654.  
  2655. //***** CLICK & HOVER EVENTS for Content *****//
  2656.  
  2657. // HOVER Grid Item
  2658. $content_grid.on('mouseenter','> div:not(.selected)',function() {
  2659. thisRow($dir_list.find('a[href*="'+ thisLink(this) +'"]')).addClass('hovered');
  2660. }).on('mouseleave','> div:not(.selected)',function() {
  2661. thisRow($dir_list.find('a[href*="'+ thisLink(this) +'"]')).removeClass('hovered');
  2662. });
  2663. // HOVER Dir_list_row and highlight corresponding grid item
  2664. $dir_list_row.hover(function() {
  2665. if ( $content_grid.is(':visible') ) {
  2666. $content_grid.find('[href*="'+ thisLink(this) +'"]').closest('div').addClass('hovered');
  2667. }
  2668. }, function() {
  2669. if ( $content_grid.is(':visible') ) {
  2670. $content_grid.find('.hovered').removeClass('hovered');
  2671. }
  2672. });
  2673. // CLICK grid item
  2674. function gridItemClick(e,el) {
  2675. e.preventDefault();
  2676. clickThis($dir_list.find('a[href*="'+ thisLink(el) +'"]') );
  2677. }
  2678. $content_grid.on('click','div', function(e) {
  2679. gridItemClick(e,$(this));
  2680. });
  2681.  
  2682. // CLICK Row
  2683. function clickRow(row) { // Pause/Play audio if .selected = audio, else click row normally
  2684. if ( thisRow(row).hasClass('playing') && !thisRow(row).hasClass('video') ) {
  2685. playPauseMedia();
  2686. } else {
  2687. selectThis( thisRow(row) );
  2688. showContent( thisRow(row) );
  2689. }
  2690. hideMenus();
  2691. }
  2692. // CLICK Row
  2693. $dir_list_row.on('click','a', function(e) {
  2694. e.preventDefault();
  2695. e.stopPropagation();
  2696. clickRow( $(this) );
  2697. });
  2698. // Click element anchor
  2699. function clickThis(el) {
  2700. el.find('a').length > 0 ? el.find('a').click() : el.click();
  2701. }
  2702. // DOUBLE-CLICK Row to open directory
  2703. function doubleClickRow(row) {
  2704. if ( row.hasClass('dir') ) {
  2705. $query_prefs = getQueryPrefs();
  2706. var $history = $query_prefs.get('history') === null ? '' : '+'+ $query_prefs.get('history');
  2707. var $current_index = row.prevAll('.dir:visible:not(.ignore)').length;
  2708. $history = $current_index + $history; // update history
  2709. $query_prefs.delete('selected');
  2710. $query_prefs.set('history',$history);
  2711. updateQuery();
  2712. window.location = row.find('a').attr('href') +'?'+ $query_prefs;
  2713. }
  2714. }
  2715. $dir_list_row.filter('.dir').on('dblclick', function(e) {
  2716. e.preventDefault();
  2717. e.stopPropagation();
  2718. doubleClickRow( $(this) );
  2719. });
  2720.  
  2721. //***** AUTOLOAD CONTENT: index files or files from the file shortcut list *****//
  2722. function autoSelectFile() {
  2723. if ( $UI_pref_selected !== '' ) {
  2724. selectThis( $dir_list.find('tbody tr.dir:not(.invisible)').eq($UI_pref_selected) );
  2725. showContent( $dir_list.find('tbody tr.dir:not(.invisible)').eq($UI_pref_selected) );
  2726. } else if ( $UI_pref_file !== '' ) {
  2727. clickThis( $dir_list_row.find('a:contains('+ $UI_pref_file +')') );
  2728. } else if ( $body.hasClass('autoload_index_files') && $dir_list.find( 'a[href*="/index."]').length > 0 ) { // else load index file
  2729. clickThis( $dir_list.find('a[href*="/index."]') );
  2730. } else if ( $body.hasClass('autoload_media') && $body.hasClass('has_media') ) { // else if audio and images, load cover art
  2731. clickThis( $dir_list.find('.audio,.video').first() );
  2732. } else { // else select first non-media item
  2733. // clickThis( $dir_list.find('tbody tr:not(.media):not(.invisible)').first() );
  2734. }
  2735. scrollThis('dir_list','selected');
  2736. scrollThis('dir_list','playing');
  2737. }
  2738. autoSelectFile();
  2739.  
  2740. // Autoload Cover Art
  2741. function autoLoadCoverArt() { // autoload cover art for audio if dir contains audio and images, and audio is loaded and non-image content is not loaded
  2742. if ( !$body.hasClass('autoload_media') ) {
  2743. return;
  2744. } else if ( $body.hasClass('has_audio') && $body.hasClass('has_images') && $content_pane.hasClass('has_audio') && $content_image.siblings().attr('src') == undefined ) {
  2745. var $cover;
  2746. var $this_ext;
  2747. const $image_titles = ['cover','front'];
  2748. for ( let i = 0; i < $image_titles.length; i++ ) { // select first image whose title begins with $image_titles[i] or which contains $image_titles[i].
  2749. $cover = $dir_list.find('.image').find('td.name[data-value^="'+ $image_titles[i] +'"]:not([data-value*="back"])').parent('tr').first() || $dir_list.find('.image').find('td.name[data-value*="'+ $image_titles[i] +'"]:not([data-value*="back"])').parent('tr').first();
  2750. if ( $cover.length === 1 ) {
  2751. showContent($cover);
  2752. $title.empty().text( $cover.find('a').text() );
  2753. setDimensions($cover);
  2754. break;
  2755. } else {
  2756. showContent( $dir_list.find('.image').first() ); // otherwise show the first image
  2757. $title.empty().append($dir_list.find('.image').first().find('a').text() );
  2758. setDimensions($dir_list.find('.image').first());
  2759. break;
  2760. }
  2761. }
  2762. }
  2763. }
  2764. // File shortcuts menu: autoload directory, then auto-select file
  2765. function showFileShortcut(item) {
  2766. $this_link = thisLink(item);
  2767. window.location = $this_link.slice( 0, $this_link.lastIndexOf('/') );
  2768. }
  2769.  
  2770. //***** KEYBOARD EVENTS *****//
  2771. $body.on('keydown',$dir_list,function(e) {
  2772. setContentHeight();
  2773. $(':focus').blur(); // Need this to able to select grid items after clicking close button (or other buttons).
  2774. let $dir_list_row = $dir_list.find('tbody tr:not(.unchecked)').filter(':visible');
  2775. let $selected = $dir_list.find('tbody tr.selected');
  2776. let $selected_href = thisLink($selected);
  2777. let $playing = $dir_list_row.filter('.playing');
  2778. var $time;
  2779.  
  2780. switch ( e.key ) {
  2781.  
  2782. case 'ArrowUp':
  2783. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) ) { // Cmd/Ctrl + up arrow = go to parent directory
  2784. if ( $('#parents_dir_menu + ul a').length < 1 ) {
  2785. return;
  2786. } else {
  2787. $('#parent_dir_menu a').trigger('click');
  2788. }
  2789. break;
  2790. }
  2791. if ( $('*[contentEditable="true"]').is(':focus') ) { // Allow arrow navigation within content_editable elements
  2792. return;
  2793. }
  2794. e.preventDefault();
  2795. arrowNavigation(e);
  2796. break;
  2797.  
  2798. case 'ArrowDown':
  2799. if ( (e.ctrl || e.metaKey) && $selected.hasClass('app') && $settings.apps_as_dirs === false ) { // Ignore Cmd/Ctrl + arrow or if focused element is content editable or open dir
  2800. return;
  2801. } else if ( $('*[contentEditable="true"]' ).is(':focus') ) {
  2802. return;
  2803. } else if ( (e.ctrl || e.metaKey) && $selected.hasClass('dir') ) {
  2804. $selected.find('a').trigger('dblclick');
  2805. break;
  2806. }
  2807. e.preventDefault();
  2808. arrowNavigation(e);
  2809. break;
  2810.  
  2811. case 'ArrowLeft':
  2812. if ( (e.ctrl || e.metaKey) || (e.ctrl && e.metaKey) ) {
  2813. return;
  2814. } else if ( $('*[contentEditable="true"]').is(':focus') ) { // Ignore Cmd/Ctrl + arrow or if focused element is content editable
  2815. return;
  2816. }
  2817. if ( !e.metaKey && (e.altKey && e.shiftKey) || e.altKey ) { // Skip media -30s/-10s
  2818. mediaSkip(e);
  2819. return;
  2820. } else {
  2821. arrowNavigation(e);
  2822. }
  2823. break;
  2824.  
  2825. case 'ArrowRight':
  2826. if ( e.metaKey && !e.altKey && !e.shiftKey && $selected.hasClass('dir') ) { // Open dir with Cmd/Ctrl + Right Arrow
  2827. $selected.find('a').trigger('dblclick');
  2828. return;
  2829. }
  2830. if ( (e.ctrl || e.metaKey) || (e.ctrl && e.metaKey) ) { // Ignore Cmd/Ctrl + arrow or if focused element is content editable
  2831. return;
  2832. } else if ( $('*[contentEditable="true"]').is(':focus') || $selected.hasClass('dir ignore') ) {
  2833. return;
  2834. }
  2835. if ( !e.metaKey && (e.altKey && e.shiftKey) || e.altKey ) { // Skip audio 30s/10s: Opt-Shift-Arrow/Opt-Arrow
  2836. mediaSkip(e);
  2837. return;
  2838. } else {
  2839. arrowNavigation(e);
  2840. }
  2841. break;
  2842.  
  2843. case ' ': // space
  2844. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2845. alphaNav(e);
  2846. }
  2847. if ( $content_pane.hasClass('has_audio') || $content_pane.hasClass('has_video') ) { // Play/pause media (space bar)
  2848. e.preventDefault();
  2849. playPauseMedia();
  2850. }
  2851. break;
  2852.  
  2853. case 'Enter': // Open directories (or ignore)
  2854. if ( $selected.hasClass('app') && $settings.apps_as_dirs === false ) {
  2855. break;
  2856. } else {
  2857. if ( $selected.hasClass('dir') ) {
  2858. $selected.find('a').trigger('dblclick');
  2859. } else if ( $content_pane.hasClass('has_grid') ) {
  2860. $body.find('#dir_list').find('.selected a').click();
  2861. } else {
  2862. clickThis(thisRow($selected));
  2863. if ( $selected.hasClass('media') && !$content_pane.hasClass('has_grid') ) { // Use return to play/pause media
  2864. let e = new Event('keydown');
  2865. e.key = ' ';
  2866. }
  2867. }
  2868. }
  2869. break;
  2870.  
  2871. // Alphabetical navigation
  2872. case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
  2873. case 'a': case 'b': case 'c': case '': case 'e': case 'f': case '': case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n': case '': case 'p': case 'q': case '': case 's': case 't': case 'u': case 'v': case '': case 'x': case 'y': case 'z':
  2874. case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '-': case '`': case '~': case '!': case '@': case '#': case '$': case '%': case '^': case '&': case '*': case '(': case ')': case '=': case '+': case '[': case ']': case '{': case '}': case '\\': case '|': case '/': case '?': case '–': case '—': case '\'': case '\"': case '“': case '”': case '‘': case '’': case '…': case 'π':
  2875. // case 'α': case 'β': case 'γ': case 'δ': case 'ε': case 'ζ': case 'η': case 'θ': case 'ι': case 'κ': case 'λ': case 'μ': case 'ν': case 'ξ': case 'ο': case 'π': case 'ρ': case 'ς': case 'σ': case 'τ': case 'υ': case 'φ': case 'χ': case 'ψ': case 'ω': case 'ϑ': case 'ϒ': case 'ϖ':
  2876. // case 'Α': case 'Β': case 'Γ': case 'Δ': case 'Ε': case 'Ζ': case 'Η': case 'Θ': case 'Ι': case 'Κ': case 'Λ': case 'Μ': case 'Ν': case 'Ξ': case 'Ο': case 'Π': case 'Ρ': case 'Σ': case 'Σ': case 'Τ': case 'Υ': case 'Φ': case 'Χ': case 'Ψ': case 'Ω': case 'Θ': case 'ϒ': case 'Π':
  2877. case '∫': case '∂': case 'ƒ': case '©': case '˙': case '∆': case '˚': case 'µ': case 'π': case '®': case 'ß': case '†': case '√': case '∑': case '≈': case '¥': case 'Ω': case '¡': case '™': case '£': case '¢': case '∞': case '§': case '¶': case '•': case 'ª': case 'º': case '≠':
  2878. case '⁄': case '€': case '‹': case '›': case 'fl': case '‡': case '°': case '·': case '‚': case '±': case '¯': case '˘': case '¿': case '`':
  2879. case 'ı': case '': case '´': case '': case '˝': case 'ˆ': case '': case '˜': case '‰': case 'ˇ': case '¨': case '◊': case '„': case '˛': case '¸':
  2880. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2881. alphaNav(e);
  2882. }
  2883. break;
  2884.  
  2885. case 'd': // Cmd/Ctrl + D: Toggle Details
  2886. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) ) {
  2887. e.preventDefault();
  2888. e.stopPropagation();
  2889. $details_btn.click();
  2890. }
  2891. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2892. alphaNav(e);
  2893. }
  2894. break;
  2895.  
  2896. case 'g': // Cmd/Ctrl + G: Show image Grid
  2897. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) ) {
  2898. e.preventDefault();
  2899. e.stopPropagation();
  2900. $grid_btn.click();
  2901. }
  2902. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2903. alphaNav(e);
  2904. }
  2905. break;
  2906.  
  2907. case 'i': // Cmd/Ctrl + I: Toggle Invisibles
  2908. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) ) {
  2909. e.preventDefault();
  2910. e.stopPropagation();
  2911. $inv_checkbox.find('input').click();
  2912. }
  2913. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2914. alphaNav(e);
  2915. }
  2916. break;
  2917.  
  2918. case 'o': // Cmd/Ctrl + Shift + O: Open selected item in new window
  2919. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2920. alphaNav(e);
  2921. }
  2922. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) && e.shiftKey ) {
  2923. window.open($selected_href);
  2924. }
  2925. break;
  2926.  
  2927. case 'r': // Cmd/Ctrl + Shift + R: Refresh
  2928. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) ) {
  2929. e.preventDefault();
  2930. e.stopPropagation();
  2931. $content_reload_btn.find('button').click();
  2932. }
  2933. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2934. alphaNav(e);
  2935. }
  2936. break;
  2937.  
  2938. case 'w': // Close content pane if Close button visible with Cmd/Crtl + W
  2939. // Doesn't work in some browsers: can't override default keybinding
  2940. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) && ( $content_pane.hasClass('[class^="has_"]') || $content_pane.hasClass('has_grid') ) ) {
  2941. e.preventDefault();
  2942. e.stopPropagation();
  2943. $content_close_btn.find('button').click();
  2944. }
  2945. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2946. alphaNav(e);
  2947. }
  2948. break;
  2949.  
  2950. case '.': // Increase previewed content size
  2951. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2952. alphaNav(e);
  2953. }
  2954. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) && e.shiftKey ) {
  2955. $('#increase').click();
  2956. }
  2957. break;
  2958.  
  2959. case ',': // Decrease previewed content size
  2960. if ( !e.metaKey && !e.ctrlKey && !e.altKey ) {
  2961. alphaNav(e);
  2962. }
  2963. if ( (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey) && e.shiftKey ) {
  2964. $('#decrease').click();
  2965. }
  2966. break;
  2967.  
  2968. case 'tab':
  2969. break;
  2970.  
  2971. } // end switch
  2972. });
  2973. // ***** END KEYBOARD EVENTS ***** //
  2974.  
  2975. // ***** GRID SETUP ***** //
  2976. // Create Font Grid Items
  2977. const fontGridItems = function() {
  2978. var $font_grid_items_arr = [];
  2979. $dir_list_row.filter('.font').each(function() {
  2980.  
  2981. let $this_link = $(this).find('a').attr('href');
  2982. let $font_family = thisText($(this));
  2983. let $display_name = $(this).find('a').text().slice( 0,$font_family.lastIndexOf('.') ).replace(/[_|-]/g,' ');
  2984.  
  2985. if ( $font_family_arr.indexOf($font_family) == -1 ) {
  2986. $font_family_arr.push($font_family);
  2987. $font_preview_styles.append('@font-face { font-family: "'+ $font_family +'"; src: url("'+ $this_link +'"); }'); // only add style if it doesn't exist
  2988. }
  2989. $font_grid_item_el.empty().append('<p>'+ $display_name +'</p><h2 style=\'font-family: "'+ $font_family +'"\'; ><a href="'+ $this_link +'">'+ $display_name +'</a></h2>' );
  2990. $font_grid_items_arr.push($font_grid_item_el.clone());
  2991. });
  2992. return $font_grid_items_arr;
  2993. };
  2994. // Create Image Grid Items
  2995. const imageGridItems = function() {
  2996. var $image_grid_items_arr = [];
  2997. $dir_list_row.filter('.image').each(function() {
  2998.  
  2999. let $this_link = thisLink(this);
  3000. let $this_ext = thisExt(this);
  3001. let exts = $row_types.image.filter( ext => $.inArray(ext, $row_settings.ignore) == -1 );
  3002. let $display_name = $this_link.slice($this_link.lastIndexOf('/') + 1).replace(/[_|-]/g,' ');
  3003.  
  3004. if ( $.inArray( $this_ext, exts ) > -1 ) { // if this row file ext is in the image extension array
  3005. $image_grid_item_el.empty().append('<a href="'+$this_link+'"><img src="'+$this_link+'" title="'+$display_name+'" /></a>');
  3006. $image_grid_items_arr.push( $image_grid_item_el.clone() );
  3007. }
  3008. });
  3009. return $image_grid_items_arr;
  3010. };
  3011. // Make Grids
  3012. function makeGrids(e,el) {
  3013. e.stopPropagation();
  3014. closeGrid();
  3015. $content_pane.removeClass('has_hidden_grid').addClass('has_grid');
  3016. if ( el.attr('id') === 'grid_btn' ) {
  3017. $title.removeClass();
  3018. fontGridItems().length === 0 ? $content_grid.addClass('has_image_grid') : $content_grid.addClass('has_grid');
  3019. $content_grid.append( imageGridItems(), fontGridItems() );
  3020. } else if ( el.attr('id') === 'show_font_grid' ) {
  3021. $title.removeClass().addClass('font_grid');
  3022. $content_grid.addClass('has_font_grid');
  3023. $content_grid.append( fontGridItems() );
  3024. } else {
  3025. $title.removeClass().addClass('image_grid');
  3026. $content_grid.addClass('has_image_grid');
  3027. $content_grid.append( imageGridItems() );
  3028. }
  3029. }
  3030.  
  3031. // ***** SCALE PREVIEWED IMAGES & FONTS ***** //
  3032. var $em = parseInt(getComputedStyle(document.body).fontSize); // pts/em
  3033. var $font_incr = 1.125; // scale factor for font size increase/decrease
  3034. var $image_incr = 1.125;
  3035. var $image_width;
  3036. var $image_height;
  3037. var $image_scale_factor;
  3038. var $image_grid_item_size;
  3039. var $grid_scale_factor;
  3040.  
  3041. var fontSize = function(el) {
  3042. return parseFloat(el.css('font-size'));
  3043. };
  3044. // Scale Fonts
  3045. function scaleFonts(incr, y) {
  3046. if ( y === -1 ) { incr = 1/incr; }
  3047. if ( $content_pane.hasClass('has_grid') && ( $content_grid.hasClass('has_font_grid') || $content_grid.hasClass('has_grid') ) ) {
  3048. $content_grid.css({'font-size':( fontSize($content_grid)/$em * incr ) +'em'});
  3049. return;
  3050. }
  3051. if ( $content_pane.hasClass('has_font') ) {
  3052. $content_font.css({'font-size':( fontSize($content_font)/$em * incr ) +'em'});
  3053. return;
  3054. }
  3055. }
  3056. // Scale Images
  3057. function scaleImages(incr, y) {
  3058. if (y === -1 ) { incr = 1/incr; }
  3059. if ( $content_pane.hasClass('has_image') && !$content_pane.hasClass('has_grid') ) {
  3060. $image_width = parseFloat( $content_image.find('img').width() ) * incr; // increment image size
  3061. $image_height = parseFloat( $content_image.find('img').height() ) * incr; // increment image size
  3062. $image_scale_factor = parseFloat( $content_image.attr('data-image-scale-factor') ); // get scale factor
  3063.  
  3064. $content_image.attr('data-image-scale-factor', parseFloat( $image_scale_factor ) * incr ).find('img').removeClass('zoom_img').css({'width':$image_width +'px', 'max-width':'none', 'max-height':'none','top':'0','transform':'translateY(0)'});
  3065.  
  3066. $content_image.scrollLeft( ( $image_width - $(window).width() )/2 ) ;
  3067. if ( ( ( $image_height - $(window).height() )/2 ) > 0 ) {
  3068. $content_image.scrollTop( ( $image_height - $(window).height() )/2 );
  3069. }
  3070. return;
  3071. }
  3072. if ( $content_pane.hasClass('has_grid') && ( $content_grid.hasClass('has_image_grid') || $content_grid.hasClass('has_grid') ) ) {
  3073. $image_grid_item_size = parseFloat( $('.image_grid_item').width() * incr);
  3074. $grid_scale_factor = parseFloat( $content_grid.attr('data-grid-scale-factor') );
  3075.  
  3076. $content_grid.attr('data-grid-scale-factor', parseFloat( $grid_scale_factor ) * incr ).css({'grid-template-columns':'repeat(auto-fit, minmax('+ ($image_grid_item_size) +'px, 1fr))', 'grid-template-rows':'repeat(auto, minmax('+ ($image_grid_item_size) +'px))' });
  3077. $content_grid.find('.image_grid_item').css({'width':$image_grid_item_size +'px', 'height':$image_grid_item_size +'px'}); // grid items are square, so width = height
  3078. $content_grid.find('img').css({'max-width':( $image_grid_item_size - $image_grid_item_size/8 ) +'px', 'max-height':( $image_grid_item_size - $image_grid_item_size/8) +'px'});
  3079. return;
  3080. }
  3081. }
  3082. // Scale Fonts and Images
  3083. function scalePreviewItems(y) { // combine scaling into one function
  3084. scaleImages( $image_incr, y );
  3085. scaleFonts( $font_incr, y );
  3086. }
  3087. // Scale Content
  3088. $content_scale.on('click','span',function() {
  3089. if ( $(this).attr('id') === 'increase' ) {
  3090. scalePreviewItems(1);
  3091. }
  3092. if ( $(this).attr('id') === 'decrease' ) {
  3093. scalePreviewItems(-1);
  3094. }
  3095. });
  3096. // Zoom Images on click
  3097. function zoomImage(x,e) {
  3098. $this_link = $(x).attr('src');
  3099. var $offset = $(x).offset();
  3100. var $this_width = $(x).width();
  3101. var $this_height = $(x).height();
  3102.  
  3103. $(x).toggleClass('zoom_img');
  3104. ( $(x).attr('style') !== '' || $(x).attr('style') !== undefined ) ? $(x).attr('style','') : null;
  3105. $content_image.find('img:not(.zoom_img)').css({'max-height':$content_image.innerHeight() - 52 + 'px'})
  3106. if ( $this_link !== undefined ) {
  3107. getDimensions( $this_link, function( width, height ) {
  3108. $content_image.scrollLeft( (e.pageX - $offset.left) * width/($this_width + 13) - ( e.pageX - $offset.left ) - 52 ) ;
  3109. $content_image.scrollTop( (e.pageY - $offset.top) * height/($this_height + 13) - ( e.pageY - $offset.top ) - 52 );
  3110. });
  3111. }
  3112. }
  3113. $content_image.on('click', 'img', function(e) {
  3114. zoomImage( this,e )
  3115. });
  3116. // ***** END SCALE PREVIEW ITEMS ***** //
  3117.  
  3118. // ***** AUDIO CONTENT ***** //
  3119.  
  3120. var $count = 0;
  3121. var $playlist;
  3122. var $shuffleList = [];
  3123. var $next;
  3124. var $task;
  3125. // Update Playlist
  3126. function updatePlaylist() {
  3127. $playlist = [];
  3128. $dir_list_row.filter('.audio:not(.unchecked)').each(function() {
  3129. $this_link = thisLink(this);
  3130. $playlist.push($this_link);
  3131. });
  3132. return $playlist;
  3133. }
  3134. // Initialize Shuffle List
  3135. function initShuffleList() {
  3136. updatePlaylist();
  3137. $shuffleList = [];
  3138. for ( let i = 0; i < $playlist.length; i += 1 ) {
  3139. $shuffleList.push(i);
  3140. }
  3141. return $shuffleList;
  3142. }
  3143. // Update Play Count
  3144. function updateCount() {
  3145. $count = $playing.index('.audio:not(.unchecked)');
  3146. }
  3147. // Check/Uncheck Audio/Video Files
  3148. function toggleChecked(e) {
  3149. e.stopPropagation();
  3150. $(this).blur();
  3151. thisRow(this).toggleClass('unchecked');
  3152. updateCount();
  3153. updatePlaylist();
  3154. initShuffleList();
  3155. }
  3156. $dir_list_row.filter('.media').on('click','input', toggleChecked );
  3157. // Check/Uncheck all Audio/Video Files
  3158. function toggleAllChecked(e) {
  3159. e.stopPropagation();
  3160. $dir_list_row.find('input').trigger('click');
  3161. updatePlaylist();
  3162. initShuffleList();
  3163. }
  3164. $dir_list.find('#play_toggle').on('click', toggleAllChecked );
  3165.  
  3166. // Is Playing
  3167. function isPlaying(el) {
  3168. return (el.get(0).currentTime > 0 && !el.get(0).paused && !el.get(0).ended);
  3169. }
  3170. // Play Media
  3171. function playMedia(task) {
  3172. $('.playing').hasClass('audio') ? $audio.trigger(task) : $content_video.trigger(task);
  3173. }
  3174. // Skip media tracks +/-10/30 seconds
  3175. function mediaSkip(e) {
  3176. let factor = e.key === 'ArrowLeft' ? -1 : 1;
  3177. if ( e.altKey && e.shiftKey ) {
  3178. n = 30;
  3179. } else if ( e.altKey ) {
  3180. n = 10;
  3181. }
  3182. let $media = $('.playing').hasClass('audio') ? $audio : $content_video;
  3183. let $time = $media.prop('currentTime');
  3184. $media.prop('currentTime', $time + factor*(n));
  3185. }
  3186.  
  3187. // Play/Pause Audio/Video
  3188. function playPauseMedia() {
  3189. if ( $content_pane.hasClass('has_audio') ) {
  3190. isPlaying($audio) ? $audio.trigger('pause') : $audio.trigger('play');
  3191. }
  3192. if ( $content_pane.hasClass('has_video') ) {
  3193. isPlaying($content_video) ? $content_video.trigger('pause') : $content_video.trigger('play');
  3194. }
  3195. }
  3196. // Play Next Track
  3197. function playPrevNextTrackBtn(el) {
  3198. e = $.Event("keydown");
  3199. e.key = el.attr('id') === "prev_track" ? 'ArrowLeft' : 'ArrowRight';
  3200. playPrevNextTrack(e);
  3201. }
  3202. // Prev/Next Track buttons
  3203. $('.prev_next_track_btn').on( 'click', function() { playPrevNextTrackBtn( $(this) ); });
  3204.  
  3205. // Toggle Shuffle Play
  3206. function toggleShuffle() {
  3207. let $rand = Math.floor( Math.random() * ($media.length) );
  3208. if ( $shuffle.find('input').prop('checked') ) {
  3209. ( !isPlaying($audio) && !isPlaying($content_video) ) ? clickThis( $media.eq($rand) ) : null; // if no media playing, select random track; if media playing, do nothing, then shuffle.
  3210. updatePlaylist();
  3211. initShuffleList();
  3212. $count = Math.floor( Math.random() * $shuffleList.length );
  3213. }
  3214. }
  3215. $shuffle.on('click', toggleShuffle );
  3216.  
  3217. // Shuffle Play
  3218. function shuffle() {
  3219. if ( $shuffleList.length <= 1 && $loop.find('input').prop('checked') ) { // If loop is checked, and all songs have been shuffled...
  3220. initShuffleList();
  3221. $next = Math.floor( Math.random() * $shuffleList.length ); // choose a random index number from the remaining unplayed songs,
  3222. $count = $shuffleList[ $next ]; // set the playing $count to the index
  3223. } else if ( $shuffleList.length === 0 ) { // else if all songs have been shuffled, select the first song and stop;
  3224. $count = 0;
  3225. } else {
  3226. $next = Math.floor( Math.random() * $shuffleList.length ); // else choose a random index number from the remaining unplayed songs,
  3227. $count = $shuffleList[ $next ]; // set the playing $count to the index
  3228. $shuffleList.splice( $next, 1 ); // remove the indexed value from the unplayed list,
  3229. }
  3230. }
  3231. // Initialize Audio
  3232. function initMedia() {
  3233. $('#audio, #content_video').on('ended', function() {
  3234. playPrevNextTrack('ArrowRight');
  3235. scrollThis('dir_list','playing');
  3236. });
  3237. }
  3238. initMedia();
  3239. // ***** END AUDIO CONTENT ***** //
  3240.  
  3241. // ***** OTHER FUNCTIONS ***** //
  3242.  
  3243. // Resize Sidebar/Content Pane
  3244. function resizeSidebar(f) {
  3245. f.stopPropagation();
  3246. var $startX = f.pageX;
  3247. var $sidebar_width = $sidebar_wrapper.width();
  3248. var $window_width = window.innerWidth;
  3249.  
  3250. $(document).on('mousemove',function(e) {
  3251. e.stopPropagation();
  3252. e.preventDefault();
  3253. var $deltaX = e.pageX - $startX;
  3254. if ( e.pageX > 200 && e.pageX < $window_width - 200 ) {
  3255. $sidebar_wrapper.css({'width':$sidebar_width + $deltaX + 'px'});
  3256. $content_pane.css({'width':($window_width - $sidebar_width) - $deltaX + 'px'});
  3257. }
  3258. setContentHeight();
  3259. });
  3260. $(document).on('mouseup',function() {
  3261. $(document).off('mousemove');
  3262. $sidebar_width = $sidebar_wrapper.width();
  3263. $query_prefs = getQueryPrefs();
  3264. $query_prefs.set('width',$sidebar_width);
  3265. updateQuery();
  3266. });
  3267. }
  3268. $handle.on('mousedown', resizeSidebar );
  3269.  
  3270. // EXPORT SETTINGS
  3271. let $settings_string = unescape( $settings.toSource() );
  3272. $settings_string = $settings_string.replace('JSON.parse\(unescape\("\{','').replace('\}"))','').replace(/\/",/g,'",').replace(/\/"],/g,'"],').replace(/"(\w+?)":/g,'\n\n$1:\t');
  3273.  
  3274. var save = function(filename, data) {
  3275. var blob = new Blob([data], {type: 'text/html'});
  3276. var elem = window.document.createElement('a');
  3277. elem.href = window.URL.createObjectURL(blob);
  3278. elem.download = filename;
  3279. document.body.appendChild(elem);
  3280. elem.click();
  3281. document.body.removeChild(elem);
  3282. URL.revokeObjectURL(blob);
  3283. }
  3284.  
  3285. $export_settings.on('click','a',function(e) {
  3286. e.preventDefault();
  3287. save("settings.txt",$settings_string);
  3288. });
  3289.  
  3290. })();