EditSong.vue 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  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</i>
  88. </button>
  89. </p>
  90. </div>
  91. <div class="duration-container">
  92. <label class="label">Duration</label>
  93. <p class="control has-addons">
  94. <input
  95. class="input"
  96. type="text"
  97. v-model.number="editing.song.duration"
  98. />
  99. <button
  100. class="button duration-fill-button"
  101. v-on:click="fillDuration()"
  102. >
  103. <i class="material-icons">sync</i>
  104. </button>
  105. </p>
  106. </div>
  107. <div class="skip-duration-container">
  108. <label class="label">Skip duration</label>
  109. <p class="control">
  110. <input
  111. class="input"
  112. type="text"
  113. v-model.number="
  114. editing.song.skipDuration
  115. "
  116. />
  117. </p>
  118. </div>
  119. </div>
  120. <div class="control is-grouped">
  121. <div class="album-art-container">
  122. <label class="label">Album art</label>
  123. <p class="control has-addons">
  124. <input
  125. class="input"
  126. type="text"
  127. v-model="editing.song.thumbnail"
  128. />
  129. <button
  130. class="button album-get-button"
  131. v-on:click="getAlbumData('albumArt')"
  132. >
  133. <i class="material-icons">album</i>
  134. </button>
  135. </p>
  136. </div>
  137. </div>
  138. <div class="control is-grouped">
  139. <div class="artists-container">
  140. <label class="label">Artists</label>
  141. <p class="control has-addons">
  142. <input
  143. class="input"
  144. type="text"
  145. id="new-artist"
  146. v-model="artistInputValue"
  147. v-on:blur="blurArtistInput()"
  148. v-on:focus="focusArtistInput()"
  149. v-on:keydown="keydownArtistInput()"
  150. />
  151. <button
  152. class="button album-get-button"
  153. v-on:click="getAlbumData('artists')"
  154. >
  155. <i class="material-icons">album</i>
  156. </button>
  157. <button
  158. class="button is-info add-button"
  159. v-on:click="addTag('artists')"
  160. >
  161. <i class="material-icons">add</i>
  162. </button>
  163. </p>
  164. <div
  165. class="autosuggest-container"
  166. v-if="
  167. (artistInputFocussed ||
  168. artistAutosuggestContainerFocussed) &&
  169. artistAutosuggestItems.length > 0
  170. "
  171. @mouseover="focusArtistContainer()"
  172. @mouseleave="blurArtistContainer()"
  173. >
  174. <span
  175. class="autosuggest-item"
  176. tabindex="0"
  177. v-on:click="
  178. selectArtistAutosuggest(item)
  179. "
  180. v-for="(item,
  181. index) in artistAutosuggestItems"
  182. :key="index"
  183. >{{ item }}</span
  184. >
  185. </div>
  186. <div class="list-container">
  187. <div
  188. class="list-item"
  189. v-for="(artist, index) in editing.song
  190. .artists"
  191. :key="index"
  192. >
  193. <div
  194. class="list-item-circle"
  195. v-on:click="
  196. removeTag('artists', index)
  197. "
  198. >
  199. <i class="material-icons">close</i>
  200. </div>
  201. <p>{{ artist }}</p>
  202. </div>
  203. </div>
  204. </div>
  205. <div class="genres-container">
  206. <label class="label">
  207. <span>Genres</span>
  208. <i
  209. class="material-icons"
  210. @click="toggleGenreHelper"
  211. @dblclick="resetGenreHelper"
  212. >info</i
  213. >
  214. </label>
  215. <p class="control has-addons">
  216. <input
  217. class="input"
  218. type="text"
  219. id="new-genre"
  220. v-model="genreInputValue"
  221. v-on:blur="blurGenreInput()"
  222. v-on:focus="focusGenreInput()"
  223. v-on:keydown="keydownGenreInput()"
  224. />
  225. <button
  226. class="button album-get-button"
  227. v-on:click="getAlbumData('genres')"
  228. >
  229. <i class="material-icons">album</i>
  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. watch: {
  617. /* eslint-disable */
  618. "editing.song.duration": function() {
  619. this.drawCanvas();
  620. },
  621. "editing.song.skipDuration": function() {
  622. this.drawCanvas();
  623. }
  624. /* eslint-enable */
  625. },
  626. methods: {
  627. save(songToCopy, close) {
  628. const song = JSON.parse(JSON.stringify(songToCopy));
  629. if (!song.title)
  630. return Toast.methods.addToast(
  631. "Please fill in all fields",
  632. 8000
  633. );
  634. if (!song.thumbnail)
  635. return Toast.methods.addToast(
  636. "Please fill in all fields",
  637. 8000
  638. );
  639. // Duration
  640. if (
  641. Number(song.skipDuration) + Number(song.duration) >
  642. this.youtubeVideoDuration
  643. ) {
  644. return Toast.methods.addToast(
  645. "Duration can't be higher than the length of the video",
  646. 8000
  647. );
  648. }
  649. // Title
  650. if (!validation.isLength(song.title, 1, 100))
  651. return Toast.methods.addToast(
  652. "Title must have between 1 and 100 characters.",
  653. 8000
  654. );
  655. // Artists
  656. if (song.artists.length < 1 || song.artists.length > 10)
  657. return Toast.methods.addToast(
  658. "Invalid artists. You must have at least 1 artist and a maximum of 10 artists.",
  659. 8000
  660. );
  661. let error;
  662. song.artists.forEach(artist => {
  663. if (!validation.isLength(artist, 1, 64)) {
  664. error = "Artist must have between 1 and 64 characters.";
  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, 32)) {
  679. error = "Genre must have between 1 and 32 characters.";
  680. return error;
  681. }
  682. if (!validation.regex.ascii.test(genre)) {
  683. error =
  684. "Invalid genre format. Only ascii characters are allowed.";
  685. return error;
  686. }
  687. return false;
  688. });
  689. if (song.genres.length < 1 || song.genres.length > 16)
  690. error = "You must have between 1 and 16 genres.";
  691. if (error) return Toast.methods.addToast(error, 8000);
  692. // Thumbnail
  693. if (!validation.isLength(song.thumbnail, 1, 256))
  694. return Toast.methods.addToast(
  695. "Thumbnail must have between 8 and 256 characters.",
  696. 8000
  697. );
  698. if (this.useHTTPS && song.thumbnail.indexOf("https://") !== 0) {
  699. return Toast.methods.addToast(
  700. 'Thumbnail must start with "https://".',
  701. 8000
  702. );
  703. }
  704. if (
  705. !this.useHTTPS &&
  706. (song.thumbnail.indexOf("http://") !== 0 &&
  707. song.thumbnail.indexOf("https://") !== 0)
  708. ) {
  709. return Toast.methods.addToast(
  710. 'Thumbnail must start with "http://".',
  711. 8000
  712. );
  713. }
  714. return this.socket.emit(
  715. `${this.editing.type}.update`,
  716. song._id,
  717. song,
  718. res => {
  719. Toast.methods.addToast(res.message, 4000);
  720. if (res.status === "success") {
  721. this.songs.forEach(originalSong => {
  722. const updatedSong = song;
  723. if (originalSong._id === updatedSong._id) {
  724. Object.keys(originalSong).forEach(n => {
  725. updatedSong[n] = originalSong[n];
  726. return originalSong[n];
  727. });
  728. }
  729. });
  730. }
  731. if (close)
  732. this.closeModal({
  733. sector: "admin",
  734. modal: "editSong"
  735. });
  736. }
  737. );
  738. },
  739. toggleAPIResult(index) {
  740. const apiResult = this.discogs.apiResults[index];
  741. if (apiResult.expanded === true) apiResult.expanded = false;
  742. else if (apiResult.gotMoreInfo === true) apiResult.expanded = true;
  743. else {
  744. fetch(apiResult.album.resourceUrl)
  745. .then(response => {
  746. return response.json();
  747. })
  748. .then(data => {
  749. apiResult.album.artists = [];
  750. apiResult.album.artistIds = [];
  751. const artistRegex = new RegExp(" \\([0-9]+\\)$");
  752. apiResult.dataQuality = data.data_quality;
  753. data.artists.forEach(artist => {
  754. apiResult.album.artists.push(
  755. artist.name.replace(artistRegex, "")
  756. );
  757. apiResult.album.artistIds.push(artist.id);
  758. });
  759. apiResult.tracks = data.tracklist.map(track => {
  760. return {
  761. position: track.position,
  762. title: track.title
  763. };
  764. });
  765. apiResult.expanded = true;
  766. apiResult.gotMoreInfo = true;
  767. });
  768. }
  769. },
  770. fillDuration() {
  771. this.editing.song.duration =
  772. this.youtubeVideoDuration - this.editing.song.skipDuration;
  773. },
  774. getAlbumData(type) {
  775. if (!this.editing.song.discogs) return;
  776. if (type === "title")
  777. this.updateSongField({
  778. field: "title",
  779. value: this.editing.song.discogs.track.title
  780. });
  781. if (type === "albumArt")
  782. this.updateSongField({
  783. field: "thumbnail",
  784. value: this.editing.song.discogs.album.albumArt
  785. });
  786. if (type === "genres")
  787. this.updateSongField({
  788. field: "genres",
  789. value: JSON.parse(
  790. JSON.stringify(this.editing.song.discogs.album.genres)
  791. )
  792. });
  793. if (type === "artists")
  794. this.updateSongField({
  795. field: "artists",
  796. value: JSON.parse(
  797. JSON.stringify(this.editing.song.discogs.album.artists)
  798. )
  799. });
  800. },
  801. searchDiscogsForPage(page) {
  802. const query = this.discogsQuery;
  803. this.socket.emit("apis.searchDiscogs", query, page, res => {
  804. if (res.status === "success") {
  805. if (page === 1)
  806. Toast.methods.addToast(
  807. `Successfully searched. Got ${res.results.length} results.`,
  808. 4000
  809. );
  810. else
  811. Toast.methods.addToast(
  812. `Successfully got ${res.results.length} more results.`,
  813. 4000
  814. );
  815. if (page === 1) {
  816. this.discogs.apiResults = [];
  817. }
  818. this.discogs.pages = res.pages;
  819. this.discogs.apiResults = this.discogs.apiResults.concat(
  820. res.results.map(result => {
  821. const type =
  822. result.type.charAt(0).toUpperCase() +
  823. result.type.slice(1);
  824. return {
  825. expanded: false,
  826. gotMoreInfo: false,
  827. album: {
  828. id: result.id,
  829. title: result.title,
  830. type,
  831. year: result.year,
  832. genres: result.genre,
  833. albumArt: result.cover_image,
  834. resourceUrl: result.resource_url
  835. }
  836. };
  837. })
  838. );
  839. this.discogs.page = page;
  840. this.discogs.disableLoadMore = false;
  841. } else Toast.methods.addToast(res.message, 8000);
  842. });
  843. },
  844. loadNextDiscogsPage() {
  845. this.discogs.disableLoadMore = true;
  846. this.searchDiscogsForPage(this.discogs.page + 1);
  847. },
  848. onDiscogsQueryChange() {
  849. this.discogs.page = 1;
  850. this.discogs.pages = 1;
  851. this.discogs.apiResults = [];
  852. this.discogs.disableLoadMore = false;
  853. },
  854. selectTrack(apiResultIndex, trackIndex) {
  855. const apiResult = JSON.parse(
  856. JSON.stringify(this.discogs.apiResults[apiResultIndex])
  857. );
  858. apiResult.track = apiResult.tracks[trackIndex];
  859. delete apiResult.tracks;
  860. delete apiResult.expanded;
  861. delete apiResult.gotMoreInfo;
  862. this.selectDiscogsInfo(apiResult);
  863. },
  864. blurArtistInput() {
  865. this.artistInputFocussed = false;
  866. },
  867. focusArtistInput() {
  868. this.artistInputFocussed = true;
  869. },
  870. blurArtistContainer() {
  871. this.artistAutosuggestContainerFocussed = false;
  872. },
  873. focusArtistContainer() {
  874. this.artistAutosuggestContainerFocussed = true;
  875. },
  876. keydownArtistInput() {
  877. clearTimeout(this.keydownArtistInputTimeout);
  878. this.keydownArtistInputTimeout = setTimeout(() => {
  879. // Do things here to query the artist
  880. }, 1000);
  881. },
  882. selectArtistAutosuggest(value) {
  883. this.artistInputValue = value;
  884. },
  885. blurGenreInput() {
  886. this.genreInputFocussed = false;
  887. },
  888. focusGenreInput() {
  889. this.genreInputFocussed = true;
  890. },
  891. blurGenreContainer() {
  892. this.genreAutosuggestContainerFocussed = false;
  893. },
  894. focusGenreContainer() {
  895. this.genreAutosuggestContainerFocussed = true;
  896. },
  897. keydownGenreInput() {
  898. clearTimeout(this.keydownGenreInputTimeout);
  899. this.keydownGenreInputTimeout = setTimeout(() => {
  900. if (this.genreInputValue.length > 1) {
  901. this.genreAutosuggestItems = this.genres.filter(genre => {
  902. return genre
  903. .toLowerCase()
  904. .startsWith(this.genreInputValue.toLowerCase());
  905. });
  906. } else this.genreAutosuggestItems = [];
  907. }, 1000);
  908. },
  909. selectGenreAutosuggest(value) {
  910. this.genreInputValue = value;
  911. },
  912. settings(type) {
  913. switch (type) {
  914. default:
  915. break;
  916. case "stop":
  917. this.stopVideo();
  918. this.pauseVideo(true);
  919. break;
  920. case "pause":
  921. this.pauseVideo(true);
  922. break;
  923. case "play":
  924. this.pauseVideo(false);
  925. break;
  926. case "skipToLast10Secs":
  927. if (this.video.paused) this.pauseVideo(false);
  928. this.video.player.seekTo(
  929. this.editing.song.duration -
  930. 10 +
  931. this.editing.song.skipDuration
  932. );
  933. break;
  934. }
  935. },
  936. changeVolume() {
  937. const volume = document.getElementById("volumeSlider").value;
  938. localStorage.setItem("volume", volume);
  939. this.video.player.setVolume(volume);
  940. if (volume > 0) this.video.player.unMute();
  941. },
  942. addTag(type) {
  943. if (type === "genres") {
  944. const genre = document
  945. .getElementById("new-genre")
  946. .value.toLowerCase()
  947. .trim();
  948. if (this.editing.song.genres.indexOf(genre) !== -1)
  949. return Toast.methods.addToast("Genre already exists", 3000);
  950. if (genre) {
  951. this.editing.song.genres.push(genre);
  952. document.getElementById("new-genre").value = "";
  953. return false;
  954. }
  955. return Toast.methods.addToast("Genre cannot be empty", 3000);
  956. }
  957. if (type === "artists") {
  958. const artist = document.getElementById("new-artist").value;
  959. if (this.editing.song.artists.indexOf(artist) !== -1)
  960. return Toast.methods.addToast(
  961. "Artist already exists",
  962. 3000
  963. );
  964. if (document.getElementById("new-artist").value !== "") {
  965. this.editing.song.artists.push(artist);
  966. document.getElementById("new-artist").value = "";
  967. return false;
  968. }
  969. return Toast.methods.addToast("Artist cannot be empty", 3000);
  970. }
  971. return false;
  972. },
  973. removeTag(type, index) {
  974. if (type === "genres") this.editing.song.genres.splice(index, 1);
  975. else if (type === "artists")
  976. this.editing.song.artists.splice(index, 1);
  977. },
  978. drawCanvas() {
  979. const canvasElement = document.getElementById("durationCanvas");
  980. const ctx = canvasElement.getContext("2d");
  981. const videoDuration = Number(this.youtubeVideoDuration);
  982. const skipDuration = Number(this.editing.song.skipDuration);
  983. const duration = Number(this.editing.song.duration);
  984. const afterDuration = videoDuration - (skipDuration + duration);
  985. const width = 530;
  986. const currentTime = this.video.player.getCurrentTime();
  987. const widthSkipDuration = (skipDuration / videoDuration) * width;
  988. const widthDuration = (duration / videoDuration) * width;
  989. const widthAfterDuration = (afterDuration / videoDuration) * width;
  990. const widthCurrentTime = (currentTime / videoDuration) * width;
  991. const skipDurationColor = "#F42003";
  992. const durationColor = "#03A9F4";
  993. const afterDurationColor = "#41E841";
  994. const currentDurationColor = "#3b25e8";
  995. ctx.fillStyle = skipDurationColor;
  996. ctx.fillRect(0, 0, widthSkipDuration, 20);
  997. ctx.fillStyle = durationColor;
  998. ctx.fillRect(widthSkipDuration, 0, widthDuration, 20);
  999. ctx.fillStyle = afterDurationColor;
  1000. ctx.fillRect(
  1001. widthSkipDuration + widthDuration,
  1002. 0,
  1003. widthAfterDuration,
  1004. 20
  1005. );
  1006. ctx.fillStyle = currentDurationColor;
  1007. ctx.fillRect(widthCurrentTime, 0, 1, 20);
  1008. },
  1009. onDragGenreHelper(e) {
  1010. const e1 = e || window.event;
  1011. e1.preventDefault();
  1012. this.genreHelper.pos3 = e1.clientX;
  1013. this.genreHelper.pos4 = e1.clientY;
  1014. document.onmousemove = e => {
  1015. const e2 = e || window.event;
  1016. e2.preventDefault();
  1017. // calculate the new cursor position:
  1018. this.genreHelper.pos1 = this.genreHelper.pos3 - e.clientX;
  1019. this.genreHelper.pos2 = this.genreHelper.pos4 - e.clientY;
  1020. this.genreHelper.pos3 = e.clientX;
  1021. this.genreHelper.pos4 = e.clientY;
  1022. // set the element's new position:
  1023. this.genreHelper.top =
  1024. this.genreHelper.top - this.genreHelper.pos2;
  1025. this.genreHelper.left =
  1026. this.genreHelper.left - this.genreHelper.pos1;
  1027. };
  1028. document.onmouseup = () => {
  1029. document.onmouseup = null;
  1030. document.onmousemove = null;
  1031. this.saveGenreHelper();
  1032. };
  1033. },
  1034. onResizeGenreHelper(e) {
  1035. if (e.target.id !== "genre-helper-container") return;
  1036. document.onmouseup = () => {
  1037. document.onmouseup = null;
  1038. const { height, width } = e.target.style;
  1039. this.genreHelper.height = Number(
  1040. height
  1041. .split("")
  1042. .splice(0, height.length - 2)
  1043. .join("")
  1044. );
  1045. this.genreHelper.width = Number(
  1046. width
  1047. .split("")
  1048. .splice(0, width.length - 2)
  1049. .join("")
  1050. );
  1051. this.saveGenreHelper();
  1052. };
  1053. },
  1054. toggleGenreHelper() {
  1055. this.genreHelper.shown = !this.genreHelper.shown;
  1056. this.saveGenreHelper();
  1057. },
  1058. resetGenreHelper() {
  1059. this.genreHelper.top = 0;
  1060. this.genreHelper.left = 0;
  1061. this.genreHelper.width = 200;
  1062. this.genreHelper.height = 200;
  1063. this.saveGenreHelper();
  1064. },
  1065. saveGenreHelper() {
  1066. localStorage.setItem(
  1067. "genreHelper",
  1068. JSON.stringify({
  1069. height: this.genreHelper.height,
  1070. width: this.genreHelper.width,
  1071. top: this.genreHelper.top,
  1072. left: this.genreHelper.left,
  1073. shown: this.genreHelper.shown
  1074. })
  1075. );
  1076. },
  1077. ...mapActions("admin/songs", [
  1078. "stopVideo",
  1079. "loadVideoById",
  1080. "pauseVideo",
  1081. "getCurrentTime",
  1082. "editSong",
  1083. "updateSongField",
  1084. "selectDiscogsInfo"
  1085. ]),
  1086. ...mapActions("modals", ["closeModal"])
  1087. },
  1088. mounted() {
  1089. // if (this.modals.editSong = false) this.video.player.stopVideo();
  1090. // this.loadVideoById(
  1091. // this.editing.song.songId,
  1092. // this.editing.song.skipDuration
  1093. // );
  1094. if (localStorage.genreHelper) {
  1095. const genreHelper = JSON.parse(localStorage.getItem("genreHelper"));
  1096. this.genreHelper.height = genreHelper.height;
  1097. this.genreHelper.width = genreHelper.width;
  1098. this.genreHelper.top = genreHelper.top;
  1099. this.genreHelper.left = genreHelper.left;
  1100. this.genreHelper.shown = genreHelper.shown;
  1101. }
  1102. this.discogsQuery = this.editing.song.title;
  1103. lofig.get("cookie.secure").then(useHTTPS => {
  1104. this.useHTTPS = useHTTPS;
  1105. });
  1106. io.getSocket(socket => {
  1107. this.socket = socket;
  1108. });
  1109. this.interval = setInterval(() => {
  1110. if (
  1111. this.editing.song.duration !== -1 &&
  1112. this.video.paused === false &&
  1113. this.playerReady &&
  1114. this.video.player.getCurrentTime() -
  1115. this.editing.song.skipDuration >
  1116. this.editing.song.duration
  1117. ) {
  1118. this.video.paused = false;
  1119. this.video.player.stopVideo();
  1120. this.drawCanvas();
  1121. }
  1122. if (this.playerReady) {
  1123. this.youtubeVideoCurrentTime = this.video.player
  1124. .getCurrentTime()
  1125. .toFixed(3);
  1126. }
  1127. if (this.video.paused === false) this.drawCanvas();
  1128. }, 200);
  1129. this.video.player = new window.YT.Player("player", {
  1130. height: 298,
  1131. width: 530,
  1132. videoId: this.editing.song.songId,
  1133. playerVars: {
  1134. controls: 0,
  1135. iv_load_policy: 3,
  1136. rel: 0,
  1137. showinfo: 0,
  1138. autoplay: 1
  1139. },
  1140. startSeconds: this.editing.song.skipDuration,
  1141. events: {
  1142. onReady: () => {
  1143. let volume = parseInt(localStorage.getItem("volume"));
  1144. volume = typeof volume === "number" ? volume : 20;
  1145. console.log(`Seekto: ${this.editing.song.skipDuration}`);
  1146. this.video.player.seekTo(this.editing.song.skipDuration);
  1147. this.video.player.setVolume(volume);
  1148. if (volume > 0) this.video.player.unMute();
  1149. this.youtubeVideoDuration = this.video.player.getDuration();
  1150. this.youtubeVideoNote = "(~)";
  1151. this.playerReady = true;
  1152. this.drawCanvas();
  1153. },
  1154. onStateChange: event => {
  1155. this.drawCanvas();
  1156. if (event.data === 1) {
  1157. if (!this.video.autoPlayed) {
  1158. this.video.autoPlayed = true;
  1159. return this.video.player.stopVideo();
  1160. }
  1161. this.video.paused = false;
  1162. let youtubeDuration = this.video.player.getDuration();
  1163. this.youtubeVideoDuration = youtubeDuration;
  1164. this.youtubeVideoNote = "";
  1165. if (this.editing.song.duration === -1)
  1166. this.editing.song.duration = youtubeDuration;
  1167. youtubeDuration -= this.editing.song.skipDuration;
  1168. if (this.editing.song.duration > youtubeDuration + 1) {
  1169. this.video.player.stopVideo();
  1170. this.video.paused = true;
  1171. return Toast.methods.addToast(
  1172. "Video can't play. Specified duration is bigger than the YouTube song duration.",
  1173. 4000
  1174. );
  1175. }
  1176. if (this.editing.song.duration <= 0) {
  1177. this.video.player.stopVideo();
  1178. this.video.paused = true;
  1179. return Toast.methods.addToast(
  1180. "Video can't play. Specified duration has to be more than 0 seconds.",
  1181. 4000
  1182. );
  1183. }
  1184. if (
  1185. this.video.player.getCurrentTime() <
  1186. this.editing.song.skipDuration
  1187. ) {
  1188. return this.video.player.seekTo(
  1189. this.editing.song.skipDuration
  1190. );
  1191. }
  1192. } else if (event.data === 2) {
  1193. this.video.paused = true;
  1194. }
  1195. return false;
  1196. }
  1197. }
  1198. });
  1199. let volume = parseInt(localStorage.getItem("volume"));
  1200. document.getElementById("volumeSlider").value = volume =
  1201. typeof volume === "number" ? volume : 20;
  1202. },
  1203. beforeDestroy() {
  1204. this.playerReady = false;
  1205. clearInterval(this.interval);
  1206. }
  1207. };
  1208. </script>
  1209. <style lang="scss">
  1210. @import "styles/global.scss";
  1211. #genre-helper-container {
  1212. background-color: white;
  1213. position: fixed;
  1214. z-index: 10000000;
  1215. resize: both;
  1216. overflow: auto;
  1217. border: 1px solid #d3d3d3;
  1218. min-height: 50px !important;
  1219. min-width: 50px !important;
  1220. .genre-helper-header {
  1221. cursor: move;
  1222. z-index: 100000001;
  1223. background-color: $musareBlue;
  1224. padding: 10px;
  1225. display: block;
  1226. height: 10px;
  1227. width: 100%;
  1228. }
  1229. .genre-helper-body {
  1230. display: flex;
  1231. flex-wrap: wrap;
  1232. justify-content: space-evenly;
  1233. span {
  1234. padding: 3px 6px;
  1235. }
  1236. }
  1237. }
  1238. .song-modal {
  1239. .modal-card-title {
  1240. text-align: center;
  1241. margin-left: 24px;
  1242. }
  1243. .modal-card {
  1244. width: 1160px;
  1245. height: 100%;
  1246. .modal-card-body {
  1247. padding: 16px;
  1248. }
  1249. }
  1250. }
  1251. </style>
  1252. <style lang="scss" scoped>
  1253. @import "styles/global.scss";
  1254. .modal-card-body > div {
  1255. display: flex;
  1256. height: 100%;
  1257. }
  1258. .left-section {
  1259. display: flex;
  1260. flex-direction: column;
  1261. margin-right: 16px;
  1262. .top-section {
  1263. display: flex;
  1264. .player-section {
  1265. width: 530px;
  1266. display: flex;
  1267. flex-direction: column;
  1268. .player-footer {
  1269. background-color: #f4f4f4;
  1270. border: 1px rgba(163, 224, 255, 0.75) solid;
  1271. border-radius: 0px 0px 5px 5px;
  1272. display: flex;
  1273. justify-content: space-between;
  1274. height: 54px;
  1275. > * {
  1276. width: 33.3%;
  1277. display: flex;
  1278. align-items: center;
  1279. }
  1280. .player-footer-left {
  1281. flex: 1;
  1282. .material-icons {
  1283. font-size: 38px;
  1284. cursor: pointer;
  1285. }
  1286. .player-play-pause {
  1287. color: $musareBlue;
  1288. }
  1289. .player-stop {
  1290. color: $red;
  1291. }
  1292. .player-fast-forward {
  1293. color: $green;
  1294. }
  1295. }
  1296. .player-footer-center {
  1297. justify-content: center;
  1298. align-items: center;
  1299. flex: 2;
  1300. font-size: 21px;
  1301. font-weight: 400;
  1302. img {
  1303. height: 21px;
  1304. margin-right: 12px;
  1305. filter: invert(26%) sepia(54%) saturate(6317%)
  1306. hue-rotate(2deg) brightness(92%) contrast(115%);
  1307. }
  1308. }
  1309. .player-footer-right {
  1310. justify-content: right;
  1311. flex: 1;
  1312. #volumeSlider {
  1313. width: 126px;
  1314. margin-right: 10px;
  1315. background-color: #f4f4f4;
  1316. }
  1317. }
  1318. }
  1319. }
  1320. .thumbnail-preview {
  1321. width: 189px;
  1322. height: 189px;
  1323. margin-left: 16px;
  1324. }
  1325. }
  1326. .edit-section {
  1327. width: 735px;
  1328. background-color: #f4f4f4;
  1329. border: 1px rgba(163, 224, 255, 0.75) solid;
  1330. margin-top: 16px;
  1331. flex: 1;
  1332. overflow: auto;
  1333. border-radius: 5px;
  1334. .album-get-button {
  1335. background-color: $purple;
  1336. color: white;
  1337. width: 32px;
  1338. text-align: center;
  1339. border-width: 0;
  1340. }
  1341. .duration-fill-button {
  1342. background-color: $red;
  1343. color: $white;
  1344. width: 32px;
  1345. text-align: center;
  1346. border-width: 0;
  1347. }
  1348. .add-button {
  1349. background-color: $musareBlue !important;
  1350. width: 32px;
  1351. i {
  1352. font-size: 32px;
  1353. }
  1354. }
  1355. > div {
  1356. margin: 16px;
  1357. }
  1358. input {
  1359. width: 100%;
  1360. }
  1361. .title-container {
  1362. width: calc((100% - 32px) / 2);
  1363. }
  1364. .duration-container {
  1365. margin-right: 16px;
  1366. margin-left: 16px;
  1367. width: calc((100% - 32px) / 4);
  1368. }
  1369. .skip-duration-container {
  1370. width: calc((100% - 32px) / 4);
  1371. }
  1372. .album-art-container {
  1373. width: 100%;
  1374. }
  1375. .artists-container {
  1376. width: calc((100% - 32px) / 3);
  1377. position: relative;
  1378. }
  1379. .genres-container {
  1380. width: calc((100% - 32px) / 3);
  1381. margin-left: 16px;
  1382. margin-right: 16px;
  1383. position: relative;
  1384. label {
  1385. display: flex;
  1386. i {
  1387. font-size: 15px;
  1388. align-self: center;
  1389. margin-left: 5px;
  1390. color: $musareBlue;
  1391. cursor: pointer;
  1392. -webkit-user-select: none;
  1393. -moz-user-select: none;
  1394. -ms-user-select: none;
  1395. user-select: none;
  1396. }
  1397. }
  1398. }
  1399. .youtube-id-container {
  1400. width: calc((100% - 32px) / 3);
  1401. }
  1402. .list-item-circle {
  1403. background-color: $musareBlue;
  1404. width: 16px;
  1405. height: 16px;
  1406. border-radius: 8px;
  1407. cursor: pointer;
  1408. margin-right: 8px;
  1409. float: left;
  1410. -webkit-touch-callout: none;
  1411. -webkit-user-select: none;
  1412. -khtml-user-select: none;
  1413. -moz-user-select: none;
  1414. -ms-user-select: none;
  1415. user-select: none;
  1416. i {
  1417. color: $musareBlue;
  1418. font-size: 14px;
  1419. margin-left: 1px;
  1420. }
  1421. }
  1422. .list-item-circle:hover,
  1423. .list-item-circle:focus {
  1424. i {
  1425. color: white;
  1426. }
  1427. }
  1428. .list-item > p {
  1429. line-height: 16px;
  1430. word-wrap: break-word;
  1431. width: calc(100% - 24px);
  1432. left: 24px;
  1433. float: left;
  1434. margin-bottom: 8px;
  1435. }
  1436. .list-item:last-child > p {
  1437. margin-bottom: 0;
  1438. }
  1439. .autosuggest-container {
  1440. position: absolute;
  1441. background: white;
  1442. width: calc(100% + 1px);
  1443. top: 57px;
  1444. z-index: 200;
  1445. overflow: auto;
  1446. max-height: 100%;
  1447. clear: both;
  1448. .autosuggest-item {
  1449. padding: 8px;
  1450. display: block;
  1451. border: 1px solid #dbdbdb;
  1452. margin-top: -1px;
  1453. line-height: 16px;
  1454. cursor: pointer;
  1455. -webkit-user-select: none;
  1456. -ms-user-select: none;
  1457. -moz-user-select: none;
  1458. user-select: none;
  1459. }
  1460. .autosuggest-item:hover,
  1461. .autosuggest-item:focus {
  1462. background-color: #eee;
  1463. }
  1464. .autosuggest-item:first-child {
  1465. border-top: none;
  1466. }
  1467. .autosuggest-item:last-child {
  1468. border-radius: 0 0 3px 3px;
  1469. }
  1470. }
  1471. }
  1472. }
  1473. .right-section {
  1474. display: flex;
  1475. flex-wrap: wrap;
  1476. .api-section {
  1477. width: 376px;
  1478. background-color: #f4f4f4;
  1479. border: 1px rgba(163, 224, 255, 0.75) solid;
  1480. border-radius: 5px;
  1481. padding: 16px;
  1482. overflow: auto;
  1483. height: 100%;
  1484. > label {
  1485. margin-top: 12px;
  1486. }
  1487. .top-container {
  1488. display: flex;
  1489. img {
  1490. height: 85px;
  1491. width: 85px;
  1492. }
  1493. .right-container {
  1494. padding: 8px;
  1495. display: flex;
  1496. flex-direction: column;
  1497. flex: 1;
  1498. .album-title {
  1499. flex: 1;
  1500. font-weight: 600;
  1501. }
  1502. .bottom-row {
  1503. display: flex;
  1504. flex-flow: row;
  1505. line-height: 15px;
  1506. img {
  1507. height: 15px;
  1508. align-self: end;
  1509. flex: 1;
  1510. user-select: none;
  1511. -moz-user-select: none;
  1512. -ms-user-select: none;
  1513. -webkit-user-select: none;
  1514. cursor: pointer;
  1515. }
  1516. p {
  1517. text-align: right;
  1518. }
  1519. .type-year {
  1520. font-size: 13px;
  1521. align-self: end;
  1522. }
  1523. }
  1524. }
  1525. }
  1526. .bottom-container {
  1527. padding: 12px;
  1528. .bottom-container-field {
  1529. line-height: 16px;
  1530. margin-bottom: 8px;
  1531. font-weight: 600;
  1532. span {
  1533. font-weight: 400;
  1534. }
  1535. }
  1536. .bottom-container-field:last-of-type {
  1537. margin-bottom: 0;
  1538. }
  1539. }
  1540. .selected-discogs-info {
  1541. background-color: white;
  1542. border: 1px solid $purple;
  1543. border-radius: 5px;
  1544. margin-bottom: 16px;
  1545. .selected-discogs-info-none {
  1546. font-size: 18px;
  1547. text-align: center;
  1548. }
  1549. .bottom-row > p {
  1550. flex: 1;
  1551. }
  1552. }
  1553. .api-result {
  1554. background-color: white;
  1555. border: 0.5px solid $musareBlue;
  1556. border-radius: 5px;
  1557. margin-bottom: 16px;
  1558. }
  1559. button {
  1560. background-color: $musareBlue !important;
  1561. }
  1562. .tracks {
  1563. margin-top: 12px;
  1564. .track:first-child {
  1565. margin-top: 0;
  1566. border-radius: 3px 3px 0 0;
  1567. }
  1568. .track:last-child {
  1569. border-radius: 0 0 3px 3px;
  1570. }
  1571. .track {
  1572. border: 0.5px solid black;
  1573. margin-top: -1px;
  1574. line-height: 16px;
  1575. display: flex;
  1576. cursor: pointer;
  1577. span {
  1578. font-weight: 600;
  1579. display: inline-block;
  1580. margin-top: 7px;
  1581. margin-bottom: 7px;
  1582. margin-left: 7px;
  1583. }
  1584. p {
  1585. display: inline-block;
  1586. margin: 7px;
  1587. flex: 1;
  1588. }
  1589. }
  1590. .track:hover,
  1591. .track:focus {
  1592. background-color: #f4f4f4;
  1593. }
  1594. }
  1595. .discogs-load-more {
  1596. margin-bottom: 8px;
  1597. }
  1598. }
  1599. }
  1600. .footer-buttons {
  1601. margin-left: auto;
  1602. margin-right: auto;
  1603. }
  1604. input[type="range"] {
  1605. -webkit-appearance: none;
  1606. width: 100%;
  1607. margin: 8.5px 0;
  1608. }
  1609. input[type="range"]:focus {
  1610. outline: none;
  1611. }
  1612. input[type="range"]::-webkit-slider-runnable-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"]::-webkit-slider-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. -webkit-appearance: none;
  1630. margin-top: -8.5px;
  1631. }
  1632. input[type="range"]:focus::-webkit-slider-runnable-track {
  1633. background: #7e7e7e;
  1634. }
  1635. input[type="range"]::-moz-range-track {
  1636. width: 100%;
  1637. height: 3px;
  1638. cursor: pointer;
  1639. box-shadow: none;
  1640. background: #7e7e7e;
  1641. border-radius: none;
  1642. border: none;
  1643. }
  1644. input[type="range"]::-moz-range-thumb {
  1645. box-shadow: none;
  1646. border: none;
  1647. height: 20px;
  1648. width: 20px;
  1649. border-radius: 100px;
  1650. background: #03a9f4;
  1651. cursor: pointer;
  1652. }
  1653. input[type="range"]::-ms-track {
  1654. width: 100%;
  1655. height: 3px;
  1656. cursor: pointer;
  1657. background: transparent;
  1658. border-color: transparent;
  1659. color: transparent;
  1660. }
  1661. input[type="range"]::-ms-fill-lower {
  1662. background: #717171;
  1663. border: none;
  1664. border-radius: none;
  1665. box-shadow: none;
  1666. }
  1667. input[type="range"]::-ms-fill-upper {
  1668. background: #7e7e7e;
  1669. border: none;
  1670. border-radius: none;
  1671. box-shadow: none;
  1672. }
  1673. input[type="range"]::-ms-thumb {
  1674. box-shadow: none;
  1675. border: none;
  1676. height: 20px;
  1677. width: 20px;
  1678. border-radius: 100px;
  1679. background: #03a9f4;
  1680. cursor: pointer;
  1681. height: 3px;
  1682. }
  1683. input[type="range"]:focus::-ms-fill-lower {
  1684. background: #7e7e7e;
  1685. }
  1686. input[type="range"]:focus::-ms-fill-upper {
  1687. background: #7e7e7e;
  1688. }
  1689. </style>