Holochain CRUD Library (CEPS pattern)

A CRUD library for Holochain zomes that implement the CEPS pattern (Chained, Entry, Permalink, State-based)

Holochain Version Map

For information on which versions of this package work for each Holochain release, see docs/HolochainVersionMap.md

Overview

Install

Example of adding to Cargo.toml toml [dependencies] hc_crud_ceps = "0.3.0"

Example of common imports rust use hc_crud::{ now, create_entity, get_entity, get_entities, update_entity, delete_entity, Entity, EntryModel, EntityType, };

Basic Usage

CRUD Operations

These imports and structs are assumed for all examples ```rust use hdk::prelude::*; use hccrud::{ now, createentity, getentity, getentities, updateentity, deleteentity, Entity, EntryModel, EntityType, };

[hdkentryhelper]

[derive(Clone)]

pub struct PostEntry { pub title: String, pub message: String, pub publishedat: Option, pub lastupdated: Option, }

[hdkentrydefs]

[unit_enum(UnitEntryTypes)]

pub enum EntryTypes { #[entry_def] Post(PostEntry), }

impl EntryModel for PostEntry { fn name() -> &'static str { "Post" } fn gettype(&self) -> EntityType { EntityType::new( "post", "entry" ) } fn toinput(&self) -> EntryTypes { EntryTypes::Post(self.clone()) } } ```

Create an entry

Example ```rust let input = PostEntry { title: String::from("Greeting"), message: String::from("Hello world!"), publishedat: Some(1633108520744), lastupdated: None, };

let postentity = createentity( &input )?; ```

[Read] Get an entry

Example rust let post_entity = get_entity( &entity.id )?;

Update an entry

Example rust let post_entity = update_entity( &entity.address, |mut previous: PostEntry, _| { previous.message = String::from("Hello, world!"); previous.last_updated = Some( now()? ); Ok(previous) })?;

Delete an entry

Example rust delete_entity::<PostEntry,EntryTypes>( &entity.id )?;

Example of CRUD for relationships

Create a 1-to-many relationship for post entries to have comment entries.

The following examples use this additional struct ```rust

[hdkentryhelper]

[derive(Clone)]

pub struct CommentEntry { pub message: String, pub publishedat: Option, pub lastupdated: Option, }

impl EntryModel for CommentEntry { fn name() -> &'static str { "Comment" } fn gettype(&self) -> EntityType { EntityType::new( "comment", "entry" ) } fn toinput(&self) -> EntryTypes { EntryTypes::Comment(self.clone()) } } ```

Add CommentEntry to EntryTypes enum diff #[hdk_entry_defs] #[unit_enum(UnitEntryTypes)] pub enum EntryTypes { #[entry_def] Post(PostEntry), + #[entry_def] + Comment(CommentEntry), }

Create a CommentEntry and link it to the PostEntry ```rust

[hdklinktypes]

pub enum LinkTypes { Post, Comment, }

let input = CommentEntry { message: String::from("Where is the sun?"), publishedat: Some( now()? ), lastupdated: None, };

let commententity = createentity( &input )?;

commententity.linkfrom( &post_entity.id, LinkTypes::Comment, None )?; ```

Get a Collection for a specific base and tag rust let collection : Vec<Entity<CommentEntry>> = get_entities( &post_entity.id, LinkTypes::Comment, None )?;

API Reference

See docs.rs/hccrudceps

Contributing

See CONTRIBUTING.md