@fujocoded/astro-ao3-loader
v0.0.4
Published
Allows loading a series of AO3 works for the Astro Content Layer
Downloads
125
Maintainers
Readme
@fujocoded/astro-ao3-loader
Load data from Archive of Our Own to your Astro site.
What is @fujocoded/astro-ao3-loader?
[!WARNING] This is an experimental library with only basic functionality. If you want to help us expand it, you can reach out via GitHub, Fandom Coders, our socials, or [email protected].
If you've never joined an open source project before, this is an excellent first place to contribute!
This library makes it easy to use the Content Loader API and AO3.js to load data from Archive of Our Own to your Astro website.
What can @fujocoded/astro-ao3-loader do?
You can use this library to easily grab data about content hosted on Archive of Our Own to use in your Astro site—however you wish to. ✨
The library includes the following loaders:
| Loader | Description | Data file |
| -------------- | -------------------------------------------------------------------------------------------- | ----------------------------- |
| worksLoader | Loads data from a set of works hosted on Archive of Our Own. | src/content/ao3/works.yaml |
| seriesLoader | Loads data from series hosted on Archive of Our Own. | src/content/ao3/series.yaml |
How to use @fujocoded/astro-ao3-loader
[!TIP] Want to see some examples? Take a look around the examples folder. 👀
Prerequisites
This library requires Astro 5.0.0 or later, and Astro's built-in Content Loader API. Astro 4 isn't currently supported, but if you'd like to use the library on an older version, open an issue to let us know!
Installation
npm install @fujocoded/astro-ao3-loaderConfiguration
The configuration steps are the same for each loader. In this example, we'll use the worksLoader to get information from a list of works specified in src/content/ao3/works.yaml.
Set up a content collection in
src/content/config.tsthat uses your chosen loader.import { defineCollection } from "astro:content"; import { worksLoader } from "@fujocoded/astro-ao3-loader"; export const collections = { fanfictions: defineCollection({ loader: worksLoader }), };Create
src/content/ao3/works.yamland add a list of work IDs to the file.- 38226814 - 49238326 - 59988091 - 41160522 - 11728554 - 12928950 - 58869805
[!TIP] This file uses the YAML data format to list work IDs. If you're running into issues, check your syntax using one of the many YAML validators out there.
Once configured, you can use the collection created with astro-ao3-loader like you
would any other Astro content collection.
---
import { getCollection } from "astro:content";
const fanfictions = await getCollection("fanfictions");
---
<h1>Hello fujin</h1>
<ul>
{
fanfictions.map((fic) => {
if (fic.data.locked) {
return <li>Locked</li>;
}
return (
<li>
{fic.data.title} by {fic.data.authors[0].pseud} ({fic.data.rating})
</li>
);
})
}
</ul>For a more complete example, you can take a look at our example page.
