-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add GO word cloud on detail page
* style: fix page alignment * feat: add go term retrieval * feat: add go term word cloud * feat: add wordcloud display * style: add text-styling to svg * refactor: prevent single letter words * refactor: improve text * style: better font scaling * feat: add GO loading state
- Loading branch information
Showing
10 changed files
with
616 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!-- | ||
Copyright 2025 Tobias Olenyi. | ||
SPDX-License-Identifier: Apache-2.0 | ||
--> | ||
|
||
<script lang="ts"> | ||
import { Accordion, AccordionItem } from "@skeletonlabs/skeleton"; | ||
import "iconify-icon"; | ||
let className = ""; | ||
export { className as class }; | ||
</script> | ||
|
||
<div | ||
class="flex min-h-full w-full items-center justify-center {className}" | ||
{...$$restProps} | ||
> | ||
<div class="w-full"> | ||
<div class="flex justify-end"> | ||
<div class="h-6 w-48 animate-pulse rounded bg-surface-500/30"></div> | ||
</div> | ||
<div class="flex justify-center"> | ||
<div class="relative h-64 w-1/3 items-center justify-center"> | ||
{#each Array(8) as _, i} | ||
<div | ||
class="absolute animate-pulse rounded-full bg-surface-500/30" | ||
style="width: {20 + Math.random() * 60}px; | ||
height: 20px; | ||
left: {Math.random() * 80}%; | ||
top: {Math.random() * 80}%;" | ||
></div> | ||
{/each} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.