Code Monkey home page Code Monkey logo

Comments (2)

smalluban avatar smalluban commented on May 29, 2024 1

Here you have fixed example from the codepen:

import { define, html, Model, store } from "https://esm.sh/[email protected]"

const CommentStore = {
  id: true,
  body: '',
  [store.connect]: (id) => fetch(`https://jsonplaceholder.typicode.com/comments/${id}`).then(res => {
    if (!res.ok) throw Error(res.statusText);
    return res.json();
  }),
}

const usersSource = [{
  id: 0,
  name: 'lorem ipsum gamma',
  comments: [-1, 0, 1, 2],
}]

const UserStore = {
  id: true,
  name: '',
  comments: [CommentStore],
  [store.connect]: (id) => usersSource.find(item => item.id === Number(id)),
}

define({
  tag: 'comments-list',
  user: store(UserStore),
  render: ({ user }) => html`
    ${store.ready(user) && html`
    User ID ${user.id} ${user.name}
    <br>Comments:
    ${user.comments.map(comment => (store.ready(comment) || store.error(comment)) && html`
    <br><br>
    Comment ID ${comment.id} ${store.error(comment) && '[error]' || '[ok]'}<br>
    ${store.ready(comment) && comment.body}
    `)}
    `}
  `,
})

The store guards simplifies (but they might work differently than in other systems, so this at first can confuse) access to the model:

  • store.ready() is only truthy when the model is resolved (sync or promise) and has no errors
  • store.error() is only truthy when the model is resolved (sync or promise) and get/set storage functions throw an error
  • store.pending() is only truthy when the model resolves at the moment - it can be already ready or not ready - it depends if you fetch model for the first time, or later (for example cache expires, or you invalidate it by store.clear() function)

If you want to display some information when the model is resolved (regardless if it is fine or not) you must use both guards: store.ready() || store.error(). However, then you have to protect access to model properties in nested code, as they might not be accessible.

I made as less as possible changes to your code to make it work, but guards could be set a little bit differently for the clarity:

// comment map fn html
${store.error(comment) && html`comment error: ${store.error(comment)}`}
${store.ready(comment) && html`comment body: ${comment.body}`}

from hybrids.

Qsppl avatar Qsppl commented on May 29, 2024

thank you, now I understand.

from hybrids.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.