astro-path-helpers

0.1.1 • Public • Published

astro-path-helpers

⚠️ This integration is still under active development and breaking changes should be expected at any point until version 1.0.0.

This is an Astro integration that generates type-safe path helper functions for your Astro routes, making it easy to manage and reference nested routes in your application.

Usage

After setup, you'll have auto-generated type-safe path helpers available throughout your application. For example, with routes like:

src/pages/posts/index.astro
src/pages/posts/[slug].astro

You can use these path helpers:

---
import { postsPath, postPath } from "astro-path-helpers";
---

<a href={postsPath()}>View all posts</a>
<a href={postPath("my-first-post")}>Read my first post</a>

Examples

Nested Resources

/pages/products/[id]/categories --> productCategoriesPath(productId: string)

/pages/products/[id]/categories/[id] --> productCategoryPath(productId: string, categoryId: string)

/pages/products/categories --> productsCategoriesPath()

/pages/products/categories/[id] --> productsCategoryPath(categoryId: string)

Notice that the parent resource is pluralized in the function name unless it has a following parameter.

Namespaces

When a path segment is singular, it is treated as a namespace rather than a resource, and we don't pluralize it in helper names:

/pages/role/members --> roleMembersPath()

Namespaces with a following parameter are treated as resources, but the parameter name is added to the helper name to avoid duplicate helper names:

/pages/role/[id]/members --> roleIdMembersPath(roleId: string)

Possible changes before 1.0.0:

  • The helper name may change to membersPathForRole(roleId: string)
  • Namespaces may be configurable in the integration config

Limitations

Currently, astro-path-helpers has several limitations:

  • Only supports routes defined in the /pages directory
  • Does not support rest parameters in routes, e.g. [...slug]
  • Does not support multi-part segments in routes, e.g. /pages/[zip]-[zap]
  • Dynamic segments must be preceded by a static segment, e.g. /pages/[zip]/[zap] is not allowed because [zap] is preceded by the dynamic segment [zip]

Roadmap

These are possible features in future releases:

  • [ ] Custom path helpers via the integration config
  • [ ] Override auto-generated path helper names via the integration config
  • [ ] Support for Endpoints
  • [ ] Support for rest parameters, e.g. /pages/books/[...slug]
  • [ ] Support for multi-part segments
  • [ ] Support for dynamic segments preceded by another dynamic segment, e.g. /pages/products/[id]/[variant] --> productVariantPath(productId, variantId)
  • [ ] Custom rules and overrides for route name singularization and pluralization

I'd love to hear your ideas! Have a feature you'd like to see in astro-path-helpers? Please reach out and share your suggestions - community feedback helps make this integration better for everyone!

Installation

Install the integration automatically using the Astro CLI:

pnpm astro add astro-path-helpers
npx astro add astro-path-helpers
yarn astro add astro-path-helpers

Or install it manually:

  1. Install the required dependencies
pnpm add astro-path-helpers
npm install astro-path-helpers
yarn add astro-path-helpers
  1. Add the integration to your astro config
+import pathHelpers from "astro-path-helpers/integration";

export default defineConfig({
  integrations: [
+    pathHelpers(),
  ],
});

Contributing

This package is structured as a monorepo:

  • playground contains code for testing the package
  • package contains the actual package

Install dependencies using pnpm:

pnpm i --frozen-lockfile

Start the playground and package watcher:

pnpm dev

You can now edit files in package. Please note that making changes to those files may require restarting the playground dev server.

Licensing

MIT Licensed. Made with ❤️ by Cassidy Smith.

Acknowledgements

Package Sidebar

Install

npm i astro-path-helpers

Weekly Downloads

263

Version

0.1.1

License

MIT

Unpacked Size

54.8 kB

Total Files

21

Last publish

Collaborators

  • heycassidy