add-project
Description
Fires when adding a new project
Usage
"add-project": ({
id: string | number,
project?: object
}) => void;
Parameters
The callback of the add-project event can take an object with the following parameters:
id
- (required) the ID of the created projectproject
- (optional) an object with project parameters:label
- (optional) the name of the project
info
To handle the inner events, you can use the Event Bus methods
Example
const { ToDo, Toolbar } = todo;
const {tasks, projects, users} = getData();
const list = new ToDo("#root", {
tasks,
projects,
users
});
const toolbar = new Toolbar("#toolbar", {
api: list.api,
});
// subscribe to the "add-project" event
list.api.on("add-project", ({id, project}) => {
console.log("A new ", project.label, " project with ID:", id, "is added");
});
Related article: Operations with projects