popup.html 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>My Playlists</title>
  7. <link rel="stylesheet" href="popup.css" />
  8. <script src="alpine.min.js" defer></script>
  9. <script src="../shared/playlist-utils.js"></script>
  10. <script src="popup.js"></script>
  11. </head>
  12. <body>
  13. <div id="app" x-data="playlistManager">
  14. <header x-bind="playlistsHeader">
  15. <h1>My Playlists</h1>
  16. </header>
  17. <header x-bind="historyHeader">
  18. <button class="back-btn-arrow" x-bind="backButton">←</button>
  19. <h1>History</h1>
  20. </header>
  21. <header x-bind="playlistViewHeader">
  22. <button class="back-btn-arrow" x-bind="backButton">←</button>
  23. <h1 x-text="currentPlaylistName"></h1>
  24. </header>
  25. <div class="playlists-container" x-bind="playlistsContainer">
  26. <template
  27. x-for="playlistData in playlistsForDisplay"
  28. :key="playlistData.name"
  29. >
  30. <div class="playlist">
  31. <h2
  32. class="playlist-name-clickable"
  33. x-text="playlistData.name"
  34. :data-playlist-name="playlistData.name"
  35. x-bind="playlistNameClick"
  36. ></h2>
  37. <div class="video-list">
  38. <!-- Truncated previous videos indicator -->
  39. <div
  40. class="truncated-videos"
  41. :data-playlist-name="playlistData.name"
  42. x-bind="truncatedVideosDisplay"
  43. >
  44. <span x-text="playlistData.truncationText"></span>
  45. </div>
  46. <template x-for="(video, index) in playlistData.visibleVideos" :key="index">
  47. <div
  48. class="video-item"
  49. :title="video.title"
  50. :data-playlist-name="playlistData.name"
  51. :data-playlist-index="video.originalIndex"
  52. x-bind="videoItemClass"
  53. >
  54. <a
  55. class="video-title"
  56. :href="video.url"
  57. x-text="video.title"
  58. x-bind="videoPlayLink"
  59. ></a>
  60. <div class="video-actions">
  61. <button
  62. :data-playlist-name="playlistData.name"
  63. :data-playlist-index="video.originalIndex"
  64. x-bind="moveUpButton"
  65. class="move-up-btn"
  66. title="Move up"
  67. >
  68. </button>
  69. <button
  70. :data-playlist-name="playlistData.name"
  71. :data-playlist-index="video.originalIndex"
  72. x-bind="moveDownButton"
  73. class="move-down-btn"
  74. title="Move down"
  75. >
  76. </button>
  77. <div class="more-menu-container">
  78. <button
  79. :data-playlist-name="playlistData.name"
  80. :data-playlist-index="video.originalIndex"
  81. x-bind="moreMenuButton"
  82. class="more-btn"
  83. title="More actions"
  84. >
  85. </button>
  86. <div
  87. class="more-menu"
  88. :data-playlist-name="playlistData.name"
  89. :data-playlist-index="video.originalIndex"
  90. x-bind="moreMenu"
  91. >
  92. <button
  93. :data-playlist-name="playlistData.name"
  94. :data-playlist-index="video.originalIndex"
  95. x-bind="removeVideoButton"
  96. class="menu-item remove-item"
  97. >
  98. Remove
  99. </button>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </template>
  105. <!--
  106. <div x-show="videos.length === 0" class="empty-playlist">
  107. No videos in this playlist
  108. </div>
  109. -->
  110. </div>
  111. </div>
  112. </template>
  113. </div>
  114. <!-- History view -->
  115. <div class="history-container" x-bind="historyContainer">
  116. <div class="history-list">
  117. <template x-for="videoHistory in sortedHistory" :key="videoHistory.videoId">
  118. <div class="history-item" :data-video-id="videoHistory.videoId">
  119. <div class="history-video-info">
  120. <div class="history-video-title" x-text="videoHistory.title"></div>
  121. <a
  122. class="history-video-id"
  123. :href="videoHistory.url"
  124. x-text="videoHistory.formattedVideoId"
  125. x-bind="videoPlayLink"
  126. ></a>
  127. <div class="history-tags">
  128. <button
  129. class="tag-chip"
  130. :data-video-id="videoHistory.videoId"
  131. data-tag="notable"
  132. x-bind="tagChip"
  133. >
  134. notable
  135. </button>
  136. </div>
  137. </div>
  138. <div class="history-events">
  139. <template x-for="event in videoHistory.processedEvents" :key="event.uniqueKey">
  140. <div class="history-event">
  141. <span class="event-action" x-text="event.formattedAction"></span>
  142. <span class="event-position" x-text="event.formattedPosition"></span>
  143. <span class="event-timestamp" x-text="event.formattedTimestamp"></span>
  144. </div>
  145. </template>
  146. </div>
  147. </div>
  148. </template>
  149. <div x-bind="historyEmptyState" class="empty-history">
  150. No video history yet
  151. </div>
  152. </div>
  153. </div>
  154. <!-- Individual playlist view -->
  155. <div class="playlist-view-container" x-bind="playlistViewContainer">
  156. <div class="playlist-full-view">
  157. <template x-for="(video, index) in currentPlaylistVideos" :key="index">
  158. <div
  159. class="video-item"
  160. :title="video.title"
  161. :data-playlist-name="currentPlaylistName"
  162. :data-playlist-index="index"
  163. x-bind="videoItemClass"
  164. >
  165. <a
  166. class="video-title"
  167. :href="video.url"
  168. x-text="video.title"
  169. x-bind="videoPlayLink"
  170. ></a>
  171. <div class="video-actions">
  172. <button
  173. :data-playlist-name="currentPlaylistName"
  174. :data-playlist-index="index"
  175. x-bind="moveUpButton"
  176. class="move-up-btn"
  177. title="Move up"
  178. >
  179. </button>
  180. <button
  181. :data-playlist-name="currentPlaylistName"
  182. :data-playlist-index="index"
  183. x-bind="moveDownButton"
  184. class="move-down-btn"
  185. title="Move down"
  186. >
  187. </button>
  188. <div class="more-menu-container">
  189. <button
  190. :data-playlist-name="currentPlaylistName"
  191. :data-playlist-index="index"
  192. x-bind="moreMenuButton"
  193. class="more-btn"
  194. title="More actions"
  195. >
  196. </button>
  197. <div
  198. class="more-menu"
  199. :data-playlist-name="currentPlaylistName"
  200. :data-playlist-index="index"
  201. x-bind="moreMenu"
  202. >
  203. <button
  204. :data-playlist-name="currentPlaylistName"
  205. :data-playlist-index="index"
  206. x-bind="removeVideoButton"
  207. class="menu-item remove-item"
  208. >
  209. Remove
  210. </button>
  211. </div>
  212. </div>
  213. </div>
  214. </div>
  215. </template>
  216. <div x-bind="playlistViewEmptyState" class="empty-playlist">
  217. No videos in this playlist
  218. </div>
  219. </div>
  220. <!-- Add current page button -->
  221. <div class="add-current-page-container">
  222. <button
  223. class="add-current-page-btn"
  224. x-bind="addCurrentPageButton"
  225. x-text="addCurrentPageButtonText"
  226. ></button>
  227. </div>
  228. </div>
  229. <!-- Export/Import/History buttons -->
  230. <div class="export-container" x-bind="exportContainer">
  231. <button class="export-btn" x-bind="exportButton">
  232. Export Playlists
  233. </button>
  234. <button class="import-btn" x-bind="importButton">
  235. Import Playlists
  236. </button>
  237. <button class="history-btn" x-bind="historyButton">
  238. History
  239. </button>
  240. <input
  241. type="file"
  242. id="import-file-input"
  243. accept=".json"
  244. style="display: none"
  245. x-bind="importFileInput"
  246. />
  247. </div>
  248. </div>
  249. </body>
  250. </html>