index.vue 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. <template>
  2. <div>
  3. <modal
  4. :title="`${newSong ? 'Create' : 'Edit'} Song`"
  5. class="song-modal"
  6. :size="'wide'"
  7. :split="true"
  8. :intercept-close="true"
  9. @close="onCloseModal"
  10. >
  11. <template #toggleMobileSidebar>
  12. <slot name="toggleMobileSidebar" />
  13. </template>
  14. <template #sidebar>
  15. <slot name="sidebar" />
  16. </template>
  17. <template #body>
  18. <div v-if="!songId && !newSong" class="notice-container">
  19. <h4>No song has been selected</h4>
  20. </div>
  21. <div v-if="songDeleted" class="notice-container">
  22. <h4>The song you were editing has been deleted</h4>
  23. </div>
  24. <div
  25. v-if="
  26. songId && !songDataLoaded && !songNotFound && !newSong
  27. "
  28. class="notice-container"
  29. >
  30. <h4>Song hasn't loaded yet</h4>
  31. </div>
  32. <div
  33. v-if="songId && songNotFound && !newSong"
  34. class="notice-container"
  35. >
  36. <h4>Song was not found</h4>
  37. </div>
  38. <div
  39. class="left-section"
  40. v-show="songDataLoaded && !songDeleted"
  41. >
  42. <div class="top-section">
  43. <div class="player-section">
  44. <div id="editSongPlayer" />
  45. <div v-show="youtubeError" class="player-error">
  46. <h2>{{ youtubeErrorMessage }}</h2>
  47. </div>
  48. <canvas
  49. ref="durationCanvas"
  50. id="durationCanvas"
  51. v-show="!youtubeError"
  52. height="20"
  53. width="530"
  54. @click="setTrackPosition($event)"
  55. />
  56. <div class="player-footer">
  57. <div class="player-footer-left">
  58. <button
  59. class="button is-primary"
  60. @click="play()"
  61. @keyup.enter="play()"
  62. v-if="video.paused"
  63. content="Resume Playback"
  64. v-tippy
  65. >
  66. <i class="material-icons">play_arrow</i>
  67. </button>
  68. <button
  69. class="button is-primary"
  70. @click="settings('pause')"
  71. @keyup.enter="settings('pause')"
  72. v-else
  73. content="Pause Playback"
  74. v-tippy
  75. >
  76. <i class="material-icons">pause</i>
  77. </button>
  78. <button
  79. class="button is-danger"
  80. @click.exact="settings('stop')"
  81. @click.shift="settings('hardStop')"
  82. @keyup.enter.exact="settings('stop')"
  83. @keyup.shift.enter="
  84. settings('hardStop')
  85. "
  86. content="Stop Playback"
  87. v-tippy
  88. >
  89. <i class="material-icons">stop</i>
  90. </button>
  91. <tippy
  92. class="playerRateDropdown"
  93. :touch="true"
  94. :interactive="true"
  95. placement="bottom"
  96. theme="dropdown"
  97. ref="dropdown"
  98. trigger="click"
  99. append-to="parent"
  100. @show="
  101. () => {
  102. showRateDropdown = true;
  103. }
  104. "
  105. @hide="
  106. () => {
  107. showRateDropdown = false;
  108. }
  109. "
  110. >
  111. <div
  112. ref="trigger"
  113. class="control has-addons"
  114. content="Set Playback Rate"
  115. v-tippy
  116. >
  117. <button class="button is-primary">
  118. <i class="material-icons"
  119. >fast_forward</i
  120. >
  121. </button>
  122. <button
  123. class="button dropdown-toggle"
  124. >
  125. <i class="material-icons">
  126. {{
  127. showRateDropdown
  128. ? "expand_more"
  129. : "expand_less"
  130. }}
  131. </i>
  132. </button>
  133. </div>
  134. <template #content>
  135. <div class="nav-dropdown-items">
  136. <button
  137. class="nav-item button"
  138. :class="{
  139. active:
  140. video.playbackRate ===
  141. 0.5
  142. }"
  143. title="0.5x"
  144. @click="
  145. setPlaybackRate(0.5)
  146. "
  147. >
  148. <p>0.5x</p>
  149. </button>
  150. <button
  151. class="nav-item button"
  152. :class="{
  153. active:
  154. video.playbackRate ===
  155. 1
  156. }"
  157. title="1x"
  158. @click="setPlaybackRate(1)"
  159. >
  160. <p>1x</p>
  161. </button>
  162. <button
  163. class="nav-item button"
  164. :class="{
  165. active:
  166. video.playbackRate ===
  167. 2
  168. }"
  169. title="2x"
  170. @click="setPlaybackRate(2)"
  171. >
  172. <p>2x</p>
  173. </button>
  174. </div>
  175. </template>
  176. </tippy>
  177. </div>
  178. <div class="player-footer-center">
  179. <span>
  180. <span>
  181. {{ youtubeVideoCurrentTime }}
  182. </span>
  183. /
  184. <span>
  185. {{ youtubeVideoDuration }}
  186. {{ youtubeVideoNote }}
  187. </span>
  188. </span>
  189. </div>
  190. <div class="player-footer-right">
  191. <p id="volume-control">
  192. <i
  193. class="material-icons"
  194. @click="toggleMute()"
  195. :content="`${
  196. muted ? 'Unmute' : 'Mute'
  197. }`"
  198. v-tippy
  199. >{{
  200. muted
  201. ? "volume_mute"
  202. : volumeSliderValue >= 50
  203. ? "volume_up"
  204. : "volume_down"
  205. }}</i
  206. >
  207. <input
  208. v-model="volumeSliderValue"
  209. type="range"
  210. min="0"
  211. max="100"
  212. class="volume-slider active"
  213. @change="changeVolume()"
  214. @input="changeVolume()"
  215. />
  216. </p>
  217. </div>
  218. </div>
  219. </div>
  220. <img
  221. class="thumbnail-preview"
  222. :src="song.thumbnail"
  223. onerror="this.src='/assets/notes-transparent.png'"
  224. ref="thumbnailElement"
  225. @load="onThumbnailLoad"
  226. v-if="songDataLoaded && !songDeleted"
  227. />
  228. </div>
  229. <div
  230. class="edit-section"
  231. v-if="songDataLoaded && !songDeleted"
  232. >
  233. <div class="control is-grouped">
  234. <div class="title-container">
  235. <label class="label">Title</label>
  236. <p class="control has-addons">
  237. <input
  238. class="input"
  239. type="text"
  240. ref="title-input"
  241. v-model="song.title"
  242. placeholder="Enter song title..."
  243. @keyup.shift.enter="
  244. getAlbumData('title')
  245. "
  246. />
  247. <button
  248. class="button album-get-button"
  249. @click="getAlbumData('title')"
  250. >
  251. <i
  252. class="material-icons"
  253. v-tippy
  254. content="Fill from Discogs"
  255. >album</i
  256. >
  257. </button>
  258. </p>
  259. </div>
  260. <div class="duration-container">
  261. <label class="label">Duration</label>
  262. <p class="control has-addons">
  263. <input
  264. class="input"
  265. type="text"
  266. placeholder="Enter song duration..."
  267. v-model.number="song.duration"
  268. @keyup.shift.enter="fillDuration()"
  269. />
  270. <button
  271. class="button duration-fill-button"
  272. @click="fillDuration()"
  273. >
  274. <i
  275. class="material-icons"
  276. v-tippy
  277. content="Sync duration with YouTube"
  278. >sync</i
  279. >
  280. </button>
  281. </p>
  282. </div>
  283. <div class="skip-duration-container">
  284. <label class="label">Skip duration</label>
  285. <p class="control">
  286. <input
  287. class="input"
  288. type="text"
  289. placeholder="Enter skip duration..."
  290. v-model.number="song.skipDuration"
  291. />
  292. </p>
  293. </div>
  294. </div>
  295. <div class="control is-grouped">
  296. <div class="album-art-container">
  297. <label class="label">
  298. Album art
  299. <i
  300. v-if="
  301. thumbnailNotSquare &&
  302. !thumbnailIsYouTubeThumbnail
  303. "
  304. class="material-icons thumbnail-warning"
  305. content="Thumbnail not square, it will be stretched"
  306. v-tippy="{ theme: 'info' }"
  307. >
  308. warning
  309. </i>
  310. </label>
  311. <p class="control has-addons">
  312. <input
  313. class="input"
  314. type="text"
  315. v-model="song.thumbnail"
  316. placeholder="Enter link to album art..."
  317. @keyup.shift.enter="
  318. getAlbumData('albumArt')
  319. "
  320. />
  321. <button
  322. class="button youtube-get-button"
  323. @click="getYouTubeData('albumArt')"
  324. >
  325. <div class="youtube-icon"></div>
  326. </button>
  327. <button
  328. class="button album-get-button"
  329. @click="getAlbumData('albumArt')"
  330. >
  331. <i
  332. class="material-icons"
  333. v-tippy
  334. content="Fill from Discogs"
  335. >album</i
  336. >
  337. </button>
  338. </p>
  339. </div>
  340. <div class="youtube-id-container">
  341. <label class="label">YouTube ID</label>
  342. <p class="control">
  343. <input
  344. class="input"
  345. type="text"
  346. placeholder="Enter YouTube ID..."
  347. v-model="song.youtubeId"
  348. />
  349. </p>
  350. </div>
  351. <div class="verified-container">
  352. <label class="label">Verified</label>
  353. <p class="is-expanded checkbox-control">
  354. <label class="switch">
  355. <input
  356. type="checkbox"
  357. id="verified"
  358. v-model="song.verified"
  359. />
  360. <span class="slider round"></span>
  361. </label>
  362. </p>
  363. </div>
  364. </div>
  365. <div class="control is-grouped">
  366. <div class="artists-container">
  367. <label class="label">Artists</label>
  368. <p class="control has-addons">
  369. <auto-suggest
  370. v-model="artistInputValue"
  371. ref="new-artist"
  372. placeholder="Add artist..."
  373. :all-items="
  374. autosuggest.allItems.artists
  375. "
  376. @submitted="addTag('artists')"
  377. @keyup.shift.enter="
  378. getAlbumData('artists')
  379. "
  380. />
  381. <button
  382. class="button album-get-button"
  383. @click="getAlbumData('artists')"
  384. >
  385. <i
  386. class="material-icons"
  387. v-tippy
  388. content="Fill from Discogs"
  389. >album</i
  390. >
  391. </button>
  392. <button
  393. class="button is-info add-button"
  394. @click="addTag('artists')"
  395. >
  396. <i class="material-icons">add</i>
  397. </button>
  398. </p>
  399. <div class="list-container">
  400. <div
  401. class="list-item"
  402. v-for="artist in song.artists"
  403. :key="artist"
  404. >
  405. <div
  406. class="list-item-circle"
  407. @click="
  408. removeTag('artists', artist)
  409. "
  410. >
  411. <i class="material-icons">close</i>
  412. </div>
  413. <p>{{ artist }}</p>
  414. </div>
  415. </div>
  416. </div>
  417. <div class="genres-container">
  418. <label class="label">
  419. <span>Genres</span>
  420. <i
  421. class="material-icons"
  422. @click="toggleGenreHelper"
  423. @dblclick="resetGenreHelper"
  424. v-tippy
  425. content="View list of genres"
  426. >info</i
  427. >
  428. </label>
  429. <p class="control has-addons">
  430. <auto-suggest
  431. v-model="genreInputValue"
  432. ref="new-genre"
  433. placeholder="Add genre..."
  434. :all-items="autosuggest.allItems.genres"
  435. @submitted="addTag('genres')"
  436. @keyup.shift.enter="
  437. getAlbumData('genres')
  438. "
  439. />
  440. <button
  441. class="button album-get-button"
  442. @click="getAlbumData('genres')"
  443. >
  444. <i
  445. class="material-icons"
  446. v-tippy
  447. content="Fill from Discogs"
  448. >album</i
  449. >
  450. </button>
  451. <button
  452. class="button is-info add-button"
  453. @click="addTag('genres')"
  454. >
  455. <i class="material-icons">add</i>
  456. </button>
  457. </p>
  458. <div class="list-container">
  459. <div
  460. class="list-item"
  461. v-for="genre in song.genres"
  462. :key="genre"
  463. >
  464. <div
  465. class="list-item-circle"
  466. @click="removeTag('genres', genre)"
  467. >
  468. <i class="material-icons">close</i>
  469. </div>
  470. <p>{{ genre }}</p>
  471. </div>
  472. </div>
  473. </div>
  474. <div class="tags-container">
  475. <label class="label">Tags</label>
  476. <p class="control has-addons">
  477. <auto-suggest
  478. v-model="tagInputValue"
  479. ref="new-tag"
  480. placeholder="Add tag..."
  481. :all-items="autosuggest.allItems.tags"
  482. @submitted="addTag('tags')"
  483. />
  484. <button
  485. class="button is-info add-button"
  486. @click="addTag('tags')"
  487. >
  488. <i class="material-icons">add</i>
  489. </button>
  490. </p>
  491. <div class="list-container">
  492. <div
  493. class="list-item"
  494. v-for="tag in song.tags"
  495. :key="tag"
  496. >
  497. <div
  498. class="list-item-circle"
  499. @click="removeTag('tags', tag)"
  500. >
  501. <i class="material-icons">close</i>
  502. </div>
  503. <p>{{ tag }}</p>
  504. </div>
  505. </div>
  506. </div>
  507. </div>
  508. </div>
  509. </div>
  510. <div
  511. class="right-section"
  512. v-if="songDataLoaded && !songDeleted"
  513. >
  514. <div id="tabs-container">
  515. <div id="tab-selection">
  516. <button
  517. class="button is-default"
  518. :class="{ selected: tab === 'discogs' }"
  519. ref="discogs-tab"
  520. @click="showTab('discogs')"
  521. >
  522. Discogs
  523. </button>
  524. <button
  525. v-if="!newSong"
  526. class="button is-default"
  527. :class="{ selected: tab === 'reports' }"
  528. ref="reports-tab"
  529. @click="showTab('reports')"
  530. >
  531. Reports ({{ reports.length }})
  532. </button>
  533. <button
  534. class="button is-default"
  535. :class="{ selected: tab === 'youtube' }"
  536. ref="youtube-tab"
  537. @click="showTab('youtube')"
  538. >
  539. YouTube
  540. </button>
  541. <button
  542. class="button is-default"
  543. :class="{ selected: tab === 'musare-songs' }"
  544. ref="musare-songs-tab"
  545. @click="showTab('musare-songs')"
  546. >
  547. Songs
  548. </button>
  549. </div>
  550. <discogs
  551. class="tab"
  552. v-show="tab === 'discogs'"
  553. :bulk="bulk"
  554. :modal-uuid="modalUuid"
  555. :modal-module-path="modalModulePath"
  556. />
  557. <reports
  558. v-if="!newSong"
  559. class="tab"
  560. v-show="tab === 'reports'"
  561. :modal-uuid="modalUuid"
  562. :modal-module-path="modalModulePath"
  563. />
  564. <youtube
  565. class="tab"
  566. v-show="tab === 'youtube'"
  567. :modal-uuid="modalUuid"
  568. :modal-module-path="modalModulePath"
  569. />
  570. <musare-songs
  571. class="tab"
  572. v-show="tab === 'musare-songs'"
  573. :modal-uuid="modalUuid"
  574. :modal-module-path="modalModulePath"
  575. />
  576. </div>
  577. </div>
  578. </template>
  579. <template #footer>
  580. <div v-if="bulk">
  581. <button class="button is-primary" @click="editNextSong()">
  582. Next
  583. </button>
  584. <button
  585. class="button is-primary"
  586. @click="toggleFlag()"
  587. v-if="songId && !songDeleted"
  588. >
  589. {{ flagged ? "Unflag" : "Flag" }}
  590. </button>
  591. </div>
  592. <div v-if="!newSong && !songDeleted">
  593. <save-button
  594. ref="saveButton"
  595. @clicked="save(song, false, 'saveButton')"
  596. />
  597. <save-button
  598. ref="saveAndCloseButton"
  599. :default-message="
  600. bulk ? `Save and next` : `Save and close`
  601. "
  602. @clicked="save(song, true, 'saveAndCloseButton')"
  603. />
  604. <div class="right">
  605. <button
  606. class="button is-danger icon-with-button material-icons"
  607. @click.prevent="
  608. confirmAction({
  609. message:
  610. 'Removing this song will remove it from all playlists and cause a ratings recalculation.',
  611. action: 'remove',
  612. params: song._id
  613. })
  614. "
  615. content="Delete Song"
  616. v-tippy
  617. >
  618. delete_forever
  619. </button>
  620. </div>
  621. </div>
  622. <div v-else-if="newSong">
  623. <save-button
  624. ref="createButton"
  625. default-message="Create Song"
  626. @clicked="save(song, false, 'createButton', true)"
  627. />
  628. </div>
  629. </template>
  630. </modal>
  631. <floating-box id="genreHelper" ref="genreHelper" :column="false">
  632. <template #body>
  633. <span
  634. v-for="item in autosuggest.allItems.genres"
  635. :key="`genre-helper-${item}`"
  636. >
  637. {{ item }}
  638. </span>
  639. </template>
  640. </floating-box>
  641. </div>
  642. </template>
  643. <script>
  644. import { mapState, mapGetters, mapActions } from "vuex";
  645. import Toast from "toasters";
  646. import { mapModalState, mapModalActions } from "@/vuex_helpers";
  647. import aw from "@/aw";
  648. import ws from "@/ws";
  649. import validation from "@/validation";
  650. import keyboardShortcuts from "@/keyboardShortcuts";
  651. import FloatingBox from "../../FloatingBox.vue";
  652. import SaveButton from "../../SaveButton.vue";
  653. import AutoSuggest from "@/components/AutoSuggest.vue";
  654. import Discogs from "./Tabs/Discogs.vue";
  655. import Reports from "./Tabs/Reports.vue";
  656. import Youtube from "./Tabs/Youtube.vue";
  657. import MusareSongs from "./Tabs/Songs.vue";
  658. export default {
  659. components: {
  660. FloatingBox,
  661. SaveButton,
  662. AutoSuggest,
  663. Discogs,
  664. Reports,
  665. Youtube,
  666. MusareSongs
  667. },
  668. props: {
  669. // songId: { type: String, default: null },
  670. modalUuid: { type: String, default: "" },
  671. modalModulePath: {
  672. type: String,
  673. default: "modals/editSong/MODAL_UUID"
  674. },
  675. discogsAlbum: { type: Object, default: null },
  676. bulk: { type: Boolean, default: false },
  677. flagged: { type: Boolean, default: false }
  678. },
  679. emits: [
  680. "error",
  681. "savedSuccess",
  682. "savedError",
  683. "flagSong",
  684. "nextSong",
  685. "close"
  686. ],
  687. data() {
  688. return {
  689. songDataLoaded: false,
  690. songDeleted: false,
  691. youtubeError: false,
  692. youtubeErrorMessage: "",
  693. focusedElementBefore: null,
  694. youtubeVideoDuration: "0.000",
  695. youtubeVideoCurrentTime: 0,
  696. youtubeVideoNote: "",
  697. useHTTPS: false,
  698. muted: false,
  699. volumeSliderValue: 0,
  700. artistInputValue: "",
  701. genreInputValue: "",
  702. tagInputValue: "",
  703. activityWatchVideoDataInterval: null,
  704. activityWatchVideoLastStatus: "",
  705. activityWatchVideoLastStartDuration: "",
  706. recommendedGenres: [
  707. "Blues",
  708. "Country",
  709. "Disco",
  710. "Funk",
  711. "Hip-Hop",
  712. "Jazz",
  713. "Metal",
  714. "Oldies",
  715. "Other",
  716. "Pop",
  717. "Rap",
  718. "Reggae",
  719. "Rock",
  720. "Techno",
  721. "Trance",
  722. "Classical",
  723. "Instrumental",
  724. "House",
  725. "Electronic",
  726. "Christian Rap",
  727. "Lo-Fi",
  728. "Musical",
  729. "Rock 'n' Roll",
  730. "Opera",
  731. "Drum & Bass",
  732. "Club-House",
  733. "Indie",
  734. "Heavy Metal",
  735. "Christian rock",
  736. "Dubstep"
  737. ],
  738. autosuggest: {
  739. allItems: {
  740. artists: [],
  741. genres: [],
  742. tags: []
  743. }
  744. },
  745. songNotFound: false,
  746. showRateDropdown: false,
  747. thumbnailNotSquare: false,
  748. thumbnailWidth: null,
  749. thumbnailHeight: null
  750. };
  751. },
  752. computed: {
  753. thumbnailIsYouTubeThumbnail() {
  754. return (
  755. this.songDataLoaded &&
  756. this.song.thumbnail &&
  757. this.song.thumbnail.startsWith("https://i.ytimg.com/")
  758. );
  759. },
  760. ...mapModalState("MODAL_MODULE_PATH", {
  761. tab: state => state.tab,
  762. video: state => state.video,
  763. song: state => state.song,
  764. songId: state => state.songId,
  765. prefillData: state => state.prefillData,
  766. originalSong: state => state.originalSong,
  767. reports: state => state.reports,
  768. newSong: state => state.newSong
  769. }),
  770. ...mapState("modalVisibility", {
  771. activeModals: state => state.activeModals
  772. }),
  773. ...mapGetters({
  774. socket: "websockets/getSocket"
  775. })
  776. },
  777. watch: {
  778. /* eslint-disable */
  779. "song.duration": function () {
  780. this.drawCanvas();
  781. },
  782. "song.skipDuration": function () {
  783. this.drawCanvas();
  784. },
  785. /* eslint-enable */
  786. songId(songId, oldSongId) {
  787. console.log("NEW SONG ID", songId);
  788. this.unloadSong(oldSongId);
  789. this.loadSong(songId);
  790. }
  791. },
  792. async mounted() {
  793. console.log("MOUNTED");
  794. this.activityWatchVideoDataInterval = setInterval(() => {
  795. this.sendActivityWatchVideoData();
  796. }, 1000);
  797. this.useHTTPS = await lofig.get("cookie.secure");
  798. ws.onConnect(this.init);
  799. let volume = parseFloat(localStorage.getItem("volume"));
  800. volume =
  801. typeof volume === "number" && !Number.isNaN(volume) ? volume : 20;
  802. localStorage.setItem("volume", volume);
  803. this.volumeSliderValue = volume;
  804. if (!this.newSong) {
  805. this.socket.on(
  806. "event:admin.song.removed",
  807. res => {
  808. if (res.data.songId === this.song._id) {
  809. this.songDeleted = true;
  810. }
  811. },
  812. { modalUuid: this.modalUuid }
  813. );
  814. }
  815. keyboardShortcuts.registerShortcut("editSong.pauseResumeVideo", {
  816. keyCode: 101,
  817. preventDefault: true,
  818. handler: () => {
  819. if (this.video.paused) this.play();
  820. else this.settings("pause");
  821. }
  822. });
  823. keyboardShortcuts.registerShortcut("editSong.stopVideo", {
  824. keyCode: 101,
  825. ctrl: true,
  826. preventDefault: true,
  827. handler: () => {
  828. this.settings("stop");
  829. }
  830. });
  831. keyboardShortcuts.registerShortcut("editSong.hardStopVideo", {
  832. keyCode: 101,
  833. ctrl: true,
  834. shift: true,
  835. preventDefault: true,
  836. handler: () => {
  837. this.settings("hardStop");
  838. }
  839. });
  840. keyboardShortcuts.registerShortcut("editSong.skipToLast10Secs", {
  841. keyCode: 102,
  842. preventDefault: true,
  843. handler: () => {
  844. this.settings("skipToLast10Secs");
  845. }
  846. });
  847. keyboardShortcuts.registerShortcut("editSong.lowerVolumeLarge", {
  848. keyCode: 98,
  849. preventDefault: true,
  850. handler: () => {
  851. this.volumeSliderValue = Math.max(
  852. 0,
  853. this.volumeSliderValue - 10
  854. );
  855. this.changeVolume();
  856. }
  857. });
  858. keyboardShortcuts.registerShortcut("editSong.lowerVolumeSmall", {
  859. keyCode: 98,
  860. ctrl: true,
  861. preventDefault: true,
  862. handler: () => {
  863. this.volumeSliderValue = Math.max(
  864. 0,
  865. this.volumeSliderValue - 1
  866. );
  867. this.changeVolume();
  868. }
  869. });
  870. keyboardShortcuts.registerShortcut("editSong.increaseVolumeLarge", {
  871. keyCode: 104,
  872. preventDefault: true,
  873. handler: () => {
  874. this.volumeSliderValue = Math.min(
  875. 100,
  876. this.volumeSliderValue + 10
  877. );
  878. this.changeVolume();
  879. }
  880. });
  881. keyboardShortcuts.registerShortcut("editSong.increaseVolumeSmall", {
  882. keyCode: 104,
  883. ctrl: true,
  884. preventDefault: true,
  885. handler: () => {
  886. this.volumeSliderValue = Math.min(
  887. 100,
  888. this.volumeSliderValue + 1
  889. );
  890. this.changeVolume();
  891. }
  892. });
  893. keyboardShortcuts.registerShortcut("editSong.save", {
  894. keyCode: 83,
  895. ctrl: true,
  896. preventDefault: true,
  897. handler: () => {
  898. this.save(this.song, false, "saveButton");
  899. }
  900. });
  901. keyboardShortcuts.registerShortcut("editSong.saveClose", {
  902. keyCode: 83,
  903. ctrl: true,
  904. alt: true,
  905. preventDefault: true,
  906. handler: () => {
  907. this.save(this.song, true, "saveAndCloseButton");
  908. }
  909. });
  910. keyboardShortcuts.registerShortcut("editSong.focusTitle", {
  911. keyCode: 36,
  912. preventDefault: true,
  913. handler: () => {
  914. this.$refs["title-input"].focus();
  915. }
  916. });
  917. keyboardShortcuts.registerShortcut("editSong.useAllDiscogs", {
  918. keyCode: 68,
  919. alt: true,
  920. ctrl: true,
  921. preventDefault: true,
  922. handler: () => {
  923. this.getAlbumData("title");
  924. this.getAlbumData("albumArt");
  925. this.getAlbumData("artists");
  926. this.getAlbumData("genres");
  927. }
  928. });
  929. keyboardShortcuts.registerShortcut("editSong.closeModal", {
  930. keyCode: 27,
  931. handler: () => {
  932. if (
  933. this.modals[
  934. this.activeModals[this.activeModals.length - 1]
  935. ] === "editSong" ||
  936. this.modals[
  937. this.activeModals[this.activeModals.length - 1]
  938. ] === "editSongs"
  939. ) {
  940. this.onCloseModal();
  941. }
  942. }
  943. });
  944. /*
  945. editSong.pauseResume - Num 5 - Pause/resume song
  946. editSong.stopVideo - Ctrl - Num 5 - Stop
  947. editSong.hardStopVideo - Shift - Ctrl - Num 5 - Stop
  948. editSong.skipToLast10Secs - Num 6 - Skip to last 10 seconds
  949. editSong.lowerVolumeLarge - Num 2 - Volume down by 10
  950. editSong.lowerVolumeSmall - Ctrl - Num 2 - Volume down by 1
  951. editSong.increaseVolumeLarge - Num 8 - Volume up by 10
  952. editSong.increaseVolumeSmall - Ctrl - Num 8 - Volume up by 1
  953. editSong.focusTitle - Home - Focus the title input
  954. editSong.focusDicogs - End - Focus the discogs input
  955. editSong.save - Ctrl - S - Saves song
  956. editSong.save - Ctrl - Alt - S - Saves song and closes the modal
  957. editSong.save - Ctrl - Alt - V - Saves song, verifies songs and then closes the modal
  958. editSong.close - F4 - Closes modal without saving
  959. editSong.useAllDiscogs - Ctrl - Alt - D - Sets all fields to the Discogs data
  960. Inside Discogs inputs: Ctrl - D - Sets this field to the Discogs data
  961. */
  962. },
  963. beforeUnmount() {
  964. console.log("UNMOUNT");
  965. if (!this.newSong) this.unloadSong(this.songId);
  966. this.playerReady = false;
  967. clearInterval(this.interval);
  968. clearInterval(this.activityWatchVideoDataInterval);
  969. const shortcutNames = [
  970. "editSong.pauseResume",
  971. "editSong.stopVideo",
  972. "editSong.hardStopVideo",
  973. "editSong.skipToLast10Secs",
  974. "editSong.lowerVolumeLarge",
  975. "editSong.lowerVolumeSmall",
  976. "editSong.increaseVolumeLarge",
  977. "editSong.increaseVolumeSmall",
  978. "editSong.focusTitle",
  979. "editSong.focusDicogs",
  980. "editSong.save",
  981. "editSong.saveClose",
  982. "editSong.useAllDiscogs",
  983. "editSong.closeModal"
  984. ];
  985. shortcutNames.forEach(shortcutName => {
  986. keyboardShortcuts.unregisterShortcut(shortcutName);
  987. });
  988. if (!this.bulk) {
  989. // Delete the VueX module that was created for this modal, after all other cleanup tasks are performed
  990. this.$store.unregisterModule([
  991. "modals",
  992. "editSong",
  993. this.modalUuid
  994. ]);
  995. }
  996. },
  997. methods: {
  998. onThumbnailLoad() {
  999. if (this.$refs.thumbnailElement) {
  1000. const thumbnailHeight =
  1001. this.$refs.thumbnailElement.naturalHeight;
  1002. const thumbnailWidth = this.$refs.thumbnailElement.naturalWidth;
  1003. this.thumbnailNotSquare = thumbnailHeight !== thumbnailWidth;
  1004. this.thumbnailHeight = thumbnailHeight;
  1005. this.thumbnailWidth = thumbnailWidth;
  1006. } else {
  1007. this.thumbnailNotSquare = false;
  1008. this.thumbnailHeight = null;
  1009. this.thumbnailWidth = null;
  1010. }
  1011. },
  1012. init() {
  1013. if (this.newSong) {
  1014. this.setSong({
  1015. youtubeId: "",
  1016. title: "",
  1017. artists: [],
  1018. genres: [],
  1019. tags: [],
  1020. duration: 0,
  1021. skipDuration: 0,
  1022. thumbnail: "",
  1023. verified: false
  1024. });
  1025. this.songDataLoaded = true;
  1026. this.showTab("youtube");
  1027. } else if (this.songId) this.loadSong(this.songId);
  1028. else if (!this.bulk) {
  1029. new Toast("You can't open EditSong without editing a song");
  1030. return this.closeModal("editSong");
  1031. }
  1032. this.interval = setInterval(() => {
  1033. if (
  1034. this.song.duration !== -1 &&
  1035. this.video.paused === false &&
  1036. this.playerReady &&
  1037. (this.video.player.getCurrentTime() -
  1038. this.song.skipDuration >
  1039. this.song.duration ||
  1040. (this.video.player.getCurrentTime() > 0 &&
  1041. this.video.player.getCurrentTime() >=
  1042. this.video.player.getDuration()))
  1043. ) {
  1044. this.stopVideo();
  1045. this.pauseVideo(true);
  1046. this.drawCanvas();
  1047. }
  1048. if (
  1049. this.playerReady &&
  1050. this.video.player.getVideoData &&
  1051. this.video.player.getVideoData() &&
  1052. this.video.player.getVideoData().video_id ===
  1053. this.song.youtubeId
  1054. ) {
  1055. const currentTime = this.video.player.getCurrentTime();
  1056. if (currentTime !== undefined)
  1057. this.youtubeVideoCurrentTime = currentTime.toFixed(3);
  1058. if (this.youtubeVideoDuration.indexOf(".000") !== -1) {
  1059. const duration = this.video.player.getDuration();
  1060. if (duration !== undefined) {
  1061. if (
  1062. `${this.youtubeVideoDuration}` ===
  1063. `${Number(this.song.duration).toFixed(3)}`
  1064. )
  1065. this.song.duration = duration.toFixed(3);
  1066. this.youtubeVideoDuration = duration.toFixed(3);
  1067. if (
  1068. this.youtubeVideoDuration.indexOf(".000") !== -1
  1069. )
  1070. this.youtubeVideoNote = "(~)";
  1071. else this.youtubeVideoNote = "";
  1072. this.drawCanvas();
  1073. }
  1074. }
  1075. }
  1076. if (this.video.paused === false) this.drawCanvas();
  1077. }, 200);
  1078. if (window.YT && window.YT.Player) {
  1079. this.video.player = new window.YT.Player("editSongPlayer", {
  1080. height: 298,
  1081. width: 530,
  1082. videoId: null,
  1083. host: "https://www.youtube-nocookie.com",
  1084. playerVars: {
  1085. controls: 0,
  1086. iv_load_policy: 3,
  1087. rel: 0,
  1088. showinfo: 0,
  1089. autoplay: 0
  1090. },
  1091. startSeconds: this.song.skipDuration,
  1092. events: {
  1093. onReady: () => {
  1094. let volume = parseFloat(
  1095. localStorage.getItem("volume")
  1096. );
  1097. volume = typeof volume === "number" ? volume : 20;
  1098. this.video.player.setVolume(volume);
  1099. if (volume > 0) this.video.player.unMute();
  1100. this.playerReady = true;
  1101. if (this.song && this.song._id)
  1102. this.video.player.cueVideoById(
  1103. this.song.youtubeId,
  1104. this.song.skipDuration
  1105. );
  1106. this.setPlaybackRate(null);
  1107. this.drawCanvas();
  1108. },
  1109. onStateChange: event => {
  1110. this.drawCanvas();
  1111. if (event.data === 1) {
  1112. this.video.paused = false;
  1113. let youtubeDuration =
  1114. this.video.player.getDuration();
  1115. const newYoutubeVideoDuration =
  1116. youtubeDuration.toFixed(3);
  1117. if (
  1118. this.youtubeVideoDuration.indexOf(
  1119. ".000"
  1120. ) !== -1 &&
  1121. `${this.youtubeVideoDuration}` !==
  1122. `${newYoutubeVideoDuration}`
  1123. ) {
  1124. const songDurationNumber = Number(
  1125. this.song.duration
  1126. );
  1127. const songDurationNumber2 =
  1128. Number(this.song.duration) + 1;
  1129. const songDurationNumber3 =
  1130. Number(this.song.duration) - 1;
  1131. const fixedSongDuration =
  1132. songDurationNumber.toFixed(3);
  1133. const fixedSongDuration2 =
  1134. songDurationNumber2.toFixed(3);
  1135. const fixedSongDuration3 =
  1136. songDurationNumber3.toFixed(3);
  1137. if (
  1138. `${this.youtubeVideoDuration}` ===
  1139. `${Number(
  1140. this.song.duration
  1141. ).toFixed(3)}` &&
  1142. (fixedSongDuration ===
  1143. this.youtubeVideoDuration ||
  1144. fixedSongDuration2 ===
  1145. this.youtubeVideoDuration ||
  1146. fixedSongDuration3 ===
  1147. this.youtubeVideoDuration)
  1148. )
  1149. this.song.duration =
  1150. newYoutubeVideoDuration;
  1151. this.youtubeVideoDuration =
  1152. newYoutubeVideoDuration;
  1153. if (
  1154. this.youtubeVideoDuration.indexOf(
  1155. ".000"
  1156. ) !== -1
  1157. )
  1158. this.youtubeVideoNote = "(~)";
  1159. else this.youtubeVideoNote = "";
  1160. }
  1161. if (this.song.duration === -1)
  1162. this.song.duration =
  1163. this.youtubeVideoDuration;
  1164. youtubeDuration -= this.song.skipDuration;
  1165. if (this.song.duration > youtubeDuration + 1) {
  1166. this.stopVideo();
  1167. this.pauseVideo(true);
  1168. return new Toast(
  1169. "Video can't play. Specified duration is bigger than the YouTube song duration."
  1170. );
  1171. }
  1172. if (this.song.duration <= 0) {
  1173. this.stopVideo();
  1174. this.pauseVideo(true);
  1175. return new Toast(
  1176. "Video can't play. Specified duration has to be more than 0 seconds."
  1177. );
  1178. }
  1179. if (
  1180. this.video.player.getCurrentTime() <
  1181. this.song.skipDuration
  1182. ) {
  1183. return this.seekTo(this.song.skipDuration);
  1184. }
  1185. this.setPlaybackRate(null);
  1186. } else if (event.data === 2) {
  1187. this.video.paused = true;
  1188. }
  1189. return false;
  1190. }
  1191. }
  1192. });
  1193. } else {
  1194. this.youtubeError = true;
  1195. this.youtubeErrorMessage = "Player could not be loaded.";
  1196. }
  1197. ["artists", "genres", "tags"].forEach(type => {
  1198. this.socket.dispatch(
  1199. `songs.get${type.charAt(0).toUpperCase()}${type.slice(1)}`,
  1200. res => {
  1201. if (res.status === "success") {
  1202. const { items } = res.data;
  1203. if (type === "genres")
  1204. this.autosuggest.allItems[type] = Array.from(
  1205. new Set([
  1206. ...this.recommendedGenres,
  1207. ...items
  1208. ])
  1209. );
  1210. else this.autosuggest.allItems[type] = items;
  1211. } else {
  1212. new Toast(res.message);
  1213. }
  1214. }
  1215. );
  1216. });
  1217. return null;
  1218. },
  1219. unloadSong(songId) {
  1220. this.songDataLoaded = false;
  1221. this.songDeleted = false;
  1222. this.stopVideo();
  1223. this.pauseVideo(true);
  1224. this.resetSong(songId);
  1225. this.thumbnailNotSquare = false;
  1226. this.thumbnailWidth = null;
  1227. this.thumbnailHeight = null;
  1228. this.youtubeVideoCurrentTime = "0.000";
  1229. this.youtubeVideoDuration = "0.000";
  1230. this.youtubeVideoNote = "";
  1231. this.socket.dispatch("apis.leaveRoom", `edit-song.${songId}`);
  1232. if (this.$refs.saveButton) this.$refs.saveButton.status = "default";
  1233. },
  1234. loadSong(songId) {
  1235. console.log(`LOAD SONG ${songId}`);
  1236. this.songNotFound = false;
  1237. this.socket.dispatch(`songs.getSongFromSongId`, songId, res => {
  1238. if (res.status === "success") {
  1239. let { song } = res.data;
  1240. song = Object.assign(song, this.prefillData);
  1241. this.setSong(song);
  1242. this.songDataLoaded = true;
  1243. this.socket.dispatch(
  1244. "apis.joinRoom",
  1245. `edit-song.${this.song._id}`
  1246. );
  1247. if (this.video.player && this.video.player.cueVideoById) {
  1248. this.video.player.cueVideoById(
  1249. this.song.youtubeId,
  1250. this.song.skipDuration
  1251. );
  1252. }
  1253. } else {
  1254. new Toast("Song with that ID not found");
  1255. if (this.bulk) this.songNotFound = true;
  1256. if (!this.bulk) this.closeModal("editSong");
  1257. }
  1258. });
  1259. this.socket.dispatch("reports.getReportsForSong", songId, res => {
  1260. this.updateReports(res.data.reports);
  1261. });
  1262. },
  1263. importAlbum(result) {
  1264. this.selectDiscogsAlbum(result);
  1265. this.openModal("importAlbum");
  1266. this.closeModal("editSong");
  1267. },
  1268. save(songToCopy, closeOrNext, saveButtonRefName, newSong = false) {
  1269. const song = JSON.parse(JSON.stringify(songToCopy));
  1270. if (!newSong) this.$emit("saving", song._id);
  1271. const saveButtonRef = this.$refs[saveButtonRefName];
  1272. if (!this.youtubeError && this.youtubeVideoDuration === "0.000") {
  1273. saveButtonRef.handleFailedSave();
  1274. if (!newSong) this.$emit("savedError", song._id);
  1275. return new Toast("The video appears to not be working.");
  1276. }
  1277. if (!song.title) {
  1278. saveButtonRef.handleFailedSave();
  1279. if (!newSong) this.$emit("savedError", song._id);
  1280. return new Toast("Please fill in all fields");
  1281. }
  1282. if (!song.thumbnail) {
  1283. saveButtonRef.handleFailedSave();
  1284. if (!newSong) this.$emit("savedError", song._id);
  1285. return new Toast("Please fill in all fields");
  1286. }
  1287. // const thumbnailHeight = this.$refs.thumbnailElement.naturalHeight;
  1288. // const thumbnailWidth = this.$refs.thumbnailElement.naturalWidth;
  1289. // if (thumbnailHeight < 80 || thumbnailWidth < 80) {
  1290. // saveButtonRef.handleFailedSave();
  1291. // return new Toast(
  1292. // "Thumbnail width and height must be at least 80px."
  1293. // );
  1294. // }
  1295. // if (thumbnailHeight > 4000 || thumbnailWidth > 4000) {
  1296. // saveButtonRef.handleFailedSave();
  1297. // return new Toast(
  1298. // "Thumbnail width and height must be less than 4000px."
  1299. // );
  1300. // }
  1301. // if (thumbnailHeight - thumbnailWidth > 5) {
  1302. // saveButtonRef.handleFailedSave();
  1303. // return new Toast("Thumbnail cannot be taller than it is wide.");
  1304. // }
  1305. // Youtube Id
  1306. if (
  1307. !newSong &&
  1308. this.youtubeError &&
  1309. this.originalSong.youtubeId !== song.youtubeId
  1310. ) {
  1311. saveButtonRef.handleFailedSave();
  1312. if (!newSong) this.$emit("savedError", song._id);
  1313. return new Toast(
  1314. "You're not allowed to change the YouTube id while the player is not working"
  1315. );
  1316. }
  1317. // Duration
  1318. if (
  1319. Number(song.skipDuration) + Number(song.duration) >
  1320. this.youtubeVideoDuration &&
  1321. ((!newSong && !this.youtubeError) ||
  1322. this.originalSong.duration !== song.duration)
  1323. ) {
  1324. saveButtonRef.handleFailedSave();
  1325. if (!newSong) this.$emit("savedError", song._id);
  1326. return new Toast(
  1327. "Duration can't be higher than the length of the video"
  1328. );
  1329. }
  1330. // Title
  1331. if (!validation.isLength(song.title, 1, 100)) {
  1332. saveButtonRef.handleFailedSave();
  1333. if (!newSong) this.$emit("savedError", song._id);
  1334. return new Toast(
  1335. "Title must have between 1 and 100 characters."
  1336. );
  1337. }
  1338. // Artists
  1339. if (
  1340. (song.verified && song.artists.length < 1) ||
  1341. song.artists.length > 10
  1342. ) {
  1343. saveButtonRef.handleFailedSave();
  1344. if (!newSong) this.$emit("savedError", song._id);
  1345. return new Toast(
  1346. "Invalid artists. You must have at least 1 artist and a maximum of 10 artists."
  1347. );
  1348. }
  1349. let error;
  1350. song.artists.forEach(artist => {
  1351. if (!validation.isLength(artist, 1, 64)) {
  1352. error = "Artist must have between 1 and 64 characters.";
  1353. return error;
  1354. }
  1355. if (artist === "NONE") {
  1356. error =
  1357. 'Invalid artist format. Artists are not allowed to be named "NONE".';
  1358. return error;
  1359. }
  1360. return false;
  1361. });
  1362. if (error) {
  1363. saveButtonRef.handleFailedSave();
  1364. if (!newSong) this.$emit("savedError", song._id);
  1365. return new Toast(error);
  1366. }
  1367. // Genres
  1368. error = undefined;
  1369. song.genres.forEach(genre => {
  1370. if (!validation.isLength(genre, 1, 32)) {
  1371. error = "Genre must have between 1 and 32 characters.";
  1372. return error;
  1373. }
  1374. if (!validation.regex.ascii.test(genre)) {
  1375. error =
  1376. "Invalid genre format. Only ascii characters are allowed.";
  1377. return error;
  1378. }
  1379. return false;
  1380. });
  1381. if (
  1382. (song.verified && song.genres.length < 1) ||
  1383. song.genres.length > 16
  1384. )
  1385. error = "You must have between 1 and 16 genres.";
  1386. if (error) {
  1387. saveButtonRef.handleFailedSave();
  1388. if (!newSong) this.$emit("savedError", song._id);
  1389. return new Toast(error);
  1390. }
  1391. error = undefined;
  1392. song.tags.forEach(tag => {
  1393. if (
  1394. !/^[a-zA-Z0-9_]{1,64}$|^[a-zA-Z0-9_]{1,64}\[[a-zA-Z0-9_]{1,64}\]$/.test(
  1395. tag
  1396. )
  1397. ) {
  1398. error = "Invalid tag format.";
  1399. return error;
  1400. }
  1401. return false;
  1402. });
  1403. if (error) {
  1404. saveButtonRef.handleFailedSave();
  1405. if (!newSong) this.$emit("savedError", song._id);
  1406. return new Toast(error);
  1407. }
  1408. // Thumbnail
  1409. if (!validation.isLength(song.thumbnail, 1, 256)) {
  1410. saveButtonRef.handleFailedSave();
  1411. if (!newSong) this.$emit("savedError", song._id);
  1412. return new Toast(
  1413. "Thumbnail must have between 8 and 256 characters."
  1414. );
  1415. }
  1416. if (this.useHTTPS && song.thumbnail.indexOf("https://") !== 0) {
  1417. saveButtonRef.handleFailedSave();
  1418. if (!newSong) this.$emit("savedError", song._id);
  1419. return new Toast('Thumbnail must start with "https://".');
  1420. }
  1421. if (
  1422. !this.useHTTPS &&
  1423. song.thumbnail.indexOf("http://") !== 0 &&
  1424. song.thumbnail.indexOf("https://") !== 0
  1425. ) {
  1426. saveButtonRef.handleFailedSave();
  1427. if (!newSong) this.$emit("savedError", song._id);
  1428. return new Toast('Thumbnail must start with "http://".');
  1429. }
  1430. saveButtonRef.status = "saving";
  1431. if (newSong)
  1432. return this.socket.dispatch(`songs.create`, song, res => {
  1433. new Toast(res.message);
  1434. if (res.status === "error") {
  1435. saveButtonRef.handleFailedSave();
  1436. return;
  1437. }
  1438. saveButtonRef.handleSuccessfulSave();
  1439. this.closeModal("editSong");
  1440. });
  1441. return this.socket.dispatch(`songs.update`, song._id, song, res => {
  1442. new Toast(res.message);
  1443. if (res.status === "error") {
  1444. saveButtonRef.handleFailedSave();
  1445. this.$emit("savedError", song._id);
  1446. return;
  1447. }
  1448. this.updateOriginalSong(song);
  1449. saveButtonRef.handleSuccessfulSave();
  1450. this.$emit("savedSuccess", song._id);
  1451. if (!closeOrNext) return;
  1452. if (this.bulk) this.$emit("nextSong");
  1453. else this.closeModal("editSong");
  1454. });
  1455. },
  1456. editNextSong() {
  1457. this.$emit("nextSong");
  1458. },
  1459. toggleFlag() {
  1460. this.$emit("toggleFlag");
  1461. },
  1462. getAlbumData(type) {
  1463. if (!this.song.discogs) return;
  1464. if (type === "title")
  1465. this.updateSongField({
  1466. field: "title",
  1467. value: this.song.discogs.track.title
  1468. });
  1469. if (type === "albumArt")
  1470. this.updateSongField({
  1471. field: "thumbnail",
  1472. value: this.song.discogs.album.albumArt
  1473. });
  1474. if (type === "genres")
  1475. this.updateSongField({
  1476. field: "genres",
  1477. value: JSON.parse(
  1478. JSON.stringify(this.song.discogs.album.genres)
  1479. )
  1480. });
  1481. if (type === "artists")
  1482. this.updateSongField({
  1483. field: "artists",
  1484. value: JSON.parse(
  1485. JSON.stringify(this.song.discogs.album.artists)
  1486. )
  1487. });
  1488. },
  1489. getYouTubeData(type) {
  1490. if (type === "albumArt")
  1491. this.updateSongField({
  1492. field: "thumbnail",
  1493. value: `https://img.youtube.com/vi/${this.song.youtubeId}/mqdefault.jpg`
  1494. });
  1495. },
  1496. fillDuration() {
  1497. this.song.duration =
  1498. this.youtubeVideoDuration - this.song.skipDuration;
  1499. },
  1500. settings(type) {
  1501. switch (type) {
  1502. case "stop":
  1503. this.stopVideo();
  1504. this.pauseVideo(true);
  1505. break;
  1506. case "hardStop":
  1507. this.hardStopVideo();
  1508. this.pauseVideo(true);
  1509. break;
  1510. case "pause":
  1511. this.pauseVideo(true);
  1512. break;
  1513. case "play":
  1514. this.pauseVideo(false);
  1515. break;
  1516. case "skipToLast10Secs":
  1517. this.seekTo(
  1518. this.song.duration - 10 + this.song.skipDuration
  1519. );
  1520. break;
  1521. default:
  1522. break;
  1523. }
  1524. },
  1525. play() {
  1526. if (
  1527. this.video.player.getVideoData().video_id !==
  1528. this.song.youtubeId
  1529. ) {
  1530. this.song.duration = -1;
  1531. this.loadVideoById(this.song.youtubeId, this.song.skipDuration);
  1532. }
  1533. this.settings("play");
  1534. },
  1535. seekTo(position) {
  1536. this.settings("play");
  1537. this.video.player.seekTo(position);
  1538. },
  1539. changeVolume() {
  1540. const volume = this.volumeSliderValue;
  1541. localStorage.setItem("volume", volume);
  1542. this.video.player.setVolume(volume);
  1543. if (volume > 0) {
  1544. this.video.player.unMute();
  1545. this.muted = false;
  1546. }
  1547. },
  1548. toggleMute() {
  1549. const previousVolume = parseFloat(localStorage.getItem("volume"));
  1550. const volume =
  1551. this.video.player.getVolume() <= 0 ? previousVolume : 0;
  1552. this.muted = !this.muted;
  1553. this.volumeSliderValue = volume;
  1554. this.video.player.setVolume(volume);
  1555. if (!this.muted) localStorage.setItem("volume", volume);
  1556. },
  1557. increaseVolume() {
  1558. const previousVolume = parseFloat(localStorage.getItem("volume"));
  1559. let volume = previousVolume + 5;
  1560. this.muted = false;
  1561. if (volume > 100) volume = 100;
  1562. this.volumeSliderValue = volume;
  1563. this.video.player.setVolume(volume);
  1564. localStorage.setItem("volume", volume);
  1565. },
  1566. addTag(type, value) {
  1567. if (type === "genres") {
  1568. const genre = value || this.genreInputValue.trim();
  1569. if (
  1570. this.song.genres
  1571. .map(genre => genre.toLowerCase())
  1572. .indexOf(genre.toLowerCase()) !== -1
  1573. )
  1574. return new Toast("Genre already exists");
  1575. if (genre) {
  1576. this.song.genres.push(genre);
  1577. this.genreInputValue = "";
  1578. return false;
  1579. }
  1580. return new Toast("Genre cannot be empty");
  1581. }
  1582. if (type === "artists") {
  1583. const artist = value || this.artistInputValue;
  1584. if (this.song.artists.indexOf(artist) !== -1)
  1585. return new Toast("Artist already exists");
  1586. if (artist !== "") {
  1587. this.song.artists.push(artist);
  1588. this.artistInputValue = "";
  1589. return false;
  1590. }
  1591. return new Toast("Artist cannot be empty");
  1592. }
  1593. if (type === "tags") {
  1594. const tag = value || this.tagInputValue;
  1595. if (this.song.tags.indexOf(tag) !== -1)
  1596. return new Toast("Tag already exists");
  1597. if (tag !== "") {
  1598. this.song.tags.push(tag);
  1599. this.tagInputValue = "";
  1600. return false;
  1601. }
  1602. return new Toast("Tag cannot be empty");
  1603. }
  1604. return false;
  1605. },
  1606. removeTag(type, value) {
  1607. if (type === "genres")
  1608. this.song.genres.splice(this.song.genres.indexOf(value), 1);
  1609. else if (type === "artists")
  1610. this.song.artists.splice(this.song.artists.indexOf(value), 1);
  1611. else if (type === "tags")
  1612. this.song.tags.splice(this.song.tags.indexOf(value), 1);
  1613. },
  1614. drawCanvas() {
  1615. if (!this.songDataLoaded) return;
  1616. const canvasElement = this.$refs.durationCanvas;
  1617. const ctx = canvasElement.getContext("2d");
  1618. const videoDuration = Number(this.youtubeVideoDuration);
  1619. const skipDuration = Number(this.song.skipDuration);
  1620. const duration = Number(this.song.duration);
  1621. const afterDuration = videoDuration - (skipDuration + duration);
  1622. const width = 530;
  1623. const currentTime =
  1624. this.video.player && this.video.player.getCurrentTime
  1625. ? this.video.player.getCurrentTime()
  1626. : 0;
  1627. const widthSkipDuration = (skipDuration / videoDuration) * width;
  1628. const widthDuration = (duration / videoDuration) * width;
  1629. const widthAfterDuration = (afterDuration / videoDuration) * width;
  1630. const widthCurrentTime = (currentTime / videoDuration) * width;
  1631. const skipDurationColor = "#F42003";
  1632. const durationColor = "#03A9F4";
  1633. const afterDurationColor = "#41E841";
  1634. const currentDurationColor = "#3b25e8";
  1635. ctx.fillStyle = skipDurationColor;
  1636. ctx.fillRect(0, 0, widthSkipDuration, 20);
  1637. ctx.fillStyle = durationColor;
  1638. ctx.fillRect(widthSkipDuration, 0, widthDuration, 20);
  1639. ctx.fillStyle = afterDurationColor;
  1640. ctx.fillRect(
  1641. widthSkipDuration + widthDuration,
  1642. 0,
  1643. widthAfterDuration,
  1644. 20
  1645. );
  1646. ctx.fillStyle = currentDurationColor;
  1647. ctx.fillRect(widthCurrentTime, 0, 1, 20);
  1648. },
  1649. setTrackPosition(event) {
  1650. this.seekTo(
  1651. Number(
  1652. Number(this.video.player.getDuration()) *
  1653. ((event.pageX -
  1654. event.target.getBoundingClientRect().left) /
  1655. 530)
  1656. )
  1657. );
  1658. },
  1659. toggleGenreHelper() {
  1660. this.$refs.genreHelper.toggleBox();
  1661. },
  1662. resetGenreHelper() {
  1663. this.$refs.genreHelper.resetBox();
  1664. },
  1665. sendActivityWatchVideoData() {
  1666. if (!this.video.paused) {
  1667. if (this.activityWatchVideoLastStatus !== "playing") {
  1668. this.activityWatchVideoLastStatus = "playing";
  1669. if (
  1670. this.song.skipDuration > 0 &&
  1671. parseFloat(this.youtubeVideoCurrentTime) === 0
  1672. ) {
  1673. this.activityWatchVideoLastStartDuration = Math.floor(
  1674. this.song.skipDuration +
  1675. parseFloat(this.youtubeVideoCurrentTime)
  1676. );
  1677. } else {
  1678. this.activityWatchVideoLastStartDuration = Math.floor(
  1679. parseFloat(this.youtubeVideoCurrentTime)
  1680. );
  1681. }
  1682. }
  1683. const videoData = {
  1684. title: this.song.title,
  1685. artists: this.song.artists
  1686. ? this.song.artists.join(", ")
  1687. : null,
  1688. youtubeId: this.song.youtubeId,
  1689. muted: this.muted,
  1690. volume: this.volumeSliderValue,
  1691. startedDuration:
  1692. this.activityWatchVideoLastStartDuration <= 0
  1693. ? 0
  1694. : this.activityWatchVideoLastStartDuration,
  1695. source: `editSong#${this.song.youtubeId}`,
  1696. hostname: window.location.hostname
  1697. };
  1698. aw.sendVideoData(videoData);
  1699. } else {
  1700. this.activityWatchVideoLastStatus = "not_playing";
  1701. }
  1702. },
  1703. remove(id) {
  1704. this.socket.dispatch("songs.remove", id, res => {
  1705. new Toast(res.message);
  1706. });
  1707. },
  1708. confirmAction({ message, action, params }) {
  1709. this.openModal({
  1710. modal: "confirm",
  1711. data: {
  1712. message,
  1713. action,
  1714. params,
  1715. onCompleted: this.handleConfirmed
  1716. }
  1717. });
  1718. },
  1719. handleConfirmed({ action, params }) {
  1720. if (typeof this[action] === "function") {
  1721. if (params) this[action](params);
  1722. else this[action]();
  1723. }
  1724. },
  1725. onCloseModal() {
  1726. const songStringified = JSON.stringify({
  1727. ...this.song
  1728. });
  1729. const originalSongStringified = JSON.stringify({
  1730. ...this.originalSong
  1731. });
  1732. const unsavedChanges = songStringified !== originalSongStringified;
  1733. if (unsavedChanges) {
  1734. return this.confirmAction({
  1735. message:
  1736. "You have unsaved changes. Are you sure you want to discard unsaved changes?",
  1737. action: "closeThisModal",
  1738. params: null
  1739. });
  1740. }
  1741. return this.closeThisModal();
  1742. },
  1743. closeThisModal() {
  1744. if (this.bulk) this.$emit("close");
  1745. else this.closeModal("editSong");
  1746. },
  1747. ...mapActions("modals/importAlbum", ["selectDiscogsAlbum"]),
  1748. ...mapActions({
  1749. showTab(dispatch, payload) {
  1750. if (this.$refs[`${payload}-tab`])
  1751. this.$refs[`${payload}-tab`].scrollIntoView({
  1752. block: "nearest"
  1753. });
  1754. return dispatch(
  1755. `${this.modalModulePath.replace(
  1756. "MODAL_UUID",
  1757. this.modalUuid
  1758. )}/showTab`,
  1759. payload
  1760. );
  1761. }
  1762. }),
  1763. ...mapModalActions("MODAL_MODULE_PATH", [
  1764. "stopVideo",
  1765. "hardStopVideo",
  1766. "loadVideoById",
  1767. "pauseVideo",
  1768. "getCurrentTime",
  1769. "setSong",
  1770. "resetSong",
  1771. "updateOriginalSong",
  1772. "updateSongField",
  1773. "updateReports",
  1774. "setPlaybackRate"
  1775. ]),
  1776. ...mapActions("modalVisibility", ["closeModal", "openModal"])
  1777. }
  1778. };
  1779. </script>
  1780. <style lang="less" scoped>
  1781. .night-mode {
  1782. .edit-section,
  1783. .player-section,
  1784. #tabs-container {
  1785. background-color: var(--dark-grey-3) !important;
  1786. border: 0 !important;
  1787. .tab {
  1788. border: 0 !important;
  1789. }
  1790. }
  1791. #tabs-container #tab-selection .button {
  1792. background: var(--dark-grey) !important;
  1793. color: var(--white) !important;
  1794. }
  1795. .left-section {
  1796. .edit-section {
  1797. .album-get-button,
  1798. .duration-fill-button,
  1799. .youtube-get-button,
  1800. .add-button {
  1801. &:focus,
  1802. &:hover {
  1803. border: none !important;
  1804. }
  1805. }
  1806. }
  1807. }
  1808. #durationCanvas {
  1809. background-color: var(--dark-grey-2) !important;
  1810. }
  1811. }
  1812. .modal-card-body {
  1813. display: flex;
  1814. }
  1815. .notice-container {
  1816. display: flex;
  1817. flex: 1;
  1818. justify-content: center;
  1819. h4 {
  1820. margin: auto;
  1821. }
  1822. }
  1823. .left-section {
  1824. flex-basis: unset !important;
  1825. height: 100%;
  1826. display: flex;
  1827. flex-direction: column;
  1828. margin-right: 16px;
  1829. .top-section {
  1830. display: flex;
  1831. .player-section {
  1832. width: 530px;
  1833. display: flex;
  1834. flex-direction: column;
  1835. border: 1px solid var(--light-grey-3);
  1836. border-radius: @border-radius;
  1837. overflow: hidden;
  1838. #durationCanvas {
  1839. background-color: var(--light-grey-2);
  1840. }
  1841. .player-error {
  1842. display: flex;
  1843. height: 318px;
  1844. width: 530px;
  1845. align-items: center;
  1846. * {
  1847. margin: 0;
  1848. flex: 1;
  1849. font-size: 30px;
  1850. text-align: center;
  1851. }
  1852. }
  1853. .player-footer {
  1854. display: flex;
  1855. justify-content: space-between;
  1856. height: 54px;
  1857. padding-left: 10px;
  1858. padding-right: 10px;
  1859. > * {
  1860. width: 33.3%;
  1861. display: flex;
  1862. align-items: center;
  1863. }
  1864. .player-footer-left {
  1865. flex: 1;
  1866. & > .button:not(:first-child) {
  1867. margin-left: 5px;
  1868. }
  1869. :deep(& > .playerRateDropdown) {
  1870. margin-left: 5px;
  1871. margin-bottom: unset !important;
  1872. .control.has-addons {
  1873. margin-bottom: unset !important;
  1874. & > .button {
  1875. font-size: 24px;
  1876. }
  1877. }
  1878. }
  1879. :deep(.tippy-box[data-theme~="dropdown"]) {
  1880. max-width: 100px !important;
  1881. .nav-dropdown-items .nav-item {
  1882. justify-content: center !important;
  1883. border-radius: @border-radius !important;
  1884. &.active {
  1885. background-color: var(--primary-color);
  1886. color: var(--white);
  1887. }
  1888. }
  1889. }
  1890. }
  1891. .player-footer-center {
  1892. justify-content: center;
  1893. align-items: center;
  1894. flex: 2;
  1895. font-size: 18px;
  1896. font-weight: 400;
  1897. width: 200px;
  1898. margin: 0 5px;
  1899. img {
  1900. height: 21px;
  1901. margin-right: 12px;
  1902. filter: invert(26%) sepia(54%) saturate(6317%)
  1903. hue-rotate(2deg) brightness(92%) contrast(115%);
  1904. }
  1905. }
  1906. .player-footer-right {
  1907. justify-content: right;
  1908. flex: 1;
  1909. #volume-control {
  1910. margin: 3px;
  1911. margin-top: 0;
  1912. display: flex;
  1913. align-items: center;
  1914. cursor: pointer;
  1915. .volume-slider {
  1916. width: 100%;
  1917. padding: 0 15px;
  1918. background: transparent;
  1919. min-width: 100px;
  1920. }
  1921. input[type="range"] {
  1922. -webkit-appearance: none;
  1923. margin: 7.3px 0;
  1924. }
  1925. input[type="range"]:focus {
  1926. outline: none;
  1927. }
  1928. input[type="range"]::-webkit-slider-runnable-track {
  1929. width: 100%;
  1930. height: 5.2px;
  1931. cursor: pointer;
  1932. box-shadow: 0;
  1933. background: var(--light-grey-3);
  1934. border-radius: @border-radius;
  1935. border: 0;
  1936. }
  1937. input[type="range"]::-webkit-slider-thumb {
  1938. box-shadow: 0;
  1939. border: 0;
  1940. height: 19px;
  1941. width: 19px;
  1942. border-radius: 100%;
  1943. background: var(--primary-color);
  1944. cursor: pointer;
  1945. -webkit-appearance: none;
  1946. margin-top: -6.5px;
  1947. }
  1948. input[type="range"]::-moz-range-track {
  1949. width: 100%;
  1950. height: 5.2px;
  1951. cursor: pointer;
  1952. box-shadow: 0;
  1953. background: var(--light-grey-3);
  1954. border-radius: @border-radius;
  1955. border: 0;
  1956. }
  1957. input[type="range"]::-moz-range-thumb {
  1958. box-shadow: 0;
  1959. border: 0;
  1960. height: 19px;
  1961. width: 19px;
  1962. border-radius: 100%;
  1963. background: var(--primary-color);
  1964. cursor: pointer;
  1965. -webkit-appearance: none;
  1966. margin-top: -6.5px;
  1967. }
  1968. input[type="range"]::-ms-track {
  1969. width: 100%;
  1970. height: 5.2px;
  1971. cursor: pointer;
  1972. box-shadow: 0;
  1973. background: var(--light-grey-3);
  1974. border-radius: @border-radius;
  1975. }
  1976. input[type="range"]::-ms-fill-lower {
  1977. background: var(--light-grey-3);
  1978. border: 0;
  1979. border-radius: 0;
  1980. box-shadow: 0;
  1981. }
  1982. input[type="range"]::-ms-fill-upper {
  1983. background: var(--light-grey-3);
  1984. border: 0;
  1985. border-radius: 0;
  1986. box-shadow: 0;
  1987. }
  1988. input[type="range"]::-ms-thumb {
  1989. box-shadow: 0;
  1990. border: 0;
  1991. height: 15px;
  1992. width: 15px;
  1993. border-radius: 100%;
  1994. background: var(--primary-color);
  1995. cursor: pointer;
  1996. -webkit-appearance: none;
  1997. margin-top: 1.5px;
  1998. }
  1999. }
  2000. }
  2001. }
  2002. }
  2003. .thumbnail-preview {
  2004. width: 189px;
  2005. height: 189px;
  2006. margin-left: 16px;
  2007. }
  2008. }
  2009. .edit-section {
  2010. width: 735px;
  2011. border: 1px solid var(--light-grey-3);
  2012. flex: 1;
  2013. margin-top: 16px;
  2014. border-radius: @border-radius;
  2015. .album-get-button {
  2016. background-color: var(--purple);
  2017. color: var(--white);
  2018. width: 32px;
  2019. text-align: center;
  2020. border-width: 0;
  2021. }
  2022. .duration-fill-button,
  2023. .youtube-get-button {
  2024. background-color: var(--dark-red);
  2025. color: var(--white);
  2026. width: 32px;
  2027. text-align: center;
  2028. border-width: 0;
  2029. }
  2030. .add-button {
  2031. background-color: var(--primary-color) !important;
  2032. width: 32px;
  2033. i {
  2034. font-size: 32px;
  2035. }
  2036. }
  2037. .album-get-button,
  2038. .duration-fill-button,
  2039. .youtube-get-button,
  2040. .add-button {
  2041. &:focus,
  2042. &:hover {
  2043. filter: contrast(0.75);
  2044. border: 1px solid var(--black) !important;
  2045. }
  2046. }
  2047. .youtube-get-button {
  2048. padding-left: 4px;
  2049. padding-right: 4px;
  2050. .youtube-icon {
  2051. background: var(--white);
  2052. }
  2053. }
  2054. > div {
  2055. margin: 16px !important;
  2056. }
  2057. input {
  2058. width: 100%;
  2059. }
  2060. .title-container {
  2061. width: calc((100% - 32px) / 2);
  2062. }
  2063. .duration-container {
  2064. margin-right: 16px;
  2065. margin-left: 16px;
  2066. width: calc((100% - 32px) / 4);
  2067. }
  2068. .skip-duration-container {
  2069. width: calc((100% - 32px) / 4);
  2070. }
  2071. .album-art-container {
  2072. margin-right: 16px;
  2073. width: calc((100% - 16px) / 8 * 4);
  2074. }
  2075. .youtube-id-container {
  2076. margin-right: 16px;
  2077. width: calc((100% - 16px) / 8 * 3);
  2078. }
  2079. .verified-container {
  2080. width: calc((100% - 16px) / 8);
  2081. .checkbox-control {
  2082. margin-top: 10px;
  2083. }
  2084. }
  2085. .artists-container {
  2086. width: calc((100% - 32px) / 3);
  2087. position: relative;
  2088. }
  2089. .genres-container {
  2090. width: calc((100% - 32px) / 3);
  2091. margin-left: 16px;
  2092. margin-right: 16px;
  2093. position: relative;
  2094. label {
  2095. display: flex;
  2096. i {
  2097. font-size: 15px;
  2098. align-self: center;
  2099. margin-left: 5px;
  2100. color: var(--primary-color);
  2101. cursor: pointer;
  2102. -webkit-user-select: none;
  2103. -moz-user-select: none;
  2104. -ms-user-select: none;
  2105. user-select: none;
  2106. }
  2107. }
  2108. }
  2109. .tags-container {
  2110. width: calc((100% - 32px) / 3);
  2111. position: relative;
  2112. }
  2113. .list-item-circle {
  2114. background-color: var(--primary-color);
  2115. width: 16px;
  2116. height: 16px;
  2117. border-radius: 8px;
  2118. cursor: pointer;
  2119. margin-right: 8px;
  2120. float: left;
  2121. -webkit-touch-callout: none;
  2122. -webkit-user-select: none;
  2123. -khtml-user-select: none;
  2124. -moz-user-select: none;
  2125. -ms-user-select: none;
  2126. user-select: none;
  2127. i {
  2128. color: var(--primary-color);
  2129. font-size: 14px;
  2130. margin-left: 1px;
  2131. position: relative;
  2132. top: -1px;
  2133. }
  2134. }
  2135. .list-item-circle:hover,
  2136. .list-item-circle:focus {
  2137. i {
  2138. color: var(--white);
  2139. }
  2140. }
  2141. .list-item > p {
  2142. line-height: 16px;
  2143. word-wrap: break-word;
  2144. width: calc(100% - 24px);
  2145. left: 24px;
  2146. float: left;
  2147. margin-bottom: 8px;
  2148. }
  2149. .list-item:last-child > p {
  2150. margin-bottom: 0;
  2151. }
  2152. .thumbnail-warning {
  2153. color: var(--red);
  2154. font-size: 18px;
  2155. margin: auto 0 auto 5px;
  2156. }
  2157. }
  2158. }
  2159. .right-section {
  2160. flex-basis: unset !important;
  2161. flex-grow: 0 !important;
  2162. display: flex;
  2163. height: 100%;
  2164. #tabs-container {
  2165. width: 376px;
  2166. #tab-selection {
  2167. display: flex;
  2168. overflow-x: auto;
  2169. .button {
  2170. border-radius: @border-radius @border-radius 0 0;
  2171. border: 0;
  2172. text-transform: uppercase;
  2173. font-size: 14px;
  2174. color: var(--dark-grey-3);
  2175. background-color: var(--light-grey-2);
  2176. flex-grow: 1;
  2177. height: 32px;
  2178. &:not(:first-of-type) {
  2179. margin-left: 5px;
  2180. }
  2181. }
  2182. .selected {
  2183. background-color: var(--primary-color) !important;
  2184. color: var(--white) !important;
  2185. font-weight: 600;
  2186. }
  2187. }
  2188. .tab {
  2189. border: 1px solid var(--light-grey-3);
  2190. border-radius: 0 0 @border-radius @border-radius;
  2191. padding: 15px;
  2192. height: calc(100% - 32px);
  2193. overflow: auto;
  2194. }
  2195. }
  2196. }
  2197. .modal-card-foot .is-primary {
  2198. width: 200px;
  2199. }
  2200. :deep(.autosuggest-container) {
  2201. top: unset;
  2202. }
  2203. </style>