EditSong.vue 41 KB

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