Skip to content

Commit

Permalink
Merge pull request jackyzha0#124 from aidenybai/hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 authored May 3, 2022
2 parents a099744 + 2b5c03c commit b67a389
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
7 changes: 5 additions & 2 deletions assets/js/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ async function drawGraph(
enableZoom
) {
const container = document.getElementById('graph-container')

const { index, links, content } = await fetchData
const curPage = window.location.href.replace(baseUrl, "").replace(/\/$/g, "")

// Use .pathname to remove hashes / searchParams / text fragments
const cleanUrl = window.location.origin + window.location.pathname

const curPage = cleanUrl.replace(/\/$/g, "").replace(baseUrl, "")

const parseIdsFromLinks = (links) => [
...new Set(links.flatMap((link) => [link.source, link.target])),
Expand Down
2 changes: 1 addition & 1 deletion assets/js/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const removeMarkdown = (
// SPA navigation
window.navigate(
new URL(
`${BASE_URL}${id}#:~:text=${encodeURIComponent(term)}/`
`${BASE_URL.replace(/\/$/g, "")}${id}#:~:text=${encodeURIComponent(term)}/`
),
'.singlePage'
)
Expand Down
10 changes: 0 additions & 10 deletions layouts/partials/graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,3 @@ <h3>Interactive Graph</h3>
</style>
{{ $js := resources.Get "js/graph.js" | resources.Fingerprint "md5" }}
<script src="{{ $js.Permalink }}"></script>
<script>
drawGraph(
{{strings.TrimRight "/" .Site.BaseURL}},
{{$.Site.Data.graphConfig.paths}},
{{$.Site.Data.graphConfig.depth}},
{{$.Site.Data.graphConfig.enableDrag}},
{{$.Site.Data.graphConfig.enableLegend}},
{{$.Site.Data.graphConfig.enableZoom}}
);
</script>

0 comments on commit b67a389

Please sign in to comment.