EditSong.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998
  1. <template>
  2. <div>
  3. <modal title="Edit Song" class="song-modal">
  4. <div slot="body">
  5. <div class="left-section">
  6. <div class="top-section">
  7. <div class="player-section">
  8. <div id="editSongPlayer"></div>
  9. <canvas
  10. id="durationCanvas"
  11. height="20"
  12. width="530"
  13. ></canvas>
  14. <div class="player-footer">
  15. <div class="player-footer-left">
  16. <i
  17. class="material-icons player-play-pause"
  18. @click="settings('play')"
  19. @keyup.enter="settings('play')"
  20. tabindex="0"
  21. v-if="video.paused"
  22. >play_arrow</i
  23. >
  24. <i
  25. class="material-icons player-play-pause"
  26. @click="settings('pause')"
  27. @keyup.enter="settings('pause')"
  28. tabindex="0"
  29. v-if="!video.paused"
  30. >pause</i
  31. >
  32. <i
  33. class="material-icons player-stop"
  34. @click="settings('stop')"
  35. @keyup.enter="settings('stop')"
  36. tabindex="0"
  37. >stop</i
  38. >
  39. <i
  40. class="material-icons player-fast-forward"
  41. @click="settings('skipToLast10Secs')"
  42. @keyup.enter="
  43. settings('skipToLast10Secs')
  44. "
  45. tabindex="0"
  46. >fast_forward</i
  47. >
  48. </div>
  49. <div class="player-footer-center">
  50. <img src="/assets/social/youtube.svg" />
  51. <span>
  52. <span>
  53. {{ youtubeVideoCurrentTime }}
  54. </span>
  55. /
  56. <span>
  57. {{ youtubeVideoDuration }}
  58. {{ youtubeVideoNote }}
  59. </span>
  60. </span>
  61. </div>
  62. <div class="player-footer-right">
  63. <input
  64. type="range"
  65. v-model="volumeSliderValue"
  66. min="0"
  67. max="10000"
  68. class="active"
  69. @change="changeVolume()"
  70. @input="changeVolume()"
  71. />
  72. </div>
  73. </div>
  74. </div>
  75. <img
  76. class="thumbnail-preview"
  77. :src="song.thumbnail"
  78. onerror="this.src='/assets/notes-transparent.png'"
  79. v-if="songDataLoaded"
  80. />
  81. </div>
  82. <div class="edit-section" v-if="songDataLoaded">
  83. <div class="control is-grouped">
  84. <div class="title-container">
  85. <label class="label">Title</label>
  86. <p class="control has-addons">
  87. <input
  88. class="input"
  89. type="text"
  90. id="title-input"
  91. v-model="song.title"
  92. @keyup.ctrl.alt.d="
  93. getAlbumData('title')
  94. "
  95. />
  96. <button
  97. class="button album-get-button"
  98. @click="getAlbumData('title')"
  99. >
  100. <i class="material-icons">album</i>
  101. </button>
  102. </p>
  103. </div>
  104. <div class="duration-container">
  105. <label class="label">Duration</label>
  106. <p class="control has-addons">
  107. <input
  108. class="input"
  109. type="text"
  110. v-model.number="song.duration"
  111. />
  112. <button
  113. class="button duration-fill-button"
  114. @click="fillDuration()"
  115. >
  116. <i class="material-icons">sync</i>
  117. </button>
  118. </p>
  119. </div>
  120. <div class="skip-duration-container">
  121. <label class="label">Skip duration</label>
  122. <p class="control">
  123. <input
  124. class="input"
  125. type="text"
  126. v-model.number="song.skipDuration"
  127. />
  128. </p>
  129. </div>
  130. </div>
  131. <div class="control is-grouped">
  132. <div class="album-art-container">
  133. <label class="label">Album art</label>
  134. <p class="control has-addons">
  135. <input
  136. class="input"
  137. type="text"
  138. v-model="song.thumbnail"
  139. @keyup.ctrl.alt.d="
  140. getAlbumData('albumArt')
  141. "
  142. />
  143. <button
  144. class="button album-get-button"
  145. @click="getAlbumData('albumArt')"
  146. >
  147. <i class="material-icons">album</i>
  148. </button>
  149. </p>
  150. </div>
  151. </div>
  152. <div class="control is-grouped">
  153. <div class="artists-container">
  154. <label class="label">Artists</label>
  155. <p class="control has-addons">
  156. <input
  157. class="input"
  158. type="text"
  159. id="new-artist"
  160. v-model="artistInputValue"
  161. @blur="blurArtistInput()"
  162. @focus="focusArtistInput()"
  163. @keydown="keydownArtistInput()"
  164. @keyup.enter="addTag('artists')"
  165. @keyup.ctrl.alt.d="
  166. getAlbumData('artists')
  167. "
  168. />
  169. <button
  170. class="button album-get-button"
  171. @click="getAlbumData('artists')"
  172. >
  173. <i class="material-icons">album</i>
  174. </button>
  175. <button
  176. class="button is-info add-button"
  177. @click="addTag('artists')"
  178. >
  179. <i class="material-icons">add</i>
  180. </button>
  181. </p>
  182. <div
  183. class="autosuggest-container"
  184. v-if="
  185. (artistInputFocussed ||
  186. artistAutosuggestContainerFocussed) &&
  187. artistAutosuggestItems.length > 0
  188. "
  189. @mouseover="focusArtistContainer()"
  190. @mouseleave="blurArtistContainer()"
  191. >
  192. <span
  193. class="autosuggest-item"
  194. tabindex="0"
  195. @click="selectArtistAutosuggest(item)"
  196. v-for="(item,
  197. index) in artistAutosuggestItems"
  198. :key="index"
  199. >{{ item }}</span
  200. >
  201. </div>
  202. <div class="list-container">
  203. <div
  204. class="list-item"
  205. v-for="(artist, index) in song.artists"
  206. :key="index"
  207. >
  208. <div
  209. class="list-item-circle"
  210. @click="removeTag('artists', index)"
  211. >
  212. <i class="material-icons">close</i>
  213. </div>
  214. <p>{{ artist }}</p>
  215. </div>
  216. </div>
  217. </div>
  218. <div class="genres-container">
  219. <label class="label">
  220. <span>Genres</span>
  221. <i
  222. class="material-icons"
  223. @click="toggleGenreHelper"
  224. @dblclick="resetGenreHelper"
  225. >info</i
  226. >
  227. </label>
  228. <p class="control has-addons">
  229. <input
  230. class="input"
  231. type="text"
  232. id="new-genre"
  233. v-model="genreInputValue"
  234. @blur="blurGenreInput()"
  235. @focus="focusGenreInput()"
  236. @keydown="keydownGenreInput()"
  237. @keyup.enter="addTag('genres')"
  238. @keyup.ctrl.alt.d="
  239. getAlbumData('genres')
  240. "
  241. />
  242. <button
  243. class="button album-get-button"
  244. @click="getAlbumData('genres')"
  245. >
  246. <i class="material-icons">album</i>
  247. </button>
  248. <button
  249. class="button is-info add-button"
  250. @click="addTag('genres')"
  251. >
  252. <i class="material-icons">add</i>
  253. </button>
  254. </p>
  255. <div
  256. class="autosuggest-container"
  257. v-if="
  258. (genreInputFocussed ||
  259. genreAutosuggestContainerFocussed) &&
  260. genreAutosuggestItems.length > 0
  261. "
  262. @mouseover="focusGenreContainer()"
  263. @mouseleave="blurGenreContainer()"
  264. >
  265. <span
  266. class="autosuggest-item"
  267. @click="selectGenreAutosuggest(item)"
  268. v-for="(item,
  269. index) in genreAutosuggestItems"
  270. :key="index"
  271. >{{ item }}</span
  272. >
  273. </div>
  274. <div class="list-container">
  275. <div
  276. class="list-item"
  277. v-for="(genre, index) in song.genres"
  278. :key="index"
  279. >
  280. <div
  281. class="list-item-circle"
  282. @click="removeTag('genres', index)"
  283. >
  284. <i class="material-icons">close</i>
  285. </div>
  286. <p>{{ genre }}</p>
  287. </div>
  288. </div>
  289. </div>
  290. <div class="youtube-id-container">
  291. <label class="label">YouTube ID</label>
  292. <p class="control">
  293. <input
  294. class="input"
  295. type="text"
  296. v-model="song.songId"
  297. />
  298. </p>
  299. </div>
  300. </div>
  301. </div>
  302. </div>
  303. <div class="right-section" v-if="songDataLoaded">
  304. <div class="api-section">
  305. <div class="selected-discogs-info" v-if="!song.discogs">
  306. <p class="selected-discogs-info-none">None</p>
  307. </div>
  308. <div class="selected-discogs-info" v-if="song.discogs">
  309. <div class="top-container">
  310. <img :src="song.discogs.album.albumArt" />
  311. <div class="right-container">
  312. <p class="album-title">
  313. {{ song.discogs.album.title }}
  314. </p>
  315. <div class="bottom-row">
  316. <p class="type-year">
  317. <span>{{
  318. song.discogs.album.type
  319. }}</span>
  320. <span>{{
  321. song.discogs.album.year
  322. }}</span>
  323. </p>
  324. </div>
  325. </div>
  326. </div>
  327. <div class="bottom-container">
  328. <p class="bottom-container-field">
  329. Artists:
  330. <span>{{
  331. song.discogs.album.artists.join(", ")
  332. }}</span>
  333. </p>
  334. <p class="bottom-container-field">
  335. Genres:
  336. <span>{{
  337. song.discogs.album.genres.join(", ")
  338. }}</span>
  339. </p>
  340. <p class="bottom-container-field">
  341. Data quality:
  342. <span>{{ song.discogs.dataQuality }}</span>
  343. </p>
  344. <p class="bottom-container-field">
  345. Track:
  346. <span
  347. >{{ song.discogs.track.position }}.
  348. {{ song.discogs.track.title }}</span
  349. >
  350. </p>
  351. </div>
  352. </div>
  353. <p class="control is-expanded">
  354. <label class="label">Search query</label>
  355. <input
  356. class="input"
  357. type="text"
  358. id="discogs-input"
  359. v-model="discogsQuery"
  360. @keyup.enter="searchDiscogsForPage(1)"
  361. @change="onDiscogsQueryChange"
  362. v-focus
  363. />
  364. </p>
  365. <button
  366. class="button is-info is-fullwidth"
  367. @click="searchDiscogsForPage(1)"
  368. >
  369. Search
  370. </button>
  371. <label
  372. class="label"
  373. v-if="discogs.apiResults.length > 0"
  374. >API results</label
  375. >
  376. <div
  377. class="api-results-container"
  378. v-if="discogs.apiResults.length > 0"
  379. >
  380. <div
  381. class="api-result"
  382. v-for="(result, index) in discogs.apiResults"
  383. :key="index"
  384. tabindex="0"
  385. @keydown.space.prevent
  386. @keyup.enter="toggleAPIResult(index)"
  387. >
  388. <div class="top-container">
  389. <img :src="result.album.albumArt" />
  390. <div class="right-container">
  391. <p class="album-title">
  392. {{ result.album.title }}
  393. </p>
  394. <div class="bottom-row">
  395. <img
  396. src="/assets/arrow_up.svg"
  397. v-if="result.expanded"
  398. @click="toggleAPIResult(index)"
  399. />
  400. <img
  401. src="/assets/arrow_down.svg"
  402. v-if="!result.expanded"
  403. @click="toggleAPIResult(index)"
  404. />
  405. <p class="type-year">
  406. <span>{{
  407. result.album.type
  408. }}</span>
  409. <span>{{
  410. result.album.year
  411. }}</span>
  412. </p>
  413. </div>
  414. </div>
  415. </div>
  416. <div
  417. class="bottom-container"
  418. v-if="result.expanded"
  419. >
  420. <p class="bottom-container-field">
  421. Artists:
  422. <span>{{
  423. result.album.artists.join(", ")
  424. }}</span>
  425. </p>
  426. <p class="bottom-container-field">
  427. Genres:
  428. <span>{{
  429. result.album.genres.join(", ")
  430. }}</span>
  431. </p>
  432. <p class="bottom-container-field">
  433. Data quality:
  434. <span>{{ result.dataQuality }}</span>
  435. </p>
  436. <div class="tracks">
  437. <div
  438. class="track"
  439. tabindex="0"
  440. v-for="(track,
  441. trackIndex) in result.tracks"
  442. :key="trackIndex"
  443. @click="
  444. selectTrack(index, trackIndex)
  445. "
  446. @keyup.enter="
  447. selectTrack(index, trackIndex)
  448. "
  449. >
  450. <span>{{ track.position }}.</span>
  451. <p>{{ track.title }}</p>
  452. </div>
  453. </div>
  454. </div>
  455. </div>
  456. </div>
  457. <button
  458. v-if="
  459. discogs.apiResults.length > 0 &&
  460. !discogs.disableLoadMore &&
  461. discogs.page < discogs.pages
  462. "
  463. class="button is-fullwidth is-info discogs-load-more"
  464. @click="loadNextDiscogsPage()"
  465. >
  466. Load more...
  467. </button>
  468. </div>
  469. </div>
  470. </div>
  471. <div slot="footer">
  472. <save-button ref="saveButton" @clicked="save(song, false)" />
  473. <save-button
  474. ref="saveAndCloseButton"
  475. type="save-and-close"
  476. @clicked="save(song, true)"
  477. />
  478. <button
  479. class="button is-danger"
  480. @click="closeModal({ sector: sector, modal: 'editSong' })"
  481. >
  482. <span>&nbsp;Close</span>
  483. </button>
  484. </div>
  485. </modal>
  486. <floating-box id="genreHelper" ref="genreHelper">
  487. <template #body>
  488. <span>Blues</span><span>Country</span><span>Disco</span
  489. ><span>Funk</span><span>Hip-Hop</span><span>Jazz</span
  490. ><span>Metal</span><span>Oldies</span><span>Other</span
  491. ><span>Pop</span><span>Rap</span><span>Reggae</span
  492. ><span>Rock</span><span>Techno</span><span>Trance</span
  493. ><span>Classical</span><span>Instrumental</span
  494. ><span>House</span><span>Electronic</span
  495. ><span>Christian Rap</span><span>Lo-Fi</span><span>Musical</span
  496. ><span>Rock 'n' Roll</span><span>Opera</span
  497. ><span>Drum & Bass</span><span>Club-House</span
  498. ><span>Indie</span><span>Heavy Metal</span
  499. ><span>Christian rock</span><span>Dubstep</span>
  500. </template>
  501. </floating-box>
  502. </div>
  503. </template>
  504. <script>
  505. import { mapState, mapGetters, mapActions } from "vuex";
  506. import Toast from "toasters";
  507. import aw from "@/aw";
  508. import validation from "@/validation";
  509. import keyboardShortcuts from "@/keyboardShortcuts";
  510. import Modal from "../Modal.vue";
  511. import FloatingBox from "../FloatingBox.vue";
  512. import SaveButton from "../SaveButton.vue";
  513. export default {
  514. components: { Modal, FloatingBox, SaveButton },
  515. props: {
  516. songId: { type: String, default: null },
  517. // songType: { type: String, default: null },
  518. sector: { type: String, default: "admin" }
  519. },
  520. data() {
  521. return {
  522. songDataLoaded: false,
  523. focusedElementBefore: null,
  524. discogsQuery: "",
  525. youtubeVideoDuration: 0.0,
  526. youtubeVideoCurrentTime: 0.0,
  527. youtubeVideoNote: "",
  528. useHTTPS: false,
  529. discogs: {
  530. apiResults: [],
  531. page: 1,
  532. pages: 1,
  533. disableLoadMore: false
  534. },
  535. volumeSliderValue: 0,
  536. artistInputValue: "",
  537. genreInputValue: "",
  538. artistInputFocussed: false,
  539. genreInputFocussed: false,
  540. genreAutosuggestContainerFocussed: false,
  541. artistAutosuggestContainerFocussed: false,
  542. keydownArtistInputTimeout: 0,
  543. keydownGenreInputTimeout: 0,
  544. artistAutosuggestItems: [],
  545. genreAutosuggestItems: [],
  546. activityWatchVideoDataInterval: null,
  547. activityWatchVideoLastStatus: "",
  548. activityWatchVideoLastStartDuration: "",
  549. genres: [
  550. "Blues",
  551. "Country",
  552. "Disco",
  553. "Funk",
  554. "Hip-Hop",
  555. "Jazz",
  556. "Metal",
  557. "Oldies",
  558. "Other",
  559. "Pop",
  560. "Rap",
  561. "Reggae",
  562. "Rock",
  563. "Techno",
  564. "Trance",
  565. "Classical",
  566. "Instrumental",
  567. "House",
  568. "Electronic",
  569. "Christian Rap",
  570. "Lo-Fi",
  571. "Musical",
  572. "Rock 'n' Roll",
  573. "Opera",
  574. "Drum & Bass",
  575. "Club-House",
  576. "Indie",
  577. "Heavy Metal",
  578. "Christian rock",
  579. "Dubstep"
  580. ]
  581. };
  582. },
  583. computed: {
  584. ...mapState("modals/editSong", {
  585. video: state => state.video,
  586. song: state => state.song
  587. }),
  588. ...mapState("modalVisibility", {
  589. modals: state => state.modals.admin
  590. }),
  591. ...mapGetters({
  592. socket: "websockets/getSocket"
  593. })
  594. },
  595. watch: {
  596. /* eslint-disable */
  597. "song.duration": function () {
  598. this.drawCanvas();
  599. },
  600. "song.skipDuration": function () {
  601. this.drawCanvas();
  602. }
  603. /* eslint-enable */
  604. },
  605. async mounted() {
  606. // if (this.modals.editSong = false) this.video.player.stopVideo();
  607. // this.loadVideoById(
  608. // this.song.songId,
  609. // this.song.skipDuration
  610. // );
  611. this.activityWatchVideoDataInterval = setInterval(() => {
  612. this.sendActivityWatchVideoData();
  613. }, 1000);
  614. this.useHTTPS = await lofig.get("cookie.secure");
  615. this.socket.dispatch(
  616. `songs.getSongFromMusareId`,
  617. this.song._id,
  618. res => {
  619. if (res.status === "success") {
  620. const { song } = res.data;
  621. // this.song = { ...song };
  622. // if (this.song.discogs === undefined)
  623. // this.song.discogs = null;
  624. this.editSong(song);
  625. this.songDataLoaded = true;
  626. // this.edit(res.data.song);
  627. this.discogsQuery = this.song.title;
  628. this.interval = setInterval(() => {
  629. if (
  630. this.song.duration !== -1 &&
  631. this.video.paused === false &&
  632. this.playerReady &&
  633. this.video.player.getCurrentTime() -
  634. this.song.skipDuration >
  635. this.song.duration
  636. ) {
  637. this.video.paused = true;
  638. this.video.player.stopVideo();
  639. this.drawCanvas();
  640. }
  641. if (this.playerReady) {
  642. this.youtubeVideoCurrentTime = this.video.player
  643. .getCurrentTime()
  644. .toFixed(3);
  645. }
  646. if (this.video.paused === false) this.drawCanvas();
  647. }, 200);
  648. this.video.player = new window.YT.Player("editSongPlayer", {
  649. height: 298,
  650. width: 530,
  651. videoId: this.song.songId,
  652. host: "https://www.youtube-nocookie.com",
  653. playerVars: {
  654. controls: 0,
  655. iv_load_policy: 3,
  656. rel: 0,
  657. showinfo: 0,
  658. autoplay: 1
  659. },
  660. startSeconds: this.song.skipDuration,
  661. events: {
  662. onReady: () => {
  663. let volume = parseInt(
  664. localStorage.getItem("volume")
  665. );
  666. volume =
  667. typeof volume === "number" ? volume : 20;
  668. console.log(
  669. `Seekto: ${this.song.skipDuration}`
  670. );
  671. this.video.player.seekTo(
  672. this.song.skipDuration
  673. );
  674. this.video.player.setVolume(volume);
  675. if (volume > 0) this.video.player.unMute();
  676. this.youtubeVideoDuration = this.video.player
  677. .getDuration()
  678. .toFixed(3);
  679. this.youtubeVideoNote = "(~)";
  680. this.playerReady = true;
  681. this.drawCanvas();
  682. },
  683. onStateChange: event => {
  684. this.drawCanvas();
  685. if (event.data === 1) {
  686. if (!this.video.autoPlayed) {
  687. this.video.autoPlayed = true;
  688. return this.video.player.stopVideo();
  689. }
  690. this.video.paused = false;
  691. let youtubeDuration = this.video.player.getDuration();
  692. this.youtubeVideoDuration = youtubeDuration.toFixed(
  693. 3
  694. );
  695. this.youtubeVideoNote = "";
  696. if (this.song.duration === -1)
  697. this.song.duration = youtubeDuration;
  698. youtubeDuration -= this.song.skipDuration;
  699. if (
  700. this.song.duration >
  701. youtubeDuration + 1
  702. ) {
  703. this.video.player.stopVideo();
  704. this.video.paused = true;
  705. return new Toast(
  706. "Video can't play. Specified duration is bigger than the YouTube song duration."
  707. );
  708. }
  709. if (this.song.duration <= 0) {
  710. this.video.player.stopVideo();
  711. this.video.paused = true;
  712. return new Toast(
  713. "Video can't play. Specified duration has to be more than 0 seconds."
  714. );
  715. }
  716. if (
  717. this.video.player.getCurrentTime() <
  718. this.song.skipDuration
  719. ) {
  720. return this.video.player.seekTo(
  721. this.song.skipDuration
  722. );
  723. }
  724. } else if (event.data === 2) {
  725. this.video.paused = true;
  726. }
  727. return false;
  728. }
  729. }
  730. });
  731. } else {
  732. new Toast("Song with that ID not found");
  733. this.closeModal({
  734. sector: this.sector,
  735. modal: "editSong"
  736. });
  737. }
  738. }
  739. );
  740. let volume = parseFloat(localStorage.getItem("volume"));
  741. volume =
  742. typeof volume === "number" && !Number.isNaN(volume) ? volume : 20;
  743. localStorage.setItem("volume", volume);
  744. this.volumeSliderValue = volume * 100;
  745. keyboardShortcuts.registerShortcut("editSong.pauseResumeVideo", {
  746. keyCode: 101,
  747. preventDefault: true,
  748. handler: () => {
  749. if (this.video.paused) this.settings("play");
  750. else this.settings("pause");
  751. }
  752. });
  753. keyboardShortcuts.registerShortcut("editSong.stopVideo", {
  754. keyCode: 101,
  755. ctrl: true,
  756. preventDefault: true,
  757. handler: () => {
  758. this.settings("stop");
  759. }
  760. });
  761. keyboardShortcuts.registerShortcut("editSong.skipToLast10Secs", {
  762. keyCode: 102,
  763. preventDefault: true,
  764. handler: () => {
  765. this.settings("skipToLast10Secs");
  766. }
  767. });
  768. keyboardShortcuts.registerShortcut("editSong.lowerVolumeLarge", {
  769. keyCode: 98,
  770. preventDefault: true,
  771. handler: () => {
  772. this.volumeSliderValue = Math.max(
  773. 0,
  774. this.volumeSliderValue - 1000
  775. );
  776. this.changeVolume();
  777. }
  778. });
  779. keyboardShortcuts.registerShortcut("editSong.lowerVolumeSmall", {
  780. keyCode: 98,
  781. ctrl: true,
  782. preventDefault: true,
  783. handler: () => {
  784. this.volumeSliderValue = Math.max(
  785. 0,
  786. this.volumeSliderValue - 100
  787. );
  788. this.changeVolume();
  789. }
  790. });
  791. keyboardShortcuts.registerShortcut("editSong.increaseVolumeLarge", {
  792. keyCode: 104,
  793. preventDefault: true,
  794. handler: () => {
  795. this.volumeSliderValue = Math.min(
  796. 10000,
  797. this.volumeSliderValue + 1000
  798. );
  799. this.changeVolume();
  800. }
  801. });
  802. keyboardShortcuts.registerShortcut("editSong.increaseVolumeSmall", {
  803. keyCode: 104,
  804. ctrl: true,
  805. preventDefault: true,
  806. handler: () => {
  807. this.volumeSliderValue = Math.min(
  808. 10000,
  809. this.volumeSliderValue + 100
  810. );
  811. this.changeVolume();
  812. }
  813. });
  814. keyboardShortcuts.registerShortcut("editSong.save", {
  815. keyCode: 83,
  816. ctrl: true,
  817. preventDefault: true,
  818. handler: () => {
  819. this.save(this.song, false);
  820. }
  821. });
  822. keyboardShortcuts.registerShortcut("editSong.close", {
  823. keyCode: 88,
  824. ctrl: true,
  825. preventDefault: true,
  826. handler: () => {
  827. this.closeModal({
  828. sector: this.sector,
  829. modal: "editSong"
  830. });
  831. setTimeout(() => {
  832. window.focusedElementBefore.focus();
  833. }, 500);
  834. }
  835. });
  836. keyboardShortcuts.registerShortcut("editSong.focusTitle", {
  837. keyCode: 36,
  838. preventDefault: true,
  839. handler: () => {
  840. document.getElementById("title-input").focus();
  841. }
  842. });
  843. keyboardShortcuts.registerShortcut("editSong.focusDiscogs", {
  844. keyCode: 35,
  845. preventDefault: true,
  846. handler: () => {
  847. document.getElementById("discogs-input").focus();
  848. }
  849. });
  850. keyboardShortcuts.registerShortcut("editSong.useAllDiscogs", {
  851. keyCode: 68,
  852. alt: true,
  853. ctrl: true,
  854. preventDefault: true,
  855. handler: () => {
  856. this.getAlbumData("title");
  857. this.getAlbumData("albumArt");
  858. this.getAlbumData("artists");
  859. this.getAlbumData("genres");
  860. }
  861. });
  862. keyboardShortcuts.registerShortcut("editSong.resetDuration", {
  863. keyCode: 82,
  864. alt: true,
  865. ctrl: true,
  866. preventDefault: true,
  867. handler: () => {
  868. this.fillDuration();
  869. }
  870. });
  871. /*
  872. editSong.pauseResume - Num 5 - Pause/resume song
  873. editSong.stopVideo - Ctrl - Num 5 - Stop
  874. editSong.skipToLast10Secs - Num 6 - Skip to last 10 seconds
  875. editSong.volumeDown5 - Num 2 - Volume down by 10
  876. editSong.volumeDown1 - Ctrl - Num 2 - Volume down by 1
  877. editSong.volumeUp5 - Num 8 - Volume up by 10
  878. editSong.volumeUp1 - Ctrl - Num 8 - Volume up by 1
  879. editSong.focusTitle - Home - Focus the title input
  880. editSong.focusDicogs - End - Focus the discogs input
  881. editSong.save - Ctrl - S - Saves song
  882. editSong.close - Ctrl - X - Closes modal
  883. editSong.useAllDiscogs - Ctrl - Alt - D - Sets all fields to the Discogs data
  884. editSong.resetDuration - Ctrl - Alt - R - Resets the duration
  885. Inside Discogs inputs: Ctrl - D - Sets this field to the Discogs data
  886. */
  887. },
  888. beforeDestroy() {
  889. this.playerReady = false;
  890. clearInterval(this.interval);
  891. clearInterval(this.activityWatchVideoDataInterval);
  892. const shortcutNames = [
  893. "editSong.pauseResume",
  894. "editSong.stopVideo",
  895. "editSong.skipToLast10Secs",
  896. "editSong.volumeDown5",
  897. "editSong.volumeDown1",
  898. "editSong.volumeUp5",
  899. "editSong.volumeUp1",
  900. "editSong.focusTitle",
  901. "editSong.focusDicogs",
  902. "editSong.save",
  903. "editSong.close",
  904. "editSong.useAllDiscogs",
  905. "editSong.resetDuration"
  906. ];
  907. shortcutNames.forEach(shortcutName => {
  908. keyboardShortcuts.unregisterShortcut(shortcutName);
  909. });
  910. },
  911. methods: {
  912. save(songToCopy, close) {
  913. const song = JSON.parse(JSON.stringify(songToCopy));
  914. let saveButtonRef = this.$refs.saveButton;
  915. if (close) saveButtonRef = this.$refs.saveAndCloseButton;
  916. if (!song.title) {
  917. saveButtonRef.handleFailedSave();
  918. return new Toast("Please fill in all fields");
  919. }
  920. if (!song.thumbnail) {
  921. saveButtonRef.handleFailedSave();
  922. return new Toast("Please fill in all fields");
  923. }
  924. // Duration
  925. if (
  926. Number(song.skipDuration) + Number(song.duration) >
  927. this.youtubeVideoDuration
  928. ) {
  929. saveButtonRef.handleFailedSave();
  930. return new Toast(
  931. "Duration can't be higher than the length of the video"
  932. );
  933. }
  934. // Title
  935. if (!validation.isLength(song.title, 1, 100)) {
  936. saveButtonRef.handleFailedSave();
  937. return new Toast(
  938. "Title must have between 1 and 100 characters."
  939. );
  940. }
  941. // Artists
  942. if (song.artists.length < 1 || song.artists.length > 10) {
  943. saveButtonRef.handleFailedSave();
  944. return new Toast(
  945. "Invalid artists. You must have at least 1 artist and a maximum of 10 artists."
  946. );
  947. }
  948. let error;
  949. song.artists.forEach(artist => {
  950. if (!validation.isLength(artist, 1, 64)) {
  951. error = "Artist must have between 1 and 64 characters.";
  952. return error;
  953. }
  954. if (artist === "NONE") {
  955. error =
  956. 'Invalid artist format. Artists are not allowed to be named "NONE".';
  957. return error;
  958. }
  959. return false;
  960. });
  961. if (error) {
  962. saveButtonRef.handleFailedSave();
  963. return new Toast(error);
  964. }
  965. // Genres
  966. error = undefined;
  967. song.genres.forEach(genre => {
  968. if (!validation.isLength(genre, 1, 32)) {
  969. error = "Genre must have between 1 and 32 characters.";
  970. return error;
  971. }
  972. if (!validation.regex.ascii.test(genre)) {
  973. error =
  974. "Invalid genre format. Only ascii characters are allowed.";
  975. return error;
  976. }
  977. return false;
  978. });
  979. if (song.genres.length < 1 || song.genres.length > 16)
  980. error = "You must have between 1 and 16 genres.";
  981. if (error) {
  982. saveButtonRef.handleFailedSave();
  983. return new Toast(error);
  984. }
  985. // Thumbnail
  986. if (!validation.isLength(song.thumbnail, 1, 256)) {
  987. saveButtonRef.handleFailedSave();
  988. return new Toast(
  989. "Thumbnail must have between 8 and 256 characters."
  990. );
  991. }
  992. if (this.useHTTPS && song.thumbnail.indexOf("https://") !== 0) {
  993. saveButtonRef.handleFailedSave();
  994. return new Toast('Thumbnail must start with "https://".');
  995. }
  996. if (
  997. !this.useHTTPS &&
  998. song.thumbnail.indexOf("http://") !== 0 &&
  999. song.thumbnail.indexOf("https://") !== 0
  1000. ) {
  1001. saveButtonRef.handleFailedSave();
  1002. return new Toast('Thumbnail must start with "http://".');
  1003. }
  1004. saveButtonRef.status = "disabled";
  1005. return this.socket.dispatch(`songs.update`, song._id, song, res => {
  1006. new Toast(res.message);
  1007. if (res.status === "success")
  1008. saveButtonRef.handleSuccessfulSave();
  1009. else saveButtonRef.handleFailedSave();
  1010. if (close)
  1011. this.closeModal({
  1012. sector: this.sector,
  1013. modal: "editSong"
  1014. });
  1015. });
  1016. },
  1017. toggleAPIResult(index) {
  1018. const apiResult = this.discogs.apiResults[index];
  1019. if (apiResult.expanded === true) apiResult.expanded = false;
  1020. else if (apiResult.gotMoreInfo === true) apiResult.expanded = true;
  1021. else {
  1022. fetch(apiResult.album.resourceUrl)
  1023. .then(response => {
  1024. return response.json();
  1025. })
  1026. .then(data => {
  1027. apiResult.album.artists = [];
  1028. apiResult.album.artistIds = [];
  1029. const artistRegex = new RegExp(" \\([0-9]+\\)$");
  1030. apiResult.dataQuality = data.data_quality;
  1031. data.artists.forEach(artist => {
  1032. apiResult.album.artists.push(
  1033. artist.name.replace(artistRegex, "")
  1034. );
  1035. apiResult.album.artistIds.push(artist.id);
  1036. });
  1037. apiResult.tracks = data.tracklist.map(track => {
  1038. return {
  1039. position: track.position,
  1040. title: track.title
  1041. };
  1042. });
  1043. apiResult.expanded = true;
  1044. apiResult.gotMoreInfo = true;
  1045. });
  1046. }
  1047. },
  1048. fillDuration() {
  1049. this.song.duration =
  1050. this.youtubeVideoDuration - this.song.skipDuration;
  1051. },
  1052. getAlbumData(type) {
  1053. if (!this.song.discogs) return;
  1054. if (type === "title")
  1055. this.updateSongField({
  1056. field: "title",
  1057. value: this.song.discogs.track.title
  1058. });
  1059. if (type === "albumArt")
  1060. this.updateSongField({
  1061. field: "thumbnail",
  1062. value: this.song.discogs.album.albumArt
  1063. });
  1064. if (type === "genres")
  1065. this.updateSongField({
  1066. field: "genres",
  1067. value: JSON.parse(
  1068. JSON.stringify(this.song.discogs.album.genres)
  1069. )
  1070. });
  1071. if (type === "artists")
  1072. this.updateSongField({
  1073. field: "artists",
  1074. value: JSON.parse(
  1075. JSON.stringify(this.song.discogs.album.artists)
  1076. )
  1077. });
  1078. },
  1079. searchDiscogsForPage(page) {
  1080. const query = this.discogsQuery;
  1081. this.socket.dispatch("apis.searchDiscogs", query, page, res => {
  1082. if (res.status === "success") {
  1083. if (page === 1)
  1084. new Toast(
  1085. `Successfully searched. Got ${res.results.length} results.`
  1086. );
  1087. else
  1088. new Toast(
  1089. `Successfully got ${res.results.length} more results.`
  1090. );
  1091. if (page === 1) {
  1092. this.discogs.apiResults = [];
  1093. }
  1094. this.discogs.pages = res.pages;
  1095. this.discogs.apiResults = this.discogs.apiResults.concat(
  1096. res.results.map(result => {
  1097. const type =
  1098. result.type.charAt(0).toUpperCase() +
  1099. result.type.slice(1);
  1100. return {
  1101. expanded: false,
  1102. gotMoreInfo: false,
  1103. album: {
  1104. id: result.id,
  1105. title: result.title,
  1106. type,
  1107. year: result.year,
  1108. genres: result.genre,
  1109. albumArt: result.cover_image,
  1110. resourceUrl: result.resource_url
  1111. }
  1112. };
  1113. })
  1114. );
  1115. this.discogs.page = page;
  1116. this.discogs.disableLoadMore = false;
  1117. } else new Toast(res.message);
  1118. });
  1119. },
  1120. loadNextDiscogsPage() {
  1121. this.discogs.disableLoadMore = true;
  1122. this.searchDiscogsForPage(this.discogs.page + 1);
  1123. },
  1124. onDiscogsQueryChange() {
  1125. this.discogs.page = 1;
  1126. this.discogs.pages = 1;
  1127. this.discogs.apiResults = [];
  1128. this.discogs.disableLoadMore = false;
  1129. },
  1130. selectTrack(apiResultIndex, trackIndex) {
  1131. const apiResult = JSON.parse(
  1132. JSON.stringify(this.discogs.apiResults[apiResultIndex])
  1133. );
  1134. apiResult.track = apiResult.tracks[trackIndex];
  1135. delete apiResult.tracks;
  1136. delete apiResult.expanded;
  1137. delete apiResult.gotMoreInfo;
  1138. this.selectDiscogsInfo(apiResult);
  1139. },
  1140. blurArtistInput() {
  1141. this.artistInputFocussed = false;
  1142. },
  1143. focusArtistInput() {
  1144. this.artistInputFocussed = true;
  1145. },
  1146. blurArtistContainer() {
  1147. this.artistAutosuggestContainerFocussed = false;
  1148. },
  1149. focusArtistContainer() {
  1150. this.artistAutosuggestContainerFocussed = true;
  1151. },
  1152. keydownArtistInput() {
  1153. clearTimeout(this.keydownArtistInputTimeout);
  1154. this.keydownArtistInputTimeout = setTimeout(() => {
  1155. // Do things here to query the artist
  1156. }, 1000);
  1157. },
  1158. selectArtistAutosuggest(value) {
  1159. this.artistInputValue = value;
  1160. },
  1161. blurGenreInput() {
  1162. this.genreInputFocussed = false;
  1163. },
  1164. focusGenreInput() {
  1165. this.genreInputFocussed = true;
  1166. },
  1167. blurGenreContainer() {
  1168. this.genreAutosuggestContainerFocussed = false;
  1169. },
  1170. focusGenreContainer() {
  1171. this.genreAutosuggestContainerFocussed = true;
  1172. },
  1173. keydownGenreInput() {
  1174. clearTimeout(this.keydownGenreInputTimeout);
  1175. this.keydownGenreInputTimeout = setTimeout(() => {
  1176. if (this.genreInputValue.length > 1) {
  1177. this.genreAutosuggestItems = this.genres.filter(genre => {
  1178. return genre
  1179. .toLowerCase()
  1180. .startsWith(this.genreInputValue.toLowerCase());
  1181. });
  1182. } else this.genreAutosuggestItems = [];
  1183. }, 1000);
  1184. },
  1185. selectGenreAutosuggest(value) {
  1186. this.genreInputValue = value;
  1187. },
  1188. settings(type) {
  1189. switch (type) {
  1190. default:
  1191. break;
  1192. case "stop":
  1193. this.stopVideo();
  1194. this.pauseVideo(true);
  1195. break;
  1196. case "pause":
  1197. this.pauseVideo(true);
  1198. break;
  1199. case "play":
  1200. this.pauseVideo(false);
  1201. break;
  1202. case "skipToLast10Secs":
  1203. if (this.video.paused) this.pauseVideo(false);
  1204. this.video.player.seekTo(
  1205. this.song.duration - 10 + this.song.skipDuration
  1206. );
  1207. break;
  1208. }
  1209. },
  1210. changeVolume() {
  1211. const volume = this.volumeSliderValue;
  1212. localStorage.setItem("volume", volume / 100);
  1213. this.video.player.setVolume(volume / 100);
  1214. if (volume > 0) this.video.player.unMute();
  1215. },
  1216. addTag(type) {
  1217. if (type === "genres") {
  1218. const genre = document
  1219. .getElementById("new-genre")
  1220. .value.toLowerCase()
  1221. .trim();
  1222. if (this.song.genres.indexOf(genre) !== -1)
  1223. return new Toast("Genre already exists");
  1224. if (genre) {
  1225. this.song.genres.push(genre);
  1226. document.getElementById("new-genre").value = "";
  1227. return false;
  1228. }
  1229. return new Toast("Genre cannot be empty");
  1230. }
  1231. if (type === "artists") {
  1232. const artist = document.getElementById("new-artist").value;
  1233. if (this.song.artists.indexOf(artist) !== -1)
  1234. return new Toast("Artist already exists");
  1235. if (document.getElementById("new-artist").value !== "") {
  1236. this.song.artists.push(artist);
  1237. document.getElementById("new-artist").value = "";
  1238. return false;
  1239. }
  1240. return new Toast("Artist cannot be empty");
  1241. }
  1242. return false;
  1243. },
  1244. removeTag(type, index) {
  1245. if (type === "genres") this.song.genres.splice(index, 1);
  1246. else if (type === "artists") this.song.artists.splice(index, 1);
  1247. },
  1248. drawCanvas() {
  1249. const canvasElement = document.getElementById("durationCanvas");
  1250. const ctx = canvasElement.getContext("2d");
  1251. const videoDuration = Number(this.youtubeVideoDuration);
  1252. const skipDuration = Number(this.song.skipDuration);
  1253. const duration = Number(this.song.duration);
  1254. const afterDuration = videoDuration - (skipDuration + duration);
  1255. const width = 530;
  1256. const currentTime =
  1257. this.video.player && this.video.player.getCurrentTime
  1258. ? this.video.player.getCurrentTime()
  1259. : 0;
  1260. const widthSkipDuration = (skipDuration / videoDuration) * width;
  1261. const widthDuration = (duration / videoDuration) * width;
  1262. const widthAfterDuration = (afterDuration / videoDuration) * width;
  1263. const widthCurrentTime = (currentTime / videoDuration) * width;
  1264. const skipDurationColor = "#F42003";
  1265. const durationColor = "#03A9F4";
  1266. const afterDurationColor = "#41E841";
  1267. const currentDurationColor = "#3b25e8";
  1268. ctx.fillStyle = skipDurationColor;
  1269. ctx.fillRect(0, 0, widthSkipDuration, 20);
  1270. ctx.fillStyle = durationColor;
  1271. ctx.fillRect(widthSkipDuration, 0, widthDuration, 20);
  1272. ctx.fillStyle = afterDurationColor;
  1273. ctx.fillRect(
  1274. widthSkipDuration + widthDuration,
  1275. 0,
  1276. widthAfterDuration,
  1277. 20
  1278. );
  1279. ctx.fillStyle = currentDurationColor;
  1280. ctx.fillRect(widthCurrentTime, 0, 1, 20);
  1281. },
  1282. toggleGenreHelper() {
  1283. this.$refs.genreHelper.toggleBox();
  1284. },
  1285. resetGenreHelper() {
  1286. this.$refs.genreHelper.resetBox();
  1287. },
  1288. sendActivityWatchVideoData() {
  1289. if (!this.video.paused) {
  1290. if (this.activityWatchVideoLastStatus !== "playing") {
  1291. this.activityWatchVideoLastStatus = "playing";
  1292. if (
  1293. this.song.skipDuration > 0 &&
  1294. parseFloat(this.youtubeVideoCurrentTime) === 0
  1295. ) {
  1296. this.activityWatchVideoLastStartDuration = Math.floor(
  1297. this.song.skipDuration +
  1298. parseFloat(this.youtubeVideoCurrentTime)
  1299. );
  1300. } else {
  1301. this.activityWatchVideoLastStartDuration = Math.floor(
  1302. parseFloat(this.youtubeVideoCurrentTime)
  1303. );
  1304. }
  1305. }
  1306. const videoData = {
  1307. title: this.song.title,
  1308. artists: this.song.artists
  1309. ? this.song.artists.join(", ")
  1310. : null,
  1311. youtubeId: this.song.songId,
  1312. muted: this.muted,
  1313. volume: this.volumeSliderValue / 100,
  1314. startedDuration:
  1315. this.activityWatchVideoLastStartDuration <= 0
  1316. ? 0
  1317. : this.activityWatchVideoLastStartDuration,
  1318. source: `editSong#${this.song.songId}`,
  1319. hostname: window.location.hostname
  1320. };
  1321. aw.sendVideoData(videoData);
  1322. } else {
  1323. this.activityWatchVideoLastStatus = "not_playing";
  1324. }
  1325. },
  1326. ...mapActions("modals/editSong", [
  1327. "stopVideo",
  1328. "loadVideoById",
  1329. "pauseVideo",
  1330. "getCurrentTime",
  1331. "editSong",
  1332. "updateSongField",
  1333. "selectDiscogsInfo"
  1334. ]),
  1335. ...mapActions("modalVisibility", ["closeModal"])
  1336. }
  1337. };
  1338. </script>
  1339. <style lang="scss">
  1340. .song-modal {
  1341. .modal-card-title {
  1342. text-align: center;
  1343. margin-left: 24px;
  1344. }
  1345. .modal-card {
  1346. width: 1160px;
  1347. height: 100%;
  1348. .modal-card-body {
  1349. padding: 16px;
  1350. }
  1351. .modal-card-foot {
  1352. justify-content: flex-end;
  1353. div {
  1354. display: flex;
  1355. div {
  1356. margin-right: 5px;
  1357. }
  1358. }
  1359. }
  1360. }
  1361. }
  1362. </style>
  1363. <style lang="scss" scoped>
  1364. .night-mode {
  1365. .edit-section,
  1366. .api-section,
  1367. .api-result,
  1368. .player-footer {
  1369. background-color: var(--dark-grey-3) !important;
  1370. }
  1371. .api-result .tracks .track:hover,
  1372. .selected-discogs-info {
  1373. background-color: var(--dark-grey-2) !important;
  1374. }
  1375. .label,
  1376. p,
  1377. strong {
  1378. color: var(--light-grey-2);
  1379. }
  1380. }
  1381. .modal-card-body > div {
  1382. display: flex;
  1383. height: 100%;
  1384. }
  1385. .left-section {
  1386. display: flex;
  1387. flex-direction: column;
  1388. margin-right: 16px;
  1389. .top-section {
  1390. display: flex;
  1391. .player-section {
  1392. width: 530px;
  1393. display: flex;
  1394. flex-direction: column;
  1395. .player-footer {
  1396. background-color: var(--light-grey);
  1397. border: 1px rgba(163, 224, 255, 0.75) solid;
  1398. border-radius: 0px 0px 5px 5px;
  1399. display: flex;
  1400. justify-content: space-between;
  1401. height: 54px;
  1402. > * {
  1403. width: 33.3%;
  1404. display: flex;
  1405. align-items: center;
  1406. }
  1407. .player-footer-left {
  1408. flex: 1;
  1409. .material-icons {
  1410. font-size: 38px;
  1411. cursor: pointer;
  1412. }
  1413. .player-play-pause {
  1414. color: var(--primary-color);
  1415. }
  1416. .player-stop {
  1417. color: var(--red);
  1418. }
  1419. .player-fast-forward {
  1420. color: var(--green);
  1421. }
  1422. }
  1423. .player-footer-center {
  1424. justify-content: center;
  1425. align-items: center;
  1426. flex: 2;
  1427. font-size: 21px;
  1428. font-weight: 400;
  1429. img {
  1430. height: 21px;
  1431. margin-right: 12px;
  1432. filter: invert(26%) sepia(54%) saturate(6317%)
  1433. hue-rotate(2deg) brightness(92%) contrast(115%);
  1434. }
  1435. }
  1436. .player-footer-right {
  1437. justify-content: right;
  1438. flex: 1;
  1439. #volumeSlider {
  1440. width: 126px;
  1441. margin-right: 10px;
  1442. background-color: var(--light-grey);
  1443. }
  1444. }
  1445. }
  1446. }
  1447. .thumbnail-preview {
  1448. width: 189px;
  1449. height: 189px;
  1450. margin-left: 16px;
  1451. }
  1452. }
  1453. .edit-section {
  1454. width: 735px;
  1455. background-color: var(--light-grey);
  1456. border: 1px rgba(163, 224, 255, 0.75) solid;
  1457. margin-top: 16px;
  1458. flex: 1;
  1459. overflow: auto;
  1460. border-radius: 5px;
  1461. .album-get-button {
  1462. background-color: var(--purple);
  1463. color: var(--white);
  1464. width: 32px;
  1465. text-align: center;
  1466. border-width: 0;
  1467. }
  1468. .duration-fill-button {
  1469. background-color: var(--red);
  1470. color: var(--white);
  1471. width: 32px;
  1472. text-align: center;
  1473. border-width: 0;
  1474. }
  1475. .add-button {
  1476. background-color: var(--primary-color) !important;
  1477. width: 32px;
  1478. i {
  1479. font-size: 32px;
  1480. }
  1481. }
  1482. .album-get-button,
  1483. .duration-fill-button,
  1484. .add-button {
  1485. &:focus,
  1486. &:hover {
  1487. filter: contrast(0.75);
  1488. border: 1px solid var(--black) !important;
  1489. }
  1490. }
  1491. > div {
  1492. margin: 16px;
  1493. }
  1494. input {
  1495. width: 100%;
  1496. }
  1497. .title-container {
  1498. width: calc((100% - 32px) / 2);
  1499. }
  1500. .duration-container {
  1501. margin-right: 16px;
  1502. margin-left: 16px;
  1503. width: calc((100% - 32px) / 4);
  1504. }
  1505. .skip-duration-container {
  1506. width: calc((100% - 32px) / 4);
  1507. }
  1508. .album-art-container {
  1509. width: 100%;
  1510. }
  1511. .artists-container {
  1512. width: calc((100% - 32px) / 3);
  1513. position: relative;
  1514. }
  1515. .genres-container {
  1516. width: calc((100% - 32px) / 3);
  1517. margin-left: 16px;
  1518. margin-right: 16px;
  1519. position: relative;
  1520. label {
  1521. display: flex;
  1522. i {
  1523. font-size: 15px;
  1524. align-self: center;
  1525. margin-left: 5px;
  1526. color: var(--primary-color);
  1527. cursor: pointer;
  1528. -webkit-user-select: none;
  1529. -moz-user-select: none;
  1530. -ms-user-select: none;
  1531. user-select: none;
  1532. }
  1533. }
  1534. }
  1535. .youtube-id-container {
  1536. width: calc((100% - 32px) / 3);
  1537. }
  1538. .list-item-circle {
  1539. background-color: var(--primary-color);
  1540. width: 16px;
  1541. height: 16px;
  1542. border-radius: 8px;
  1543. cursor: pointer;
  1544. margin-right: 8px;
  1545. float: left;
  1546. -webkit-touch-callout: none;
  1547. -webkit-user-select: none;
  1548. -khtml-user-select: none;
  1549. -moz-user-select: none;
  1550. -ms-user-select: none;
  1551. user-select: none;
  1552. i {
  1553. color: var(--primary-color);
  1554. font-size: 14px;
  1555. margin-left: 1px;
  1556. }
  1557. }
  1558. .list-item-circle:hover,
  1559. .list-item-circle:focus {
  1560. i {
  1561. color: var(--white);
  1562. }
  1563. }
  1564. .list-item > p {
  1565. line-height: 16px;
  1566. word-wrap: break-word;
  1567. width: calc(100% - 24px);
  1568. left: 24px;
  1569. float: left;
  1570. margin-bottom: 8px;
  1571. }
  1572. .list-item:last-child > p {
  1573. margin-bottom: 0;
  1574. }
  1575. .autosuggest-container {
  1576. position: absolute;
  1577. background: var(--white);
  1578. width: calc(100% + 1px);
  1579. top: 57px;
  1580. z-index: 200;
  1581. overflow: auto;
  1582. max-height: 100%;
  1583. clear: both;
  1584. .autosuggest-item {
  1585. padding: 8px;
  1586. display: block;
  1587. border: 1px solid var(--light-grey-2);
  1588. margin-top: -1px;
  1589. line-height: 16px;
  1590. cursor: pointer;
  1591. -webkit-user-select: none;
  1592. -ms-user-select: none;
  1593. -moz-user-select: none;
  1594. user-select: none;
  1595. }
  1596. .autosuggest-item:hover,
  1597. .autosuggest-item:focus {
  1598. background-color: var(--light-grey);
  1599. }
  1600. .autosuggest-item:first-child {
  1601. border-top: none;
  1602. }
  1603. .autosuggest-item:last-child {
  1604. border-radius: 0 0 3px 3px;
  1605. }
  1606. }
  1607. }
  1608. }
  1609. .right-section {
  1610. display: flex;
  1611. flex-wrap: wrap;
  1612. .api-section {
  1613. width: 376px;
  1614. background-color: var(--light-grey);
  1615. border: 1px rgba(163, 224, 255, 0.75) solid;
  1616. border-radius: 5px;
  1617. padding: 16px;
  1618. overflow: auto;
  1619. height: 100%;
  1620. > label {
  1621. margin-top: 12px;
  1622. }
  1623. .top-container {
  1624. display: flex;
  1625. img {
  1626. height: 85px;
  1627. width: 85px;
  1628. }
  1629. .right-container {
  1630. padding: 8px;
  1631. display: flex;
  1632. flex-direction: column;
  1633. flex: 1;
  1634. .album-title {
  1635. flex: 1;
  1636. font-weight: 600;
  1637. }
  1638. .bottom-row {
  1639. display: flex;
  1640. flex-flow: row;
  1641. line-height: 15px;
  1642. img {
  1643. height: 15px;
  1644. align-self: end;
  1645. flex: 1;
  1646. user-select: none;
  1647. -moz-user-select: none;
  1648. -ms-user-select: none;
  1649. -webkit-user-select: none;
  1650. cursor: pointer;
  1651. }
  1652. p {
  1653. text-align: right;
  1654. }
  1655. .type-year {
  1656. font-size: 13px;
  1657. align-self: end;
  1658. }
  1659. }
  1660. }
  1661. }
  1662. .bottom-container {
  1663. padding: 12px;
  1664. .bottom-container-field {
  1665. line-height: 16px;
  1666. margin-bottom: 8px;
  1667. font-weight: 600;
  1668. span {
  1669. font-weight: 400;
  1670. }
  1671. }
  1672. .bottom-container-field:last-of-type {
  1673. margin-bottom: 0;
  1674. }
  1675. }
  1676. .selected-discogs-info {
  1677. background-color: var(--white);
  1678. border: 1px solid var(--purple);
  1679. border-radius: 5px;
  1680. margin-bottom: 16px;
  1681. .selected-discogs-info-none {
  1682. font-size: 18px;
  1683. text-align: center;
  1684. }
  1685. .bottom-row > p {
  1686. flex: 1;
  1687. }
  1688. }
  1689. .api-result {
  1690. background-color: var(--white);
  1691. border: 0.5px solid var(--primary-color);
  1692. border-radius: 5px;
  1693. margin-bottom: 16px;
  1694. }
  1695. button {
  1696. background-color: var(--primary-color) !important;
  1697. &:focus,
  1698. &:hover {
  1699. filter: contrast(0.75);
  1700. }
  1701. }
  1702. .tracks {
  1703. margin-top: 12px;
  1704. .track:first-child {
  1705. margin-top: 0;
  1706. border-radius: 3px 3px 0 0;
  1707. }
  1708. .track:last-child {
  1709. border-radius: 0 0 3px 3px;
  1710. }
  1711. .track {
  1712. border: 0.5px solid var(--black);
  1713. margin-top: -1px;
  1714. line-height: 16px;
  1715. display: flex;
  1716. cursor: pointer;
  1717. span {
  1718. font-weight: 600;
  1719. display: inline-block;
  1720. margin-top: 7px;
  1721. margin-bottom: 7px;
  1722. margin-left: 7px;
  1723. }
  1724. p {
  1725. display: inline-block;
  1726. margin: 7px;
  1727. flex: 1;
  1728. }
  1729. }
  1730. .track:hover,
  1731. .track:focus {
  1732. background-color: var(--light-grey);
  1733. }
  1734. }
  1735. .discogs-load-more {
  1736. margin-bottom: 8px;
  1737. }
  1738. }
  1739. }
  1740. .modal-card-foot .is-primary {
  1741. width: 200px;
  1742. }
  1743. input[type="range"] {
  1744. -webkit-appearance: none;
  1745. width: 100%;
  1746. margin: 8.5px 0;
  1747. }
  1748. input[type="range"]:focus {
  1749. outline-style: outset;
  1750. }
  1751. input[type="range"]::-webkit-slider-runnable-track {
  1752. width: 100%;
  1753. height: 3px;
  1754. cursor: pointer;
  1755. box-shadow: none;
  1756. background: var(--grey-3);
  1757. border-radius: none;
  1758. border: none;
  1759. }
  1760. input[type="range"]::-webkit-slider-thumb {
  1761. box-shadow: none;
  1762. border: none;
  1763. height: 20px;
  1764. width: 20px;
  1765. border-radius: 100px;
  1766. background: var(--primary-color);
  1767. cursor: pointer;
  1768. -webkit-appearance: none;
  1769. margin-top: -8.5px;
  1770. }
  1771. input[type="range"]:focus::-webkit-slider-runnable-track {
  1772. background: var(--grey-3);
  1773. }
  1774. input[type="range"]::-moz-range-track {
  1775. width: 100%;
  1776. height: 3px;
  1777. cursor: pointer;
  1778. box-shadow: none;
  1779. background: var(--grey-3);
  1780. border-radius: none;
  1781. border: none;
  1782. }
  1783. input[type="range"]::-moz-range-thumb {
  1784. box-shadow: none;
  1785. border: none;
  1786. height: 20px;
  1787. width: 20px;
  1788. border-radius: 100px;
  1789. background: var(--primary-color);
  1790. cursor: pointer;
  1791. }
  1792. input[type="range"]::-ms-track {
  1793. width: 100%;
  1794. height: 3px;
  1795. cursor: pointer;
  1796. background: transparent;
  1797. border-color: transparent;
  1798. color: transparent;
  1799. }
  1800. input[type="range"]::-ms-fill-lower {
  1801. background: var(--grey-2);
  1802. border: none;
  1803. border-radius: none;
  1804. box-shadow: none;
  1805. }
  1806. input[type="range"]::-ms-fill-upper {
  1807. background: var(--grey-3);
  1808. border: none;
  1809. border-radius: none;
  1810. box-shadow: none;
  1811. }
  1812. input[type="range"]::-ms-thumb {
  1813. box-shadow: none;
  1814. border: none;
  1815. height: 20px;
  1816. width: 20px;
  1817. border-radius: 100px;
  1818. background: var(--primary-color);
  1819. cursor: pointer;
  1820. height: 3px;
  1821. }
  1822. input[type="range"]:focus::-ms-fill-lower {
  1823. background: var(--grey-3);
  1824. }
  1825. input[type="range"]:focus::-ms-fill-upper {
  1826. background: var(--grey-3);
  1827. }
  1828. </style>