Skip to content

Senasiko/konva-gantt

Repository files navigation

Konva-Gantt

A Gantt component based on Konva and Vue.Is still in the early stage of development

Features

View mode

Support multiple view modes: day week month.

type GanttViewMode = 'year' | 'month' | 'week' | 'day';

store.viewConfig.mode = 'day';

Theme mode

Support light and dark theme

export type GanttTheme = 'light' | 'dark';

store.viewConfig.theme = 'light';

light theme light.png dark theme dark.png

High Performance

Frame rate with 10k blocks. performance.git

Multiple data structes

Group and list

export interface GanttDataBlock {
  ...
  groupKey?: string;
}

group.png

Parent and child

export interface GanttDataBlock {
  ...
  parentKey?: string;
}

If have a parent node, the operation of the change date will be limited by the parent's date. parent-limit.png

Custom features

Add custom features is very simple, just wirte in setupGantt function

setupGantt(() => {
  useCustomFeature();
})

In useCustomFeature

import {
  useAssembleInput, useHook, useStore,
} from '@konva-gantt/core';

function useCustomFeature() {
  useStore();
  useAssembleInput();
  useHook();
}

There are some hooks and decorators for custom features.

useStore

Used to access Gantt data.

useAssembleInput

Used to add custom nodes to the internal node.

  useAssembleInput<GanttCell>(GanttCell.Name, (cellGantt: GanttCell) => {
    return {
      mount(){},
      updte(){},
      unmount(){},
    }
  });

useHook

Used to listen to the internal hooks.

useHook('changeBlockTime', (key, startTime, endTime) => {});

@GanttEffectComponent

The basic decorator for Gantt component. Every component that uses store should add @GanttEffectComponent.

@GanttEffectComponent(useStore)
export class GanttComponent {
  declare store: GanttStore;
  ...
}

@GanttEffectUpdate

require @GanttEffectComponent Decorator Decorator for optimizing component render, just like Vue component render logic. For example

@GanttEffectComponent(useStore)
export class ParentComponent {
  declare store: GanttStore;

  child: ChildComponent;
  
  update() {
    child.update();
  }
}

@GanttEffectComponent(useStore)
export class ChildComponent {
  declare store: GanttStore;

  width: ref(0);
  
  @GanttEffectUpdate()
  update() {
    node.width(this.width.value);
  }
}

If ChildComponent without @GanttEffectUpdate, when width property changes, parent.update will also exec.

@ComputedGet

Convert class property to Vue compute.

Internal custom features

Constraint

constraint.gif

Milestone

milestone.png

Development

Install

git clone https://github.com/Senasiko/konva-gantt.git

Run dev

  1. pnpm i
  2. pnpx turbo dev

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages