Code Monkey home page Code Monkey logo

Comments (9)

divsbhalala avatar divsbhalala commented on May 23, 2024

image

from react-family-tree.

SanichKotikov avatar SanichKotikov commented on May 23, 2024

Hi,

Not sure what the problem is. If you need add child for one spouse only, just do it.

from react-family-tree.

divbhalala avatar divbhalala commented on May 23, 2024

@SanichKotikov please check this https://codesandbox.io/s/weevusissue-uvuk0 . In child-issue option I have added one child to female node but it can not appearing.

from react-family-tree.

SanichKotikov avatar SanichKotikov commented on May 23, 2024

I see only 3 nodes in the json file, but u want to see 4. Nodes will not appear out of nothing.

from react-family-tree.

divbhalala avatar divbhalala commented on May 23, 2024

I was testing it. please check that now.There is added one children with only one parent in their parents list.

from react-family-tree.

divbhalala avatar divbhalala commented on May 23, 2024

@SanichKotikov here is JSON data that i am using for that
[ { "id": "aoF9dn5Ew", "gender": "male", "spouses": [ { "id": "tdRwdtR54", "type": "divorced" } ], "siblings": [], "parents": [], "children": [ { "id": "dyTpfj6st", "type": "blood" } ] }, { "id": "tdRwdtR54", "gender": "female", "parents": [], "siblings": [], "spouses": [ { "id": "aoF9dn5Ew", "type": "divorced" } ], "children": [ { "id": "dyTpfj6st", "type": "blood" }, { "id": "dyTpfj6st_single", "type": "blood" } ] }, { "id": "dyTpfj6st", "gender": "male", "spouses": [], "siblings": [], "parents": [ { "id": "aoF9dn5Ew", "type": "blood" } ], "children": [] }, { "id": "dyTpfj6st_single", "gender": "male", "spouses": [], "siblings": [], "parents": [ { "id": "tdRwdtR54", "type": "blood" } ], "children": [] } ]

https://codesandbox.io/s/weevusissue-uvuk0

https://prnt.sc/1sylmka

from react-family-tree.

SanichKotikov avatar SanichKotikov commented on May 23, 2024

This is impossible in current version of the library. I'll add this case to my roadmap and will try to implement when I have some time. Right now, as a workaround, you have to define second parent (with another type of spouse relation) for this hidden node.

from react-family-tree.

divbhalala avatar divbhalala commented on May 23, 2024

Ok thanks

from react-family-tree.

LavransBjerkestrand avatar LavransBjerkestrand commented on May 23, 2024

Great library, thanks for making it open source.

... define second parent (with another type of spouse relation) for this hidden node.

@divbhalala were you able to get this to work?

I'm trying but not sure if it's actually possible. Is this what you had in mind?

stackblitz

Nodes:

[
  {
    id: 'father',
    gender: 'male',
    children: [
      { id: 'child-1', type: 'blood' },
      { id: 'child-2', type: 'blood' },
    ],
    parents: [],
    siblings: [],
    spouses: [
      { id: 'spouse-1', type: 'married' },
      { id: 'spouse-2', type: 'divorced' },
    ],
  },
  {
    id: 'spouse-1',
    gender: 'female',
    children: [{ id: 'child-1', type: 'blood' }],
    parents: [],
    siblings: [],
    spouses: [{ id: 'father', type: 'married' }],
  },
  {
    id: 'spouse-2',
    gender: 'female',
    children: [{ id: 'child-2', type: 'blood' }],
    parents: [],
    siblings: [],
    spouses: [{ id: 'father', type: 'divorced' }],
  },
  {
    id: 'child-1',
    gender: 'male',
    children: [],
    parents: [
      { id: 'father', type: 'blood' },
      { id: 'spouse-1', type: 'blood' },
    ],
    siblings: [{ id: 'child-2', type: 'half' }],
    spouses: [],
  },
  {
    id: 'child-2',
    gender: 'male',
    children: [],
    parents: [
      { id: 'father', type: 'blood' },
      { id: 'spouse-2', type: 'blood' },
    ],
    siblings: [{ id: 'child-1', type: 'half' }],
    spouses: [],
  },
]
image

from react-family-tree.

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.