index.html 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334
  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;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. if (keyword == ""){
  534. //Empty keyword. Return nothing
  535. return;
  536. }
  537. //Clear the mainList, replace with a dummy loading screen
  538. $("#mainList").html('<div class="mainList item whiteFont">\
  539. <div class="ts header" style="margin:0px !important;padding-bottom:15px;padding-top:5px;">\
  540. <i class="loading spinner icon whiteFont" style="overflow:hidden;margin-top:5px;"></i>\
  541. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  542. Searching...\
  543. </div>\
  544. </div>\
  545. <div class="topRightCorner" align="center">\
  546. -1\
  547. </div>\
  548. </div>');
  549. ao_module_agirun("Music/functions/listSong.js", {
  550. listSong: "search:" + keyword
  551. }, function(data){
  552. currentPath = "";
  553. var template = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  554. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  555. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  556. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  557. {songtitle}\
  558. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  559. </div>\
  560. </div>\
  561. <div class="topRightCorner" align="center">\
  562. {id}\
  563. </div>\
  564. <div class="mainList rightFunctionBar" align="center" onClick="showMore(this);">\
  565. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  566. </div>\
  567. </div>';
  568. if ($("#searchModeMenu").is(":hidden")){
  569. //The user exited search mode before the search results come back
  570. //Dispose the search result
  571. return;
  572. }
  573. if (data.length == 0){
  574. //No search results.
  575. $("#mainList").html("");
  576. $("#mainList").append('<div class="mainList item whiteFont">\
  577. <div class="ts header" style="margin:0px !important;padding-bottom:15px;padding-top:5px;">\
  578. <i class="remove icon whiteFont" style="overflow:hidden;margin-top:5px;"></i>\
  579. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  580. No result for keyword: ' + keyword + '.\
  581. </div>\
  582. </div>\
  583. <div class="topRightCorner" align="center">\
  584. -1\
  585. </div>\
  586. </div>');
  587. return;
  588. }
  589. $("#interfaceTitle").text("Search");
  590. $("#AMmenuIcon").attr("class","search icon large whiteFont")
  591. //Initialize the song list
  592. displayList = data;
  593. if (playingList == []){
  594. playingList = Array.from(displayList);
  595. }
  596. $("#mainList").html("");
  597. for ( var i =0; i < data.length; i++){
  598. var songInfo = data[i];
  599. var path = songInfo[0];
  600. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  601. var ext = songInfo[2];
  602. var size = songInfo[3];
  603. var box = template;
  604. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  605. box = replaceAll("{id}",i + 1,box); //User count from 1
  606. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  607. box = replaceAll("{songtitle}",displayname,box);
  608. box = replaceAll("{ext}",ext,box);
  609. box = replaceAll("{size}",size,box);
  610. $("#mainList").append(box);
  611. }
  612. totalMusicCount = data.length;
  613. $("#mainList").append("<br><br><br><br><br><br><br>");
  614. $("#interfaceDetails").text("[" + i + " songs]");
  615. highLightPlayingMusic();
  616. });
  617. }
  618. function enterRemotePlayID(object){
  619. var id = $(object).text().trim();
  620. $("#remotePlayID").val($("#remotePlayID").val() + id);
  621. }
  622. function ridOpr(opr){
  623. if (opr == 'backspace'){
  624. var currentText = $("#remotePlayID").val();
  625. var newText = currentText.substring(0,currentText.length - 1);
  626. $("#remotePlayID").val(newText);
  627. }else if (opr == 'reset'){
  628. $("#remotePlayID").val("");
  629. }
  630. }
  631. function openInFileExplorer(){
  632. var dirname = playingFileDetail[1].split("/");
  633. var fname = dirname.pop(); //Pop away the filename
  634. dirname = dirname.join("/") + "/";
  635. var path = dirname;
  636. if (dirname.substring(0,1) != "/"){
  637. //This is not absolute path. Start the path from airMusic
  638. path = "AirMusic/" + dirname;
  639. }
  640. path = path.replace("media?file=","");
  641. if (path.substring(0,1) == "/"){
  642. path = path.substring(1)
  643. }
  644. ao_module_openPath(path, fname);
  645. }
  646. //quickmenu Functions
  647. function hideAllquickMenu(){
  648. $(".quickMenu").fadeOut('fast');
  649. $("#fadeReturnScreen").fadeOut('fast');
  650. }
  651. //Setting related function
  652. function showSettingInterface(){
  653. $("#settingInterface").fadeIn('fast');
  654. $("#fadeReturnScreen").fadeIn('fast');
  655. //Update contents in the setting menu
  656. $("#settingMenuTitle").text($("#mainPlayerSongTitle").text());
  657. }
  658. //Timer related functions
  659. function showTimerInterface(){
  660. $("#timerInterface").fadeIn('fast');
  661. $("#fadeReturnScreen").fadeIn('fast');
  662. }
  663. function initPlaylistInterfaceList(){
  664. $("#existsingPlaylist").html("");
  665. //Get the playlist list from server side
  666. ao_module_agirun("Music/functions/playlist.js", {
  667. opr: "root"
  668. }, function(data){
  669. data.forEach(playlist => {
  670. $("#existsingPlaylist").append(`<div class="playlist item selectable whiteFont" name="${playlist.name}" onclick="addSongToSelectedPlaylist(this);">
  671. <i class="list icon whiteFont"></i> ${playlist.name} [${playlist.count} files]
  672. </div>`);
  673. })
  674. });
  675. }
  676. function showPlaylistInterface(){
  677. initPlaylistInterfaceList();
  678. $("#playlistInterface").fadeIn('fast');
  679. $("#fadeReturnScreen").fadeIn('fast');
  680. }
  681. function addToThisPlaylist(){
  682. }
  683. $("#stopMode").change(function () {
  684. var end = this.value;
  685. if (end.includes("Fade Out & Stop")){
  686. //Start fading out the volume
  687. timerEndMode = "fade";
  688. setStorage("timerEndMode","fade");
  689. }else{
  690. //End immediately
  691. timerEndMode = "end";
  692. setStorage("timerEndMode","end");
  693. }
  694. });
  695. var fadeOutStepping = 0.1; //The steps size for fading out during timer countdown
  696. var defaultVolumeBeforeFadeout = 0;
  697. function toggleCountDown(button){
  698. if (!timerMode){
  699. //Start count down
  700. timerMode = true;
  701. $(button).text("Stop");
  702. timerRemaining = ((parseInt($("#timerHour").text()) * 60) + parseInt($("#timerMinute").text())) * 60; //in seconds
  703. //Update the value on the remaining counter
  704. $("#remainingUI").text(parseTimer(timerRemaining));
  705. $("#timerSettingInterface").slideUp('fast');
  706. $("#timerCountingInterface").slideDown('fast');
  707. $("#stopMode").attr("disabled","");
  708. defaultVolumeBeforeFadeout = audioElement[0].volume;
  709. fadeOutStepping = (audioElement[0].volume) / timerRemaining;
  710. progressCounter();
  711. }else{
  712. //Stop count down
  713. timerMode = false;
  714. $(button).text("Start");
  715. timerRemaining = 0;
  716. $("#timerSettingInterface").slideDown('fast');
  717. $("#timerCountingInterface").slideUp('fast');
  718. $("#stopMode").removeAttr("disabled");
  719. }
  720. }
  721. function progressCounter(){
  722. //Update the timer
  723. timerRemaining = timerRemaining - 1;
  724. $("#remainingUI").text(parseTimer(timerRemaining));
  725. if (timerRemaining > 0){
  726. //Continues
  727. if (timerEndMode == "fade"){
  728. var newvol = audioElement[0].volume - fadeOutStepping;
  729. audioElement[0].volume = Math.max(0,newvol);
  730. }
  731. setTimeout(progressCounter,1000);
  732. }else{
  733. //Times up
  734. handleTimerEnd();
  735. }
  736. }
  737. function handleTimerEnd(){
  738. //Stop the playback
  739. originalVol = audioElement[0].volume;
  740. fadeAudio();
  741. setPlaying(false);
  742. audioElement[0].pause();
  743. setTimeout(function(){
  744. audioElement[0].volume = defaultVolumeBeforeFadeout;
  745. },500);
  746. }
  747. function parseTimer(remainingTime){
  748. //remainingTime in seconds, prase to HH:mm:ss
  749. var hours = Math.floor(remainingTime / 3600);
  750. var remainingTime = remainingTime % 3600;
  751. var minutes = Math.floor(remainingTime / 60);
  752. var seconds = remainingTime % 60;
  753. if (minutes < 10){
  754. minutes = "0" + minutes;
  755. }
  756. if (seconds < 10){
  757. seconds = "0" + seconds;
  758. }
  759. var formatted = hours + ":" + minutes + ":" + seconds;
  760. return formatted;
  761. }
  762. function addTimer(unit,value){
  763. if (unit == "h"){
  764. if (value == "r"){
  765. $("#timerHour").text("0");
  766. }else{
  767. $("#timerHour").text($("#timerHour").text() - -1 * value);
  768. }
  769. }else if (unit == "m"){
  770. if (value == "r"){
  771. $("#timerMinute").text("0");
  772. }else{
  773. $("#timerMinute").text($("#timerMinute").text() - -1 * value);
  774. }
  775. }
  776. if (parseInt($("#timerHour").text()) < 0){
  777. $("#timerHour").text("0");
  778. }
  779. if (parseInt($("#timerMinute").text()) < 0){
  780. if (parseInt($("#timerHour").text()) > 0){
  781. //subtract 1 from the hour
  782. $("#timerHour").text($("#timerHour").text() - 1);
  783. $("#timerMinute").text(parseInt($("#timerMinute").text()) + 60);
  784. }else{
  785. //There is no hours to subtract
  786. $("#timerMinute").text("0");
  787. }
  788. }
  789. if (parseInt($("#timerMinute").text()) > 59){
  790. $("#timerMinute").text(parseInt($("#timerMinute").text()) - 60);
  791. $("#timerHour").text($("#timerHour").text() - -1);
  792. }
  793. }
  794. //Download function
  795. function downloadPlayingSong(){
  796. var url = audioElement.attr("src");
  797. var ext = url.split(".").pop();
  798. var filename = $("#mainPlayerSongTitle").text().trim();
  799. generateDownloadElement(url,filename);
  800. /*
  801. if (url.includes("/media")){
  802. blobDownloadElement(url,filename);
  803. }else{
  804. generateDownloadElement(url,filename);
  805. }
  806. */
  807. }
  808. var downloadInProgress = false;
  809. function blobDownloadElement(filepath,filename){
  810. if (downloadInProgress){
  811. alert("Please wait until another download finished.");
  812. return;
  813. }
  814. downloadInProgress = true;
  815. $("#downloadBtn").find("i").addClass("disabled");
  816. $("#downloadProgressBar").find(".bar").css("width","0%");
  817. $("#downloadProgressBar").show();
  818. var xhr = new XMLHttpRequest();
  819. xhr.onreadystatechange = function(){
  820. if (this.readyState == 4 && this.status == 200){
  821. //handler(this.response);
  822. //console.log(this.response, typeof this.response);
  823. var url = window.URL || window.webkitURL;
  824. //Open the downloaded data in new window for testing
  825. //window.open(url.createObjectURL(this.response));
  826. generateDownloadElement(url.createObjectURL(this.response),filename);
  827. $("#downloadBtn").find("i").removeClass("disabled");
  828. $("#downloadProgressBar").hide();
  829. downloadInProgress = false;
  830. }
  831. }
  832. xhr.onprogress = function (event) {
  833. console.log("[AirMusic] Download Progress: " + event.loaded + " / " + event.total + "Bytes");
  834. $("#downloadProgressBar").find(".bar").css("width",(event.loaded / event.total) * 100 + "%");
  835. };
  836. xhr.open('GET', filepath);
  837. xhr.responseType = 'blob';
  838. xhr.send();
  839. }
  840. function generateDownloadElement(filepath, filename){
  841. var link = document.createElement('a');
  842. link.href = filepath + "&download=true";
  843. link.setAttribute('download', filename);
  844. document.getElementsByTagName("body")[0].appendChild(link);
  845. // Firefox
  846. if (document.createEvent) {
  847. var event = document.createEvent("MouseEvents");
  848. event.initEvent("click", true, true);
  849. link.dispatchEvent(event);
  850. }
  851. // IE
  852. else if (link.click) {
  853. link.click();
  854. }
  855. link.parentNode.removeChild(link);
  856. }
  857. //Volume control related features
  858. var previousAudioVolume = 0;
  859. function mute(){
  860. if (audioElement[0].volume != 0){
  861. //Set to mute
  862. previousAudioVolume = audioElement[0].volume;
  863. audioElement[0].volume = 0;
  864. }else{
  865. //Restore from mute
  866. audioElement[0].volume = previousAudioVolume;
  867. }
  868. $("#volBar").css("width",audioElement[0].volume * 100 + "%");
  869. }
  870. var volbarTimeoutEvt;
  871. function addAudioVolume(value){
  872. $("#volumeGUI").slideDown('fast');
  873. if (volbarTimeoutEvt !== undefined){
  874. clearTimeout(volbarTimeoutEvt);
  875. }
  876. volbarTimeoutEvt = setTimeout(function(){
  877. $("#volumeGUI").slideUp('fast');
  878. },3000);
  879. $("#volumeGUI")
  880. if (audioElement[0].volume + value >= 1){
  881. audioElement[0].volume = 1;
  882. }else if (audioElement[0].volume + value <= 0){
  883. audioElement[0].volume = 0;
  884. }else{
  885. audioElement[0].volume += value;
  886. }
  887. $("#volBar").css("width",Math.min(100,audioElement[0].volume * 100) + "%");
  888. }
  889. function updatePlaybackDisplayTime(currentTime,duration){
  890. let progress = Math.round(currentTime);
  891. let remainTime = Math.round(duration - currentTime);
  892. $("#progressTime").text(secondsToHms(progress));
  893. if (!isNaN(remainTime)){
  894. $("#remainTime").text("-" + secondsToHms(remainTime));
  895. }
  896. }
  897. function nextSongHandler(){
  898. console.log("Next song");
  899. if (repeatMode == 1){
  900. //Next song in the playlist
  901. if (randomMode){
  902. var randomTrackID = Math.floor(Math.random() * (playingList.length - 1));
  903. //console.log(randomTrackID, playingList[randomTrackID]);
  904. nextSong(randomTrackID,true);
  905. }else{
  906. var playingSongIndex = playingFileDetail[0];
  907. var nextSongIndex = playingSongIndex;
  908. if (nextSongIndex >= playingList.length){
  909. nextSongIndex = 0;
  910. }
  911. //console.log(playingSongIndex, nextSongIndex);
  912. nextSong(nextSongIndex,true);
  913. }
  914. }else if (repeatMode == 2){
  915. //Loop this song only
  916. audioElement[0].pause();
  917. audioElement[0].currentTime = 0;
  918. audioElement[0].play();
  919. }else if (repeatMode == 0){
  920. //Pause after finish this song
  921. setPlaying(false);
  922. audioElement[0].pause();
  923. audioElement[0].currentTime = 0;
  924. }
  925. }
  926. function mainPlayerShown(){
  927. if ($("#playerInterface").offset().left == 0){
  928. return true;
  929. }
  930. return false;
  931. }
  932. function toggleRandomMode(button){
  933. var btn = $(button).find("i");
  934. if (randomMode){
  935. //Set the random mode to false
  936. btn.removeClass("enabled").addClass("disabled");
  937. randomMode = false;
  938. }else{
  939. btn.removeClass("disabled").addClass("enabled");
  940. randomMode = true;
  941. }
  942. setStorage("randomMode",randomMode);
  943. }
  944. function toggleRepeatMode(button){
  945. if (repeatMode == 0){
  946. setRepeatMode(1,button);
  947. setStorage("repeatMode",1);
  948. }else if (repeatMode == 1){
  949. setRepeatMode(2,button);
  950. setStorage("repeatMode",2);
  951. }else if (repeatMode == 2){
  952. setRepeatMode(0,button);
  953. setStorage("repeatMode",0);
  954. }
  955. }
  956. function setRepeatMode(modeCode,button){
  957. if (modeCode == 1){
  958. //Set repeat mode to "Repeat all"
  959. $(button).find(".singleLoop").hide();
  960. $(button).find("i").removeClass("disabled").addClass("enabled");
  961. repeatMode = 1;
  962. }else if (modeCode == 2){
  963. //Set repeat mode to "Repeat one"
  964. $(button).find(".singleLoop").show();
  965. $(button).find("i").removeClass("disabled").addClass("enabled");
  966. repeatMode = 2;
  967. }else if (modeCode == 0){
  968. //Set repeat mode to "None"
  969. $(button).find(".singleLoop").hide();
  970. $(button).find("i").removeClass("enabled").addClass("disabled");
  971. repeatMode = 0;
  972. }
  973. }
  974. function hideMainPlayerInterface(){
  975. $("#playerInterface").animate({left: window.innerWidth},300);
  976. $("body").css("overflow-y","auto");
  977. }
  978. function showMainPlayerInterface(){
  979. $("#playerInterface").animate({left:0},300);
  980. $("body").css("overflow-y","hidden");
  981. }
  982. function syncSystemVol(){
  983. //Initiate the module's volume to the system's
  984. var globalvol = localStorage.getItem("global_volume");
  985. //console.log("Global Volume" + globalvol.toString());
  986. if (!globalvol){
  987. globalvol = 0.1;
  988. }
  989. //Check if it is mobile. If yes, always 100% and leave volume to system
  990. if (isMobile()){
  991. globalvol = 1;
  992. //$(".desktopOnly").addClass("disabled");
  993. }
  994. audioElement[0].volume = parseFloat(globalvol);
  995. $("#volBar").css("width",audioElement[0].volume * 100 + "%");
  996. }
  997. function replaceAll(target, replace, original){
  998. return original.split(target).join(replace);
  999. };
  1000. function playSong(object, startPaused = false){
  1001. if ($(object).parent().hasClass("playingTrack")){
  1002. //This is already the song that is currently playing. Show the main player interface instead.
  1003. showMainPlayerInterface();
  1004. resizeQuickAdjust();
  1005. return;
  1006. }
  1007. //$(".playingTrack").removeClass("playingTrack");
  1008. //$(object).parent().addClass("playingTrack");
  1009. var filepath = ao_module_utils.attrToObject($(object).parent().attr('filepath'));
  1010. var rawname = ao_module_utils.attrToObject($(object).parent().attr('rawname'));
  1011. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1012. var info = $(object).parent().find(".fileinfo").text();
  1013. var id = $(object).parent().attr('id');
  1014. if (id === undefined){
  1015. //This might be a file from dropdown list. use listid instead
  1016. id = $(object).parent().attr('listid');
  1017. }
  1018. updateMiniPlayerUI(displayName,info,id);
  1019. //Seperate out the filepath without media server path
  1020. var fileVpath = filepath.split("=")[1];
  1021. updateMainPlayerUI(displayName,info,id, fileVpath);
  1022. loadAndPlayAudioFile(filepath, !startPaused);
  1023. if (!currentPlaying && !startPaused){
  1024. setPlaying(true);
  1025. }
  1026. playingFileDetail = [parseInt(id),filepath];
  1027. //If the user play this file, assume the next file to be added to playlist is this file
  1028. playlistAddPendingFile = filepath;
  1029. //Have a backup of the current list just incase the user open another directory while a list is playing
  1030. //Only backup when it is not call from dropdown list
  1031. if (!$(object).parent().hasClass("dropdownList")){
  1032. playingList = Array.from(displayList);
  1033. }
  1034. parsePlayingSongList();
  1035. if ($("#miniPlayer").hasClass("hidden")){
  1036. //This is the first song that has played after the UI init
  1037. $("#miniPlayer").css("display","none").removeClass("hidden").slideDown();
  1038. }
  1039. showMainPlayerInterface();
  1040. //Just in case the albumn image changed, albumn art css is also updated.
  1041. resizeQuickAdjust();
  1042. updateStateReferingURL();
  1043. highLightPlayingMusic();
  1044. }
  1045. function loadThumbnail(filepath){
  1046. //Load the thumbnail
  1047. var realVpath = filepath.split("=");
  1048. realVpath.shift();
  1049. realVpath = realVpath.join("=");
  1050. ao_module_agirun("Music/functions/getThumbnail.js", {
  1051. file: realVpath,
  1052. }, function(data){
  1053. if (data.error !== undefined){
  1054. console.log(data.error)
  1055. $("#albumnArtImage").attr("src","img/default.png");
  1056. if (navigator.mediaSession.metadata){
  1057. navigator.mediaSession.metadata.artwork = [
  1058. { src: "img/default.png", sizes: '512x512', type: 'image/png' }
  1059. ]
  1060. }
  1061. }else{
  1062. $("#albumnArtImage").attr("src","data:image/jpg;base64," + data);
  1063. if (isAndroid && navigator.mediaSession.metadata){
  1064. //Android
  1065. navigator.mediaSession.metadata.artwork = [
  1066. { src: "data:image/jpg;base64," + data, sizes: '480x480', type: 'image/jpg' }
  1067. ]
  1068. }
  1069. }
  1070. resizeQuickAdjust();
  1071. });
  1072. }
  1073. function nextSong(id = false,forcePlayEvenStopped = false){
  1074. //Check if the current playlist has more than one songs.
  1075. var currentPaused = audioElement[0].paused;
  1076. if (playingList.length > 1){
  1077. var nextSongIndex = playingFileDetail[0];
  1078. if (id != false){
  1079. //Allow manual overwrite for this function
  1080. nextSongIndex = id;
  1081. var nextSong = playingList[nextSongIndex];
  1082. }else{
  1083. if (playingFileDetail[0] >= playingList.length){
  1084. var nextSong = playingList[0]; //Back to the first song in list
  1085. nextSongIndex = 0;
  1086. }else{
  1087. var nextSong = playingList[nextSongIndex]; //Index of the playList + 1 as the index for the files is alrady i+1. (User count from one)
  1088. }
  1089. }
  1090. //The songs has to be play via background services instead of relying on DOM
  1091. var filepath = nextSong[0];
  1092. var rawname = nextSong[1];
  1093. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1094. var info = nextSong[2] + " / " + nextSong[3];
  1095. var id = nextSongIndex + 1;
  1096. updateMiniPlayerUI(displayName,info,id);
  1097. //Seperate out the filepath without media server path
  1098. var fileVpath = filepath.split("=")[1];
  1099. updateMainPlayerUI(displayName,info,id, fileVpath);
  1100. if (forcePlayEvenStopped){
  1101. loadAndPlayAudioFile(filepath,true);
  1102. }else{
  1103. loadAndPlayAudioFile(filepath,!currentPaused);
  1104. }
  1105. if (currentPlaying){
  1106. setPlaying(true);
  1107. }
  1108. playingFileDetail = [id,filepath];
  1109. //Need not to update the playlist because it is the same
  1110. highLightPlayingMusic();
  1111. }else{
  1112. //This is the only song in playlist. Play again from start
  1113. audioElement[0].pause();
  1114. audioElement[0].currentTime = 0;
  1115. if (!currentPaused){
  1116. audioElement[0].play();
  1117. }
  1118. }
  1119. updateStateReferingURL();
  1120. }
  1121. function previousSong(){
  1122. var currentPaused = audioElement[0].paused;
  1123. if (playingList.length > 1){
  1124. var nextSongIndex = playingFileDetail[0] - 1;
  1125. if (nextSongIndex == 0){
  1126. nextSongIndex = playingList.length;
  1127. var nextSong = playingList[nextSongIndex - 1]; //Back to the last song in list
  1128. }else{
  1129. 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)
  1130. }
  1131. //The songs has to be play via background services instead of relying on DOM
  1132. var filepath = nextSong[0];
  1133. var rawname = nextSong[1];
  1134. var displayName = ao_module_codec.decodeUmFilename(rawname);
  1135. var info = nextSong[2] + " / " + nextSong[3];
  1136. var id = nextSongIndex;
  1137. updateMiniPlayerUI(displayName,info,id);
  1138. //Seperate out the filepath without media server path
  1139. var fileVpath = filepath.split("=")[1];
  1140. updateMainPlayerUI(displayName,info,id, fileVpath);
  1141. loadAndPlayAudioFile(filepath,!currentPaused);
  1142. if (currentPlaying){
  1143. setPlaying(true);
  1144. }
  1145. playingFileDetail = [id,filepath];
  1146. //Need not to update the playlist because it is the same
  1147. highLightPlayingMusic();
  1148. }else{
  1149. //This is the only song in playlist. Play again from start
  1150. audioElement[0].pause();
  1151. audioElement[0].currentTime = 0;
  1152. audioElement[0].play();
  1153. }
  1154. updateStateReferingURL();
  1155. }
  1156. var originalVol = 0;
  1157. function togglePlayMode(){
  1158. if (currentPlaying){
  1159. originalVol = audioElement[0].volume;
  1160. fadeAudio();
  1161. setPlaying(false);
  1162. }else{
  1163. gainAudio();
  1164. setPlaying(true);
  1165. }
  1166. }
  1167. let audioTransitioning = false;
  1168. function fadeAudio(){
  1169. audioTransitioning = true;
  1170. if(audioElement[0].volume > 0){
  1171. var testval = audioElement[0].volume - 0.1;
  1172. audioElement[0].volume = Math.max(0,testval);
  1173. setTimeout(fadeAudio, 50);
  1174. }else{
  1175. audioElement[0].pause();
  1176. setTimeout(function(){
  1177. audioElement[0].volume = originalVol;
  1178. updateStateReferingURL();
  1179. audioTransitioning = false;
  1180. }, 100);
  1181. }
  1182. }
  1183. var targetVol = 0;
  1184. function gainAudio(){
  1185. targetVol = audioElement[0].volume;
  1186. audioElement[0].volume = 0;
  1187. setTimeout(function(){
  1188. audioElement[0].play();
  1189. recursiveGainAudio();
  1190. }, 100);
  1191. }
  1192. function recursiveGainAudio(){
  1193. audioTransitioning = true;
  1194. if(audioElement[0].volume < targetVol){
  1195. if (audioElement[0].volume + 0.1 < 1){
  1196. audioElement[0].volume += 0.1
  1197. }else{
  1198. //Audio volume larger than 1, make it 1
  1199. audioElement[0].volume = 1
  1200. }
  1201. setTimeout(recursiveGainAudio, 50);
  1202. }else{
  1203. setTimeout(function(){
  1204. audioElement[0].volume = targetVol;
  1205. updateStateReferingURL();
  1206. audioTransitioning = false;
  1207. }, 100);
  1208. }
  1209. }
  1210. //Update all icons on play and pause buttons
  1211. function setPlaying(playing){
  1212. if (playing == true){
  1213. $(".PlayButton").attr("class","pause icon whiteFont PlayButton");
  1214. currentPlaying = true;
  1215. }else{
  1216. $(".PlayButton").attr("class","play icon whiteFont PlayButton");
  1217. currentPlaying = false;
  1218. }
  1219. }
  1220. function loadAndPlayAudioFile(sourceURL,playAfterLoad = true){
  1221. var audio = audioElement;
  1222. sourceURL = "../" + sourceURL; //Convert absolute dir to relative
  1223. $("#mainAudioPlayer").attr("src", sourceURL);
  1224. //console.log(encodeURIComponent(sourceURL));
  1225. audio[0].pause();
  1226. audio[0].load();
  1227. if(playAfterLoad){
  1228. audio[0].oncanplaythrough = audio[0].play();
  1229. }else{
  1230. var currentTime = audioElement[0].currentTime;
  1231. var duration = audioElement[0].duration;
  1232. $('#audioProgressBar').css('width','0%');
  1233. updatePlaybackDisplayTime(currentTime,duration);
  1234. }
  1235. loadThumbnail(sourceURL);
  1236. }
  1237. function updateMiniPlayerUI(displayName, fileinfo,id){
  1238. $("#miniPlayerDisplayName").text(displayName);
  1239. $("#miniPlayerInformation").text(fileinfo);
  1240. $("#miniPlayerIDtab").text(id + "/" + totalMusicCount);
  1241. }
  1242. function updateMainPlayerUI(songname, fileinfo, id, filepath){
  1243. $("#mainPlayerSongTitle").text(songname);
  1244. $("#mainPlayerSongDesc").text(fileinfo);
  1245. $("#mainPlayerMiniTab").text(id + "/" + totalMusicCount);
  1246. if ('mediaSession' in navigator){
  1247. var infoRewrite = fileinfo.split(" / ")
  1248. updateTitle(songname, infoRewrite[1] + " (" + infoRewrite[0] + ")", id + "/" + totalMusicCount, filepath);
  1249. }
  1250. }
  1251. /*
  1252. Playlist related functions
  1253. */
  1254. function renderPlaylistByName(listname){
  1255. $("#interfaceTitle").text(listname);
  1256. ao_module_agirun("Music/functions/playlist.js", {
  1257. opr: "list",
  1258. playlistname: listname
  1259. }, function(data){
  1260. $("#mainList").html("");
  1261. if (data.error !== undefined){
  1262. //This playlist no longer exists. Back to main
  1263. loadPlaylistView();
  1264. }else{
  1265. //Updat ethe global values
  1266. displayList = data;
  1267. totalMusicCount = data.length;
  1268. currentPath = listname;
  1269. //Add the back btn for back to playlist view
  1270. $("#mainList").append(`<div class="mainList item extrapadding" onClick="loadPlaylistView();">
  1271. <div class="ts header selectable" style="margin:0px !important;">
  1272. <i class="angle left icon whiteFont" style="overflow:hidden;"></i>
  1273. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1274. ../
  1275. </div>
  1276. </div>
  1277. </div>`);
  1278. //List the resulting song list
  1279. for (var i = 0; i < data.length; i++){
  1280. var songInfo = data[i];
  1281. $("#mainList").append(`<div class="mainList item" filepath=${ao_module_utils.objectToAttr(songInfo[0])} id=${i+1} rawname=${ao_module_utils.objectToAttr(songInfo[1])}>
  1282. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">
  1283. <i class="music icon whiteFont" style="overflow:hidden;"></i>
  1284. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1285. ${songInfo[1]}
  1286. <div class="sub header fileinfo" style="color: #c7c7c7;">${songInfo[2]} / ${songInfo[3]}</div>
  1287. </div>
  1288. </div>\
  1289. <div class="topRightCorner" align="center">
  1290. ${i + 1}
  1291. </div>
  1292. <div class="mainList rightFunctionBar" type="file" align="center" onclick="showMore(this);">
  1293. <i class="ellipsis vertical icon" style="top:30%;"></i>
  1294. </div>
  1295. </div>`);
  1296. //Update the interface Detail
  1297. $("#interfaceDetails").text("[" + data.length + " files]");
  1298. };
  1299. //Fix some legacy css isseus
  1300. $("#mainList").append("<br><br><br><br><br><br><br>");
  1301. }
  1302. });
  1303. }
  1304. //Open a given playlist
  1305. function openPlaylist(object){
  1306. var listname = $(object).attr("listname");
  1307. renderPlaylistByName(listname);
  1308. }
  1309. function addToNewPlaylist(){
  1310. var playlistname = prompt("Enter new playlist name");
  1311. if (playlistname != null && playlistname != ""){
  1312. //Add to playlist
  1313. addSongToPlayList(playlistname);
  1314. }else{
  1315. $("#succSnackBar").find(".content").html(`<i class="remove icon"></i> Invalid playlist name`);
  1316. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1317. }
  1318. }
  1319. function addToPlaylistFromMoreMenu(){
  1320. $(".showMoreMenus").fadeOut('fast');
  1321. $("#showmoreUIcover").fadeOut('fast');
  1322. showPlaylistInterface();
  1323. }
  1324. //Remove the curernt file from the current playlist
  1325. function removeFromPlylistFromMoreMenu(){
  1326. if (currentMode == "playlist"){
  1327. //Remvoe the playlistAddPendingFile
  1328. //In playlist mode, the currentPath is used to store the plylist name
  1329. ao_module_agirun("Music/functions/playlist.js", {
  1330. opr: "remove",
  1331. playlistname: currentPath,
  1332. musicpath: playlistAddPendingFile.replace("/media?file=","")
  1333. }, function(data){
  1334. if (data.error !== undefined){
  1335. alert(data.error);
  1336. }else{
  1337. //Removed. Reload playlist
  1338. renderPlaylistByName(currentPath);
  1339. //Hide the MoreMenu
  1340. hideShowMoreMenu();
  1341. }
  1342. });
  1343. }
  1344. }
  1345. function addSongToSelectedPlaylist(object){
  1346. var playlistName = $(object).attr("name").trim();
  1347. addSongToPlayList(playlistName);
  1348. }
  1349. function addSongToPlayList(listname){
  1350. //Get current music file name
  1351. var currentSongPath = "";
  1352. if (playlistAddPendingFile !== ""){
  1353. currentSongPath = playlistAddPendingFile.replace("/media?file=","");
  1354. }else{
  1355. $("#succSnackBar").find(".content").html(`<i class="remove icon"></i> No song selected`);
  1356. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1357. return;
  1358. }
  1359. //Add to playlist
  1360. ao_module_agirun("Music/functions/playlist.js", {
  1361. opr: "add",
  1362. playlistname: listname,
  1363. musicpath: currentSongPath
  1364. },function(data){
  1365. //Show success
  1366. $("#succSnackBar").find(".content").html(`<i class="checkmark icon"></i> Added to playlist ${listname}`);
  1367. $("#succSnackBar").slideDown("fast").delay(3000).slideUp("fast");
  1368. //Reload the playlist
  1369. initPlaylistInterfaceList();
  1370. });
  1371. }
  1372. //List the number of playlist stored in this database
  1373. function loadPlaylistView(){
  1374. currentMode = "playlist";
  1375. //Clear the main list
  1376. $("#mainList").html("");
  1377. ao_module_agirun("Music/functions/playlist.js", {
  1378. opr: "root",
  1379. },function(data){
  1380. //Get the list of playlist
  1381. console.log(data);
  1382. //Render the elements
  1383. data.forEach(playlist => {
  1384. $("#mainList").append(`<div class="mainList item" listname="${playlist.name}" tag="playlist" onClick="openPlaylist(this);">
  1385. <div class="ts header selectable" style="margin:0px !important;" >
  1386. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>
  1387. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">
  1388. ${playlist.name}
  1389. <div class="sub header fileinfo" style="color: #c7c7c7;">[${playlist.count} files]</div>
  1390. </div>
  1391. </div>
  1392. <div class="mainList rightFunctionBar" tag="moreInfo" align="center" onClick="openPlaylist(this);">
  1393. <i class="chevron right icon" style="top:30%;"></i>
  1394. </div>
  1395. </div>`);
  1396. });
  1397. hideLeftMenu();
  1398. //Update the headers
  1399. $("#interfaceTitle").text("Playlist");
  1400. $("#AMmenuIcon").attr("class","list icon large whiteFont");
  1401. $("#interfaceDetails").text("[" + data.length + " playlist]");
  1402. });
  1403. }
  1404. function loadFolderView(){
  1405. currentMode = "folder";
  1406. currentPath = "";
  1407. var tempalte = '<div class="mainList item" filepath={filepath} id={id} tag="folder" onClick="openFolder(this);">\
  1408. <div class="ts header selectable" style="margin:0px !important;" >\
  1409. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>\
  1410. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1411. {foldername}\
  1412. <div class="sub header fileinfo" style="color: #c7c7c7;">{fileinfo}</div>\
  1413. </div>\
  1414. </div>\
  1415. <div class="mainList rightFunctionBar" tag="moreInfo" align="center" onClick="moreFolder(this);">\
  1416. <i class="chevron right icon" style="top:30%;"></i>\
  1417. </div>\
  1418. </div>';
  1419. $("#interfaceTitle").text("Storage");
  1420. $("#AMmenuIcon").attr("class","folder open icon large whiteFont");
  1421. ao_module_agirun("Music/functions/listSong.js", {
  1422. listdir: "root",
  1423. },function(data){
  1424. $("#mainList").html("");
  1425. for (var i =0; i < data.length; i++){
  1426. var folderName = data[i][0];
  1427. var folderPath = data[i][1];
  1428. var fileCount = data[i][2];
  1429. var folderCount = data[i][3];
  1430. var box = tempalte;
  1431. box = replaceAll("{filepath}",folderPath,box);
  1432. box = replaceAll("{id}",i + 1,box);
  1433. if (folderName == ".cache" || folderName == ".trash"){
  1434. //Hidden folders
  1435. continue;
  1436. }
  1437. if (folderPath.includes("/media")){
  1438. //This is from external storage devices. List its number as well.
  1439. var tmp = folderPath.split("/");
  1440. var extStoragePath = "/" + tmp[1] + "/" + tmp[2];
  1441. box = replaceAll("{foldername}",folderName + " ( " + extStoragePath + " )",box);
  1442. }else{
  1443. //This is directory inside normal folders.
  1444. box = replaceAll("{foldername}",folderName,box);
  1445. }
  1446. var fileinfo = "[" + fileCount + " files]"
  1447. if (folderCount > 0){
  1448. fileinfo = "[" + fileCount + " files, " + folderCount +" folders]"
  1449. }
  1450. box = replaceAll("{fileinfo}",fileinfo,box);
  1451. rootPaths.push(folderPath);
  1452. $("#mainList").append(box);
  1453. }
  1454. $("#interfaceDetails").text("[" + data.length + " folders]");
  1455. });
  1456. hideLeftMenu();
  1457. }
  1458. function isMobile(){
  1459. if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
  1460. return true
  1461. }
  1462. return false
  1463. }
  1464. function setWindowHash(hashValue){
  1465. hashValue = JSON.stringify(hashValue);
  1466. if (!isAndroid){
  1467. return;
  1468. }
  1469. if(history.pushState) {
  1470. window.history.pushState(null, null, '#' + hashValue);
  1471. }else {
  1472. location.hash = '#' + hashValue;
  1473. }
  1474. if(ao_module_virtualDesktop && !isMobile()){
  1475. //Update the iframe src as well
  1476. var newsrc = window.frameElement.getAttribute("src");
  1477. if (newsrc.includes("#")){
  1478. newsrc = newsrc.split("#")
  1479. newsrc.pop();
  1480. newsrc = newsrc.join("#");
  1481. }
  1482. newsrc = newsrc + "#" + hashValue;
  1483. $(window.frameElement).attr("src",newsrc);
  1484. //console.log(window.frameElement.getAttribute("src"));
  1485. }
  1486. }
  1487. function updateStateReferingURL(){
  1488. var paused = audioElement[0].paused; //Check the current playing state of the player
  1489. setWindowHash({path: currentPath, pfp:playingFileDetail,pause:paused});
  1490. }
  1491. function openFolder(object, playParameters=null){
  1492. var playIDAfterOpen = -1;
  1493. var startPaused = false;
  1494. if (playParameters !== null){
  1495. playIDAfterOpen = playParameters.playIDAfterOpen;
  1496. startPaused = playParameters.startPaused;
  1497. }
  1498. var backbtnTemplate = '<div class="mainList item extrapadding" filepath={filepath} id={id} onClick="openFolder(this);">\
  1499. <div class="ts header selectable" style="margin:0px !important;">\
  1500. <i class="angle left icon whiteFont" style="overflow:hidden;"></i>\
  1501. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1502. ../\
  1503. </div>\
  1504. </div>\
  1505. </div>';
  1506. var folderTemplate = '<div class="mainList item" filepath={filepath} tag="folder" id={id} onClick="openFolder(this);">\
  1507. <div class="ts header selectable" style="margin:0px !important;">\
  1508. <i class="folder open icon whiteFont" style="overflow:hidden;"></i>\
  1509. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1510. {foldername}\
  1511. <div class="sub header fileinfo" style="color: #c7c7c7;">{fileinfo}</div>\
  1512. </div>\
  1513. </div>\
  1514. <div class="mainList rightFunctionBar" type="folder" align="center">\
  1515. <i class="chevron right icon" style="top:30%;"></i>\
  1516. </div>\
  1517. </div>';
  1518. var fileTemplate = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  1519. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  1520. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1521. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1522. {songtitle}\
  1523. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1524. </div>\
  1525. </div>\
  1526. <div class="topRightCorner" align="center">\
  1527. {id}\
  1528. </div>\
  1529. <div class="mainList rightFunctionBar" type="file" align="center">\
  1530. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  1531. </div>\
  1532. </div>';
  1533. var targetPath = decodeURIComponent($(object).attr("filepath"));
  1534. if (targetPath == "root" || targetPath == "/"){
  1535. //User request to go back to storage root
  1536. loadFolderView();
  1537. return;
  1538. }
  1539. currentPath = targetPath.split("/./").join("/");
  1540. currentPath = currentPath.split("//").join("/");
  1541. $("#interfaceTitle").text(ao_module_codec.decodeHexFoldername(targetPath.substring(0,targetPath.length -1).split("/").pop()));
  1542. var parentDir = currentPath.split("/");
  1543. parentDir.pop();parentDir.pop();
  1544. parentDir = (parentDir.join("/") + "/");
  1545. //console.log(currentPath);
  1546. var backbtn;
  1547. if (rootPaths.includes(currentPath) == false){
  1548. //We are currently not at root
  1549. backbtn = backbtnTemplate;
  1550. backbtn = replaceAll("{filepath}",encodeURIComponent(parentDir),backbtn);
  1551. backbtn = replaceAll("{id}",0,backbtn);
  1552. }else{
  1553. //Create a back button to go back to root of storage
  1554. backbtn = backbtnTemplate;
  1555. backbtn = replaceAll("{filepath}","root",backbtn);
  1556. backbtn = replaceAll("{id}",0,backbtn);
  1557. }
  1558. //Request the server for a list of folders and file in this directory
  1559. ao_module_agirun("Music/functions/listSong.js", {
  1560. listdir: targetPath.split("//").join("/"),
  1561. },function(data){
  1562. $("#mainList").html("");
  1563. $("#mainList").append(backbtn);
  1564. if (Array.isArray(data)){
  1565. var folders = data[0];
  1566. var files = data[1];
  1567. //List all folders
  1568. for (var i =0; i < folders.length; i++){
  1569. var folderName = folders[i][0];
  1570. var folderPath = folders[i][1];
  1571. var fileCount = folders[i][2];
  1572. var folderCount = folders[i][3];
  1573. var box = folderTemplate;
  1574. if (folderName == ".cache" || folderName == ".trash"){
  1575. //Hidden folders
  1576. continue;
  1577. }
  1578. box = replaceAll("{filepath}",encodeURIComponent(folderPath),box);
  1579. box = replaceAll("{id}",i + 1,box);
  1580. box = replaceAll("{foldername}",ao_module_codec.decodeHexFoldername(folderName),box);
  1581. var fileinfo = "[" + fileCount + " files]"
  1582. if (folderCount > 0){
  1583. fileinfo = "[" + fileCount + " files, " + folderCount +" folders]"
  1584. }
  1585. box = replaceAll("{fileinfo}",fileinfo,box);
  1586. $("#mainList").append(box);
  1587. }
  1588. //List all files
  1589. for ( var i =0; i < files.length; i++){
  1590. var songInfo = files[i];
  1591. var path = songInfo[0];
  1592. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  1593. var ext = songInfo[2];
  1594. var size = songInfo[3];
  1595. var box = fileTemplate;
  1596. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  1597. box = replaceAll("{id}",i + 1,box); //User count from 1
  1598. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  1599. box = replaceAll("{songtitle}",displayname,box);
  1600. box = replaceAll("{ext}",ext,box);
  1601. box = replaceAll("{size}",size,box);
  1602. $("#mainList").append(box);
  1603. }
  1604. displayList = files;
  1605. totalMusicCount = files.length;
  1606. $("#mainList").append("<br><br><br><br><br><br><br>");
  1607. }else{
  1608. //Something went wrong
  1609. //console.log('[AirMusic] Something went wrong: ' + data);
  1610. loadFolderView();
  1611. return;
  1612. }
  1613. if (folders.length > 0 && files.length > 0){
  1614. $("#interfaceDetails").text("[" + files.length + " files, " + folders.length+ " folders]");
  1615. }else if (folders.length > 0){
  1616. $("#interfaceDetails").text("[" + folders.length + " folders]");
  1617. }else if (files.length > 0){
  1618. $("#interfaceDetails").text("[" + files.length + " files]");
  1619. }else{
  1620. $("#interfaceDetails").text("[0 files or folders]");
  1621. }
  1622. //Hook all the events for the moreinfo on folders
  1623. hookMoreFolderInfoClickEvent();
  1624. //Check if the current playing file is located inside this list.
  1625. highLightPlayingMusic();
  1626. //Check if auto playback is required. If yes, play it with the given filepath.
  1627. if (playIDAfterOpen != -1){
  1628. $(".mainList.item").each(function(){
  1629. if ($(this).attr("id") == playIDAfterOpen){
  1630. //This is the file that require to playback after the folder loaded
  1631. playSong($(this).find(".ts.header.selectable"),startPaused);
  1632. setTimeout(resizeQuickAdjust,500);
  1633. }
  1634. });
  1635. }
  1636. });
  1637. }
  1638. function moreInfo(object){
  1639. if ($(object).parent().attr('tag') == "folder"){
  1640. //This is a folder. Ask if play as playlist
  1641. alert("Folder playback work in progress");
  1642. }else{
  1643. showMore(object);
  1644. }
  1645. }
  1646. function hookMoreFolderInfoClickEvent(){
  1647. $(".mainList.rightFunctionBar").on("click", function(e){
  1648. e.stopPropagation();
  1649. moreInfo(this);
  1650. });
  1651. }
  1652. function highLightPlayingMusic(){
  1653. //This function is used for highlighting the current playing music if the music piece is found inside the current list
  1654. $(".mainList.item").removeClass("playingTrack");
  1655. $(".mainList.item").each(function(){
  1656. var id = parseInt($(this).attr("id"));
  1657. try{
  1658. var filepath = ao_module_utils.attrToObject($(this).attr("filepath"));
  1659. }catch{
  1660. //Use back the previous method of filepath storage for compatibility
  1661. var filepath = $(this).attr("filepath");
  1662. }
  1663. /*
  1664. if (id == playingFileDetail[0] && filepath == playingFileDetail[1]){
  1665. //This piece of music is playing in the current list
  1666. $(this).addClass("playingTrack");
  1667. }else if (playingFileDetail[0] == -1 && filepath == playingFileDetail[1]){
  1668. //This is for external accessed music playback. Music file might or might not exists in the current playlist. Try to highlight anyway
  1669. $(this).addClass("playingTrack");
  1670. }*/
  1671. //Id is ignored in the 9/9/2019 updates and only check if the path matches.
  1672. if (filepath == playingFileDetail[1]){
  1673. $(this).addClass("playingTrack");
  1674. }
  1675. //console.log([id,filepath], playingFileDetail);
  1676. });
  1677. //Update dropdownList as well if exists
  1678. $(".dropdownList.item").removeClass("playingTrack");
  1679. $(".dropdownList.item").each(function(){
  1680. try{
  1681. var filepath = ao_module_utils.attrToObject($(this).attr("filepath"));
  1682. }catch{
  1683. //Use back the previous method of filepath storage for compatibility
  1684. var filepath = $(this).attr("filepath");
  1685. }
  1686. //var filepath = $(this).attr("filepath");
  1687. if (filepath == playingFileDetail[1]){
  1688. $(this).addClass("playingTrack");
  1689. }
  1690. });
  1691. }
  1692. function monitorFileChangeForUpload(){
  1693. if ($("#interfaceTitle").text() == "Upload"){
  1694. //It is still in upload Mode. Continue monitor file change and move them if needed
  1695. $.post("listenUploadChange.php",{fileList: JSON.stringify(currentUploadTargetFileList),directory: currentUploadTargetFilepath}).done(function(data){
  1696. if (data.includes("ERROR")){
  1697. console.log(data);
  1698. }
  1699. });
  1700. setTimeout(monitorFileChangeForUpload,1000);
  1701. }
  1702. }
  1703. function hideShowMoreMenu(){
  1704. $(".showMoreMenus").fadeOut('fast');
  1705. $("#showmoreUIcover").fadeOut('fast');
  1706. //Return the playlistAddPendingFile object back to the playing one
  1707. if (playingFileDetail !== undefined){
  1708. playlistAddPendingFile = playingFileDetail[1];
  1709. }else{
  1710. //No song is being play back
  1711. playlistAddPendingFile = "";
  1712. }
  1713. }
  1714. function playFromShowMoreMenu(){
  1715. nextSong(showMoreOprPlayID - 1);
  1716. $(".showMoreMenus").fadeOut('fast');
  1717. }
  1718. function showFileInfo(){
  1719. $("#showFileInfo").show();
  1720. $("#showMoreUI").hide();
  1721. }
  1722. function startRelatedSearch(){
  1723. enterSearchMode();
  1724. $("#searchInputBar").val(showMoreoprDisplayName);
  1725. $("#searchInputBar").focus();
  1726. hideShowMoreMenu();
  1727. }
  1728. function searchYoutubeViaShowMore(){
  1729. if (showMoreoprDisplayName != "" || showMoreoprDisplayName != undefined){
  1730. var filename = showMoreoprDisplayName;
  1731. searchOnYoutube(filename);
  1732. }
  1733. }
  1734. var showMoreOprPlayID,showMoreOprFilepath, showMoreoprDisplayName;
  1735. function showMore(object){
  1736. var filepath = $(object).parent().attr("filepath");
  1737. filepath = JSON.parse(decodeURIComponent(filepath));
  1738. //User want more action on this file. assume this is the file to add
  1739. playlistAddPendingFile = filepath;
  1740. var id = $(object).parent().attr('id');
  1741. var rawname = $(object).parent().attr("rawname");
  1742. var displayName = JSON.parse(decodeURIComponent(ao_module_codec.decodeUmFilename(rawname)));
  1743. //Update global variable for quick operations
  1744. showMoreOprPlayID = id;
  1745. showMoreOprFilepath = filepath;
  1746. showMoreoprDisplayName = displayName;
  1747. $("#showMoreUI").find(".songTitle").text(displayName);
  1748. $("#showMoreUI").find(".songID").text(id);
  1749. $("#showFileInfo").find(".songTitle").text(displayName);
  1750. $("#showMoreUI").fadeIn('fast');
  1751. $("#showmoreUIcover").fadeIn('fast');
  1752. //Update fileinformation as well
  1753. if (filepath.substring(0, 12) == "/media?file="){
  1754. filepath = filepath.substring(12);
  1755. }
  1756. //Pre-render the file info
  1757. ao_module_agirun("Music/functions/getFileInfo.js", {
  1758. filepath: filepath,
  1759. }, function(data){
  1760. $("#showFileInfo").find(".filename").text(ao_module_codec.decodeUmFilename(data[0]));
  1761. $("#showFileInfo").find(".rawname").text(data[0]);
  1762. $("#showFileInfo").find(".filepath").text(data[1]);
  1763. $("#showFileInfo").find(".filesize").text(data[2] + " (" + data[3] + " Bytes)");
  1764. $("#showFileInfo").find(".filedate").text(data[4]);
  1765. });
  1766. if (currentMode != "playlist"){
  1767. $(".playlistonly").hide();
  1768. }else{
  1769. $(".playlistonly").show();
  1770. }
  1771. }
  1772. function playSongFromDropdownList(object){
  1773. //Play song from dropdown list. Hence, no need to update dropdownList
  1774. if ($(object).parent().hasClass("playingTrack")){
  1775. //This song already playing. Ignore play request.
  1776. return;
  1777. }
  1778. playSong(object);
  1779. //Check if the song is also in main list. If yes, highlight it as well
  1780. /*
  1781. $(".mainList.item").each(function(){
  1782. if ($(this).attr("filepath") == $(object).parent().attr("filepath")){
  1783. $(".mainList.item.playingTrack").removeClass("playingTrack");
  1784. $(this).addClass("playingTrack");
  1785. }
  1786. });
  1787. */
  1788. $("#dropdownSonglist").delay(500).slideUp();
  1789. highLightPlayingMusic();
  1790. }
  1791. //Move the playing song list into the dropdown song list. This list might not be the same as the one in the main list.
  1792. function parsePlayingSongList(){
  1793. var template = '<div class="dropdownList item" filepath={filepath} listid={id} rawname={rawname}>\
  1794. <div class="ts header selectable" style="margin:0px !important;" onClick="playSongFromDropdownList(this);">\
  1795. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1796. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1797. {songtitle}\
  1798. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1799. </div>\
  1800. </div>\
  1801. <div class="topRightCorner" align="center">\
  1802. {id}\
  1803. </div>\
  1804. </div>';
  1805. $("#currentPlayingMainList").html("");
  1806. var counter = playingList.length;
  1807. var totalSize = 0.0;
  1808. for (var i = 0; i < playingList.length; i++){
  1809. var displayname = ao_module_codec.decodeUmFilename(playingList[i][1]);
  1810. var box = template;
  1811. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(playingList[i][0]),box);
  1812. box = replaceAll("{id}",i + 1,box); //User count from 1
  1813. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(playingList[i][1]),box);
  1814. box = replaceAll("{songtitle}",displayname,box);
  1815. box = replaceAll("{ext}",playingList[i][2],box);
  1816. box = replaceAll("{size}",playingList[i][3],box);
  1817. if (playingList[i][3].includes("MB")){
  1818. totalSize += parseFloat(playingList[i][3].split(" ")[0]);
  1819. }else if (playingList[i][3].includes("KB")){
  1820. totalSize += parseFloat(playingList[i][3].split(" ")[0]) / 1000;
  1821. }else if (playingList[i][3].includes("GB")){
  1822. totalSize += parseFloat(playingList[i][3].split(" ")[0]) * 1000;
  1823. }
  1824. $("#currentPlayingMainList").append(box);
  1825. $("#dropdownListSongCount").text(counter);
  1826. $("#dropdownListIDCount").text(parseInt(totalSize) + "");
  1827. }
  1828. $(".dropdownList.item").each(function(){
  1829. if ($(this).attr('filepath') == playingFileDetail[1]){
  1830. $(this).addClass("playingTrack");
  1831. }
  1832. });
  1833. }
  1834. function loadSongList(type = "all"){
  1835. currentPath = "";
  1836. currentMode = "music";
  1837. var template = '<div class="mainList item" filepath={filepath} id={id} rawname={rawname}>\
  1838. <div class="ts header selectable" style="margin:0px !important;" onClick="playSong(this);">\
  1839. <i class="music icon whiteFont" style="overflow:hidden;"></i>\
  1840. <div class="content whiteFont" style="padding-top:5px;line-height:1em;width : 80%;">\
  1841. {songtitle}\
  1842. <div class="sub header fileinfo" style="color: #c7c7c7;">{ext} / {size}</div>\
  1843. </div>\
  1844. </div>\
  1845. <div class="topRightCorner" align="center">\
  1846. {id}\
  1847. </div>\
  1848. <div class="mainList rightFunctionBar" align="center" onClick="showMore(this);">\
  1849. <i class="ellipsis vertical icon" style="top:30%;"></i>\
  1850. </div>\
  1851. </div>';
  1852. $("#interfaceTitle").text("Music");
  1853. $("#AMmenuIcon").attr("class","music icon large whiteFont")
  1854. ao_module_agirun("Music/functions/listSong.js", {
  1855. listSong: type,
  1856. },function(data){
  1857. //Initialize the song list
  1858. displayList = data;
  1859. if (type == "all"){
  1860. //Caching is used in here
  1861. displayList = data.list;
  1862. if (data.cached == true){
  1863. //This is a cached version of the music list.
  1864. console.log("Updating cached song list");
  1865. ao_module_agirun("Music/functions/buildCache.js", {}, function(data){
  1866. console.log("Cache updated: ", data);
  1867. });
  1868. }
  1869. }
  1870. console.log(displayList);
  1871. if (playingList == []){
  1872. playingList = Array.from(displayList);
  1873. }
  1874. $("#mainList").html("");
  1875. for ( var i =0; i < displayList.length; i++){
  1876. var songInfo = displayList[i];
  1877. var path = songInfo[0];
  1878. var displayname = ao_module_codec.decodeUmFilename(songInfo[1]);
  1879. var ext = songInfo[2];
  1880. var size = songInfo[3];
  1881. var box = template;
  1882. box = replaceAll("{filepath}",ao_module_utils.objectToAttr(path),box);
  1883. box = replaceAll("{id}",i + 1,box); //User count from 1
  1884. box = replaceAll("{rawname}",ao_module_utils.objectToAttr(songInfo[1]),box);
  1885. box = replaceAll("{songtitle}",displayname,box);
  1886. box = replaceAll("{ext}",ext,box);
  1887. box = replaceAll("{size}",size,box);
  1888. $("#mainList").append(box);
  1889. }
  1890. totalMusicCount = displayList.length;
  1891. $("#mainList").append("<br><br><br><br><br><br><br>");
  1892. $("#interfaceDetails").text("[" + i + " songs]");
  1893. highLightPlayingMusic();
  1894. }, function(){
  1895. alert("Failed to access listSong API with type: " + type)
  1896. });
  1897. hideLeftMenu();
  1898. }
  1899. function toggleLeftMenu(){
  1900. if (leftMenuShown){
  1901. $("#leftSideBar").animate({left: $("#leftSideBar").width() * -1}, 300,function(){
  1902. $("#leftSideBar").hide();
  1903. });
  1904. $("#sideBarCover").fadeOut();
  1905. leftMenuShown = false;
  1906. }else{
  1907. $("#leftSideBar").show();
  1908. $("#leftSideBar").animate({left:0}, 300);
  1909. $("#sideBarCover").fadeIn();
  1910. leftMenuShown = true;
  1911. }
  1912. }
  1913. function hideLeftMenu(){
  1914. if (leftMenuShown){
  1915. $("#leftSideBar").animate({left: $("#leftSideBar").width() * -1}, 300,function(){
  1916. $("#leftSideBar").hide();
  1917. });
  1918. $("#sideBarCover").fadeOut();
  1919. leftMenuShown = false;
  1920. }
  1921. }
  1922. function showFileInformation(){
  1923. ao_module_agirun("Music/functions/getFileInfo.js", {
  1924. filepath: playingFileDetail[1],
  1925. },function(data){
  1926. //console.log(data);
  1927. $("#settingInterface").hide();
  1928. $("#filepropInterface").show();
  1929. $("#filepropInterface").find(".filename").text(ao_module_codec.decodeUmFilename(data[0]));
  1930. $("#filepropInterface").find(".rawname").text(data[0]);
  1931. $("#filepropInterface").find(".filepath").text(data[1]);
  1932. $("#filepropInterface").find(".filesize").text(data[2] + " (" + data[3] + " Bytes)");
  1933. $("#filepropInterface").find(".filedate").text(data[4]);
  1934. });
  1935. }
  1936. function resizeQuickAdjust(){
  1937. //Resize the position of the leftMenu
  1938. if (!leftMenuShown){
  1939. $("#leftSideBar").css("left", $("#leftSideBar").width() * -1);
  1940. }
  1941. if ($("#playerInterface").offset().left != 0){
  1942. $("#playerInterface").css("left",window.innerWidth);
  1943. }
  1944. $("#albumnArtImage").css("max-height",window.innerHeight - 255);
  1945. setTimeout(function(){
  1946. $("#albumnArt").css({
  1947. "height": window.innerHeight - 255,
  1948. "top": (window.innerHeight / 2 - $("#albumnArtImage").height()/2)
  1949. });
  1950. },50);
  1951. //var imageTop = (window.innerHeight - 255 - $("#albumnArtImage").height()) / 2;
  1952. //$("#albumnArtImage").css("top",imageTop + "px");
  1953. }
  1954. function setStorage(configName,configValue){
  1955. ao_module_storage.setStorage("AirMusic",configName,configValue);
  1956. /*
  1957. $.ajax({
  1958. type: 'GET',
  1959. url: "../system/file_system/preference",
  1960. data: {key: "AirMusic/" + configName,value:configValue},
  1961. success: function(data){},
  1962. async:true
  1963. });
  1964. */
  1965. return true;
  1966. }
  1967. function loadStorage(configName){
  1968. /*
  1969. var result = "";
  1970. $.ajax({
  1971. type: 'GET',
  1972. url: "../system/file_system/preference",
  1973. data: {key: "AirMusic/" + configName},
  1974. success: function(data){
  1975. if (data.error !== undefined){
  1976. result = "";
  1977. }else{
  1978. result = data;
  1979. }
  1980. },
  1981. error: function(data){result = "";},
  1982. async:false,
  1983. timeout: 3000
  1984. });
  1985. return result;
  1986. */
  1987. return ao_module_storage.loadStorage("AirMusic",configName);
  1988. }
  1989. //Wipe controller for mobile users
  1990. $("#albumnArt")[0].addEventListener('touchstart', handleTouchStart, false);
  1991. $("#albumnArt")[0].addEventListener('touchmove', handleTouchMove, false);
  1992. var xDown = null;
  1993. var yDown = null;
  1994. function getTouches(evt) {
  1995. return evt.touches || // browser API
  1996. evt.originalEvent.touches; // jQuery
  1997. }
  1998. function handleTouchStart(evt) {
  1999. const firstTouch = getTouches(evt)[0];
  2000. xDown = firstTouch.clientX;
  2001. yDown = firstTouch.clientY;
  2002. };
  2003. function handleTouchMove(evt) {
  2004. if ( ! xDown || ! yDown ) {
  2005. return;
  2006. }
  2007. var xUp = evt.touches[0].clientX;
  2008. var yUp = evt.touches[0].clientY;
  2009. var xDiff = xDown - xUp;
  2010. var yDiff = yDown - yUp;
  2011. if ( Math.abs( xDiff ) > Math.abs( yDiff ) ) {/*most significant*/
  2012. if ( xDiff > 0 ) {
  2013. /* left swipe */
  2014. //Going to the next song
  2015. nextSong();
  2016. } else {
  2017. /* right swipe */
  2018. //Going back one song
  2019. previousSong();
  2020. }
  2021. } else {
  2022. if ( yDiff > 0 ) {
  2023. /* up swipe */
  2024. } else {
  2025. /* down swipe */
  2026. }
  2027. }
  2028. /* reset values */
  2029. xDown = null;
  2030. yDown = null;
  2031. };
  2032. //Handle audio progress to time conversion
  2033. function secondsToHms(d) {
  2034. d = Number(d);
  2035. var h = Math.floor(d / 3600);
  2036. var m = Math.floor(d % 3600 / 60);
  2037. var s = Math.floor(d % 3600 % 60);
  2038. if (h > 0 && h < 10){
  2039. dh = "0" + h + ":";
  2040. }else if (h == 0){
  2041. dh = "";
  2042. }else{
  2043. dh = h + ":";
  2044. }
  2045. if (m > 0 && m < 10){
  2046. dm = "0" + m + ":";
  2047. }else if (m == 0){
  2048. if (h > 0){
  2049. dm = "00:";
  2050. }else{
  2051. dm = "0:";
  2052. }
  2053. }else{
  2054. dm = m + ":";
  2055. }
  2056. if (s > 0 && s < 10){
  2057. ds = "0" + s;
  2058. }else if (s == 0){
  2059. if (m > 0 || h > 0){
  2060. ds = "00";
  2061. }else{
  2062. ds = "00";
  2063. }
  2064. }else{
  2065. ds = s;
  2066. }
  2067. return dh + dm + ds;
  2068. }
  2069. //Handle window resize events
  2070. $(window).on("resize", function(){
  2071. resizeQuickAdjust();
  2072. });
  2073. function AllQuickMenuHidden(){
  2074. var result = true;
  2075. $(".quickMenu").each(function(){
  2076. if ( $(this).is(':visible') ){
  2077. result = false;
  2078. }
  2079. });
  2080. return result;
  2081. }
  2082. function AllSubMenuHidden(){
  2083. var result = true;
  2084. $(".showMoreMenus").each(function(){
  2085. if ( $(this).is(':visible') ){
  2086. result = false;
  2087. }
  2088. });
  2089. return result;
  2090. }
  2091. //Handle back button press on mobile devices
  2092. function handleBackButton() {
  2093. if (!AllQuickMenuHidden()){
  2094. hideAllquickMenu();
  2095. window.history.pushState({}, '');
  2096. }else if (mainPlayerShown()){
  2097. //Close the main Menu
  2098. hideMainPlayerInterface();
  2099. window.history.pushState({}, '');
  2100. }else if (!AllSubMenuHidden()){
  2101. $(".showMoreMenus").fadeOut('fast');
  2102. $("#showmoreUIcover").fadeOut('fast');
  2103. window.history.pushState({}, '');
  2104. }else{
  2105. window.history.back();
  2106. }
  2107. }
  2108. window.addEventListener('popstate', handleBackButton);
  2109. window.history.pushState({}, '');
  2110. </script>
  2111. </body>
  2112. </html>