Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create DocHandle with an initial document #94

Closed
acurrieclark opened this issue Jun 14, 2023 · 1 comment
Closed

Create DocHandle with an initial document #94

acurrieclark opened this issue Jun 14, 2023 · 1 comment

Comments

@acurrieclark
Copy link
Collaborator

Either

  • pass an initial value and do something like this to ensure that you get a valid initial value
const myInitialValue = {
  tasks: [],
  filter: "all",

const guaranteeInitialValue = (doc: any) => {
if (!doc.tasks) doc.tasks = []
if (!doc.filter) doc.filter = "all"

  return { ...myInitialValue, ...doc }
}

or

  • pass a "reify" function that takes a <any> and returns <T>
@acurrieclark
Copy link
Collaborator Author

Closed by #274

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant