Compare commits

...

35 commits
v0.3.1 ... main

Author SHA1 Message Date
c1b24a1d5f feat: descriptive props on the test page 2025-03-05 22:40:18 +01:00
6494a3bbed chore: update peer dep 2025-03-05 22:38:24 +01:00
08bcc85c93 chore: update repo info 2025-02-09 15:01:16 +01:00
62862b560f chore: add auto mirror to github build script 2025-02-09 14:59:12 +01:00
4c4730e812 0.4.3 2024-11-23 12:25:34 +01:00
439248e2e5 0.4.2 2024-11-23 12:24:43 +01:00
1565eb5a58 chore(deps): update astro and devalue 2024-11-23 12:24:27 +01:00
f01a3d8eea chore: update package repo & homepage 2024-08-03 11:43:45 +02:00
9512de21b5 chore: update readme w/ badges 2024-08-03 11:41:20 +02:00
b33251008f 0.4.1 2024-07-27 08:38:50 +02:00
5098a15bca chore: update deps 2024-07-27 08:38:43 +02:00
aa994c4793 chore: remove indentation in readme script examples 2024-04-10 16:39:11 +02:00
Ayo
3600df5279 0.4.0 2023-12-07 15:38:49 +01:00
Ayo
9107b00a6f chore: support Astro 4 2023-12-07 15:38:35 +01:00
Ayo
6be7424e07 0.3.9 2023-09-23 11:12:17 +02:00
Ayo
0c636da9c6 chore: udpate readme tldr 2023-09-23 11:12:10 +02:00
Ayo
5f3f504d35 0.3.8 2023-09-23 11:03:20 +02:00
Ayo
a4700f1f6a chore: update readme with tl;dr 2023-09-23 11:03:10 +02:00
Ayo
acef5b6ba6 0.3.7 2023-09-19 17:33:19 +02:00
Ayo
988fc65530 chore: update publish scripts 2023-09-19 17:33:10 +02:00
Ayo
7bc4956f91 0.3.6 2023-09-19 17:31:20 +02:00
Ayo
17ea41c47b chore: update publish scripts 2023-09-19 17:31:14 +02:00
Ayo
41af5c530b chore: update peerDeps support 2023-09-19 17:29:57 +02:00
Ayo
424e9e4494 0.3.5 2023-09-06 17:14:30 +02:00
Ayo
41e02ccf96 docs: add example of serialize once, access everywhere 2023-09-06 17:13:29 +02:00
Ayo
71a0e27c61 feat: add helpful error message when data is unserializable 2023-08-05 04:48:35 +02:00
Ayo
632e433add chore: remove long example 2023-07-28 10:29:10 +02:00
Ayo
4b29419ed3 chore: update package info 2023-07-28 10:26:31 +02:00
Ayo
e66111e5b9 0.3.4 2023-07-22 18:58:44 +02:00
Ayo
35e2620939 feat: put lib name in err messages 2023-07-22 18:58:19 +02:00
Ayo
cc26eb6bb5 0.3.3 2023-07-21 10:48:56 +02:00
Ayo
1956bee325 refactor: use devalue as devDep in test page 2023-07-21 10:48:43 +02:00
Ayo
08dde913c5 chore: add todo comment 2023-07-21 10:41:27 +02:00
Ayo Ayco
6f86eb4495 0.3.2 2023-07-18 23:36:00 +02:00
Ayo Ayco
94664e8c49 chore: update readme, code clean up 2023-07-18 23:35:51 +02:00
10 changed files with 3523 additions and 5884 deletions

11
.build.yml Normal file
View file

@ -0,0 +1,11 @@
image: alpine/edge
secrets:
- bbfcb6dc-7c4a-42ee-a11a-022f0339a133
environment:
REPO: astro-resume
GH_USER: ayoayco
tasks:
- push-mirror: |
cd ~/"${REPO}"
git config --global credential.helper store
git push --mirror "https://github.com/${GH_USER}/${REPO}"

120
README.md
View file

