popup.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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="toggleVideoDoneButton"
  96. class="menu-item done-item"
  97. x-text="video.doneButtonText"
  98. >
  99. </button>
  100. <button
  101. :data-playlist-name="playlistData.name"
  102. :data-playlist-index="video.originalIndex"
  103. x-bind="removeVideoButton"
  104. class="menu-item remove-item"
  105. >
  106. Remove
  107. </button>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </template>
  113. <!--
  114. <div x-show="videos.length === 0" class="empty-playlist">
  115. No videos in this playlist
  116. </div>
  117. -->
  118. </div>
  119. </div>
  120. </template>
  121. </div>
  122. <!-- History view -->
  123. <div class="history-container" x-bind="historyContainer">
  124. <div class="history-list">
  125. <template x-for="videoHistory in sortedHistory" :key="videoHistory.videoId">
  126. <div class="history-item" :data-video-id="videoHistory.videoId">
  127. <div class="history-video-info">
  128. <div class="history-video-title" x-text="videoHistory.title"></div>
  129. <a
  130. class="history-video-id"
  131. :href="videoHistory.url"
  132. x-text="videoHistory.formattedVideoId"
  133. x-bind="videoPlayLink"
  134. ></a>
  135. <div class="history-tags">
  136. <button
  137. class="tag-chip"
  138. :data-video-id="videoHistory.videoId"
  139. data-tag="notable"
  140. x-bind="tagChip"
  141. >
  142. notable
  143. </button>
  144. </div>
  145. </div>
  146. <div class="history-events">
  147. <template x-for="event in videoHistory.processedEvents" :key="event.uniqueKey">
  148. <div class="history-event">
  149. <span class="event-action" x-text="event.formattedAction"></span>
  150. <span class="event-position" x-text="event.formattedPosition"></span>
  151. <span class="event-timestamp" x-text="event.formattedTimestamp"></span>
  152. </div>
  153. </template>
  154. </div>
  155. </div>
  156. </template>
  157. <div x-bind="historyEmptyState" class="empty-history">
  158. No video history yet
  159. </div>
  160. </div>
  161. </div>
  162. <!-- Individual playlist view -->
  163. <div class="playlist-view-container" x-bind="playlistViewContainer">
  164. <div class="playlist-full-view">
  165. <template x-for="(video, index) in currentPlaylistVideos" :key="index">
  166. <div
  167. class="video-item"
  168. :title="video.title"
  169. :data-playlist-name="currentPlaylistName"
  170. :data-playlist-index="index"
  171. x-bind="videoItemClass"
  172. >
  173. <a
  174. class="video-title"
  175. :href="video.url"
  176. x-text="video.title"
  177. x-bind="videoPlayLink"
  178. ></a>
  179. <div class="video-actions">
  180. <button
  181. :data-playlist-name="currentPlaylistName"
  182. :data-playlist-index="index"
  183. x-bind="moveUpButton"
  184. class="move-up-btn"
  185. title="Move up"
  186. >
  187. </button>
  188. <button
  189. :data-playlist-name="currentPlaylistName"
  190. :data-playlist-index="index"
  191. x-bind="moveDownButton"
  192. class="move-down-btn"
  193. title="Move down"
  194. >
  195. </button>
  196. <div class="more-menu-container">
  197. <button
  198. :data-playlist-name="currentPlaylistName"
  199. :data-playlist-index="index"
  200. x-bind="moreMenuButton"
  201. class="more-btn"
  202. title="More actions"
  203. >
  204. </button>
  205. <div
  206. class="more-menu"
  207. :data-playlist-name="currentPlaylistName"
  208. :data-playlist-index="index"
  209. x-bind="moreMenu"
  210. >
  211. <button
  212. :data-playlist-name="currentPlaylistName"
  213. :data-playlist-index="index"
  214. x-bind="toggleVideoDoneButton"
  215. class="menu-item done-item"
  216. x-text="video.doneButtonText"
  217. >
  218. </button>
  219. <button
  220. :data-playlist-name="currentPlaylistName"
  221. :data-playlist-index="index"
  222. x-bind="removeVideoButton"
  223. class="menu-item remove-item"
  224. >
  225. Remove
  226. </button>
  227. </div>
  228. </div>
  229. </div>
  230. </div>
  231. </template>
  232. <div x-bind="playlistViewEmptyState" class="empty-playlist">
  233. No videos in this playlist
  234. </div>
  235. </div>
  236. <!-- Add current page button -->
  237. <div class="add-current-page-container">
  238. <button
  239. class="add-current-page-btn"
  240. x-bind="addCurrentPageButton"
  241. x-text="addCurrentPageButtonText"
  242. ></button>
  243. </div>
  244. </div>
  245. <!-- Export/Import/History buttons -->
  246. <div class="export-container" x-bind="exportContainer">
  247. <button class="export-btn" x-bind="exportButton">
  248. Export Playlists
  249. </button>
  250. <button class="import-btn" x-bind="importButton">
  251. Import Playlists
  252. </button>
  253. <button class="history-btn" x-bind="historyButton">
  254. History
  255. </button>
  256. <input
  257. type="file"
  258. id="import-file-input"
  259. accept=".json"
  260. style="display: none"
  261. x-bind="importFileInput"
  262. />
  263. </div>
  264. </div>
  265. </body>
  266. </html>