Coder Social home page Coder Social logo

Comments (10)

neuronetio avatar neuronetio commented on August 18, 2024 4

Yeah, or make something like groups instead of master task, which will group multiple tasks in one row and only group options will be displayed in task list (maybe some summary of the whole row or somethink like that).
Theoretically text could be inside task&progress bar that will appear when zoom is enough.
I don't want to add functionality like tooltips because i will block custom actions that peoples will attach to hover/click depends on their needs i think.

from gantt-elastic.

neuronetio avatar neuronetio commented on August 18, 2024

It could be possible, but there are some problems to figure out.
If one row will contain two or more tasks:

  • what should be displayed inside task list on the left?
  • what about overlapping tasks? (how to edit them later if you cannot click it?)
  • subtasks should be displayed in the row below? and what about sub of sub tasks?
  • how to display text (currently on the right side of task inside chart view)

from gantt-elastic.

mdieudonne avatar mdieudonne commented on August 18, 2024

How about having a master task & date (the blue one below) ?
Then offer possibility to add more dates and durations (and colors) on the same row, but keep them secondary without subtasks.
No overlapping allowed.

Would be great to have custom names for each secondary tasks, but that's maybe too much to ask :)

image

from gantt-elastic.

iNeedToCopy avatar iNeedToCopy commented on August 18, 2024

How about having a master task & date (the blue one below) ?
Then offer possibility to add more dates and durations (and colors) on the same row, but keep them secondary without subtasks.
No overlapping allowed.

Would be great to have custom names for each secondary tasks, but that's maybe too much to ask :)

image

Can I ask if the multi-task function of one line has been realized? I also face this need.

from gantt-elastic.

neuronetio avatar neuronetio commented on August 18, 2024

sorry, not implemented yet, I don't know when exactly it will be

from gantt-elastic.

leanwebstart avatar leanwebstart commented on August 18, 2024

Need this too...

from gantt-elastic.

loicspace avatar loicspace commented on August 18, 2024

So do I.

from gantt-elastic.

carueda avatar carueda commented on August 18, 2024

👍

from gantt-elastic.

neuronetio avatar neuronetio commented on August 18, 2024

I'm closing this issue for now I will back to this later

from gantt-elastic.

demaryhuerto avatar demaryhuerto commented on August 18, 2024

I'm working on this feature. I've implemented a new row component (Group.vue) that renders a new task type (called "group"). Group task has an array of tasks as property. Group component renders these child subtasks.
This is enough for my use case, but I would like to write some test, documentation and to think and implement a coherent logic (for example, maybe a group task can't have start, duration and percent properties and have to be calculated at init phase from child subtasks...).

Repo: https://github.com/demaryhuerto/gantt-elastic/tree/feature/group-task-type

Example model:

{
    id: 1,
    label: 'Make some noise',
    user:
        '<a href="https://www.google.com/search?q=John+Doe" target="_blank" style="color:#0077c0;">John Doe</a>',
    start: getDate(-24 * 5),
    duration: 15 * 24 * 60 * 60 * 1000,
    percent: 85,
    type: 'project',
  },
{
    id: 2,
    label: 'Group',
    user: '<a href="https://www.google.com/search?q=Clark+Kent" target="_blank" style="color:#0077c0;">Clark Kent</a>',
    start: getDate(-24 * 2),
    duration: 6 * 24 * 60 * 60 * 1000,
    percent: 25,
    type: 'group',
    tasks: [
      {
        id: 21,
        label: 'Group subtask 1',
        user: '<a href="https://www.google.com/search?q=Clark+Kent" target="_blank" style="color:#0077c0;">Clark Kent</a>',
        start: getDate(-24 * 2),
        duration: 2 * 24 * 60 * 60 * 1000,
        percent: 50,
        type: 'project',
      },
      {
        id: 22,
        label: 'Group subtask 2',
        user: '<a href="https://www.google.com/search?q=Clark+Kent" target="_blank" style="color:#0077c0;">Clark Kent</a>',
        start: getDate(24 * 2),
        duration: 2 * 24 * 60 * 60 * 1000,
        percent: 50,
        type: 'task',
      },
    ],
  },

from gantt-elastic.

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.