Skip to content

Commit d4b6b1a

Browse files
committed
docs
1 parent 16a1113 commit d4b6b1a

File tree

8 files changed

+130
-8
lines changed

8 files changed

+130
-8
lines changed

packages/docs/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"rollup-plugin-visualizer": "5.14.0",
3232
"sharp": "0.33.5",
3333
"shiki": "3.2.1",
34+
"super-sitemap": "^1.0.3",
3435
"svelte": "5.25.6",
3536
"svelte-typeahead": "5.0.0",
3637
"theme-change": "2.5.0",

packages/docs/src/components/SEO.svelte

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<script>
22
import { t } from "$lib/i18n.svelte.js"
3+
import { page } from "$app/stores"
4+
import { langs } from "$lib/i18n.svelte.js"
35
46
let siteData = {
57
title: "Tailwind CSS Components ( version 5 update is here )",
@@ -15,6 +17,12 @@
1517
: `${$t(siteData.title)}`
1618
: title,
1719
)
20+
21+
const iso15924to31661 = (lang) => {
22+
if (lang === "zh_hans") return "zh-cn"
23+
if (lang === "zh_hant") return "zh-tw"
24+
return lang
25+
}
1826
</script>
1927

2028
<svelte:head>
@@ -28,4 +36,14 @@
2836
<meta property="og:title" content={formattedTitle} />
2937
<meta property="og:description" content={desc} />
3038
<meta property="og:image" content={img} />
39+
40+
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml" />
41+
42+
{#each langs as lang}
43+
<link
44+
rel="alternate"
45+
hreflang={iso15924to31661(lang)}
46+
href={`${$page.url.origin}${$page.url.pathname}?lang=${lang}`}
47+
/>
48+
{/each}
3149
</svelte:head>

packages/docs/src/components/SidebarMenuItem.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
$page.url.pathname == highlightAnotherItem ? "menu-active" : ""
116116
} ${$page.url.pathname.startsWith(href) ? "menu-active" : ""} ${
117117
highlight
118-
? "from-primary to-primary/0 hover:to-primary/10 [background-image:linear-gradient(-35deg,var(--tw-gradient-stops))] from-[-200%] to-60%"
118+
? "from-primary to-primary/0 hover:to-primary/10 outline-primary/5 bg-linear-50 from-[-300%] to-60% outline-1 -outline-offset-1"
119119
: ""
120120
}`}
121121
>

packages/docs/src/components/TopBanner.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</script>
1313

1414
<!-- Without timer -->
15-
{#if true}
15+
{#if false}
1616
<div class="bg-base-100 flex justify-center rounded-sm p-2">
1717
<a
1818
href="/docs/upgrade/"

packages/docs/src/lib/data/pages.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ export const pages = [
465465
tags: "store template dashboard",
466466
href: "/store/",
467467
icon: '<svg class="size-5" width="18" height="18" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40.0391 22V42H8.03906V22" stroke="currentColor" stroke-width="4" stroke-linecap="butt" stroke-linejoin="bevel"/><path d="M5.84231 13.7766C4.31276 17.7377 7.26307 22 11.5092 22C14.8229 22 17.5276 19.3137 17.5276 16C17.5276 19.3137 20.2139 22 23.5276 22H24.546C27.8597 22 30.546 19.3137 30.546 16C30.546 19.3137 33.2518 22 36.5655 22C40.8139 22 43.767 17.7352 42.2362 13.7723L39.2337 6H8.84523L5.84231 13.7766Z" fill="none" stroke="currentColor" stroke-width="4" stroke-linejoin="bevel"/></svg>',
468-
// badge: "new",
468+
badge: "updated",
469469
// badgeclass: "bg-primary/10 text-[inherit] border-transparent uppercase font-sans font-bold",
470470
highlight: true,
471471
},

packages/docs/src/lib/data/sitemap.js

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
import yaml from "js-yaml"
2+
import { readFileSync } from "fs"
3+
4+
const yamlFile = readFileSync("src/lib/data/store.yaml", "utf8")
5+
const yamlData = yaml.load(yamlFile)
6+
7+
import { LEMONSQUEEZY_API_KEY } from "$env/static/private"
8+
9+
const LSParams = {
10+
headers: {
11+
Accept: "application/vnd.api+json",
12+
"Content-type": "application/vnd.api+json",
13+
Authorization: `Bearer ${LEMONSQUEEZY_API_KEY}`,
14+
},
15+
}
16+
export async function getTags() {
17+
const modules = import.meta.glob("./(routes)/blog/tag/[tag]/+page.server.js")
18+
let tags = new Set()
19+
20+
for (const path in modules) {
21+
const module = await modules[path]()
22+
if (module && module.load) {
23+
try {
24+
const result = await module.load()
25+
if (result && result.params && result.params.tag) {
26+
tags.add(result.params.tag)
27+
}
28+
} catch (error) {
29+
console.error(`Error loading tags from ${path}:`, error)
30+
}
31+
}
32+
}
33+
return Array.from(tags)
34+
}
35+
36+
export async function getVideoIds() {
37+
try {
38+
const response = await fetch("https://api.daisyui.com/api/youtube.json")
39+
if (!response.ok) {
40+
throw new Error(`HTTP error! status: ${response.status}`)
41+
}
42+
const videos = await response.json()
43+
return videos.map((video) => video.id)
44+
} catch (error) {
45+
console.error("Error fetching YouTube data:", error)
46+
return []
47+
}
48+
}
49+
50+
export async function getProductIds() {
51+
try {
52+
const productsResponse = await fetch(
53+
"https://api.lemonsqueezy.com/v1/products?page[size]=100",
54+
LSParams,
55+
)
56+
57+
if (!productsResponse.ok) {
58+
console.error("Error fetching product data:", productsResponse.status)
59+
return []
60+
}
61+
62+
const originalData = await productsResponse.json()
63+
if (!originalData || !originalData.data) {
64+
console.warn("No product data received from API")
65+
return []
66+
}
67+
68+
return originalData.data.map((product) => String(product.id)) // Extract product IDs as strings
69+
} catch (error) {
70+
console.error("Error fetching or processing product data:", error)
71+
return []
72+
}
73+
}

packages/docs/src/routes/(routes)/docs/install/wordpress/+page.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@ In this guide, we will use the [WindPress](https://wind.press) plugin to install
1717

1818
Navigate to the `Plugins → Add New Plugin` sub-menu.
1919

20-
<img class="mx-auto rounded-box" src="http://img.daisyui.com/images/docs/install/windpress/screenshot-1.webp" alt="WordPress Plugins Add New screen">
20+
<img class="mx-auto rounded-box" src="https://img.daisyui.com/images/docs/install/windpress/screenshot-1.webp" alt="WordPress Plugins Add New screen">
2121

2222
Search for the WordPress plugin by typing `WindPress` in the search bar.
2323

24-
<img class="mx-auto rounded-box" src="http://img.daisyui.com/images/docs/install/windpress/screenshot-2.webp" alt="WordPress Plugins search bar">
24+
<img class="mx-auto rounded-box" src="https://img.daisyui.com/images/docs/install/windpress/screenshot-2.webp" alt="WordPress Plugins search bar">
2525

2626
Click the `Install Now` button to install the WordPress plugin.
2727

28-
<img class="mx-auto rounded-box" src="http://img.daisyui.com/images/docs/install/windpress/screenshot-3.webp" alt="WordPress Plugins result screen">
28+
<img class="mx-auto rounded-box" src="https://img.daisyui.com/images/docs/install/windpress/screenshot-3.webp" alt="WordPress Plugins result screen">
2929

3030
Once the plugin is installed, click the `Activate` button to activate the WindPress plugin.
3131

32-
<img class="mx-auto rounded-box" src="http://img.daisyui.com/images/docs/install/windpress/screenshot-4.webp" alt="Activate the WordPress plugin">
32+
<img class="mx-auto rounded-box" src="https://img.daisyui.com/images/docs/install/windpress/screenshot-4.webp" alt="Activate the WordPress plugin">
3333

3434
### 3. Install daisyUI
3535

3636
Navigate to the WindPress dashboard by clicking the `WindPress` menu item in the WordPress admin sidebar.
3737
Then, click the `main.css` file on the explorer sidebar to open the file editor.
3838

39-
<img class="mx-auto rounded-box" src="http://img.daisyui.com/images/docs/install/windpress/screenshot-5.webp" alt="WindPress dashboard">
39+
<img class="mx-auto rounded-box" src="https://img.daisyui.com/images/docs/install/windpress/screenshot-5.webp" alt="WindPress dashboard">
4040

4141
Add daisyUI at the end of code in the `main.css` file
4242

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { error } from "@sveltejs/kit"
2+
import * as sitemap from "super-sitemap"
3+
import { getTags, getVideoIds, getProductIds } from "$lib/data/sitemap"
4+
5+
export const prerender = true
6+
7+
export const GET = async () => {
8+
let productIds
9+
let blogTags
10+
let videoIds
11+
try {
12+
;[productIds, blogTags, videoIds] = await Promise.all([
13+
getProductIds(),
14+
getTags(),
15+
getVideoIds(),
16+
])
17+
} catch (err) {
18+
throw error(500, "Could not load data for param values.")
19+
}
20+
return await sitemap.response({
21+
origin: "https://daisyui.com",
22+
additionalPaths: ["/llms.txt"],
23+
excludeRoutePatterns: [".*\\/design$", ".*\\/accessibility$", ".*\\/checkout$"],
24+
paramValues: {
25+
"/store/[productId]": productIds,
26+
"/blog/tag/[tag]": blogTags,
27+
"/resources/videos/[id]": videoIds,
28+
},
29+
})
30+
}

0 commit comments

Comments
 (0)