tangled
alpha
login
or
join now
baileytownsend.dev
/
repo-walk-example
3
fork
atom
Shows how to get repo export and walk it in TypeScript
walktherepo.wisp.place
3
fork
atom
overview
issues
pulls
pipelines
missed the word repo
baileytownsend.dev
2 months ago
b2fbd3cb
64cc8b8a
+1
-1
1 changed file
expand all
collapse all
unified
split
src
App.svelte
+1
-1
src/App.svelte
···
30
30
<main class="container mx-auto px-4 py-8 max-w-4xl">
31
31
<div class="text-center mb-8">
32
32
{#if showRepoStats}
33
33
-
<h2 class="text-2xl font-bold text-primary">Walking <a class="link link-info" href="https://pdsls.dev/at://{searchResults.did}" target="_blank">{searchResults.handle}</a>'s {searchResults.slowPoke ? 'via api calls' : 'via export'}</h2>
33
33
+
<h2 class="text-2xl font-bold text-primary">Walking <a class="link link-info" href="https://pdsls.dev/at://{searchResults.did}" target="_blank">{searchResults.handle}</a>'s repo {searchResults.slowPoke ? 'via api calls' : 'via export'}</h2>
34
34
{:else}
35
35
<h1 class="text-5xl font-bold mb-4">Walk The Repo</h1>
36
36
<p class="text-lg mb-2">Demo showing why you may rather export the users whole repo instead of walking it via api calls if you want to access all the user's records.</p>