astro-pure 1.4.0 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/advanced/QRCode.astro +6 -0
- package/components/basic/Header.astro +1 -0
- package/components/pages/BackToTop.astro +1 -1
- package/components/pages/Copyright.astro +2 -2
- package/components/pages/PostPreview.astro +4 -0
- package/index.ts +4 -1
- package/package.json +9 -9
- package/plugins/rehype-image-caption.ts +42 -0
- package/scripts/libs/minimist.cjs +2 -1
- package/scripts/new.mjs +2 -2
- package/types/theme-config.ts +4 -1
- package/utils/theme.ts +2 -1
|
@@ -5,7 +5,7 @@ const { header: headerName, content: contentName, needPercent = true } = Astro.p
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
<div
|
|
8
|
-
class='z-10 group fixed bottom-8 end-4 transition-all flex flex-col gap-y-4 sm:end-8'
|
|
8
|
+
class='z-10 md:z-50 group fixed bottom-8 end-4 transition-all flex flex-col gap-y-4 sm:end-8'
|
|
9
9
|
id='action-buttons'
|
|
10
10
|
>
|
|
11
11
|
<slot name='other-icons' />
|
|
@@ -43,7 +43,7 @@ const shares = {
|
|
|
43
43
|
{/* title & link */}
|
|
44
44
|
<div class='flex flex-col'>
|
|
45
45
|
<div class='font-medium text-foreground'>{title}</div>
|
|
46
|
-
<div class='text-sm'>{Astro.url}</div>
|
|
46
|
+
<div class='text-sm line-clamp-1'>{Astro.url}</div>
|
|
47
47
|
</div>
|
|
48
48
|
|
|
49
49
|
{/* common info */}
|
|
@@ -127,7 +127,7 @@ const shares = {
|
|
|
127
127
|
<style>
|
|
128
128
|
#qrcode-container.expanded {
|
|
129
129
|
max-height: 11rem;
|
|
130
|
-
transform: translateY(
|
|
130
|
+
transform: translateY(6px);
|
|
131
131
|
opacity: 100;
|
|
132
132
|
}
|
|
133
133
|
</style>
|
|
@@ -139,11 +139,15 @@ const postDate = data.updatedDate ?? data.publishDate
|
|
|
139
139
|
}
|
|
140
140
|
}
|
|
141
141
|
.cover-image {
|
|
142
|
+
-webkit-mask-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
143
|
+
-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
142
144
|
mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
143
145
|
}
|
|
144
146
|
|
|
145
147
|
@media (max-width: 768px) {
|
|
146
148
|
.cover-image {
|
|
149
|
+
-webkit-mask-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
150
|
+
-webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
147
151
|
mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
|
|
148
152
|
}
|
|
149
153
|
}
|
package/index.ts
CHANGED
|
@@ -3,13 +3,14 @@ import { dirname, relative } from 'node:path'
|
|
|
3
3
|
import { fileURLToPath } from 'node:url'
|
|
4
4
|
// Astro
|
|
5
5
|
import type { AstroIntegration, RehypePlugins, RemarkPlugins } from 'astro'
|
|
6
|
-
import { AstroError } from 'astro/errors'
|
|
7
6
|
// Integrations
|
|
8
7
|
import mdx from '@astrojs/mdx'
|
|
9
8
|
import sitemap from '@astrojs/sitemap'
|
|
9
|
+
import { AstroError } from 'astro/errors'
|
|
10
10
|
import UnoCSS from 'unocss/astro'
|
|
11
11
|
|
|
12
12
|
import rehypeExternalLinks from './plugins/rehype-external-links'
|
|
13
|
+
import rehypeImageCaption from './plugins/rehype-image-caption'
|
|
13
14
|
import rehypeTable from './plugins/rehype-table'
|
|
14
15
|
import { remarkAddZoomable, remarkReadingTime } from './plugins/remark-plugins'
|
|
15
16
|
import { vitePluginUserConfig } from './plugins/virtual-user-config'
|
|
@@ -64,6 +65,8 @@ export default function AstroPureIntegration(opts: UserInputConfig): AstroIntegr
|
|
|
64
65
|
])
|
|
65
66
|
// Make table scrollable on overflow
|
|
66
67
|
rehypePlugins.push(rehypeTable)
|
|
68
|
+
// Add image caption support
|
|
69
|
+
if (userConfig.content.imageCaption) rehypePlugins.push(rehypeImageCaption)
|
|
67
70
|
|
|
68
71
|
// Add Starlight directives restoration integration at the end of the list so that remark
|
|
69
72
|
// plugins injected by Starlight plugins through Astro integrations can handle text and
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "astro-pure",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "A simple, clean but powerful blog theme build by astro.",
|
|
5
|
-
"version": "1.4.
|
|
5
|
+
"version": "1.4.2",
|
|
6
6
|
"homepage": "https://astro-pure.js.org/",
|
|
7
7
|
"author": "CWorld",
|
|
8
8
|
"license": "Apache-2.0",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"./libs": "./libs/index.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@astrojs/mdx": "
|
|
41
|
-
"@astrojs/sitemap": "
|
|
42
|
-
"@pagefind/default-ui": "^1.
|
|
43
|
-
"@unocss/reset": "^66.
|
|
44
|
-
"astro": "
|
|
40
|
+
"@astrojs/mdx": "5.0.3",
|
|
41
|
+
"@astrojs/sitemap": "3.7.2",
|
|
42
|
+
"@pagefind/default-ui": "^1.5.0",
|
|
43
|
+
"@unocss/reset": "^66.6.7",
|
|
44
|
+
"astro": "6.1.3",
|
|
45
45
|
"hast-util-select": "^6.0.4",
|
|
46
|
-
"node-html-parser": "^7.0
|
|
47
|
-
"pagefind": "^1.
|
|
48
|
-
"unocss": "^66.
|
|
46
|
+
"node-html-parser": "^7.1.0",
|
|
47
|
+
"pagefind": "^1.5.0",
|
|
48
|
+
"unocss": "^66.6.7"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
// https://github.com/Saramanda9988/blog-pure/blob/luna-pure/packages/pure/plugins/rehype-image-caption.ts
|
|
2
|
+
import type { Element, Root } from 'hast'
|
|
3
|
+
import type { Plugin } from 'unified'
|
|
4
|
+
import { visit } from 'unist-util-visit'
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Rehype plugin to wrap images with alt text in a figure element with figcaption
|
|
8
|
+
*/
|
|
9
|
+
const rehypeImageCaption: Plugin<[], Root> = () => {
|
|
10
|
+
return (tree) => {
|
|
11
|
+
visit(tree, 'element', (node, index, parent) => {
|
|
12
|
+
// Only process <img> elements that have alt text
|
|
13
|
+
if (
|
|
14
|
+
node.tagName === 'img' &&
|
|
15
|
+
typeof node.properties?.alt === 'string' &&
|
|
16
|
+
node.properties.alt.trim() !== '' &&
|
|
17
|
+
parent &&
|
|
18
|
+
typeof index === 'number'
|
|
19
|
+
) {
|
|
20
|
+
const altText = node.properties.alt as string
|
|
21
|
+
// Create figcaption element
|
|
22
|
+
const figcaption: Element = {
|
|
23
|
+
type: 'element',
|
|
24
|
+
tagName: 'figcaption',
|
|
25
|
+
properties: {},
|
|
26
|
+
children: [{ type: 'text', value: altText }]
|
|
27
|
+
}
|
|
28
|
+
// Create figure element wrapping the image
|
|
29
|
+
const figure: Element = {
|
|
30
|
+
type: 'element',
|
|
31
|
+
tagName: 'figure',
|
|
32
|
+
properties: { style: 'text-align:center' },
|
|
33
|
+
children: [node, figcaption]
|
|
34
|
+
}
|
|
35
|
+
// Replace the img node with the figure node
|
|
36
|
+
parent.children[index] = figure
|
|
37
|
+
}
|
|
38
|
+
})
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export default rehypeImageCaption
|
package/scripts/new.mjs
CHANGED
|
@@ -111,9 +111,9 @@ export default function main(args) {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
let content = `---
|
|
114
|
-
title: ${postTitle}
|
|
114
|
+
title: '${postTitle}'
|
|
115
115
|
description: 'Write your description here.'
|
|
116
|
-
publishDate: ${getDate()}
|
|
116
|
+
publishDate: '${getDate()}'
|
|
117
117
|
`
|
|
118
118
|
content += parsedArgs.draft ? 'draft: true\n' : ''
|
|
119
119
|
content += parsedArgs.lang ? `lang: ${parsedArgs.lang}\n` : ''
|
package/types/theme-config.ts
CHANGED
|
@@ -184,7 +184,10 @@ export const ThemeConfigSchema = () =>
|
|
|
184
184
|
blogPageSize: z.number().optional().default(8),
|
|
185
185
|
|
|
186
186
|
/** Share buttons to show */
|
|
187
|
-
share: ShareSchema()
|
|
187
|
+
share: ShareSchema(),
|
|
188
|
+
|
|
189
|
+
/** Enable image captions (default false) */
|
|
190
|
+
imageCaption: z.boolean().default(false).describe('Enable image captions')
|
|
188
191
|
})
|
|
189
192
|
})
|
|
190
193
|
|
package/utils/theme.ts
CHANGED
|
@@ -3,7 +3,8 @@ export function getTheme() {
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
export function listenThemeChange(theme?: string) {
|
|
6
|
-
|
|
6
|
+
// If theme is specified, no need to listen window theme change
|
|
7
|
+
if (theme && theme !== 'system') return
|
|
7
8
|
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', (e) => {
|
|
8
9
|
setTheme(e.matches ? 'dark' : 'light')
|
|
9
10
|
})
|