| 
									
										
										
										
											2022-06-09 12:51:19 +02:00
										 |  |  | /* | 
					
						
							|  |  |  | 	GoToSocial | 
					
						
							|  |  |  | 	Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | 	it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | 	the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | 	(at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | 	but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | 	GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | 	along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 17:58:01 +02:00
										 |  |  | const Photoswipe = require("photoswipe/dist/umd/photoswipe.umd.min.js"); | 
					
						
							|  |  |  | const PhotoswipeLightbox = require("photoswipe/dist/umd/photoswipe-lightbox.umd.min.js"); | 
					
						
							|  |  |  | const PhotoswipeCaptionPlugin = require("photoswipe-dynamic-caption-plugin").default; | 
					
						
							| 
									
										
										
										
											2022-12-17 05:38:56 +01:00
										 |  |  | const PhotoswipeVideoPlugin = require("photoswipe-video-plugin").default; | 
					
						
							| 
									
										
										
										
											2022-08-07 17:58:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-03 20:35:43 +02:00
										 |  |  | let [_, _user, type, id] = window.location.pathname.split("/"); | 
					
						
							|  |  |  | if (type == "statuses") { | 
					
						
							|  |  |  | 	let firstStatus = document.getElementsByClassName("thread")[0].children[0]; | 
					
						
							|  |  |  | 	if (firstStatus.id != id) { | 
					
						
							|  |  |  | 		document.getElementById(id).scrollIntoView(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-07 17:58:01 +02:00
										 |  |  | const lightbox = new PhotoswipeLightbox({ | 
					
						
							|  |  |  | 	gallery: '.photoswipe-gallery', | 
					
						
							|  |  |  | 	children: 'a', | 
					
						
							|  |  |  | 	pswpModule: Photoswipe, | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | new PhotoswipeCaptionPlugin(lightbox, { | 
					
						
							|  |  |  | 	type: 'auto', | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-12-17 05:38:56 +01:00
										 |  |  | new PhotoswipeVideoPlugin(lightbox, {}); | 
					
						
							| 
									
										
										
										
											2022-08-07 17:58:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | lightbox.init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 12:51:19 +02:00
										 |  |  | Array.from(document.getElementsByClassName("spoiler-label")).forEach((label) => { | 
					
						
							|  |  |  | 	let checkbox = document.getElementById(label.htmlFor); | 
					
						
							|  |  |  | 	if (checkbox != undefined) { | 
					
						
							|  |  |  | 		function update() { | 
					
						
							| 
									
										
										
										
											2022-12-17 05:38:56 +01:00
										 |  |  | 			if (checkbox.checked) { | 
					
						
							| 
									
										
										
										
											2022-06-09 12:51:19 +02:00
										 |  |  | 				label.innerHTML = "Show more"; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				label.innerHTML = "Show less"; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		update(); | 
					
						
							| 
									
										
										
										
											2022-12-17 05:38:56 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		label.addEventListener("click", () => { setTimeout(update, 1); }); | 
					
						
							| 
									
										
										
										
											2022-06-09 12:51:19 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | }); |