Home

ugit @06c821918c438b9bcea9ecc1ab3e1b430d791813 - refs - log -
-
https://git.jolheiser.com/ugit.git
The code powering this h*ckin' site
ugit / internal / html / repo_file.templ
- raw -
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
package html

import "fmt"

type RepoFileContext struct {
	BaseContext
	RepoHeaderComponentContext
	RepoBreadcrumbComponentContext
	Code   string
	Commit string
	Path   string
}

func (rfc RepoFileContext) Permalink() string {
	return fmt.Sprintf("/%s/tree/%s/%s", rfc.RepoBreadcrumbComponentContext.Repo, rfc.Commit, rfc.Path)
}

templ RepoFile(rfc RepoFileContext) {
	@base(rfc.BaseContext) {
		@repoHeaderComponent(rfc.RepoHeaderComponentContext)
		<div class="mt-2 text-text">
			@repoBreadcrumbComponent(rfc.RepoBreadcrumbComponentContext)
			{ " - " }
			<a class="text-text underline decoration-text/50 decoration-dashed hover:decoration-solid" href="?raw">raw</a>
			{ " - " }
			<a class="text-text underline decoration-text/50 decoration-dashed hover:decoration-solid" id="permalink" data-permalink={ rfc.Permalink() } href={ rfc.Permalink() }>permalink</a>
			<div class="code relative">
				@templ.Raw(rfc.Code)
				<button id="copy" class="absolute top-0 right-0 rounded bg-base hover:bg-surface0"></button>
			</div>
		</div>
	}
	<script>
		const lineRe = /#L(\d+)(?:-L(\d+))?/g
		const $lineLines = document.querySelectorAll(".chroma .lntable .lnt");
		const $codeLines = document.querySelectorAll(".chroma .lntable .line");
		const $copyButton = document.getElementById('copy');
		const $permalink = document.getElementById('permalink');
		const $copyIcon = "📋";
		const $copiedIcon = "✅";
		let $code = ""
		for (let codeLine of $codeLines) $code += codeLine.innerText;
		let start = 0;
		let end = 0;

		const results = [...location.hash.matchAll(lineRe)];		
		if (0 in results) {
			start = results[0][1] !== undefined ? parseInt(results[0][1]) : 0;
			end = results[0][2] !== undefined ? parseInt(results[0][2]) : 0;
		}
		if (start !== 0) {
			deactivateLines();
			activateLines(start, end);
			let anchor = `#${start}`;
      if (end !== 0) anchor += `-${end}`;
      if (anchor !== "") $permalink.href = $permalink.dataset.permalink + anchor;
			$lineLines[start-1].scrollIntoView(true);
		}

		for (let line of $lineLines) {
			line.addEventListener("click", (event) => {
				event.preventDefault();
				deactivateLines();
				const n = parseInt(line.id.substring(1));
				let anchor = "";
				if (event.shiftKey) {
					end = n;
					anchor = `#L${start}-L${end}`;
				} else if (start === n) {
					start = 0;
					end = 0;
				} else {
					start = n;
					end = 0;
					anchor = `#L${start}`;
				}
				history.replaceState(null, null, window.location.pathname + anchor);
				$permalink.href = $permalink.dataset.permalink + anchor;
				if (start !== 0) activateLines(start, end);
			});
		}

		if (navigator.clipboard && navigator.clipboard.writeText) {
			$copyButton.innerText = $copyIcon;
			$copyButton.classList.remove("hidden");
    }
		$copyButton.addEventListener("click", () => {
      navigator.clipboard.writeText($code);
			$copyButton.innerText = $copiedIcon;
			setTimeout(() => {
				$copyButton.innerText = $copyIcon;
			}, 1000);
    });

		function activateLines(start, end) {
			if (end < start) end = start;
			for (let idx = start - 1; idx < end; idx++) {
				$codeLines[idx].classList.add("active");
			}
		}

		function deactivateLines() {
			for (let code of $codeLines) {
				code.classList.remove("active");
			}
		}

		
		
	</script>
}