@ -1,13 +1,18 @@
> [!NOTE]
> This project moved to [SourceHut](https://git.sr.ht/~ayoayco/astro-resume).
# Astro Resume
[![Package information: NPM version](https://img.shields.io/npm/v/@ayco/astro-resume)](https://www.npmjs.com/package/@ayco/astro-resume)
[![Package information: NPM license](https://img.shields.io/npm/l/@ayco/astro-resume)](https://www.npmjs.com/package/@ayco/astro-resume)
[![Package information: NPM downloads](https://img.shields.io/npm/dt/@ayco/astro-resume)](https://www.npmjs.com/package/@ayco/astro-resume)
Utilities for serializing data from server for use in the client.
1. `Serialize` - Astro component that takes `id` and `data`
1. `deserialize(id: string)` - a function for use in the client that takes an `id` string and returns the `data` object
1. `deserialize()` - a function for use in the client that takes an `id` string and returns the `data` object
## Installation & Examples
### Install via npm
## Install via npm
On your [Astro](https://astro.build) project:
@ -15,7 +20,7 @@ On your [Astro](https://astro.build) project:
npm i @ayco/astro-resume
```
### Usage
## Usage
Serializing and deserializing basic primitive data
@ -31,14 +36,14 @@ const data = {
<Serialize id="my-data" data={data} />
<script>
import {deserialize} from '@ayco/astro-resume';
const data = deserialize('my-data');
console.log(data) // {hello: 'world'}
import {deserialize} from '@ayco/astro-resume';
const data = deserialize('my-data');
console.log(data) // {hello: 'world'}
</script>
```
### Type Safety
## Type Safety
You can define a type for the data and use it in the client script.
@ -57,21 +62,21 @@ export type Data = typeof data;
<Serialize id="my-data" data={data} />
<script>
import {deserialize} from '@ayco/astro-resume';
import {deserialize} from '@ayco/astro-resume';
/**
* reuse the type in the client
* assuming this component's name is `ThisComponent.astro`
*/
import type {Data} from './ThisComponent.astro';
/**
* reuse the type in the client
* assuming this component's name is `ThisComponent.astro`
*/
import type {Data} from './ThisComponent.astro';
const data = deserialize<Data>('my-data');
const data = deserialize<Data>('my-data');
console.log(data) // {hello: 'world', isOkay: true}
console.log(data) // {hello: 'world', isOkay: true}
</script>
```
### Passing all Astro.props to client
## Passing all Astro.props to client
If you need to make all the component props to the client script:
@ -87,27 +92,69 @@ export interface Props {
<Serialize id="preferences" data={{...Astro.props}} />
<script>
import {deserialize} from '@ayco/astro-resume';
import type {Props} from './ThisComponent.astro';
const {hello, isOkay} = deserialize<Props>('preferences');
console.log(hello, isOkay);
import {deserialize} from '@ayco/astro-resume';
import type {Props} from './ThisComponent.astro';
const {hello, isOkay} = deserialize<Props>('preferences');
console.log(hello, isOkay);
</script>
```
### Using a custom serializer and parser
## Serialize server data once, access everywhere
If you want to opt for more complex data, you can bring your custom serializer/parser.
If you have shared data that needs to be initialized from the server and accessed in several places on the client-side, you can use `Serialize` once and `deserialize` in any number of Astro components as long as they are in the same page.
In this example, an appConfig object is built and serialized in index.astro and accessed in child Astro components.
In index.astro:
```astro
import Serialize from "@ayco/astro-resume";
const appConfig = {
someClientSideKey: '1234hello',
}
export type AppConfig = typeof appConfig;
---
<Serialize id="app-config" data={appConfig} />
<Child />
```
In Child.astro:
```astro
<h1>I'm a child. I have access to the appConfig in index!</h1>
<GrandChild />
<script>
import {deserialize} from '@ayco/astro-resume';
import type {AppConfig} from '..pages/index.astro';
const data = deserialize<AppConfig>('app-config');
// ... do something with the app config
</script>
```
In GrandChild.astro:
```astro
<h1>I'm a grand child. I also have access to the appConfig in index!</h1>
<script>
import {deserialize} from '@ayco/astro-resume';
import type {AppConfig} from '..pages/index.astro';
const data = deserialize<AppConfig>('app-config');
// ... do something with the app config
</script>
```
## Using a custom serializer and parser
You can bring your own custom serializer/parser if you want to opt for more complex data handling.
Here's an example of serializing data that `JSON.stringify` cannot (e.g., Date or BigInt) using Rich Harris' [`devalue`](https://github.com/Rich-Harris/devalue):
```astro
---
import {stringify} from 'devalue';
import Serialize from "../Serialize.astro";
import Serialize from "@ayco/astro-resume";
const data = {
name: 'John Doe',
isOkay: true,
mood: null,
now: new Date(),
age: BigInt('3218378192378')
}
@ -117,20 +164,20 @@ export type Data = typeof data;
<Serialize data={data} id="my-data" use={stringify} />
<script>
import { parse } from 'devalue';
import { deserialize } from '../deserialize';
import type { Data } from './index.astro';
import {parse} from 'devalue';
import {deserialize} from '@ayco/astro-resume';
import type {Data} from './index.astro';
const data = deserialize<Data>('my-data', parse);
console.log(typeof data.age); // 'bigint'
console.log(data.now instanceof Date); // true
const {age, now} = deserialize<Data>('my-data', parse);
console.log(typeof age); // 'bigint'
console.log(now instanceof Date); // true
</script>
```
### Errors & Warning in `deserialize()`
## Errors & Warning in `deserialize()`
The `deserialize()` function may give you the following:
1. **ERR: No match found** - there are no `JSON` scripts with the given ID
1. **ERR: No match found** - there are no `JSON` scripts with the given ID
1. **WARNING: Multiple matches for <id>** - there were multiple `JSON` scripts found with the same ID
## About
@ -158,4 +205,3 @@ See the [TODO tracker](https://todo.sr.ht/~ayoayco/astro-resume) for planned wor
## Reporting Issues
To report issues or request features, send a plain text email to [~ayoayco/astro-resume@todo.sr.ht](mailto:~ayoayco/astro-resume@todo.sr.ht) or file a ticket via [SourceHut](https://todo.sr.ht/~ayoayco/astro-resume)

View file

@ -1,11 +1,6 @@
import { defineConfig } from 'astro/config';
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
output: "server",
adapter: node({
mode: "standalone"
})
});

5794
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,9 +1,13 @@
{
"name": "@ayco/astro-resume",
"author": "Ayo Ayco",
"homepage": "https://sr.ht/~ayoayco/astro-resume",
"homepage": "https://ayco.io/sh/astro-resume",
"repository": {
"type": "git",
"url": "https://git.sr.ht/~ayoayco/astro-resume"
},
"type": "module",
"version": "0.3.1",
"version": "0.4.3",
"keywords": [
"astro-component",
"css",
@ -23,11 +27,14 @@
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public"
},
"dependencies": {
"@astrojs/node": "^5.3.0",
"astro": "^2.8.4",
"devalue": "^4.3.2"
"devDependencies": {
"devalue": "^5.1.1"
},
"peerDependencies": {
"astro": "^5"
}
}

3370
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load diff

View file

@ -21,7 +21,15 @@ let serializedData = '{}'
try {
serializedData = use ? use(data) : JSON.stringify(data);
} catch(err) {
throw Error(err)
/**
* ERR: data is unserializable
* - You might need a custom serializer/parser for complex data
* - Usage examples in 👉 https://git.sr.ht/~ayoayco/astro-resume#astro-resume
*/
throw Error(`astro-resume ERR: Data unserializable
- You might need a custom serializer/parser for complex data
- Usage examples in 👉 https://git.sr.ht/~ayoayco/astro-resume#astro-resume
`, err)
}
---

View file

@ -4,35 +4,13 @@
* @param parser Custom parser to be used
* @returns The deserialized JSON data
* @see Usage examples in 👉 https://git.sr.ht/~ayoayco/astro-resume#astro-resume
* @example
*
* To make all `Astro.props` available in your client script:
*
* ```astro
* ---
* import Serialize from "@ayco/astro-resume";
* export interface Props {
* hello: string;
* isOkay: boolean;
* }
* ---
*
* <Serialize id="preferences" data={{...Astro.props}} />
*
* <script>
* import {deserialize} from '@ayco/astro-resume';
* import type {Props} from './ThisComponent.astro';
* const {hello, isOkay} = deserialize<Props>('preferences');
* console.log(hello, isOkay);
* </script>
* ```
**/
**/
export function deserialize<T = any>(id: string, parser?: (serialized: string)=>any): T {
const elements = document.querySelectorAll<HTMLScriptElement>(`script#${id}[type="application/json"]`);
if (elements?.length > 0) {
if (elements?.length > 1)
console.warn(`WARNING: Multiple matches for "${id}". There are ${elements?.length} matches found for ID: "${id}". The function will parse the first match found.`)
console.warn(`astro-resume WARN: Multiple matches for "${id}". The function will parse the first one.`)
const element = elements[0];
@ -42,7 +20,7 @@ export function deserialize<T = any>(id: string, parser?: (serialized: string)=>
: JSON.parse(element.textContent)
}
throw Error(`ERR: No match found.
throw Error(`astro-resume ERR: No match found.
"deserialize('${id}')" did not find any data.
Check that the following are correct:
- The Serialize component is used with correct props

1
src/env.d.ts vendored
View file

@ -1 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />

View file

@ -1,13 +1,13 @@
---
import { stringify } from 'devalue';
import Serialize from "../Serialize.astro";
import { stringify } from "devalue";
const data = {
name: 'John Doe',
isOkay: true,
mood: null,
now: new Date(),
age: BigInt('3218378192378')
}
nameStr: "John Doe",
isOkayBool: true,
moodNull: null,
nowDate: new Date(),
ageBigInt: BigInt("3218378192378"),
};
export type Data = typeof data;
---
@ -15,13 +15,30 @@ export type Data = typeof data;
<Serialize data={data} id="my-data" use={stringify} />
<script>
import { deserialize } from '../deserialize';
import { parse, stringify } from 'devalue';
import type { Data } from './index.astro';
import { deserialize } from "../deserialize";
import { parse } from "devalue";
import type { Data } from "./index.astro";
const data = deserialize<Data>('my-data', parse);
console.log(data);
console.log(typeof data.age);
console.log(data.now instanceof Date);
document.getElementById("render-here").innerHTML = stringify(data)
const data = deserialize<Data>("my-data", parse);
console.log(data);
Object.keys(data).forEach((key) =>
console.log(key, data[key], typeof data[key])
);
// render table to render-here
const table = document.createElement("table");
const tbody = document.createElement("tbody");
table.appendChild(tbody);
Object.keys(data).forEach((key) => {
const tr = document.createElement("tr");
const tdKey = document.createElement("td");
const tdValue = document.createElement("td");
tdKey.textContent = key;
tdValue.textContent = data[key];
tr.appendChild(tdKey);
tr.appendChild(tdValue);
tbody.appendChild(tr);
});
document.getElementById("render-here").appendChild(table);
</script>