1.1.15 • Published 11 months ago

@astro-utils/context v1.1.15

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Astro Context

Save context between components

Allow you to add extra props without the need to manually add them every time

Usage

layouts/Layout.astro

---
import Context from '@astro-utils/context/context.js';

function consoleIt(){
    console.log('Hi');
}
---
<Context title="Context is cool" consoleIt={consoleIt}>
    <slot/>
</Context>

components/LayoutTitle.astro

---
import getContextProps from '@astro-utils';

const {title, consoleIt} = getContextProps(Astro);
consoleIt();
---
<h2>{title}</h2>

pages/index.astro

---
import Layout from '../layouts/Layout.astro';
import LayoutTitle from '../components/LayoutTitle.astro';
---
<Layout>
    <LayoutTitle/>
</Layout>

Functions

// remember to change the name if you have multiple contexts
function getContextProps(astro: AstroGlobal, name = "default"): {[key: string]: any}

Every new context inherits the last one

async function readerInContext<T>(promise: () => Promise<T>, astro: AstroGlobal, name = "default"): Promise<T>

Same as Context.astro, help you render astro inside the props context

1.1.15

11 months ago

1.1.14

12 months ago

1.1.13

12 months ago

1.1.12

1 year ago

1.1.9

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.1

2 years ago