0.21.9 • Published 16 days ago

@elementor/editor-site-navigation v0.21.9

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
16 days ago

Editor Site Navigation

!WARNING This package is under development and not ready for production use.

Code examples

Get all pages and create a new one:

import * as React from 'react';
import { useEffect } from 'react';
import { usePosts } from './use-posts';

const PageList = () => {
	const { getPosts: getPages, createPost: createPage, isLoading, posts } = usePosts( 'page' );

	useEffect( () => {
		getPages();
	}, [ getPages ] );

	const createNewPage = () => {
		const newPage = {
			title: 'New Page',
			content: 'This is a demo page',
			status: 'publish',
		};

		createPage( newPage );
	};

	if ( isLoading ) {
		return <div>Loading...</div>;
	}

	return (
		<div>
			<h1>Pages</h1>
			<button onClick={ createNewPage }>Create New Page</button>
			<ul>
				{
					posts.map( ( page ) => (
						<li key={ page.id }>{ page.title }</li>
					) )
				}
			</ul>
		</div>
	);
};

export default PageList;
0.21.8

16 days ago

0.21.9

16 days ago

0.21.7

28 days ago

0.21.6

1 month ago

0.21.5

2 months ago

0.21.4

2 months ago

0.21.3

2 months ago

0.21.2

3 months ago

0.21.1

3 months ago

0.21.0

3 months ago

0.20.0

4 months ago

0.19.11

4 months ago

0.19.10

4 months ago

0.19.8

6 months ago

0.19.9

5 months ago

0.19.0

8 months ago

0.18.1

9 months ago

0.19.1

8 months ago

0.18.2

9 months ago

0.19.2

7 months ago

0.18.3

9 months ago

0.19.3

7 months ago

0.18.4

8 months ago

0.19.5

7 months ago

0.19.6

7 months ago

0.19.7

6 months ago

0.11.0

9 months ago

0.10.1

10 months ago

0.12.0

9 months ago

0.10.2

10 months ago

0.13.0

9 months ago

0.10.3

10 months ago

0.14.0

9 months ago

0.15.0

9 months ago

0.16.0

9 months ago

0.17.0

9 months ago

0.18.0

9 months ago

0.17.1

9 months ago

0.10.0

10 months ago

0.9.2

10 months ago

0.9.1

10 months ago

0.9.0

10 months ago

0.8.1

10 months ago

0.8.0

10 months ago

0.7.0

10 months ago

0.6.2

11 months ago

0.6.1

11 months ago

0.6.0

11 months ago

0.5.2

11 months ago

0.5.1

11 months ago

0.5.0

11 months ago

0.4.2

11 months ago

0.4.1

11 months ago

0.4.0

12 months ago

0.3.0

12 months ago

0.2.1

12 months ago

0.2.0

12 months ago

0.1.0

1 year ago