mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Merge pull request #2455 from robertkleinschuster/fix-comment-timestamps-seek
fix safari "SyntaxError: Invalid regular expression: invalid group sp…
This commit is contained in:
		
						commit
						6abb2711cc
					
				
					 4 changed files with 56 additions and 33 deletions
				
			
		| 
						 | 
				
			
			@ -51,11 +51,12 @@ export default {
 | 
			
		|||
                if (this.getPreferenceBoolean("searchHistory", false))
 | 
			
		||||
                    this.searchSuggestions = JSON.parse(localStorage.getItem("search_history")) ?? [];
 | 
			
		||||
            } else {
 | 
			
		||||
                this.searchSuggestions = (
 | 
			
		||||
                this.searchSuggestions =
 | 
			
		||||
                    (
 | 
			
		||||
                        await this.fetchJson(this.apiUrl() + "/opensearch/suggestions", {
 | 
			
		||||
                            query: this.searchText,
 | 
			
		||||
                        })
 | 
			
		||||
                )?.[1];
 | 
			
		||||
                    )?.[1] ?? [];
 | 
			
		||||
            }
 | 
			
		||||
            this.searchSuggestions.unshift(this.searchText);
 | 
			
		||||
            this.setSelected(0);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,6 +23,7 @@
 | 
			
		|||
 | 
			
		||||
<script>
 | 
			
		||||
import "shaka-player/dist/controls.css";
 | 
			
		||||
import { parseTimeParam } from "@/utils/Misc";
 | 
			
		||||
const shaka = import("shaka-player/dist/shaka-player.ui.js");
 | 
			
		||||
if (!window.muxjs) {
 | 
			
		||||
    import("mux.js").then(muxjs => {
 | 
			
		||||
| 
						 | 
				
			
			@ -231,24 +232,7 @@ export default {
 | 
			
		|||
            const time = this.$route.query.t ?? this.$route.query.start;
 | 
			
		||||
 | 
			
		||||
            if (time) {
 | 
			
		||||
                let start = 0;
 | 
			
		||||
                if (/^[\d]*$/g.test(time)) {
 | 
			
		||||
                    start = time;
 | 
			
		||||
                } else {
 | 
			
		||||
                    const hours = /([\d]*)h/gi.exec(time)?.[1];
 | 
			
		||||
                    const minutes = /([\d]*)m/gi.exec(time)?.[1];
 | 
			
		||||
                    const seconds = /([\d]*)s/gi.exec(time)?.[1];
 | 
			
		||||
                    if (hours) {
 | 
			
		||||
                        start += parseInt(hours) * 60 * 60;
 | 
			
		||||
                    }
 | 
			
		||||
                    if (minutes) {
 | 
			
		||||
                        start += parseInt(minutes) * 60;
 | 
			
		||||
                    }
 | 
			
		||||
                    if (seconds) {
 | 
			
		||||
                        start += parseInt(seconds);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
                videoEl.currentTime = start;
 | 
			
		||||
                videoEl.currentTime = parseTimeParam(time);
 | 
			
		||||
                this.initialSeekComplete = true;
 | 
			
		||||
            } else if (window.db && this.getPreferenceBoolean("watchHistory", false)) {
 | 
			
		||||
                var tx = window.db.transaction("watch_history", "readonly");
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -239,6 +239,7 @@ import PlaylistVideos from "./PlaylistVideos.vue";
 | 
			
		|||
import WatchOnYouTubeButton from "./WatchOnYouTubeButton.vue";
 | 
			
		||||
import LoadingIndicatorPage from "./LoadingIndicatorPage.vue";
 | 
			
		||||
import ToastComponent from "./ToastComponent.vue";
 | 
			
		||||
import { parseTimeParam } from "@/utils/Misc";
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
    name: "App",
 | 
			
		||||
| 
						 | 
				
			
			@ -543,16 +544,32 @@ export default {
 | 
			
		|||
        },
 | 
			
		||||
        handleClick(event) {
 | 
			
		||||
            if (!event || !event.target) return;
 | 
			
		||||
            var target = event.target;
 | 
			
		||||
            if (
 | 
			
		||||
                !target.nodeName == "A" ||
 | 
			
		||||
                !target.getAttribute("href") ||
 | 
			
		||||
                !target.innerText.match(/(?:[\d]{1,2}:)?(?:[\d]{1,2}):(?:[\d]{1,2})/)
 | 
			
		||||
            )
 | 
			
		||||
                return;
 | 
			
		||||
            const time = parseInt(target.getAttribute("href").match(/(?<=t=)\d+/)[0]);
 | 
			
		||||
            this.navigate(time);
 | 
			
		||||
            if (!event.target.matches("a[href]")) return;
 | 
			
		||||
            const target = event.target;
 | 
			
		||||
            if (!target.getAttribute("href")) return;
 | 
			
		||||
            if (this.handleTimestampLinks(target)) {
 | 
			
		||||
                event.preventDefault();
 | 
			
		||||
            }
 | 
			
		||||
        },
 | 
			
		||||
        handleTimestampLinks(target) {
 | 
			
		||||
            try {
 | 
			
		||||
                const url = new URL(target.getAttribute("href"), document.baseURI);
 | 
			
		||||
                if (
 | 
			
		||||
                    url.searchParams.size > 2 ||
 | 
			
		||||
                    url.searchParams.get("v") !== this.getVideoId() ||
 | 
			
		||||
                    !url.searchParams.has("t")
 | 
			
		||||
                ) {
 | 
			
		||||
                    return false;
 | 
			
		||||
                }
 | 
			
		||||
                const time = parseTimeParam(url.searchParams.get("t"));
 | 
			
		||||
                if (time) {
 | 
			
		||||
                    this.navigate(time);
 | 
			
		||||
                }
 | 
			
		||||
                return true;
 | 
			
		||||
            } catch (e) {
 | 
			
		||||
                console.error(e);
 | 
			
		||||
            }
 | 
			
		||||
            return false;
 | 
			
		||||
        },
 | 
			
		||||
        handleScroll() {
 | 
			
		||||
            if (this.loading || !this.comments || !this.comments.nextpage) return;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -6,3 +6,24 @@ export const isEmail = input => {
 | 
			
		|||
    );
 | 
			
		||||
    return result;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export const parseTimeParam = time => {
 | 
			
		||||
    let start = 0;
 | 
			
		||||
    if (/^[\d]*$/g.test(time)) {
 | 
			
		||||
        start = time;
 | 
			
		||||
    } else {
 | 
			
		||||
        const hours = /([\d]*)h/gi.exec(time)?.[1];
 | 
			
		||||
        const minutes = /([\d]*)m/gi.exec(time)?.[1];
 | 
			
		||||
        const seconds = /([\d]*)s/gi.exec(time)?.[1];
 | 
			
		||||
        if (hours) {
 | 
			
		||||
            start += parseInt(hours) * 60 * 60;
 | 
			
		||||
        }
 | 
			
		||||
        if (minutes) {
 | 
			
		||||
            start += parseInt(minutes) * 60;
 | 
			
		||||
        }
 | 
			
		||||
        if (seconds) {
 | 
			
		||||
            start += parseInt(seconds);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return start;
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue