index.html 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  7. <meta name="theme-color" content="#4b75ff">
  8. <link rel="stylesheet" href="../script/tocas/tocas.css">
  9. <link rel="stylesheet" href="./main.css">
  10. <script src="../script/tocas/tocas.js"></script>
  11. <script src="../script/jquery.min.js"></script>
  12. <script src="../script/ao_module.js"></script>
  13. <!-- Handle native playback on Chrome Andoird-->
  14. <script src="native.js"></script>
  15. <link rel="manifest" crossorigin="use-credentials" href="manifest.json">
  16. <title>AirMusic</title>
  17. </head>
  18. <body>
  19. <div id="mainMenu" class="ts basic fluid AMmenu menu bottomBlue" style="z-index:80;position:fixed;position:top:0px;left:0px;width:100%;">
  20. <button class="ts item icon noBorder AMmenu button" onClick="toggleLeftMenu();"><i class="content icon"></i></button>
  21. <div class="item noBorder AMmenu" style="padding-right:0px;padding-top:12px;"><i id="AMmenuIcon" class="music icon large whiteFont"></i></div>
  22. <div class="item noBorder AMmenu" style="padding-left:3px;padding-top:3px;padding-bottom:5px;min-width:50%;">
  23. <div class="ts header whiteFont">
  24. <div id="interfaceTitle" style="display:inline;">Music</div>
  25. <div id="interfaceDetails" class="sub header" style="font-size:80%;line-height:1em;">[0 songs]</div>
  26. </div>
  27. </div>
  28. <button class="ts right item icon AMmenu noBorder button" onClick="enterSearchMode();"><i class="search icon"></i></button>
  29. <!-- <button class="ts right item icon AMmenu noBorder button"><i class="ellipsis vertical icon"></i></button> -->
  30. </div>
  31. <div id="searchModeMenu" class="ts basic fluid AMmenu menu bottomBlue" style="z-index:85;position:fixed;position:top:0px;left:0px;width:100%;height:51px;display:none;">
  32. <button class="ts item icon noBorder AMmenu button" onClick="exitSearchMode();"><i class="arrow left icon"></i></button>
  33. <div class="ts fluid input" >
  34. <input id="searchInputBar" type="text" style="background-color:rgb(48, 48, 48);border:0px !important;border-bottom:2px solid rgb(60, 60, 60) !important;margin-bottom:3px;color:white;" placeholder="Search Music">
  35. </div>
  36. <button class="ts right item icon AMmenu noBorder button" onClick="searchSong();"><i class="search icon"></i></button>
  37. </div>
  38. <!-- The main list that display the current information-->
  39. <div id="mainList">
  40. </div>
  41. <!-- Advance functions config menu-->
  42. <div id="showmoreUIcover" style="position:fixed;left:0px;top:0px;width:100%;height:100%;background:rgba(30,30,30,0.7);z-index:95;display:none;" onClick="hideShowMoreMenu();"></div>
  43. <div id="showMoreUI" class="showMoreMenus" style="display:none;">
  44. <div class="ts large header whiteFont songTitle">N/A</div>
  45. <div class="showMoreMenuItem" onClick="playFromShowMoreMenu();">Play</div>
  46. <div class="showMoreMenuItem" onclick='addToPlaylistFromMoreMenu();'>Add to Playlist</div>
  47. <div class="showMoreMenuItem playlistonly" onclick="removeFromPlylistFromMoreMenu();">Remove from current Playlist</div>
  48. <div class="showMoreMenuItem" onClick="searchYoutubeViaShowMore();">Search on Youtube</div>
  49. <div class="showMoreMenuItem">Edit Tag</div>
  50. <div class="showMoreMenuItem">Share</div>
  51. <div class="showMoreMenuItem" onClick="startRelatedSearch();">Related Search</div>
  52. <div class="showMoreMenuItem" onClick="showFileInfo();">File Information</div>
  53. <div class="topRightCorner songID" align="center" style="margin-top:10px !important;padding-top:3px !important;">-1</div>
  54. </div>
  55. <div id="showFileInfo" class="showMoreMenus" style="display:none;">
  56. <div class="ts large header">
  57. <span class="filename whiteFont">Title</span>
  58. <div class="sub header rawname whiteFont" style="word-break: break-all !important; font-size:80%;">Storage Name</div>
  59. </div>
  60. <div class="ts list whiteFont">
  61. <div class="item whiteFont">Storage Location:   <span class="filepath" style="word-break:break-all;">N/A</span></div>
  62. <div class="item whiteFont">File Size:   <span class="filesize">N/A</span></div>
  63. <div class="item whiteFont">Last Modification Date:   <span class="filedate">N/A</span></div>
  64. </div>
  65. </div>
  66. <!-- Side bar -->
  67. <div id="sideBarCover" style="position:fixed;left:0px;top:0px;width:100%;height:100%;background:rgba(30,30,30,0.7);z-index:50;display:none;" onClick="toggleLeftMenu();"></div>
  68. <div id="leftSideBar" class="leftsb" style="max-width:60%;height:100%;z-index:90;display:none;">
  69. <div class="leftsbObject sidebarBanner">
  70. <img class="ts tiny middle aligned image" src="img/main_icon.png" style="max-width: 50px;"><h5 class="whiteFont" style="display:inline;padding-left:8px;">AirMusic</h5>
  71. </div>
  72. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;" onClick="loadSongList();setStorage('viewingTab','music');">
  73. <div class="ts header">
  74. <i class="music tiny icon whiteFont"></i>
  75. <div class="content whiteFont">
  76. Music
  77. </div>
  78. </div>
  79. </div>
  80. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;" onClick="loadFolderView();setStorage('viewingTab','folder');">
  81. <div class="ts header">
  82. <i class="folder tiny icon whiteFont"></i>
  83. <div class="content whiteFont">
  84. Folder
  85. </div>
  86. </div>
  87. </div>
  88. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;" onClick="loadPlaylistView(); setStorage('viewingTab','playlist');">
  89. <div class="ts header">
  90. <i class="align justify tiny icon whiteFont"></i>
  91. <div class="content whiteFont">
  92. Playlists
  93. </div>
  94. </div>
  95. </div>
  96. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;" onClick="loadNetworkView(); setStorage('viewingTab','network');">
  97. <div class="ts header">
  98. <i class="world tiny icon whiteFont"></i>
  99. <div class="content whiteFont">
  100. Network
  101. </div>
  102. </div>
  103. </div>
  104. <!--
  105. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;" onClick="">
  106. <div class="ts header">
  107. <i class="upload icon whiteFont"></i>
  108. <div class="content whiteFont">
  109. Upload
  110. </div>
  111. </div>
  112. </div>
  113. -->
  114. <div class="leftsbObject sbSelectable sbPaddingIn" style="font-size:80%;border-top: 2px solid #4a4a4a;">
  115. <div class="ts header">
  116. <i class="setting tiny icon whiteFont"></i>
  117. <div class="content whiteFont">
  118. Settings
  119. </div>
  120. </div>
  121. </div>
  122. </div>
  123. <!-- Mini player controller put on the bottom side of the list interface-->
  124. <div id="miniPlayer" class="hidden">
  125. <div style="padding-left:20px;padding-top:5px;" >
  126. <div class="ts header selectable" style="margin:0px !important;width:300px;cursor:pointer;" onClick="showMainPlayerInterface();">
  127. <i class="music icon whiteFont" style="overflow:hidden;"></i>
  128. <div class="content whiteFont" style="padding-top:5px;line-height:1em;">
  129. <div id="miniPlayerDisplayName" style="text-overflow: ellipsis;overflow: hidden;max-width:200px; white-space: nowrap;">N/A</div>
  130. <div id="miniPlayerInformation" class="sub header" style="color: #c7c7c7;size:95%;">No information</div>
  131. </div>
  132. </div>
  133. </div>
  134. <div id="miniPlayerIDtab" class="miniPlayer minitab">
  135. 0/0
  136. </div>
  137. <div class="miniPlayerControls">
  138. <button class="miniPlayer selectable" style="font-size:90%;" onClick="previousSong();"><i class="step backward icon whiteFont"></i></button>
  139. <button class="miniPlayer selectable" style="font-size:120%;" onClick="togglePlayMode();"><i class="play icon whiteFont PlayButton"></i></button>
  140. <button class="miniPlayer selectable" style="font-size:90%;" onClick="nextSong();"><i class="step forward icon whiteFont "></i></button>
  141. </div>
  142. </div>
  143. <!-- Main interface for player and audio controller-->
  144. <div id="playerInterface" style="display:none;">
  145. <div id="infoBar" class="whiteFont" style="padding:20px;" align="center">
  146. <!-- Top Information Bar-->
  147. <div class="whiteFont songTitleWrapper" style="margin:0px;display:inline-block;">
  148. <div id="mainPlayerSongTitle" class="whiteFont" style="font-weight: bold;font-size:120%;">Song Title</div>
  149. <small id="mainPlayerSongDesc">This is some small text for display</small>
  150. </div>
  151. <div style="position:absolute;left:20px;top:30px;cursor:pointer;" onClick="hideMainPlayerInterface();">
  152. <i class="large chevron left icon"></i>
  153. </div>
  154. <div style="position:absolute;right:20px;top:30px;cursor:pointer;" onClick='$("#dropdownSonglist").slideDown();'>
  155. <i class="large content icon"></i>
  156. </div>
  157. </div>
  158. <div style="padding-left:20px; padding-right:20px;padding-bottom:5px;" align="center">
  159. <!-- Function Menu Bar-->
  160. <div class="ts grid">
  161. <div class="two wide column"><button style="cursor: pointer;" onclick="showPlaylistInterface();"><i class="large plus icon whiteFont"></i></button></div>
  162. <div class="two wide column"><button id="downloadBtn" style="cursor: pointer;" onClick="downloadPlayingSong();"><i class="large download icon whiteFont"></i></button></div>
  163. <div class="two wide column"><button style="cursor: pointer;" onClick="openInFileExplorer();"><i class="large folder open icon whiteFont"></i></button></div>
  164. <div class="two wide column desktopOnly"><button style="cursor: pointer;" onClick="mute();" ><i class="large volume off icon whiteFont"></i></button></div>
  165. <div class="two wide column desktopOnly"><button style="cursor: pointer;" onClick="addAudioVolume(-0.05);"><i class="large volume down icon whiteFont"></i></button></div>
  166. <div class="two wide column desktopOnly"><button style="cursor: pointer;" onClick="addAudioVolume(0.05);"><i class="large volume up icon whiteFont"></i></button></div>
  167. <div class="two wide column"><button style="cursor: pointer;" onClick="showTimerInterface();"><i class="large clock icon whiteFont"></i></button></div>
  168. <div class="two wide column"><button style="cursor: pointer;" onClick="showSettingInterface();"><i class="large setting icon whiteFont"></i></button></div>
  169. </div>
  170. <div id="volumeGUI">
  171. <i class="volume off large icon whiteFont" style="position:absolute;left:12%;top:10px;"></i>
  172. <div class="ts tiny progress">
  173. <div id="volBar" class="bar" style="width: 40%"></div>
  174. </div>
  175. <i class="volume up large icon whiteFont" style="position:absolute;right:12%;top:10px;"></i>
  176. </div>
  177. </div>
  178. <!-- Download progress bar-->
  179. <div id="downloadProgressBar" class="ts attached fluid tiny progress" style="background-color:rgba(20, 20, 20, 0.9);display:none;">
  180. <div class="bar" style="width: 0%;background-color:rgb(75, 117, 255) !important;"></div>
  181. </div>
  182. <div id="albumnArt" align="center">
  183. <img id="albumnArtImage" style="max-width: 80%;" src="img/default.png">
  184. </div>
  185. <div id="mainPlayerControlInterface">
  186. <!-- main control interface-->
  187. <div style="width:100%;" align="center">
  188. <div id="progressTime">
  189. 0:00
  190. </div>
  191. <div id="mainPlayerMiniTab" class="mainPlayer minitab">
  192. 0/0
  193. </div>
  194. <div id="remainTime">
  195. -0:00
  196. </div>
  197. </div>
  198. <div style="position:absolute;width:100%;left:0px;bottom:0px;">
  199. <div style="padding-left:10px;padding-right:10px;">
  200. <div class="ts small primary progress">
  201. <div id="audioProgressBar" class="bar" style="width: 100%; background: #4b75ff;"></div>
  202. </div>
  203. </div>
  204. <div class="mainControlButtons">
  205. <button style="font-size:90%;padding:15px;" onClick="previousSong();"><i class="step backward icon whiteFont"></i></button>
  206. <button style="font-size:130%;" onClick="togglePlayMode();"><i class="play icon whiteFont PlayButton"></i></button>
  207. <button style="font-size:90%;padding:15px;" onClick="nextSong();"><i class="step forward icon whiteFont "></i></button>
  208. </div>
  209. <div id="randomModeButton" style="position: absolute; left:30px;bottom:20px;" onClick="toggleRandomMode(this);">
  210. <i class="large random icon disabled"></i>
  211. </div>
  212. <div id="repeatModeButton" style="position: absolute; right:30px;bottom:20px;" onClick="toggleRepeatMode(this);">
  213. <i class="large retweet icon disabled"></i>
  214. <p class="whiteFont singleLoop" style="position:absolute;right:0px;bottom:0px;margin-bottom:-13px;margin-right:-2px;display:none;">1</p>
  215. </div>
  216. </div>
  217. </div>
  218. <audio id="mainAudioPlayer" style="display:none;" src=""></audio>
  219. <div id="dropdownSonglist" class="dropdownMusicList" style="display:none;">
  220. <div class="dropdownMusicListMiniMenu">
  221. <i class="icons" style="margin-right:8px;">
  222. <i class="content icon"></i>
  223. <i class="corner music icon" style='color:#333333'></i>
  224. </i>
  225. Now Playing
  226. <div style="position:absolute;top:3px;right:5px;">
  227. [ <span id="dropdownListSongCount">N/A</span> songs / <span id="dropdownListIDCount">N/A</span> MB ] <button onClick='$("#dropdownSonglist").slideUp();' style="cursor:pointer;"><i class="caret up icon whiteFont"></i></button>
  228. </div>
  229. </div>
  230. <div id="currentPlayingMainList" style="overflow-x:hidden;">
  231. </div>
  232. <div class="dropdownMusicListBottom" align="center" onClick='$("#dropdownSonglist").slideUp();'><i class="caret up icon"></i></div>
  233. </div>
  234. </div>
  235. <!-- Quick Menus and other tool windows-->
  236. <!-- Timer control interface-->
  237. <div id="timerInterface" class="quickMenu">
  238. <h4 class="whiteFont">Countdown Timer</h4>
  239. <br>
  240. <div id="timerSettingInterface" style="width:100%;" align="center">
  241. <div>
  242. <div class="ts statistic">
  243. <div class="label whiteFont">hours</div>
  244. <div id="timerHour" class="value whiteFont">0</div>
  245. </div>
  246. <div class="ts statistic">
  247. <div class="label whiteFont">minutes</div>
  248. <div id="timerMinute" class="value whiteFont">0</div>
  249. </div>
  250. </div>
  251. <div>
  252. <div class="ts icon mini buttons">
  253. <button class="ts inverted button" onClick="addTimer('h',1);"><i class="add icon"></i></button>
  254. <button class="ts inverted button" onClick="addTimer('h','r');"><i class="refresh icon"></i></button>
  255. <button class="ts inverted button" onClick="addTimer('h',-1);"><i class="minus icon"></i></button>
  256. </div>
  257. <div class="ts icon mini buttons">
  258. <button class="ts inverted button" onClick="addTimer('m',10);"><i class="add icon"></i></button>
  259. <button class="ts inverted button" onClick="addTimer('m','r');"><i class="refresh icon"></i></button>
  260. <button class="ts inverted button" onClick="addTimer('m',-1);"><i class="minus icon"></i></button>
  261. </div>
  262. </div>
  263. </div>
  264. <div id="timerCountingInterface" style="width:100%; display:none;" align="center">
  265. <div class="ts statistic">
  266. <div id="remainingUI" class="value whiteFont">0:00:00</div>
  267. <div class="label whiteFont">Remaining</div>
  268. </div>
  269. </div>
  270. <div class="ts divider"></div>
  271. <div>
  272. <div class="ts grid">
  273. <div class="eight wide column">
  274. Times up action
  275. </div>
  276. <div class="eight wide column">
  277. <select id="stopMode" class="ts basic inverted mini dropdown">
  278. <option>Fade Out & Stop</option>
  279. <option>Stop Playing</option>
  280. </select>
  281. </div>
  282. </div>
  283. </div>
  284. <div style="width:100%;position:absolute;left:0px;bottom:0px; margin-bottom: 10px;;" align="center">
  285. <div class="ts grid" >
  286. <div class="eight wide column" style="padding-right: 0px;" align="center"><button class="greenBtn" onClick='hideAllquickMenu();'>Close</button></div>
  287. <div class="eight wide column" style="padding-left: 0px;" align="center"><button class="greenBtn" onClick="toggleCountDown(this);">Start</button></div>
  288. </div>
  289. </div>
  290. </div>
  291. <!-- File properties interface-->
  292. <div id="filepropInterface" class="quickMenu">
  293. <div class="ts header">
  294. <span class="filename whiteFont">Title</span>
  295. <div class="sub header rawname whiteFont" style="word-break:break-all;">Storage Name</div>
  296. </div>
  297. <div class="ts list whiteFont">
  298. <div class="item whiteFont">Storage Location:   <span class="filepath" style="word-break:break-all;">N/A</span></div>
  299. <div class="item whiteFont">File Size:   <span class="filesize">N/A</span></div>
  300. <div class="item whiteFont">Last Modification Date:   <span class="filedate">N/A</span></div>
  301. </div>
  302. </div>
  303. <!-- Setting interface-->
  304. <div id="settingInterface" class="quickMenu">
  305. <div style="">
  306. <div class="ts relaxed list" style="padding:0px !important;">
  307. <div id="settingMenuTitle" class="item whiteFont" style="">N/A</div>
  308. <div class="item selectable whiteFont" onclick="showPlaylistInterface(); $('#settingInterface').fadeOut('fast');"><i class="add icon" style="margin-right:5px;"></i> Add to playlist</div>
  309. <div class="item selectable whiteFont" onClick="openInFileExplorer(); hideAllquickMenu();"><i class="folder open icon" style="margin-right:5px;"></i> Open in File Explorer</div>
  310. <div class="item selectable whiteFont" onClick="searchOnYoutube(); hideAllquickMenu();"><i class="youtube play icon" style="margin-right:5px;"></i>Search on Youtube</div>
  311. <div class="item selectable whiteFont" onClick="showFileInformation();"><i class="file icon" style="margin-right:5px;"></i> File Information</div>
  312. <div class="ts divider"></div>
  313. <div id="closeWebAppButton" class="item selectable whiteFont" onClick="ao_module_close();"><i class="remove icon" style="margin-right:5px;"></i> Exit Application</div>
  314. </div>
  315. </div>
  316. </div>
  317. <!-- Playlist interface-->
  318. <div id="playlistInterface" class="quickMenu">
  319. <div class="ts header">
  320. <span class="whiteFont">Add to Playlist</span>
  321. </div>
  322. <div class="playlist item selectable whiteFont" onclick="addToNewPlaylist();">
  323. <i class="add icon whiteFont"></i> New Playlist
  324. </div>
  325. <!-- playlist list-->
  326. <div id="existsingPlaylist" style="overflow-y: scroll; height: 50%; border: 1px solid white;">
  327. <div class="playlist item selectable whiteFont">
  328. <i class="list icon whiteFont"></i> Test Playlist
  329. </div>
  330. </div>
  331. <br>
  332. <div style="width:100%;position:absolute;left:0px;bottom:0px; margin-bottom: 10px;;" align="center">
  333. <button class="greenBtn" onClick='hideAllquickMenu();'>Close</button>
  334. </div>
  335. <div class="ts snackbar" id="succSnackBar">
  336. <div class="content">
  337. Action Completed
  338. </div>
  339. </div>
  340. </div>
  341. <!-- Utils Interfaces, usually hidden-->
  342. <div id="fadeReturnScreen" class="fadeScreen whiteFont" onClick="hideAllquickMenu();"></div>
  343. <script>
  344. var leftMenuShown = false;
  345. var currentPath = "";
  346. var currentMode = "music";
  347. var rootPaths = [];
  348. var totalMusicCount = 0;
  349. var currentPlaying = false;
  350. var audioElement = $("#mainAudioPlayer");
  351. var audioElementObject = document.getElementById("mainAudioPlayer"); //Directly expose the audio object
  352. var playingFileDetail = []; //[id, filepath]
  353. var displayList = []; //This is the list where the current UI is displaying.
  354. var playingList = []; //This is the list where the player last clicked on an item to play
  355. var randomMode = false;
  356. var repeatMode = 0; //Repeat mode 0 -> No repeat, 1 -> Repeat all 2 -> Repeat one
  357. var updateSystemVolume = true;
  358. var timerMode = false;
  359. var timerRemaining = 0;
  360. var playlistAddPendingFile = ""; //The filepath of the file that is pending to be added to playlist
  361. var timerEndMode = "fade"; //Fade or End, Provide volume fadeout or end immediately while times up
  362. var ua = navigator.userAgent.toLowerCase();
  363. var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
  364. var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
  365. //Embed native mediaSession for any device that supports it
  366. initNativeMediaPlayer();
  367. //Update implementatio nof user agent detection
  368. if (typeof InstallTrigger !== 'undefined'){
  369. ua = "firefox";
  370. }
  371. if (!!window.chrome && (!!window.chrome.webstore || !!window.chrome.runtime)){
  372. ua = "chrome";
  373. }
  374. var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
  375. if (isSafari == true){
  376. ua = "safari";
  377. }
  378. $(document).ready(function(){
  379. $("#leftSideBar").animate({left: $("#leftSideBar").width() * -1}, 300);
  380. //Update 7-8-2019, default loading tab is handled over to the returnToPreviousState() function.
  381. //loadSongList();
  382. //Initiate the module's volume to the system's
  383. syncSystemVol();
  384. initAudioListeners();
  385. resizeQuickAdjust(); //Adjust all the DOM items position according to window size
  386. restoreAllSettings(); //Restore all user prefered settings from storage
  387. hideMainPlayerInterface();//Hide the main interface
  388. setTimeout(function(){
  389. $("#playerInterface").show(); //Only show this interface after it has been out of the working area.
  390. },500);
  391. //Hide the exit application button if it is not in Virtual Desktop Mode
  392. if (!ao_module_virtualDesktop){
  393. $("#closeWebAppButton").hide();
  394. }
  395. returnToPreviousState(); //Try to return to previous state using the window hash value
  396. });
  397. function returnToPreviousState(){
  398. var hash = window.location.hash;
  399. if (hash != ""){
  400. //There are state to restore. Restore using the given hash value
  401. hash = decodeURIComponent(hash.substring(1));
  402. var previousState = JSON.parse(hash);
  403. console.log(previousState);
  404. var currentPath = previousState.path;
  405. var playingFileDetail = previousState.pfp;
  406. var initPauseState = previousState.pause;
  407. if (currentPath != ""){
  408. //Create a dummy folder and trick the system to load to the previous states
  409. var a = '<div></div>';
  410. a = $(a).attr("filepath",currentPath);
  411. openFolder(a[0],{playIDAfterOpen: playingFileDetail[0],startPaused: initPauseState});
  412. }else{
  413. //currentpath is empty, aka Music Mode
  414. loadSongList();
  415. }
  416. }else{
  417. //No state to restore. Restore Viewing Tab instead.
  418. var vt = loadStorage("viewingTab");
  419. if (vt != ""){
  420. if (vt == "music"){
  421. loadSongList();
  422. }else if(vt == "folder"){
  423. loadFolderView();
  424. }else if(vt == "playlist"){
  425. loadPlaylistView();
  426. }else if(vt == "network"){
  427. loadNetworkView();
  428. }
  429. }else{
  430. //Default action
  431. loadSongList();
  432. }
  433. }
  434. }
  435. function loadNetworkView(){
  436. currentMode = "network";
  437. }
  438. function initAudioListeners(){
  439. //Initiate audio progress bar and link it to the progress bar on the main player interface
  440. audioElement[0].addEventListener("timeupdate", function() {
  441. var currentTime = audioElement[0].currentTime;
  442. var duration = audioElement[0].duration;
  443. $('#audioProgressBar').css('width',((currentTime +.25)/duration)*100 + '%');
  444. updatePlaybackDisplayTime(currentTime,duration);
  445. });
  446. audioElement[0].onended = function() {
  447. nextSongHandler();
  448. };
  449. //Handle clicks on progress bar to skip through the playback
  450. $("#audioProgressBar").parent().on("click",function(e){
  451. var duration = audioElement[0].duration;
  452. var jumpTo = (e.offsetX / $(this).width()) * duration;
  453. if (!audioElement[0].paused){
  454. audioElement[0].pause();
  455. audioElement[0].currentTime = jumpTo;
  456. audioElement[0].play();
  457. }else{
  458. audioElement[0].currentTime = jumpTo;
  459. }
  460. });
  461. }
  462. function restoreAllSettings(){
  463. //Repeat mode setting
  464. var strRmode = loadStorage("repeatMode");
  465. if (strRmode != ""){
  466. repeatMode = parseInt(strRmode);
  467. setRepeatMode(repeatMode,$("#repeatModeButton")[0]);
  468. }
  469. //Random Mode setting
  470. var random = loadStorage("randomMode");
  471. if (random != ""){
  472. if (random == "true"){
  473. //random Mode is true when loaded from configuration. Toggle once to match the setting
  474. toggleRandomMode($("#randomModeButton")[0]);
  475. }
  476. }
  477. //Timer mode setting
  478. var TEM = loadStorage("timerEndMode");
  479. if (TEM != ""){
  480. if (TEM == "fade"){
  481. $("#stopMode").val("Fade Out & Stop");
  482. }else{
  483. $("#stopMode").val("Stop Playing");
  484. }
  485. }
  486. }
  487. //Setting menu function
  488. function searchOnYoutube(filename = ""){
  489. if (filename == ""){
  490. var filename = $("#mainPlayerSongTitle").text().trim();
  491. }
  492. var url = "https://www.youtube.com/results?search_query=" + filename ;
  493. window.open(url);
  494. }
  495. //Searching related functions
  496. var preSearchItemBuffer = "";
  497. var searchModeEnabled = false;
  498. function enterSearchMode(){
  499. if (searchModeEnabled){
  500. //Search mode already enabled
  501. return;
  502. }
  503. $("#searchModeMenu").show();
  504. $("#mainMenu").hide();
  505. preSearchItemBuffer = [$("#mainList").html(),$("#interfaceTitle").text(),$("#AMmenuIcon").attr("class")];
  506. searchModeEnabled = true;
  507. }
  508. function exitSearchMode(){
  509. $("#searchModeMenu").hide();
  510. $("#mainMenu").show();
  511. $("#searchInputBar").val("");
  512. if (preSearchItemBuffer != ""){
  513. //If previous record exists, recover the previous view from storage
  514. $("#mainList").html(preSearchItemBuffer[0]);
  515. $("#interfaceTitle").text(preSearchItemBuffer[1]);
  516. $("#AMmenuIcon").attr("class",preSearchItemBuffer[2])
  517. preSearchItemBuffer = "";
  518. }
  519. searchModeEnabled = false;
  520. }
  521. $("#searchInputBar").on("keyup",function(e){
  522. if(e.keyCode == 13){
  523. //Enter pressed. start searching
  524. searchSong();
  525. }
  526. });
  527. function searchSong(){
  528. var keyword = $("#searchInputBar").val();
  529. if (keyword.includes("?") || keyword.includes("&")){
  530. alert("Search keyword cannot contains & or ? symbol.");
  531. return;
  532. }
  533. //Clear the mainList, replace with a dummy loading screen
  534. $("#mainList").html('<div class="mainList item whiteFont">\
  535. <div class="ts header" style="margin:0px !important;padding-bottom:15px;padding-top:5px;">\
  536. <i class="loading spinner icon whiteFont" style="overflow:hidden;margin-top:5px;"></i>\
  537. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  538. Searching...\
  539. </div>\
  540. </div>\
  541. <div class="topRightCorner" align="center">\
  542. -1\
  543. </div>\
  544. </div>');
  545. ao_module_agirun("Music/functions/listSong.js", {
  546. listSong: "search:" + keyword
  547. }, function(data){
  548. currentPath = "";
  549. var template = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  550. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  551. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  552. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  553. {songtitle}\
  554. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  555. </div>\
  556. </div>\
  557. <div class="topRightCorner" align="center">\
  558. {id}\
  559. </div>\
  560. <div class="mainList rightFunctionBar" align="center" onClick="showMore(this);">\
  561. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  562. </div>\
  563. </div>';
  564. if ($("#searchModeMenu").is(":hidden")){
  565. //The user exited search mode before the search results come back
  566. //Dispose the search result
  567. return;
  568. }
  569. if (data.length == 0){
  570. //No search results.
  571. $("#mainList").html("");
  572. $("#mainList").append('<div class="mainList item whiteFont">\
  573. <div class="ts header" style="margin:0px !important;padding-bottom:15px;padding-top:5px;">\
  574. <i class="remove icon whiteFont" style="overflow:hidden;margin-top:5px;"></i>\
  575. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  576. No result for keyword: ' + keyword + '.\
  577. </div>\
  578. </div>\
  579. <div class="topRightCorner" align="center">\
  580. -1\
  581. </div>\
  582. </div>');
  583. return;
  584. }
  585. $("#interfaceTitle").text("Search");
  586. $("#AMmenuIcon").attr("class","search icon large whiteFont")
  587. //Initialize the song list
  588. displayList = data;
  589. if (playingList == []){
  590. playingList = Array.from(displayList);
  591. }
  592. $("#mainList").html("");
  593. for ( var i =0; i < data.length; i++){
  594. var songInfo = data[i];
  595. var path = songInfo[0];
  596. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  597. var ext = songInfo[2];
  598. var size = songInfo[3];
  599. var box = template;
  600. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  601. box = replaceAll("{id}",i + 1,box); //User count from 1
  602. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  603. box = replaceAll("{songtitle}",displayname,box);
  604. box = replaceAll("{ext}",ext,box);
  605. box = replaceAll("{size}",size,box);
  606. $("#mainList").append(box);
  607. }
  608. totalMusicCount = data.length;
  609. $("#mainList").append("<br><br><br><br><br><br><br>");
  610. $("#interfaceDetails").text("[" + i + " songs]");
  611. highLightPlayingMusic();
  612. });
  613. }
  614. function enterRemotePlayID(object){
  615. var id = $(object).text().trim();
  616. $("#remotePlayID").val($("#remotePlayID").val() + id);
  617. }
  618. function ridOpr(opr){
  619. if (opr == 'backspace'){
  620. var currentText = $("#remotePlayID").val();
  621. var newText = currentText.substring(0,currentText.length - 1);
  622. $("#remotePlayID").val(newText);
  623. }else if (opr == 'reset'){
  624. $("#remotePlayID").val("");
  625. }
  626. }
  627. function openInFileExplorer(){
  628. var dirname = playingFileDetail[1].split("/");
  629. var fname = dirname.pop(); //Pop away the filename
  630. dirname = dirname.join("/") + "/";
  631. var path = dirname;
  632. if (dirname.substring(0,1) != "/"){
  633. //This is not absolute path. Start the path from airMusic
  634. path = "AirMusic/" + dirname;
  635. }
  636. path = path.replace("media?file=","");
  637. if (path.substring(0,1) == "/"){
  638. path = path.substring(1)
  639. }
  640. ao_module_openPath(path, fname);
  641. }
  642. //quickmenu Functions
  643. function hideAllquickMenu(){
  644. $(".quickMenu").fadeOut('fast');
  645. $("#fadeReturnScreen").fadeOut('fast');
  646. }
  647. //Setting related function
  648. function showSettingInterface(){
  649. $("#settingInterface").fadeIn('fast');
  650. $("#fadeReturnScreen").fadeIn('fast');
  651. //Update contents in the setting menu
  652. $("#settingMenuTitle").text($("#mainPlayerSongTitle").text());
  653. }
  654. //Timer related functions
  655. function showTimerInterface(){
  656. $("#timerInterface").fadeIn('fast');
  657. $("#fadeReturnScreen").fadeIn('fast');
  658. }
  659. function initPlaylistInterfaceList(){
  660. $("#existsingPlaylist").html("");
  661. //Get the playlist list from server side
  662. ao_module_agirun("Music/functions/playlist.js", {
  663. opr: "root"
  664. }, function(data){
  665. data.forEach(playlist => {
  666. $("#existsingPlaylist").append(`<div class="playlist item selectable whiteFont" name="${playlist.name}" onclick="addSongToSelectedPlaylist(this);">
  667. <i class="list icon whiteFont"></i> ${playlist.name} [${playlist.count} files]
  668. </div>`);
  669. })
  670. });
  671. }
  672. function showPlaylistInterface(){
  673. initPlaylistInterfaceList();
  674. $("#playlistInterface").fadeIn('fast');
  675. $("#fadeReturnScreen").fadeIn('fast');
  676. }
  677. function addToThisPlaylist(){
  678. }
  679. $("#stopMode").change(function () {
  680. var end = this.value;
  681. if (end.includes("Fade Out & Stop")){
  682. //Start fading out the volume
  683. timerEndMode = "fade";
  684. setStorage("timerEndMode","fade");
  685. }else{
  686. //End immediately
  687. timerEndMode = "end";
  688. setStorage("timerEndMode","end");
  689. }
  690. });
  691. var fadeOutStepping = 0.1; //The steps size for fading out during timer countdown
  692. var defaultVolumeBeforeFadeout = 0;
  693. function toggleCountDown(button){
  694. if (!timerMode){
  695. //Start count down
  696. timerMode = true;
  697. $(button).text("Stop");
  698. timerRemaining = ((parseInt($("#timerHour").text()) * 60) + parseInt($("#timerMinute").text())) * 60; //in seconds
  699. //Update the value on the remaining counter
  700. $("#remainingUI").text(parseTimer(timerRemaining));
  701. $("#timerSettingInterface").slideUp('fast');
  702. $("#timerCountingInterface").slideDown('fast');
  703. $("#stopMode").attr("disabled","");
  704. defaultVolumeBeforeFadeout = audioElement[0].volume;
  705. fadeOutStepping = (audioElement[0].volume) / timerRemaining;
  706. progressCounter();
  707. }else{
  708. //Stop count down
  709. timerMode = false;
  710. $(button).text("Start");
  711. timerRemaining = 0;
  712. $("#timerSettingInterface").slideDown('fast');
  713. $("#timerCountingInterface").slideUp('fast');
  714. $("#stopMode").removeAttr("disabled");
  715. }
  716. }
  717. function progressCounter(){
  718. //Update the timer
  719. timerRemaining = timerRemaining - 1;
  720. $("#remainingUI").text(parseTimer(timerRemaining));
  721. if (timerRemaining > 0){
  722. //Continues
  723. if (timerEndMode == "fade"){
  724. var newvol = audioElement[0].volume - fadeOutStepping;
  725. audioElement[0].volume = Math.max(0,newvol);
  726. }
  727. setTimeout(progressCounter,1000);
  728. }else{
  729. //Times up
  730. handleTimerEnd();
  731. }
  732. }
  733. function handleTimerEnd(){
  734. //Stop the playback
  735. originalVol = audioElement[0].volume;
  736. fadeAudio();
  737. setPlaying(false);
  738. audioElement[0].pause();
  739. setTimeout(function(){
  740. audioElement[0].volume = defaultVolumeBeforeFadeout;
  741. },500);
  742. }
  743. function parseTimer(remainingTime){
  744. //remainingTime in seconds, prase to HH:mm:ss
  745. var hours = Math.floor(remainingTime / 3600);
  746. var remainingTime = remainingTime % 3600;
  747. var minutes = Math.floor(remainingTime / 60);
  748. var seconds = remainingTime % 60;
  749. if (minutes < 10){
  750. minutes = "0" + minutes;
  751. }
  752. if (seconds < 10){
  753. seconds = "0" + seconds;
  754. }
  755. var formatted = hours + ":" + minutes + ":" + seconds;
  756. return formatted;
  757. }
  758. function addTimer(unit,value){
  759. if (unit == "h"){
  760. if (value == "r"){
  761. $("#timerHour").text("0");
  762. }else{
  763. $("#timerHour").text($("#timerHour").text() - -1 * value);
  764. }
  765. }else if (unit == "m"){
  766. if (value == "r"){
  767. $("#timerMinute").text("0");
  768. }else{
  769. $("#timerMinute").text($("#timerMinute").text() - -1 * value);
  770. }
  771. }
  772. if (parseInt($("#timerHour").text()) < 0){
  773. $("#timerHour").text("0");
  774. }
  775. if (parseInt($("#timerMinute").text()) < 0){
  776. if (parseInt($("#timerHour").text()) > 0){
  777. //subtract 1 from the hour
  778. $("#timerHour").text($("#timerHour").text() - 1);
  779. $("#timerMinute").text(parseInt($("#timerMinute").text()) + 60);
  780. }else{
  781. //There is no hours to subtract
  782. $("#timerMinute").text("0");
  783. }
  784. }
  785. if (parseInt($("#timerMinute").text()) > 59){
  786. $("#timerMinute").text(parseInt($("#timerMinute").text()) - 60);
  787. $("#timerHour").text($("#timerHour").text() - -1);
  788. }
  789. }
  790. //Download function
  791. function downloadPlayingSong(){
  792. var url = audioElement.attr("src");
  793. var ext = url.split(".").pop();
  794. var filename = $("#mainPlayerSongTitle").text().trim();
  795. generateDownloadElement(url,filename);
  796. /*
  797. if (url.includes("/media")){
  798. blobDownloadElement(url,filename);
  799. }else{
  800. generateDownloadElement(url,filename);
  801. }
  802. */
  803. }
  804. var downloadInProgress = false;
  805. function blobDownloadElement(filepath,filename){
  806. if (downloadInProgress){
  807. alert("Please wait until another download finished.");
  808. return;
  809. }
  810. downloadInProgress = true;
  811. $("#downloadBtn").find("i").addClass("disabled");
  812. $("#downloadProgressBar").find(".bar").css("width","0%");
  813. $("#downloadProgressBar").show();
  814. var xhr = new XMLHttpRequest();
  815. xhr.onreadystatechange = function(){
  816. if (this.readyState == 4 && this.status == 200){
  817. //handler(this.response);
  818. //console.log(this.response, typeof this.response);
  819. var url = window.URL || window.webkitURL;
  820. //Open the downloaded data in new window for testing
  821. //window.open(url.createObjectURL(this.response));
  822. generateDownloadElement(url.createObjectURL(this.response),filename);
  823. $("#downloadBtn").find("i").removeClass("disabled");
  824. $("#downloadProgressBar").hide();
  825. downloadInProgress = false;
  826. }
  827. }
  828. xhr.onprogress = function (event) {
  829. console.log("[AirMusic] Download Progress: " + event.loaded + " / " + event.total + "Bytes");
  830. $("#downloadProgressBar").find(".bar").css("width",(event.loaded / event.total) * 100 + "%");
  831. };
  832. xhr.open('GET', filepath);
  833. xhr.responseType = 'blob';
  834. xhr.send();
  835. }
  836. function generateDownloadElement(filepath, filename){
  837. var link = document.createElement('a');
  838. link.href = filepath + "&download=true";
  839. link.setAttribute('download', filename);
  840. document.getElementsByTagName("body")[0].appendChild(link);
  841. // Firefox
  842. if (document.createEvent) {
  843. var event = document.createEvent("MouseEvents");
  844. event.initEvent("click", true, true);
  845. link.dispatchEvent(event);
  846. }
  847. // IE
  848. else if (link.click) {
  849. link.click();
  850. }
  851. link.parentNode.removeChild(link);
  852. }
  853. //Volume control related features
  854. var previousAudioVolume = 0;
  855. function mute(){
  856. if (audioElement[0].volume != 0){
  857. //Set to mute
  858. previousAudioVolume = audioElement[0].volume;
  859. audioElement[0].volume = 0;
  860. }else{
  861. //Restore from mute
  862. audioElement[0].volume = previousAudioVolume;
  863. }
  864. $("#volBar").css("width",audioElement[0].volume * 100 + "%");
  865. }
  866. var volbarTimeoutEvt;
  867. function addAudioVolume(value){
  868. $("#volumeGUI").slideDown('fast');
  869. if (volbarTimeoutEvt !== undefined){
  870. clearTimeout(volbarTimeoutEvt);
  871. }
  872. volbarTimeoutEvt = setTimeout(function(){
  873. $("#volumeGUI").slideUp('fast');
  874. },3000);
  875. $("#volumeGUI")
  876. if (audioElement[0].volume + value >= 1){
  877. audioElement[0].volume = 1;
  878. }else if (audioElement[0].volume + value <= 0){
  879. audioElement[0].volume = 0;
  880. }else{
  881. audioElement[0].volume += value;
  882. }
  883. $("#volBar").css("width",Math.min(100,audioElement[0].volume * 100) + "%");
  884. }
  885. function updatePlaybackDisplayTime(currentTime,duration){
  886. let progress = Math.round(currentTime);
  887. let remainTime = Math.round(duration - currentTime);
  888. $("#progressTime").text(secondsToHms(progress));
  889. if (!isNaN(remainTime)){
  890. $("#remainTime").text("-" + secondsToHms(remainTime));
  891. }
  892. }
  893. function nextSongHandler(){
  894. console.log("Next song");
  895. if (repeatMode == 1){
  896. //Next song in the playlist
  897. if (randomMode){
  898. var randomTrackID = Math.floor(Math.random() * (playingList.length - 1));
  899. //console.log(randomTrackID, playingList[randomTrackID]);
  900. nextSong(randomTrackID,true);
  901. }else{
  902. var playingSongIndex = playingFileDetail[0];
  903. var nextSongIndex = playingSongIndex;
  904. if (nextSongIndex >= playingList.length){
  905. nextSongIndex = 0;
  906. }
  907. //console.log(playingSongIndex, nextSongIndex);
  908. nextSong(nextSongIndex,true);
  909. }
  910. }else if (repeatMode == 2){
  911. //Loop this song only
  912. audioElement[0].pause();
  913. audioElement[0].currentTime = 0;
  914. audioElement[0].play();
  915. }else if (repeatMode == 0){
  916. //Pause after finish this song
  917. setPlaying(false);
  918. audioElement[0].pause();
  919. audioElement[0].currentTime = 0;
  920. }
  921. }
  922. function mainPlayerShown(){
  923. if ($("#playerInterface").offset().left == 0){
  924. return true;
  925. }
  926. return false;
  927. }
  928. function toggleRandomMode(button){
  929. var btn = $(button).find("i");
  930. if (randomMode){
  931. //Set the random mode to false
  932. btn.removeClass("enabled").addClass("disabled");
  933. randomMode = false;
  934. }else{
  935. btn.removeClass("disabled").addClass("enabled");
  936. randomMode = true;
  937. }
  938. setStorage("randomMode",randomMode);
  939. }
  940. function toggleRepeatMode(button){
  941. if (repeatMode == 0){
  942. setRepeatMode(1,button);
  943. setStorage("repeatMode",1);
  944. }else if (repeatMode == 1){
  945. setRepeatMode(2,button);
  946. setStorage("repeatMode",2);
  947. }else if (repeatMode == 2){
  948. setRepeatMode(0,button);
  949. setStorage("repeatMode",0);
  950. }
  951. }
  952. function setRepeatMode(modeCode,button){
  953. if (modeCode == 1){
  954. //Set repeat mode to "Repeat all"
  955. $(button).find(".singleLoop").hide();
  956. $(button).find("i").removeClass("disabled").addClass("enabled");
  957. repeatMode = 1;
  958. }else if (modeCode == 2){
  959. //Set repeat mode to "Repeat one"
  960. $(button).find(".singleLoop").show();
  961. $(button).find("i").removeClass("disabled").addClass("enabled");
  962. repeatMode = 2;
  963. }else if (modeCode == 0){
  964. //Set repeat mode to "None"
  965. $(button).find(".singleLoop").hide();
  966. $(button).find("i").removeClass("enabled").addClass("disabled");
  967. repeatMode = 0;
  968. }
  969. }
  970. function hideMainPlayerInterface(){
  971. $("#playerInterface").animate({left: window.innerWidth},300);
  972. $("body").css("overflow-y","auto");
  973. }
  974. function showMainPlayerInterface(){
  975. $("#playerInterface").animate({left:0},300);
  976. $("body").css("overflow-y","hidden");
  977. }
  978. function syncSystemVol(){
  979. //Initiate the module's volume to the system's
  980. var globalvol = localStorage.getItem("global_volume");
  981. //console.log("Global Volume" + globalvol.toString());
  982. if (!globalvol){
  983. globalvol = 0.1;
  984. }
  985. //Check if it is mobile. If yes, always 100% and leave volume to system
  986. if (isMobile()){
  987. globalvol = 1;
  988. $(".desktopOnly").addClass("disabled");
  989. }
  990. audioElement[0].volume = parseFloat(globalvol);
  991. $("#volBar").css("width",audioElement[0].volume * 100 + "%");
  992. }
  993. function replaceAll(target, replace, original){
  994. return original.split(target).join(replace);
  995. };
  996. function playSong(object, startPaused = false){
  997. if ($(object).parent().hasClass("playingTrack")){
  998. //This is already the song that is currently playing. Show the main player interface instead.
  999. showMainPlayerInterface();
  1000. resizeQuickAdjust();
  1001. return;
  1002. }
  1003. //$(".playingTrack").removeClass("playingTrack");
  1004. //$(object).parent().addClass("playingTrack");
  1005. var filepath = ao_module_utils.attrToObject($(object).parent().attr('filepath'));
  1006. var rawname = ao_module_utils.attrToObject($(object).parent().attr('rawname'));
  1007. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1008. var info = $(object).parent().find(".fileinfo").text();
  1009. var id = $(object).parent().attr('id');
  1010. if (id === undefined){
  1011. //This might be a file from dropdown list. use listid instead
  1012. id = $(object).parent().attr('listid');
  1013. }
  1014. updateMiniPlayerUI(displayName,info,id);
  1015. updateMainPlayerUI(displayName,info,id);
  1016. loadAndPlayAudioFile(filepath, !startPaused);
  1017. if (!currentPlaying && !startPaused){
  1018. setPlaying(true);
  1019. }
  1020. playingFileDetail = [parseInt(id),filepath];
  1021. //If the user play this file, assume the next file to be added to playlist is this file
  1022. playlistAddPendingFile = filepath;
  1023. //Have a backup of the current list just incase the user open another directory while a list is playing
  1024. //Only backup when it is not call from dropdown list
  1025. if (!$(object).parent().hasClass("dropdownList")){
  1026. playingList = Array.from(displayList);
  1027. }
  1028. parsePlayingSongList();
  1029. if ($("#miniPlayer").hasClass("hidden")){
  1030. //This is the first song that has played after the UI init
  1031. $("#miniPlayer").css("display","none").removeClass("hidden").slideDown();
  1032. }
  1033. showMainPlayerInterface();
  1034. //Just in case the albumn image changed, albumn art css is also updated.
  1035. resizeQuickAdjust();
  1036. updateStateReferingURL();
  1037. highLightPlayingMusic();
  1038. }
  1039. function loadThumbnail(filepath){
  1040. //Load the thumbnail
  1041. var realVpath = filepath.split("=");
  1042. realVpath.shift();
  1043. realVpath = realVpath.join("=");
  1044. ao_module_agirun("Music/functions/getThumbnail.js", {
  1045. file: realVpath,
  1046. }, function(data){
  1047. if (data.error !== undefined){
  1048. console.log(data.error)
  1049. $("#albumnArtImage").attr("src","img/default.png");
  1050. if (isAndroid && navigator.mediaSession.metadata){
  1051. navigator.mediaSession.metadata.artwork = [
  1052. { src: "img/default.png", sizes: '512x512', type: 'image/png' }
  1053. ]
  1054. }
  1055. }else{
  1056. $("#albumnArtImage").attr("src","data:image/jpg;base64," + data);
  1057. if (isAndroid && navigator.mediaSession.metadata){
  1058. navigator.mediaSession.metadata.artwork = [
  1059. { src: "data:image/jpg;base64," + data, sizes: '480x480', type: 'image/jpg' }
  1060. ]
  1061. }
  1062. }
  1063. resizeQuickAdjust();
  1064. });
  1065. }
  1066. function nextSong(id = false,forcePlayEvenStopped = false){
  1067. //Check if the current playlist has more than one songs.
  1068. var currentPaused = audioElement[0].paused;
  1069. if (playingList.length > 1){
  1070. var nextSongIndex = playingFileDetail[0];
  1071. if (id != false){
  1072. //Allow manual overwrite for this function
  1073. nextSongIndex = id;
  1074. var nextSong = playingList[nextSongIndex];
  1075. }else{
  1076. if (playingFileDetail[0] >= playingList.length){
  1077. var nextSong = playingList[0]; //Back to the first song in list
  1078. nextSongIndex = 0;
  1079. }else{
  1080. var nextSong = playingList[nextSongIndex]; //Index of the playList + 1 as the index for the files is alrady i+1. (User count from one)
  1081. }
  1082. }
  1083. //The songs has to be play via background services instead of relying on DOM
  1084. var filepath = nextSong[0];
  1085. var rawname = nextSong[1];
  1086. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1087. var info = nextSong[2] + " / " + nextSong[3];
  1088. var id = nextSongIndex + 1;
  1089. updateMiniPlayerUI(displayName,info,id);
  1090. updateMainPlayerUI(displayName,info,id);
  1091. if (forcePlayEvenStopped){
  1092. loadAndPlayAudioFile(filepath,true);
  1093. }else{
  1094. loadAndPlayAudioFile(filepath,!currentPaused);
  1095. }
  1096. if (currentPlaying){
  1097. setPlaying(true);
  1098. }
  1099. playingFileDetail = [id,filepath];
  1100. //Need not to update the playlist because it is the same
  1101. highLightPlayingMusic();
  1102. }else{
  1103. //This is the only song in playlist. Play again from start
  1104. audioElement[0].pause();
  1105. audioElement[0].currentTime = 0;
  1106. if (!currentPaused){
  1107. audioElement[0].play();
  1108. }
  1109. }
  1110. updateStateReferingURL();
  1111. }
  1112. function previousSong(){
  1113. var currentPaused = audioElement[0].paused;
  1114. if (playingList.length > 1){
  1115. var nextSongIndex = playingFileDetail[0] - 1;
  1116. if (nextSongIndex == 0){
  1117. nextSongIndex = playingList.length;
  1118. var nextSong = playingList[nextSongIndex - 1]; //Back to the last song in list
  1119. }else{
  1120. var nextSong = playingList[playingFileDetail[0] - 2]; //Index of the playList - 1 as the index for the files is alrady i+1. (User count from one)
  1121. }
  1122. //The songs has to be play via background services instead of relying on DOM
  1123. var filepath = nextSong[0];
  1124. var rawname = nextSong[1];
  1125. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1126. var info = nextSong[2] + " / " + nextSong[3];
  1127. var id = nextSongIndex;
  1128. updateMiniPlayerUI(displayName,info,id);
  1129. updateMainPlayerUI(displayName,info,id);
  1130. loadAndPlayAudioFile(filepath,!currentPaused);
  1131. if (currentPlaying){
  1132. setPlaying(true);
  1133. }
  1134. playingFileDetail = [id,filepath];
  1135. //Need not to update the playlist because it is the same
  1136. highLightPlayingMusic();
  1137. }else{
  1138. //This is the only song in playlist. Play again from start
  1139. audioElement[0].pause();
  1140. audioElement[0].currentTime = 0;
  1141. audioElement[0].play();
  1142. }
  1143. updateStateReferingURL();
  1144. }
  1145. var originalVol = 0;
  1146. function togglePlayMode(){
  1147. if (currentPlaying){
  1148. originalVol = audioElement[0].volume;
  1149. fadeAudio();
  1150. setPlaying(false);
  1151. }else{
  1152. gainAudio();
  1153. setPlaying(true);
  1154. }
  1155. }
  1156. let audioTransitioning = false;
  1157. function fadeAudio(){
  1158. audioTransitioning = true;
  1159. if(audioElement[0].volume > 0){
  1160. var testval = audioElement[0].volume - 0.1;
  1161. audioElement[0].volume = Math.max(0,testval);
  1162. setTimeout(fadeAudio, 50);
  1163. }else{
  1164. audioElement[0].pause();
  1165. setTimeout(function(){
  1166. audioElement[0].volume = originalVol;
  1167. updateStateReferingURL();
  1168. audioTransitioning = false;
  1169. }, 100);
  1170. }
  1171. }
  1172. var targetVol = 0;
  1173. function gainAudio(){
  1174. targetVol = audioElement[0].volume;
  1175. audioElement[0].volume = 0;
  1176. setTimeout(function(){
  1177. audioElement[0].play();
  1178. recursiveGainAudio();
  1179. }, 100);
  1180. }
  1181. function recursiveGainAudio(){
  1182. audioTransitioning = true;
  1183. if(audioElement[0].volume < targetVol){
  1184. if (audioElement[0].volume + 0.1 < 1){
  1185. audioElement[0].volume += 0.1
  1186. }else{
  1187. //Audio volume larger than 1, make it 1
  1188. audioElement[0].volume = 1
  1189. }
  1190. setTimeout(recursiveGainAudio, 50);
  1191. }else{
  1192. setTimeout(function(){
  1193. audioElement[0].volume = targetVol;
  1194. updateStateReferingURL();
  1195. audioTransitioning = false;
  1196. }, 100);
  1197. }
  1198. }
  1199. //Update all icons on play and pause buttons
  1200. function setPlaying(playing){
  1201. if (playing == true){
  1202. $(".PlayButton").attr("class","pause icon whiteFont PlayButton");
  1203. currentPlaying = true;
  1204. }else{
  1205. $(".PlayButton").attr("class","play icon whiteFont PlayButton");
  1206. currentPlaying = false;
  1207. }
  1208. }
  1209. function loadAndPlayAudioFile(sourceURL,playAfterLoad = true){
  1210. var audio = audioElement;
  1211. sourceURL = "../" + sourceURL; //Convert absolute dir to relative
  1212. $("#mainAudioPlayer").attr("src", sourceURL);
  1213. //console.log(encodeURIComponent(sourceURL));
  1214. audio[0].pause();
  1215. audio[0].load();
  1216. if(playAfterLoad){
  1217. audio[0].oncanplaythrough = audio[0].play();
  1218. }else{
  1219. var currentTime = audioElement[0].currentTime;
  1220. var duration = audioElement[0].duration;
  1221. $('#audioProgressBar').css('width','0%');
  1222. updatePlaybackDisplayTime(currentTime,duration);
  1223. }
  1224. loadThumbnail(sourceURL);
  1225. }
  1226. function updateMiniPlayerUI(displayName, fileinfo,id){
  1227. $("#miniPlayerDisplayName").text(displayName);
  1228. $("#miniPlayerInformation").text(fileinfo);
  1229. $("#miniPlayerIDtab").text(id + "/" + totalMusicCount);
  1230. }
  1231. function updateMainPlayerUI(songname, fileinfo, id){
  1232. $("#mainPlayerSongTitle").text(songname);
  1233. $("#mainPlayerSongDesc").text(fileinfo);
  1234. $("#mainPlayerMiniTab").text(id + "/" + totalMusicCount);
  1235. if (isAndroid && 'mediaSession' in navigator){
  1236. var infoRewrite = fileinfo.split(" / ")
  1237. updateTitle(songname, infoRewrite[1] + " (" + infoRewrite[0] + ")", id + "/" + totalMusicCount);
  1238. }
  1239. }
  1240. /*
  1241. Playlist related functions
  1242. */
  1243. function renderPlaylistByName(listname){
  1244. $("#interfaceTitle").text(listname);
  1245. ao_module_agirun("Music/functions/playlist.js", {
  1246. opr: "list",
  1247. playlistname: listname
  1248. }, function(data){
  1249. $("#mainList").html("");
  1250. if (data.error !== undefined){
  1251. //This playlist no longer exists. Back to main
  1252. loadPlaylistView();
  1253. }else{
  1254. //Updat ethe global values
  1255. displayList = data;
  1256. totalMusicCount = data.length;
  1257. currentPath = listname;
  1258. //Add the back btn for back to playlist view
  1259. $("#mainList").append(`<div class="mainList item extrapadding" onClick="loadPlaylistView();">
  1260. <div class="ts header selectable" style="margin:0px !important;">
  1261. <i class="angle left icon whiteFont" style="overflow:hidden;"></i>
  1262. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1263. ../
  1264. </div>
  1265. </div>
  1266. </div>`);
  1267. //List the resulting song list
  1268. for (var i = 0; i < data.length; i++){
  1269. var songInfo = data[i];
  1270. $("#mainList").append(`<div class="mainList item" filepath=${ao_module_utils.objectToAttr(songInfo[0])} id=${i+1} rawname=${ao_module_utils.objectToAttr(songInfo[1])}>
  1271. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">
  1272. <i class="music icon whiteFont" style="overflow:hidden;"></i>
  1273. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1274. ${songInfo[1]}
  1275. <div class="sub header fileinfo" style="color: #c7c7c7;">${songInfo[2]} / ${songInfo[3]}</div>
  1276. </div>
  1277. </div>\
  1278. <div class="topRightCorner" align="center">
  1279. ${i + 1}
  1280. </div>
  1281. <div class="mainList rightFunctionBar" type="file" align="center" onclick="showMore(this);">
  1282. <i class="ellipsis vertical icon" style="top:30%;"></i>
  1283. </div>
  1284. </div>`);
  1285. //Update the interface Detail
  1286. $("#interfaceDetails").text("[" + data.length + " files]");
  1287. };
  1288. //Fix some legacy css isseus
  1289. $("#mainList").append("<br><br><br><br><br><br><br>");
  1290. }
  1291. });
  1292. }
  1293. //Open a given playlist
  1294. function openPlaylist(object){
  1295. var listname = $(object).attr("listname");
  1296. renderPlaylistByName(listname);
  1297. }
  1298. function addToNewPlaylist(){
  1299. var playlistname = prompt("Enter new playlist name");
  1300. if (playlistname != null && playlistname != ""){
  1301. //Add to playlist
  1302. addSongToPlayList(playlistname);
  1303. }else{
  1304. $("#succSnackBar").find(".content").html(`<i class="remove icon"></i> Invalid playlist name`);
  1305. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1306. }
  1307. }
  1308. function addToPlaylistFromMoreMenu(){
  1309. $(".showMoreMenus").fadeOut('fast');
  1310. $("#showmoreUIcover").fadeOut('fast');
  1311. showPlaylistInterface();
  1312. }
  1313. //Remove the curernt file from the current playlist
  1314. function removeFromPlylistFromMoreMenu(){
  1315. if (currentMode == "playlist"){
  1316. //Remvoe the playlistAddPendingFile
  1317. //In playlist mode, the currentPath is used to store the plylist name
  1318. ao_module_agirun("Music/functions/playlist.js", {
  1319. opr: "remove",
  1320. playlistname: currentPath,
  1321. musicpath: playlistAddPendingFile.replace("/media?file=","")
  1322. }, function(data){
  1323. if (data.error !== undefined){
  1324. alert(data.error);
  1325. }else{
  1326. //Removed. Reload playlist
  1327. renderPlaylistByName(currentPath);
  1328. //Hide the MoreMenu
  1329. hideShowMoreMenu();
  1330. }
  1331. });
  1332. }
  1333. }
  1334. function addSongToSelectedPlaylist(object){
  1335. var playlistName = $(object).attr("name").trim();
  1336. addSongToPlayList(playlistName);
  1337. }
  1338. function addSongToPlayList(listname){
  1339. //Get current music file name
  1340. var currentSongPath = "";
  1341. if (playlistAddPendingFile !== ""){
  1342. currentSongPath = playlistAddPendingFile.replace("/media?file=","");
  1343. }else{
  1344. $("#succSnackBar").find(".content").html(`<i class="remove icon"></i> No song selected`);
  1345. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1346. return;
  1347. }
  1348. //Add to playlist
  1349. ao_module_agirun("Music/functions/playlist.js", {
  1350. opr: "add",
  1351. playlistname: listname,
  1352. musicpath: currentSongPath
  1353. },function(data){
  1354. //Show success
  1355. $("#succSnackBar").find(".content").html(`<i class="checkmark icon"></i> Added to playlist ${listname}`);
  1356. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1357. //Reload the playlist
  1358. initPlaylistInterfaceList();
  1359. });
  1360. }
  1361. //List the number of playlist stored in this database
  1362. function loadPlaylistView(){
  1363. currentMode = "playlist";
  1364. //Clear the main list
  1365. $("#mainList").html("");
  1366. ao_module_agirun("Music/functions/playlist.js", {
  1367. opr: "root",
  1368. },function(data){
  1369. //Get the list of playlist
  1370. console.log(data);
  1371. //Render the elements
  1372. data.forEach(playlist => {
  1373. $("#mainList").append(`<div class="mainList item" listname="${playlist.name}" tag="playlist" onClick="openPlaylist(this);">
  1374. <div class="ts header selectable" style="margin:0px !important;" >
  1375. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>
  1376. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1377. ${playlist.name}
  1378. <div class="sub header fileinfo" style="color: #c7c7c7;">[${playlist.count} files]</div>
  1379. </div>
  1380. </div>
  1381. <div class="mainList rightFunctionBar" tag="moreInfo" align="center" onClick="openPlaylist(this);">
  1382. <i class="chevron right icon" style="top:30%;"></i>
  1383. </div>
  1384. </div>`);
  1385. });
  1386. hideLeftMenu();
  1387. //Update the headers
  1388. $("#interfaceTitle").text("Playlist");
  1389. $("#AMmenuIcon").attr("class","list icon large whiteFont");
  1390. $("#interfaceDetails").text("[" + data.length + " playlist]");
  1391. });
  1392. }
  1393. function loadFolderView(){
  1394. currentMode = "folder";
  1395. currentPath = "";
  1396. var tempalte = '<div class="mainList item" filepath={filepath} id={id} tag="folder" onClick="openFolder(this);">\
  1397. <div class="ts header selectable" style="margin:0px !important;" >\
  1398. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>\
  1399. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1400. {foldername}\
  1401. <div class="sub header fileinfo" style="color: #c7c7c7;">{fileinfo}</div>\
  1402. </div>\
  1403. </div>\
  1404. <div class="mainList rightFunctionBar" tag="moreInfo" align="center" onClick="moreFolder(this);">\
  1405. <i class="chevron right icon" style="top:30%;"></i>\
  1406. </div>\
  1407. </div>';
  1408. $("#interfaceTitle").text("Storage");
  1409. $("#AMmenuIcon").attr("class","folder open icon large whiteFont");
  1410. ao_module_agirun("Music/functions/listSong.js", {
  1411. listdir: "root",
  1412. },function(data){
  1413. $("#mainList").html("");
  1414. for (var i =0; i < data.length; i++){
  1415. var folderName = data[i][0];
  1416. var folderPath = data[i][1];
  1417. var fileCount = data[i][2];
  1418. var folderCount = data[i][3];
  1419. var box = tempalte;
  1420. box = replaceAll("{filepath}",folderPath,box);
  1421. box = replaceAll("{id}",i + 1,box);
  1422. if (folderName == ".cache" || folderName == ".trash"){
  1423. //Hidden folders
  1424. continue;
  1425. }
  1426. if (folderPath.includes("/media")){
  1427. //This is from external storage devices. List its number as well.
  1428. var tmp = folderPath.split("/");
  1429. var extStoragePath = "/" + tmp[1] + "/" + tmp[2];
  1430. box = replaceAll("{foldername}",folderName + " ( " + extStoragePath + " )",box);
  1431. }else{
  1432. //This is directory inside normal folders.
  1433. box = replaceAll("{foldername}",folderName,box);
  1434. }
  1435. var fileinfo = "[" + fileCount + " files]"
  1436. if (folderCount > 0){
  1437. fileinfo = "[" + fileCount + " files, " + folderCount +" folders]"
  1438. }
  1439. box = replaceAll("{fileinfo}",fileinfo,box);
  1440. rootPaths.push(folderPath);
  1441. $("#mainList").append(box);
  1442. }
  1443. $("#interfaceDetails").text("[" + data.length + " folders]");
  1444. });
  1445. hideLeftMenu();
  1446. }
  1447. function isMobile(){
  1448. if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
  1449. return true
  1450. }
  1451. return false
  1452. }
  1453. function setWindowHash(hashValue){
  1454. hashValue = JSON.stringify(hashValue);
  1455. if (!isAndroid){
  1456. return;
  1457. }
  1458. if(history.pushState) {
  1459. window.history.pushState(null, null, '#' + hashValue);
  1460. }else {
  1461. location.hash = '#' + hashValue;
  1462. }
  1463. if(ao_module_virtualDesktop && !isMobile()){
  1464. //Update the iframe src as well
  1465. var newsrc = window.frameElement.getAttribute("src");
  1466. if (newsrc.includes("#")){
  1467. newsrc = newsrc.split("#")
  1468. newsrc.pop();
  1469. newsrc = newsrc.join("#");
  1470. }
  1471. newsrc = newsrc + "#" + hashValue;
  1472. $(window.frameElement).attr("src",newsrc);
  1473. //console.log(window.frameElement.getAttribute("src"));
  1474. }
  1475. }
  1476. function updateStateReferingURL(){
  1477. var paused = audioElement[0].paused; //Check the current playing state of the player
  1478. setWindowHash({path: currentPath, pfp:playingFileDetail,pause:paused});
  1479. }
  1480. function openFolder(object, playParameters=null){
  1481. var playIDAfterOpen = -1;
  1482. var startPaused = false;
  1483. if (playParameters !== null){
  1484. playIDAfterOpen = playParameters.playIDAfterOpen;
  1485. startPaused = playParameters.startPaused;
  1486. }
  1487. var backbtnTemplate = '<div class="mainList item extrapadding" filepath={filepath} id={id} onClick="openFolder(this);">\
  1488. <div class="ts header selectable" style="margin:0px !important;">\
  1489. <i class="angle left icon whiteFont" style="overflow:hidden;"></i>\
  1490. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1491. ../\
  1492. </div>\
  1493. </div>\
  1494. </div>';
  1495. var folderTemplate = '<div class="mainList item" filepath={filepath} tag="folder" id={id} onClick="openFolder(this);">\
  1496. <div class="ts header selectable" style="margin:0px !important;">\
  1497. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>\
  1498. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1499. {foldername}\
  1500. <div class="sub header fileinfo" style="color: #c7c7c7;">{fileinfo}</div>\
  1501. </div>\
  1502. </div>\
  1503. <div class="mainList rightFunctionBar" type="folder" align="center">\
  1504. <i class="chevron right icon" style="top:30%;"></i>\
  1505. </div>\
  1506. </div>';
  1507. var fileTemplate = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  1508. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  1509. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1510. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1511. {songtitle}\
  1512. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1513. </div>\
  1514. </div>\
  1515. <div class="topRightCorner" align="center">\
  1516. {id}\
  1517. </div>\
  1518. <div class="mainList rightFunctionBar" type="file" align="center">\
  1519. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  1520. </div>\
  1521. </div>';
  1522. var targetPath = decodeURIComponent($(object).attr("filepath"));
  1523. if (targetPath == "root" || targetPath == "/"){
  1524. //User request to go back to storage root
  1525. loadFolderView();
  1526. return;
  1527. }
  1528. currentPath = targetPath.split("/./").join("/");
  1529. currentPath = currentPath.split("//").join("/");
  1530. $("#interfaceTitle").text(ao_module_codec.decodeHexFoldername(targetPath.substring(0,targetPath.length -1).split("/").pop()));
  1531. var parentDir = currentPath.split("/");
  1532. parentDir.pop();parentDir.pop();
  1533. parentDir = (parentDir.join("/") + "/");
  1534. //console.log(currentPath);
  1535. var backbtn;
  1536. if (rootPaths.includes(currentPath) == false){
  1537. //We are currently not at root
  1538. backbtn = backbtnTemplate;
  1539. backbtn = replaceAll("{filepath}",encodeURIComponent(parentDir),backbtn);
  1540. backbtn = replaceAll("{id}",0,backbtn);
  1541. }else{
  1542. //Create a back button to go back to root of storage
  1543. backbtn = backbtnTemplate;
  1544. backbtn = replaceAll("{filepath}","root",backbtn);
  1545. backbtn = replaceAll("{id}",0,backbtn);
  1546. }
  1547. //Request the server for a list of folders and file in this directory
  1548. ao_module_agirun("Music/functions/listSong.js", {
  1549. listdir: targetPath.split("//").join("/"),
  1550. },function(data){
  1551. $("#mainList").html("");
  1552. $("#mainList").append(backbtn);
  1553. if (Array.isArray(data)){
  1554. var folders = data[0];
  1555. var files = data[1];
  1556. //List all folders
  1557. for (var i =0; i < folders.length; i++){
  1558. var folderName = folders[i][0];
  1559. var folderPath = folders[i][1];
  1560. var fileCount = folders[i][2];
  1561. var folderCount = folders[i][3];
  1562. var box = folderTemplate;
  1563. if (folderName == ".cache" || folderName == ".trash"){
  1564. //Hidden folders
  1565. continue;
  1566. }
  1567. box = replaceAll("{filepath}",encodeURIComponent(folderPath),box);
  1568. box = replaceAll("{id}",i + 1,box);
  1569. box = replaceAll("{foldername}",ao_module_codec.decodeHexFoldername(folderName),box);
  1570. var fileinfo = "[" + fileCount + " files]"
  1571. if (folderCount > 0){
  1572. fileinfo = "[" + fileCount + " files, " + folderCount +" folders]"
  1573. }
  1574. box = replaceAll("{fileinfo}",fileinfo,box);
  1575. $("#mainList").append(box);
  1576. }
  1577. //List all files
  1578. for ( var i =0; i < files.length; i++){
  1579. var songInfo = files[i];
  1580. var path = songInfo[0];
  1581. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  1582. var ext = songInfo[2];
  1583. var size = songInfo[3];
  1584. var box = fileTemplate;
  1585. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  1586. box = replaceAll("{id}",i + 1,box); //User count from 1
  1587. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  1588. box = replaceAll("{songtitle}",displayname,box);
  1589. box = replaceAll("{ext}",ext,box);
  1590. box = replaceAll("{size}",size,box);
  1591. $("#mainList").append(box);
  1592. }
  1593. displayList = files;
  1594. totalMusicCount = files.length;
  1595. $("#mainList").append("<br><br><br><br><br><br><br>");
  1596. }else{
  1597. //Something went wrong
  1598. //console.log('[AirMusic] Something went wrong: ' + data);
  1599. loadFolderView();
  1600. return;
  1601. }
  1602. if (folders.length > 0 && files.length > 0){
  1603. $("#interfaceDetails").text("[" + files.length + " files, " + folders.length+ " folders]");
  1604. }else if (folders.length > 0){
  1605. $("#interfaceDetails").text("[" + folders.length + " folders]");
  1606. }else if (files.length > 0){
  1607. $("#interfaceDetails").text("[" + files.length + " files]");
  1608. }else{
  1609. $("#interfaceDetails").text("[0 files or folders]");
  1610. }
  1611. //Hook all the events for the moreinfo on folders
  1612. hookMoreFolderInfoClickEvent();
  1613. //Check if the current playing file is located inside this list.
  1614. highLightPlayingMusic();
  1615. //Check if auto playback is required. If yes, play it with the given filepath.
  1616. if (playIDAfterOpen != -1){
  1617. $(".mainList.item").each(function(){
  1618. if ($(this).attr("id") == playIDAfterOpen){
  1619. //This is the file that require to playback after the folder loaded
  1620. playSong($(this).find(".ts.header.selectable"),startPaused);
  1621. setTimeout(resizeQuickAdjust,500);
  1622. }
  1623. });
  1624. }
  1625. });
  1626. }
  1627. function moreInfo(object){
  1628. if ($(object).parent().attr('tag') == "folder"){
  1629. //This is a folder. Ask if play as playlist
  1630. alert("Folder playback work in progress");
  1631. }else{
  1632. showMore(object);
  1633. }
  1634. }
  1635. function hookMoreFolderInfoClickEvent(){
  1636. $(".mainList.rightFunctionBar").on("click", function(e){
  1637. e.stopPropagation();
  1638. moreInfo(this);
  1639. });
  1640. }
  1641. function highLightPlayingMusic(){
  1642. //This function is used for highlighting the current playing music if the music piece is found inside the current list
  1643. $(".mainList.item").removeClass("playingTrack");
  1644. $(".mainList.item").each(function(){
  1645. var id = parseInt($(this).attr("id"));
  1646. try{
  1647. var filepath = ao_module_utils.attrToObject($(this).attr("filepath"));
  1648. }catch{
  1649. //Use back the previous method of filepath storage for compatibility
  1650. var filepath = $(this).attr("filepath");
  1651. }
  1652. /*
  1653. if (id == playingFileDetail[0] && filepath == playingFileDetail[1]){
  1654. //This piece of music is playing in the current list
  1655. $(this).addClass("playingTrack");
  1656. }else if (playingFileDetail[0] == -1 && filepath == playingFileDetail[1]){
  1657. //This is for external accessed music playback. Music file might or might not exists in the current playlist. Try to highlight anyway
  1658. $(this).addClass("playingTrack");
  1659. }*/
  1660. //Id is ignored in the 9/9/2019 updates and only check if the path matches.
  1661. if (filepath == playingFileDetail[1]){
  1662. $(this).addClass("playingTrack");
  1663. }
  1664. //console.log([id,filepath], playingFileDetail);
  1665. });
  1666. //Update dropdownList as well if exists
  1667. $(".dropdownList.item").removeClass("playingTrack");
  1668. $(".dropdownList.item").each(function(){
  1669. try{
  1670. var filepath = ao_module_utils.attrToObject($(this).attr("filepath"));
  1671. }catch{
  1672. //Use back the previous method of filepath storage for compatibility
  1673. var filepath = $(this).attr("filepath");
  1674. }
  1675. //var filepath = $(this).attr("filepath");
  1676. if (filepath == playingFileDetail[1]){
  1677. $(this).addClass("playingTrack");
  1678. }
  1679. });
  1680. }
  1681. function monitorFileChangeForUpload(){
  1682. if ($("#interfaceTitle").text() == "Upload"){
  1683. //It is still in upload Mode. Continue monitor file change and move them if needed
  1684. $.post("listenUploadChange.php",{fileList: JSON.stringify(currentUploadTargetFileList),directory: currentUploadTargetFilepath}).done(function(data){
  1685. if (data.includes("ERROR")){
  1686. console.log(data);
  1687. }
  1688. });
  1689. setTimeout(monitorFileChangeForUpload,1000);
  1690. }
  1691. }
  1692. function hideShowMoreMenu(){
  1693. $(".showMoreMenus").fadeOut('fast');
  1694. $("#showmoreUIcover").fadeOut('fast');
  1695. //Return the playlistAddPendingFile object back to the playing one
  1696. if (playingFileDetail !== undefined){
  1697. playlistAddPendingFile = playingFileDetail[1];
  1698. }else{
  1699. //No song is being play back
  1700. playlistAddPendingFile = "";
  1701. }
  1702. }
  1703. function playFromShowMoreMenu(){
  1704. nextSong(showMoreOprPlayID - 1);
  1705. $(".showMoreMenus").fadeOut('fast');
  1706. }
  1707. function showFileInfo(){
  1708. $("#showFileInfo").show();
  1709. $("#showMoreUI").hide();
  1710. }
  1711. function startRelatedSearch(){
  1712. enterSearchMode();
  1713. $("#searchInputBar").val(showMoreoprDisplayName);
  1714. $("#searchInputBar").focus();
  1715. hideShowMoreMenu();
  1716. }
  1717. function searchYoutubeViaShowMore(){
  1718. if (showMoreoprDisplayName != "" || showMoreoprDisplayName != undefined){
  1719. var filename = showMoreoprDisplayName;
  1720. searchOnYoutube(filename);
  1721. }
  1722. }
  1723. var showMoreOprPlayID,showMoreOprFilepath, showMoreoprDisplayName;
  1724. function showMore(object){
  1725. var filepath = $(object).parent().attr("filepath");
  1726. filepath = JSON.parse(decodeURIComponent(filepath));
  1727. //User want more action on this file. assume this is the file to add
  1728. playlistAddPendingFile = filepath;
  1729. var id = $(object).parent().attr('id');
  1730. var rawname = $(object).parent().attr("rawname");
  1731. var displayName = JSON.parse(decodeURIComponent(ao_module_codec.decodeUmFilename(rawname)));
  1732. //Update global variable for quick operations
  1733. showMoreOprPlayID = id;
  1734. showMoreOprFilepath = filepath;
  1735. showMoreoprDisplayName = displayName;
  1736. $("#showMoreUI").find(".songTitle").text(displayName);
  1737. $("#showMoreUI").find(".songID").text(id);
  1738. $("#showFileInfo").find(".songTitle").text(displayName);
  1739. $("#showMoreUI").fadeIn('fast');
  1740. $("#showmoreUIcover").fadeIn('fast');
  1741. //Update fileinformation as well
  1742. if (filepath.substring(0, 12) == "/media?file="){
  1743. filepath = filepath.substring(12);
  1744. }
  1745. //Pre-render the file info
  1746. ao_module_agirun("Music/functions/getFileInfo.js", {
  1747. filepath: filepath,
  1748. }, function(data){
  1749. $("#showFileInfo").find(".filename").text(ao_module_codec.decodeUmFilename(data[0]));
  1750. $("#showFileInfo").find(".rawname").text(data[0]);
  1751. $("#showFileInfo").find(".filepath").text(data[1]);
  1752. $("#showFileInfo").find(".filesize").text(data[2] + " (" + data[3] + " Bytes)");
  1753. $("#showFileInfo").find(".filedate").text(data[4]);
  1754. });
  1755. if (currentMode != "playlist"){
  1756. $(".playlistonly").hide();
  1757. }else{
  1758. $(".playlistonly").show();
  1759. }
  1760. }
  1761. function playSongFromDropdownList(object){
  1762. //Play song from dropdown list. Hence, no need to update dropdownList
  1763. if ($(object).parent().hasClass("playingTrack")){
  1764. //This song already playing. Ignore play request.
  1765. return;
  1766. }
  1767. playSong(object);
  1768. //Check if the song is also in main list. If yes, highlight it as well
  1769. /*
  1770. $(".mainList.item").each(function(){
  1771. if ($(this).attr("filepath") == $(object).parent().attr("filepath")){
  1772. $(".mainList.item.playingTrack").removeClass("playingTrack");
  1773. $(this).addClass("playingTrack");
  1774. }
  1775. });
  1776. */
  1777. $("#dropdownSonglist").delay(500).slideUp();
  1778. highLightPlayingMusic();
  1779. }
  1780. //Move the playing song list into the dropdown song list. This list might not be the same as the one in the main list.
  1781. function parsePlayingSongList(){
  1782. var template = '<div class="dropdownList item" filepath={filepath} listid={id} rawname={rawname}>\
  1783. <div class="ts header selectable" style="margin:0px !important;" onClick="playSongFromDropdownList(this);">\
  1784. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1785. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1786. {songtitle}\
  1787. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1788. </div>\
  1789. </div>\
  1790. <div class="topRightCorner" align="center">\
  1791. {id}\
  1792. </div>\
  1793. </div>';
  1794. $("#currentPlayingMainList").html("");
  1795. var counter = playingList.length;
  1796. var totalSize = 0.0;
  1797. for (var i = 0; i < playingList.length; i++){
  1798. var displayname = ao_module_codec.decodeUmFilename(playingList[i][1]);
  1799. var box = template;
  1800. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(playingList[i][0]),box);
  1801. box = replaceAll("{id}",i + 1,box); //User count from 1
  1802. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(playingList[i][1]),box);
  1803. box = replaceAll("{songtitle}",displayname,box);
  1804. box = replaceAll("{ext}",playingList[i][2],box);
  1805. box = replaceAll("{size}",playingList[i][3],box);
  1806. if (playingList[i][3].includes("MB")){
  1807. totalSize += parseFloat(playingList[i][3].split(" ")[0]);
  1808. }else if (playingList[i][3].includes("KB")){
  1809. totalSize += parseFloat(playingList[i][3].split(" ")[0]) / 1000;
  1810. }else if (playingList[i][3].includes("GB")){
  1811. totalSize += parseFloat(playingList[i][3].split(" ")[0]) * 1000;
  1812. }
  1813. $("#currentPlayingMainList").append(box);
  1814. $("#dropdownListSongCount").text(counter);
  1815. $("#dropdownListIDCount").text(parseInt(totalSize) + "");
  1816. }
  1817. $(".dropdownList.item").each(function(){
  1818. if ($(this).attr('filepath') == playingFileDetail[1]){
  1819. $(this).addClass("playingTrack");
  1820. }
  1821. });
  1822. }
  1823. function loadSongList(type = "all"){
  1824. currentPath = "";
  1825. currentMode = "music";
  1826. var template = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  1827. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  1828. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1829. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1830. {songtitle}\
  1831. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1832. </div>\
  1833. </div>\
  1834. <div class="topRightCorner" align="center">\
  1835. {id}\
  1836. </div>\
  1837. <div class="mainList rightFunctionBar" align="center" onClick="showMore(this);">\
  1838. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  1839. </div>\
  1840. </div>';
  1841. $("#interfaceTitle").text("Music");
  1842. $("#AMmenuIcon").attr("class","music icon large whiteFont")
  1843. ao_module_agirun("Music/functions/listSong.js", {
  1844. listSong: type,
  1845. },function(data){
  1846. //Initialize the song list
  1847. displayList = data;
  1848. if (type == "all"){
  1849. //Caching is used in here
  1850. displayList = data.list;
  1851. if (data.cached == true){
  1852. //This is a cached version of the music list.
  1853. console.log("Updating cached song list");
  1854. ao_module_agirun("Music/functions/buildCache.js", {}, function(data){
  1855. console.log("Cache updated: ", data);
  1856. });
  1857. }
  1858. }
  1859. console.log(displayList);
  1860. if (playingList == []){
  1861. playingList = Array.from(displayList);
  1862. }
  1863. $("#mainList").html("");
  1864. for ( var i =0; i < displayList.length; i++){
  1865. var songInfo = displayList[i];
  1866. var path = songInfo[0];
  1867. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  1868. var ext = songInfo[2];
  1869. var size = songInfo[3];
  1870. var box = template;
  1871. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  1872. box = replaceAll("{id}",i + 1,box); //User count from 1
  1873. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  1874. box = replaceAll("{songtitle}",displayname,box);
  1875. box = replaceAll("{ext}",ext,box);
  1876. box = replaceAll("{size}",size,box);
  1877. $("#mainList").append(box);
  1878. }
  1879. totalMusicCount = displayList.length;
  1880. $("#mainList").append("<br><br><br><br><br><br><br>");
  1881. $("#interfaceDetails").text("[" + i + " songs]");
  1882. highLightPlayingMusic();
  1883. }, function(){
  1884. alert("Failed to access listSong API with type: " + type)
  1885. });
  1886. hideLeftMenu();
  1887. }
  1888. function toggleLeftMenu(){
  1889. if (leftMenuShown){
  1890. $("#leftSideBar").animate({left: $("#leftSideBar").width() * -1}, 300,function(){
  1891. $("#leftSideBar").hide();
  1892. });
  1893. $("#sideBarCover").fadeOut();
  1894. leftMenuShown = false;
  1895. }else{
  1896. $("#leftSideBar").show();
  1897. $("#leftSideBar").animate({left:0}, 300);
  1898. $("#sideBarCover").fadeIn();
  1899. leftMenuShown = true;
  1900. }
  1901. }
  1902. function hideLeftMenu(){
  1903. if (leftMenuShown){
  1904. $("#leftSideBar").animate({left: $("#leftSideBar").width() * -1}, 300,function(){
  1905. $("#leftSideBar").hide();
  1906. });
  1907. $("#sideBarCover").fadeOut();
  1908. leftMenuShown = false;
  1909. }
  1910. }
  1911. function showFileInformation(){
  1912. ao_module_agirun("Music/functions/getFileInfo.js", {
  1913. filepath: playingFileDetail[1],
  1914. },function(data){
  1915. //console.log(data);
  1916. $("#settingInterface").hide();
  1917. $("#filepropInterface").show();
  1918. $("#filepropInterface").find(".filename").text(ao_module_codec.decodeUmFilename(data[0]));
  1919. $("#filepropInterface").find(".rawname").text(data[0]);
  1920. $("#filepropInterface").find(".filepath").text(data[1]);
  1921. $("#filepropInterface").find(".filesize").text(data[2] + " (" + data[3] + " Bytes)");
  1922. $("#filepropInterface").find(".filedate").text(data[4]);
  1923. });
  1924. }
  1925. function resizeQuickAdjust(){
  1926. //Resize the position of the leftMenu
  1927. if (!leftMenuShown){
  1928. $("#leftSideBar").css("left", $("#leftSideBar").width() * -1);
  1929. }
  1930. if ($("#playerInterface").offset().left != 0){
  1931. $("#playerInterface").css("left",window.innerWidth);
  1932. }
  1933. $("#albumnArtImage").css("max-height",window.innerHeight - 255);
  1934. setTimeout(function(){
  1935. $("#albumnArt").css({
  1936. "height": window.innerHeight - 255,
  1937. "top": (window.innerHeight / 2 - $("#albumnArtImage").height()/2)
  1938. });
  1939. },50);
  1940. //var imageTop = (window.innerHeight - 255 - $("#albumnArtImage").height()) / 2;
  1941. //$("#albumnArtImage").css("top",imageTop + "px");
  1942. }
  1943. function setStorage(configName,configValue){
  1944. ao_module_storage.setStorage("AirMusic",configName,configValue);
  1945. /*
  1946. $.ajax({
  1947. type: 'GET',
  1948. url: "../system/file_system/preference",
  1949. data: {key: "AirMusic/" + configName,value:configValue},
  1950. success: function(data){},
  1951. async:true
  1952. });
  1953. */
  1954. return true;
  1955. }
  1956. function loadStorage(configName){
  1957. /*
  1958. var result = "";
  1959. $.ajax({
  1960. type: 'GET',
  1961. url: "../system/file_system/preference",
  1962. data: {key: "AirMusic/" + configName},
  1963. success: function(data){
  1964. if (data.error !== undefined){
  1965. result = "";
  1966. }else{
  1967. result = data;
  1968. }
  1969. },
  1970. error: function(data){result = "";},
  1971. async:false,
  1972. timeout: 3000
  1973. });
  1974. return result;
  1975. */
  1976. return ao_module_storage.loadStorage("AirMusic",configName);
  1977. }
  1978. //Wipe controller for mobile users
  1979. $("#albumnArt")[0].addEventListener('touchstart', handleTouchStart, false);
  1980. $("#albumnArt")[0].addEventListener('touchmove', handleTouchMove, false);
  1981. var xDown = null;
  1982. var yDown = null;
  1983. function getTouches(evt) {
  1984. return evt.touches || // browser API
  1985. evt.originalEvent.touches; // jQuery
  1986. }
  1987. function handleTouchStart(evt) {
  1988. const firstTouch = getTouches(evt)[0];
  1989. xDown = firstTouch.clientX;
  1990. yDown = firstTouch.clientY;
  1991. };
  1992. function handleTouchMove(evt) {
  1993. if ( ! xDown || ! yDown ) {
  1994. return;
  1995. }
  1996. var xUp = evt.touches[0].clientX;
  1997. var yUp = evt.touches[0].clientY;
  1998. var xDiff = xDown - xUp;
  1999. var yDiff = yDown - yUp;
  2000. if ( Math.abs( xDiff ) > Math.abs( yDiff ) ) {/*most significant*/
  2001. if ( xDiff > 0 ) {
  2002. /* left swipe */
  2003. //Going to the next song
  2004. nextSong();
  2005. } else {
  2006. /* right swipe */
  2007. //Going back one song
  2008. previousSong();
  2009. }
  2010. } else {
  2011. if ( yDiff > 0 ) {
  2012. /* up swipe */
  2013. } else {
  2014. /* down swipe */
  2015. }
  2016. }
  2017. /* reset values */
  2018. xDown = null;
  2019. yDown = null;
  2020. };
  2021. //Handle audio progress to time conversion
  2022. function secondsToHms(d) {
  2023. d = Number(d);
  2024. var h = Math.floor(d / 3600);
  2025. var m = Math.floor(d % 3600 / 60);
  2026. var s = Math.floor(d % 3600 % 60);
  2027. if (h > 0 && h < 10){
  2028. dh = "0" + h + ":";
  2029. }else if (h == 0){
  2030. dh = "";
  2031. }else{
  2032. dh = h + ":";
  2033. }
  2034. if (m > 0 && m < 10){
  2035. dm = "0" + m + ":";
  2036. }else if (m == 0){
  2037. if (h > 0){
  2038. dm = "00:";
  2039. }else{
  2040. dm = "0:";
  2041. }
  2042. }else{
  2043. dm = m + ":";
  2044. }
  2045. if (s > 0 && s < 10){
  2046. ds = "0" + s;
  2047. }else if (s == 0){
  2048. if (m > 0 || h > 0){
  2049. ds = "00";
  2050. }else{
  2051. ds = "00";
  2052. }
  2053. }else{
  2054. ds = s;
  2055. }
  2056. return dh + dm + ds;
  2057. }
  2058. //Handle window resize events
  2059. $(window).on("resize", function(){
  2060. resizeQuickAdjust();
  2061. });
  2062. function AllQuickMenuHidden(){
  2063. var result = true;
  2064. $(".quickMenu").each(function(){
  2065. if ( $(this).is(':visible') ){
  2066. result = false;
  2067. }
  2068. });
  2069. return result;
  2070. }
  2071. function AllSubMenuHidden(){
  2072. var result = true;
  2073. $(".showMoreMenus").each(function(){
  2074. if ( $(this).is(':visible') ){
  2075. result = false;
  2076. }
  2077. });
  2078. return result;
  2079. }
  2080. //Handle back button press on mobile devices
  2081. function handleBackButton() {
  2082. if (!AllQuickMenuHidden()){
  2083. hideAllquickMenu();
  2084. window.history.pushState({}, '');
  2085. }else if (mainPlayerShown()){
  2086. //Close the main Menu
  2087. hideMainPlayerInterface();
  2088. window.history.pushState({}, '');
  2089. }else if (!AllSubMenuHidden()){
  2090. $(".showMoreMenus").fadeOut('fast');
  2091. $("#showmoreUIcover").fadeOut('fast');
  2092. window.history.pushState({}, '');
  2093. }else{
  2094. window.history.back();
  2095. }
  2096. }
  2097. window.addEventListener('popstate', handleBackButton);
  2098. window.history.pushState({}, '');
  2099. </script>
  2100. </body>
  2101. </html>