Acknowledgements


Setting up, getting started

Refer to the guide Setting up and getting started.


Design

:bulb: Tip: The .puml files used to create diagrams in this document docs/diagrams folder. Refer to the PlantUML Tutorial at se-edu/guides to learn how to create and edit diagrams.

Architecture

The Architecture Diagram given above explains the high-level design of the App.

Given below is a quick overview of main components and how they interact with each other.

Main components of the architecture

Main (consisting of classes Main and MainApp) is in charge of the app launch and shut down.

  • At app launch, it initializes the other components in the correct sequence, and connects them up with each other.
  • At shut down, it shuts down the other components and invokes cleanup methods where necessary.

The bulk of the app’s work is done by the following four components:

  • UI: The UI of the App.
  • Logic: The command executor.
  • Model: Holds the data of the App in memory.
  • Storage: Reads data from, and writes data to, the hard disk.

Commons represents a collection of classes used by multiple other components.

How the architecture components interact with each other

The Sequence Diagram below shows how the components interact with each other for the scenario where the user issues the command delete person 1.

Each of the four main components (also shown in the diagram above),

  • defines its API in an interface with the same name as the Component.
  • implements its functionality using a concrete {Component Name}Manager class (which follows the corresponding API interface mentioned in the previous point.

For example, the Logic component defines its API in the Logic.java interface and implements its functionality using the LogicManager.java class which follows the Logic interface. Other components interact with a given component through its interface rather than the concrete class (reason: to prevent outside component’s being coupled to the implementation of a component), as illustrated in the (partial) class diagram below.

The sections below give more details of each component.

UI component

The API of this component is specified in Ui.java

Structure of the UI Component

The UI consists of a MainWindow that is made up of parts e.g.CommandBox, ResultDisplay, TabPane (which contains PersonListPanel and EventListPanel), StatusBarFooter etc. All these, including the MainWindow, inherit from the abstract UiPart class which captures the commonalities between classes that represent parts of the visible GUI.

The UI component uses the JavaFx UI framework. The layout of these UI parts are defined in matching .fxml files that are in the src/main/resources/view folder. For example, the layout of the MainWindow is specified in MainWindow.fxml

The UI component,

  • executes user commands using the Logic component.
  • listens for changes to Model data so that the UI can be updated with the modified data.
  • keeps a reference to the Logic component, because the UI relies on the Logic to execute commands.
  • depends on some classes in the Model component, as it displays Person and Event objects residing in the Model.

Logic component

API : Logic.java

Here’s a (partial) class diagram of the Logic component:

The sequence diagram below illustrates the interactions within the Logic component, taking execute("delete event 1") API call as an example.

Interactions Inside the Logic Component for the `delete event 1` Command

:information_source: Note: The lifeline for DeleteCommandParser should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline continues till the end of diagram.

How the Logic component works:

  1. When Logic is called upon to execute a command, it is passed to an AddressBookParser object which in turn creates a parser that matches the command (e.g., DeleteCommandParser) and uses it to parse the command.
  2. The DeleteCommandParser parses the command and creates either a DeletePersonCommandParser or a DeleteEventCommandParser object depending on the command type, which then parses the input.
  3. This results in a Command object (more precisely, an object of one of its subclasses e.g., DeletePersonCommand or DeleteEventCommand) which is executed by the LogicManager.
  4. The command can communicate with the Model when it is executed (e.g. to delete a person).
    Note that although this is shown as a single step in the diagram above (for simplicity), in the code it can take several interactions (between the command object and the Model) to achieve.
  5. The result of the command execution is encapsulated as a CommandResult object which is returned back from Logic.

Here are the other classes in Logic (omitted from the class diagram above) that are used for parsing a user command:

How the parsing works:

  • When called upon to parse a user command, the AddressBookParser class creates an XYZCommandParser (XYZ is a placeholder for the specific command name e.g., AddCommandParser) which uses the other classes shown above to parse the user command and create a XYZEventCommand object (e.g., ClearCommand) which the AddressBookParser returns back as a Command object.
  • All XYZCommandParser classes (e.g., AddPersonCommandParser, DeletePersonCommandParser, …) inherit from the Parser interface so that they can be treated similarly where possible e.g, during testing.

Model component

API : Model.java

The Model component,

  • stores the address book data i.e., all Person and Event objects (which are contained in UniquePersonList and UniqueEventList objects).
  • stores the currently ‘selected’ Person and Event objects (e.g., results of a search query) as a separate filtered list which is exposed to outsiders as an unmodifiable ObservableList<Person> that can be ‘observed’ e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change.
  • stores a UserPref object that represents the user’s preferences. This is exposed to the outside as a ReadOnlyUserPref objects.
  • does not depend on any of the other three components (as the Model represents data entities of the domain, they should make sense on their own without depending on other components)
:information_source: Note: An alternative (arguably, a more OOP) model is given below. It has a Tag list in the AddressBook, which Person references. This allows AddressBook to only require one Tag object per unique tag, instead of each Person needing their own Tag objects.

Storage component

API : Storage.java

The Storage component,

  • can save both address book data and user preference data in JSON format, and read them back into corresponding objects.
  • inherits from both AddressBookStorage and UserPrefStorage, which means it can be treated as either one (if only the functionality of only one is needed).
  • depends on some classes in the Model component (because the Storage component’s job is to save/retrieve objects that belong to the Model)

Common classes

Classes used by multiple components are in the seedu.address.commons package.


Implementation

This section describes some noteworthy details on how certain features are implemented.

Event and Person Synchronisation

Implementation

The current Event class has a Person field that stores the Person object associated with the event. This is because the Event object should be aware of the Person object it is associated with. This ensures that when details of the Person object are updated, the Event object is aware of the changes and can update itself accordingly. This applies to the contact list in Event as well.

Step 1: The user adds a new Event through the add event command. During execution of the command, the Person object associated with the Event is retrieved from the Model using the findPerson method.

The following sequence diagram shows how the Event object is created and associated with a Person object: AddEvent

The following sequence diagram shows how findPerson method is executed and the Person object is retrieved: FindPerson

Step 2: The user updates the details of a Person object through the edit person command. During execution of the command, the updated Person replaces all original Person in relevant Events through the replacePersonInEvents method in the Model.

The following sequence diagram shows how the Person object is edited: EditPerson

The following sequence diagram shows how replacePersonInEvents method is executed and the original Person object is replaced with the updated Person object: ReplacePerson

[Proposed] Undo/redo feature

Proposed Implementation

The proposed undo/redo mechanism is facilitated by VersionedAddressBook. It extends AddressBook with an undo/redo history, stored internally as an addressBookStateList and currentStatePointer. Additionally, it implements the following operations:

  • VersionedAddressBook#commit() — Saves the current address book state in its history.
  • VersionedAddressBook#undo() — Restores the previous address book state from its history.
  • VersionedAddressBook#redo() — Restores a previously undone address book state from its history.

These operations are exposed in the Model interface as Model#commitAddressBook(), Model#undoAddressBook() and Model#redoAddressBook() respectively.

Given below is an example usage scenario and how the undo/redo mechanism behaves at each step.

Step 1. The user launches the application for the first time. The VersionedAddressBook will be initialized with the initial address book state, and the currentStatePointer pointing to that single address book state.

UndoRedoState0

Step 2. The user executes delete person 5 command to delete the 5th person in the address book. The delete person command calls Model#commitAddressBook(), causing the modified state of the address book after the delete person 5 command executes to be saved in the addressBookStateList, and the currentStatePointer is shifted to the newly inserted address book state.

UndoRedoState1

Step 3. The user executes add person n/David …​ to add a new person. The add person command also calls Model#commitAddressBook(), causing another modified address book state to be saved into the addressBookStateList.

UndoRedoState2

:information_source: Note: If a command fails its execution, it will not call Model#commitAddressBook(), so the address book state will not be saved into the addressBookStateList.

Step 4. The user now decides that adding the person was a mistake, and decides to undo that action by executing the undo command. The undo command will call Model#undoAddressBook(), which will shift the currentStatePointer once to the left, pointing it to the previous address book state, and restores the address book to that state.

UndoRedoState3

:information_source: Note: If the currentStatePointer is at index 0, pointing to the initial AddressBook state, then there are no previous AddressBook states to restore. The undo command uses Model#canUndoAddressBook() to check if this is the case. If so, it will return an error to the user rather than attempting to perform the undo.

The following sequence diagram shows how an undo operation goes through the Logic component:

UndoSequenceDiagram

:information_source: Note: The lifeline for UndoCommand should end at the destroy marker (X) but due to a limitation of PlantUML, the lifeline reaches the end of diagram.

Similarly, how an undo operation goes through the Model component is shown below:

UndoSequenceDiagram

The redo command does the opposite — it calls Model#redoAddressBook(), which shifts the currentStatePointer once to the right, pointing to the previously undone state, and restores the address book to that state.

:information_source: Note: If the currentStatePointer is at index addressBookStateList.size() - 1, pointing to the latest address book state, then there are no undone AddressBook states to restore. The redo command uses Model#canRedoAddressBook() to check if this is the case. If so, it will return an error to the user rather than attempting to perform the redo.

Step 5. The user then decides to execute the command list person. Commands that do not modify the address book, such as list person, will usually not call Model#commitAddressBook(), Model#undoAddressBook() or Model#redoAddressBook(). Thus, the addressBookStateList remains unchanged.

UndoRedoState4

Step 6. The user executes clear, which calls Model#commitAddressBook(). Since the currentStatePointer is not pointing at the end of the addressBookStateList, all address book states after the currentStatePointer will be purged. Reason: It no longer makes sense to redo the add n/David …​ command. This is the behavior that most modern desktop applications follow.

UndoRedoState5

The following activity diagram summarizes what happens when a user executes a new command:

Design considerations:

Aspect: How undo & redo executes:

  • Alternative 1 (current choice): Saves the entire address book.
    • Pros: Easy to implement.
    • Cons: May have performance issues in terms of memory usage.
  • Alternative 2: Individual command knows how to undo/redo by itself.
    • Pros: Will use less memory (e.g. for delete person, just save the person being deleted).
    • Cons: We must ensure that the implementation of each individual command are correct.

Documentation, logging, testing, configuration, dev-ops


Appendix: Requirements

Product scope

Target user profile: Celebrity Talent Managers

  • have a need to manage a significant number of contacts (celebrities, industry professionals, etc)
  • prefer desktop apps over other types
  • can type fast
  • prefer typing to mouse interactions
  • are reasonably comfortable using CLI apps

Value proposition: TalentHub offers celebrity talent managers a secure, offline tool to manage various contacts and stakeholders, and schedule events efficiently. With editable fields, it streamlines coordination while ensuring privacy and data control in a high-stakes environment.

User stories

Priorities: High (must have) - * * *, Medium (nice to have) - * *, Low (unlikely to have) - *

Priority As a …​ I want to …​ So that I can…​
* * * Celebrity Talent Manager add new contacts to my address book keep track of important stakeholders
* * * Celebrity Talent Manager use command-line shortcuts to manage my contacts and schedule work faster and more efficiently
* * * Celebrity Talent Manager delete a contact remove entries that I no longer need
* * * Celebrity Talent Manager view details of a specific contact quickly access specific information when needed
* * * Celebrity Talent Manager list my contacts see an overview of my contacts
* * * Celebrity Talent Manager add important events quickly view my important tasks
* * * Celebrity Talent Manager view the event details a client has see and plan around their schedule
* * * Celebrity Talent Manager view all my events have an overview of my timetable
* * * Celebrity Talent Manager delete an event remove outdated entries
* * * Celebrity Talent Manager save my data come back to it next time
* * Celebrity Talent Manager dealing with various groups group and tag my contacts group contacts based on specific tags
* * Celebrity Talent Manager with many contacts search for clients using tags quickly find individuals in a specific group
* * Celebrity Talent Manager with many contacts search for clients using names quickly find specific individuals
* * Celebrity Talent Manager delete a contact only after confirmation prevent accidental deletion of something still important
* * Celebrity Talent Manager edit contact information update ay changes in their information
* * Celebrity Talent Manager who can be forgetful be alerted when I add duplicate entries avoid duplicate entries
* * Celebrity Talent Manager who is new to the application access a help guide in the application find out the command I need when I forget it
* * Celebrity Talent Manager perform mass deletion of entries save time when I have to delete a lot of entries
* * Celebrity Talent Manager be alerted when events clash identify clashes and resolve them easily
* * Celebrity Talent Manager mark events as over or ended keep track my schedule
* Celebrity Talent Manager add a photo for my contacts easily remember or recognise the contact
* Celebrity Talent Manager flag priority contacts identify contacts that require immediate focus
* Celebrity Talent Manager export and import client data safely transfer information on different devices
* Celebrity Talent Manager who can be careless at times undo my last command quickly revert my changes when they are wrong
* Celebrity Talent Manager set reminders for tasks get reminded of upcoming tasks that are due soon
* Celebrity Talent Manager set visual indicators for my contacts based on availability quickly see if someone is available or not
* Celebrity Talent Manager customise my data storage location change where my data is kept locally
* Celebrity Talent Manager set my own CLI shortcuts use the commands faster based on my preferences

Use cases

Use case: UC01 - Add Contact

MSS

  1. Talent Manager requests to add a specific contact
  2. TalentHub adds the person to the list

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. Any compulsory parameter is missing or invalid.

    • 1b1. TalentHub outputs an error message specifying the issue.

      Use case ends.

  • 1c. An identical name is detected.

    • 1c1. TalentHub outputs an error message specifying the issue.

      Use case ends.

  • 1d. An identical phone number is detected.

    • 1d1. TalentHub outputs an error message specifying the issue.

      Use case ends.

Use case: UC02 - Edit Contact

MSS

  1. Talent Manager requests to edit the information of a specific contact
  2. TalentHub changes the information of the target person

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. An identical name is detected.

    • 1b1. TalentHub outputs an error message specifying the issue.

      Use case ends.

  • 1c. An identical phone number is detected.

    • 1c1. TalentHub outputs an error message specifying the issue.

      Use case ends.

Use case: UC03 - Delete Contact after List

MSS

  1. Talent Manager lists contacts (UC06)
  2. Talent Manager deletes contact (UC05)

Use case ends.

Use case: UC04 - Delete Contact after Find

MSS

  1. Talent Manager finds contact by name (UC07)
  2. Talent Manager deletes contact (UC05)

Use case ends.

Use case: UC05 - Delete Contact

MSS

  1. Talent Manager requests to delete a specific person in the list
  2. TalentHub requests for confirmation of deletion
  3. TalentHub deletes the person and all his/her corresponding events

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The list is empty.

    • 1b1. TalentHub shows an index error message.

      Use case ends.

  • 1c. The given index is invalid.

    • 1c1. TalentHub shows an index error message.

      Use case ends.

  • 2a. Talent Manager confirms the deletion.

    • Use case resumes from step 3.
  • 2b. Talent Manager cancels the deletion.

    • 2b1. TalentHub outputs a successful cancellation message.

      Use case ends.

  • 2c. The parameter is missing or invalid.

    • 2b1. TalentHub outputs an error message specifying the issue.

      Use case resumes from step 2.

Use case: UC06 - List All Contacts

MSS

  1. Talent Manager requests to list contacts
  2. TalentHub shows a list of all contacts

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

Use case: UC07 - Find Contact by Name

MSS

  1. Talent Manager requests to find persons whose name contains keywords
  2. TalentHub processes and list person(s) whose name contains keywords

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The keyword is empty.

    • 1b1. TalentHub outputs an error message.

      Use case ends.

Use case: UC08 - Filter Contact by Tag

MSS

  1. Talent Manager requests to filter persons with tag
  2. TalentHub processes and lists person(s) with tag

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The keyword is empty.

    • 1b1. TalentHub shows an error message.

      Use case ends.

Use case: UC09 - Add Event

MSS

  1. Talent Manager requests to add an event for a specific celebrity
  2. TalentHub adds the event

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. Any compulsory parameter is missing or invalid.

    • 1b1. TalentHub outputs an error message specifying the issue.

      Use case ends.

  • 1c. A duplicate event is detected.

    • 1c1. TalentHub displays a message informing the Talent Manager of the duplicate event and does not add it.

      Use case ends.

  • 1d. Time clash is detected.

    • 1d1. TalentHub displays a message informing the Talent Manager of the time clash and does not add it.

      Use case ends.

Use case: UC10 - Edit Event

MSS

  1. Talent Manager requests to edit the information of an event for a specific celebrity
  2. TalentHub changes the information of the event

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The input parameter is invalid.

    • 1b1. TalentHub outputs an error message specifying the issue.

      Use case ends.

  • 1c. A duplicate event is detected.

    • 1c1. TalentHub displays a message informing the Talent Manager of the duplicate event and does not change it.

      Use case ends.

  • 1d. Time clash is detected.

    • 1d1. TalentHub displays a message informing the Talent Manager of the time clash and does not change it.

      Use case ends.

Use case: UC11 - Delete Event after List

MSS

  1. Talent Manager lists events (UC14)
  2. Talent Manager deletes event (UC13)

Use case ends.

Use case: UC12 - Delete Event after Find

MSS

  1. Talent Manager finds event by name (UC15)
  2. Talent Manager deletes event (UC13)

Use case ends.

Use case: UC13 - Delete Event

  1. Talent Manager requests to delete a specific event from the list
  2. TalentHub deletes the event

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The list is empty.

    • 1b1. TalentHub outputs an index error message.

      Use case ends.

  • 1c. The given index is invalid.

    • 1c1. TalentHub outputs an index error message.

      Use case ends.

Use case: UC14 - List All Events

MSS

  1. Talent Manager requests to list all events.
  2. TalentHub retrieves and displays all events in chronological order.

Use case ends.

Extensions

  • 1a. The command format is invalid.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

Use case: UC15 - Find Event by Name

MSS

  1. Talent Manager requests to find event with name contains keywords
  2. TalentHub processes and list event with name contains keywords

Use case ends.

Extensions

  • 1a. The command format is invalid.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The keyword is empty.

    • 1b1. TalentHub outputs an error message.

      Use case ends.

Use case: UC16 - Filter Event by Celebrity

MSS

  1. Talent Manager requests to filter event by celebrity’s name
  2. TalentHub processes and lists target celebrity’s events

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 1b. The keyword is empty.

    • 1b1. TalentHub outputs an error message.

      Use case ends.

Use case: UC17 - Clear Events

  1. Talent Manager requests to clear all event in the list
  2. TalentHub requests for confirmation of clear
  3. TalentHub clears all events in the list

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 2a. Talent Manager confirms the clear.

    • Use case resumes from step 3.
  • 2b. Talent Manager cancels the clear.

    • 2b1. TalentHub outputs an successful cancellation message.

      Use case ends.

  • 2c. The parameter is missing or invalid.

    • 2b1. TalentHub outputs an error message specifying the issue.

      Use case resumes from step 2.

Use case: UC18 - Clear Persons and Events

  1. Talent Manager requests to clear all persons and events in the list
  2. TalentHub requests for confirmation of clear
  3. TalentHub clears all persons and events in the list

Use case ends.

Extensions

  • 1a. The command format is incorrect.

    • 1a1. TalentHub outputs a generic error message about incorrect command format.

      Use case ends.

  • 2a. Talent Manager confirms the clear.

    • Use case resumes from step 3.
  • 2b. Talent Manager cancels the clear.

    • 2b1. TalentHub outputs a successful cancellation message.

      Use case ends.

  • 2c. The parameter is missing or invalid.

    • 2b1. TalentHub outputs an error message specifying the issue.

      Use case resumes from step 2.

Non-Functional Requirements

  1. Should work on any mainstream OS as long as it has Java 17 or above installed.
  2. The software should work without requiring an installer.
  3. The software should not depend on a remote server.
  4. Since the app is intended to be an offline tool, it should function fully without any internet connection.
  5. The application should be packaged into a single JAR file.
  6. File sizes should be reasonable and not exceed the limits given below.
    • Product (i.e., the JAR/ZIP file): 100MB
    • Documents (i.e., PDF files): 15MB/file
  7. The developer guide and user guide should be PDF-friendly. Don’t use expandable panels, embedded videos, animated GIFs etc.
  8. The use of third-party libraries/frameworks/services should not be used so as to improve security and stability of the application.
  9. Talent managers with above average typing speed for regular English text (i.e. not code, not system admin commands) should be able to accomplish most of the tasks faster using commands than using the mouse.
  10. The application should prioritise one-shot commands over multi-step commands as they are faster. If a multi-step command is provided to help new users, a one-shot equivalent should also be provided for regular/expert users.
  11. Regular tasks (e.g., adding a contact, listing events) should be executable within a few milliseconds to maintain efficiency and not interrupt the talent manager’s workflow.
  12. The system should efficiently handle a large database of contacts and events (e.g., 1,000+ entries), allowing for fast searches, retrievals, and modifications without performance degradation.
  13. The data should be stored locally and should be in a human editable text file.
  14. The data should not be stored using a Database Management System.
  15. The data should be able to be loaded using a data file if the network is down.
  16. The system should provide a user-friendly and intuitive interface with clear instructions and feedback to guide talent managers who are not IT-savvy in using the command-line interface effectively.
  17. The GUI should work well (i.e., should not cause any resolution-related inconveniences to the user) for standard screen resolutions 1920x1080 and higher and for screen scales 100% and 125%.
  18. The GUI should be usable (i.e., all functions can be used even if the user experience is not optimal) for resolutions 1280x720 and higher and for screen scales 150%.
  19. As the app is an offline tool, it should be robust and able to run for extended periods without crashing. Downtime should be limited to under 1% (if any issues require restarting).
  20. The system should be able to recover from crashes within 5 seconds, ensuring minimal disruption to the talent manager’s workflow.

Glossary

  • AddressBook: A structured data set containing contact and event information for Celebrities managed by Talent Managers.
  • Events: Any type of activity organized by third parties which Celebrities are attending (e.g. Award Shows, Brand Events).
  • Index: The position of individual contacts or events in lists referenced by specific commands.
  • Industry Professional: Individuals that Celebrities interact with or service providers from whom Celebrities may need to procure services during events (e.g. Make-up artists, Directors).
  • Logic Component: A part of the architecture responsible for handling and parsing user commands.
  • Mainstream OS: Windows, Linux, macOS.
  • Model Component: Manages the applications responsible for handling and parsing user commands.
  • Model-View-Controller (MVC): A design pattern that separates an application into three main logical components: the Model, the View, and the Controller.
  • ObservableList: A list that is monitored for changes, triggering updates to any UI components bound to it.
  • Parser: A component that interprets and processes commands inputted by the user.
  • Person: Refers to a contact object within TalentHub.
  • Points of Contact (POCs): A list of persons involved in an event whom the talent manager may need to contact (e.g. Hairdresser, Stylist, Chauffeur).
  • Sequence Diagram: A type of UML diagram that shows the order of interactions between objects in a particular scenario.
  • Storage Component: Manages reading from and writing to the persistent storage.
  • Tag: A descriptor associated with a contact, grouping them by common characteristics.
  • (Celebrity) Talent Manager: A person involved in managing and planning Celebrity schedules.
  • Undo/Redo Feature: Functionality that allows users to revert or reapply actions within the application.
  • VersionedAddressBook: A class responsible for implementing the undo/redo feature by maintaining different states of the TalentHub

Appendix: Instructions for manual testing

Given below are instructions to test the app manually.

:information_source: Note: These instructions only provide a starting point for testers to work on; testers are expected to do more exploratory testing.

Launch and shutdown

  1. Initial launch.

    1. Download the jar file and copy into an empty folder.

    2. Double-click the jar file Expected: Shows the GUI with a set of sample contacts. The window size may not be optimum.

  2. Saving window preferences.

    1. Resize the window to an optimum size. Move the window to a different location. Close the window.

    2. Re-launch the app by double-clicking the jar file.
      Expected: The most recent window size and location is retained.

Adding a person

  1. Adding a person to TalentHub.

    1. Test case: add person n/Alex Yeoh p/98765432 e/sydney@example.com a/311, Clementi Ave 2, #02-25 t/Celebrity.
      1. Expected
        1. A contact with the name ‘Alex Yeoh’ with the tag ‘Celebrity’ and phone number ‘98765432’ is added to the persons list.
        2. If you are on the Events tab, TalentHub will switch to the Persons tab.
    2. Test case: Add same person above.
      1. Expected: This person already exists in TalentHub.
    3. Test case: Add new person with same number as above.
      1. Expected: This phone number is already used by another person in TalentHub.
    4. Test case: add person n/Alex Yeoh e/sydney@example.com a/311, Clementi Ave 2, #02-25 t/Celebrity.
      1. Expected
        1. Invalid command format!
          add person: Adds a person to the address book.
          Parameters: n/NAME p/PHONE [e/EMAIL] [a/ADDRESS] [t/TAG]…
          Example: add person n/Alex Yeoh p/98765432 e/sydney@example.com a/311, Clementi Ave 2, #02-25 t/Celebrity
    5. Other incorrect add commands to try: add person p/98765432 a/311, Clementi Ave 2, #02-25 t/Celebrity.

Deleting a person

  1. Deleting a person while all persons are being shown.

    1. Prerequisites: List all persons using the list person command. Multiple persons in the list. Alex Yeoh at index 1.

    2. Test case: delete person 1.
      1. Expected: Are you sure you want to delete this person? All events tied to this person will be deleted and this person will no longer show in any event’s contact list. (Y/N)
      2. Input Y or y: Deleted Person: Alex Yeoh; Phone: 98765432; Email: sydney@example.com; Address: 311, Clementi Ave 2, #02-25; Tags: [Celebrity]
      3. Input N or n: Pending command has been cancelled.
    3. Test case: delete person 0
      1. Expected
        1. Invalid command format!
          delete person: Deletes the person identified by the index number used in the displayed person list.
          Parameters: INDEX (must be a positive integer).
          Example: delete person 1
    4. Other incorrect delete commands to try: delete person, delete person x, ... (where x is larger than the list size).
      1. Expected: Similar to previous.

Adding an event

  1. Adding an event to TalentHub.

    1. Prerequisites: Have 2 contacts for Alex Yeoh and Bernice Yu created in your Persons list.

    2. Test case: add event n/Oscars t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/Alex Yeoh p/Bernice Yu
      1. Expected
        1. An event with the name ‘Oscars’ with the associated celebrity, duration and venue is added to the persons list.
        2. If you are on the Persons tab, TalentHub will switch to the Events tab.
    3. Test case: Add same event as above.
      1. Expected: This event already exists in TalentHub.
    4. Test case: Add new event with different event name but same celebrity name and clashing timing e.g. t/2024-02-28 12:10 to 2024-03-01 18:30.
      1. Expected: Alex Yeoh has another event that clashes with this event.
    5. Test case: add event n/Oscars t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/Alex Yeoh p/Alex Yeoh.
      1. Expected: Celebrity cannot be a contact in contact list.
    6. Test case: add event n/Oscars t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/John Doe p/Bernice Yu.
      1. Expected: John Doe not found in address book!
    7. Test case: add event n/Oscars t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/Alex Yeoh p/John Doe.
      1. Expected: John Doe not found in address book!
    8. Test case: add event t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/Alex Yeoh p/Bernice Yu.
      1. Expected
        1. Invalid command format!
          add event: Adds an event to the address book.
          Parameters: n/NAME t/TIME [v/VENUE] c/CELEBRITY [p/CONTACTS]…
          Example: add event n/Oscars t/2024-03-01 12:10 to 2024-03-01 18:30 v/Hollywood c/Alex Yeoh p/Bernice Yu p/David Li
    9. Other incorrect add commands to try: add event n/Oscars v/Hollywood c/Alex Yeoh p/Bernice Yu or any inputs that do not include a name, time or celebrity.

Deleting an event

  1. Deleting an event while all persons are being shown.

    1. Prerequisites: List all events using the list event command. Multiple events in the list.

    2. Test case: delete event 1.
      1. Expected: Deleted Event: Oscars; Time: From: 2024-03-01 12:10 To: 2024-03-01 18:30; Venue: Hollywood; Celebrity: Alex Yeoh; Contacts: Bernice Yu
      2. If you are on the Persons tab, TalentHub will switch to the Events tab.
    3. Test case: delete event 0.
      1. Expected
        1. Invalid command format!
          delete: Deletes the event identified by the index number used in the displayed event list.
          Parameters: INDEX (must be a positive integer)
          Example: delete event 1
    4. Other incorrect delete commands to try: delete event, delete event x, ... (where x is larger than the list size).
      1. Expected: Similar to previous.

Viewing a person

  1. Viewing a person on TalentHub.

    1. Prerequisites: List all persons using the list person command. Multiple persons in the list. An entry with the person Alex Yeoh listed and no entries with person Bernice Yu listed.

    2. Test case: view person Alex Yeoh.
      1. Expected: Alex Yeoh shown!
      2. TalentHub will display the detailed contact.
    3. Test case: view person Bernice Yu.
      1. Expected: Name not found in TalentHub!
    4. Test case: view person.
      1. Expected
        1. Invalid command format!
          view: Views the person whose name is the specified keywords (case-insensitive) and displays him/her.
          Parameters: KEYWORD [MORE_KEYWORDS]…
          Example: view person David Li
    5. Other incorrect commands to try: view person John Doe or any other contact names not found in TalentHub.

Viewing an event

  1. Viewing an event on TalentHub.

    1. Prerequisites: List all events using the list event command. Multiple events in the list. An entry with the event called Oscars listed and no entries with event Emmys listed.

    2. Test case: view event Oscars.
      1. Expected: 1 events listed!
      2. TalentHub will display the detailed event.
    3. Test case: view event Emmys.
      1. Expected: 0 events listed!
    4. Test case: view event.
      1. Expected
        1. Invalid command format!
          view: Views the event whose name is the specified keywords (case-insensitive) and displays it.
          Parameters: KEYWORD [MORE_KEYWORDS]…
          Example: view event Awards show
    5. Other incorrect commands to try: view event Fashion Week or any other events not found in TalentHub.

Finding a person

  1. Finding a person on TalentHub.

    1. Prerequisites: List all persons using the list person command. Multiple persons in the list. Three entries with names starting with Alex listed. One entry with names starting with Bernice listed. No entries with names starting with David listed.

    2. Test case: find person Alex.
      1. Expected: 3 persons listed!
      2. TalentHub will display the contacts that match the given keyword(s).
    3. Test case: find person David.
      1. Expected: 0 persons listed!
    4. Test case: find person Sydney Bernice.
      1. Expected: 4 persons listed!
    5. Test case: find person.
      1. Expected
        1. Invalid command format!
          find: Finds all persons whose names contain any of the specified keywords (case-insensitive) and displays them as a list with index numbers.
          Parameters: KEYWORD [MORE_KEYWORDS]…
          Example: find person Alex Bernice
    6. Other incorrect inputs to try: find person John or any other contact names not found in TalentHub.

Finding an event

  1. Finding an event on TalentHub.

    1. Prerequisites: List all events using the list event command. Multiple events in the list. Three entries with the name Oscars listed. One entry with the name Red Carpet. No entries with name Emmys listed.

    2. Test case: find event Oscars.
      1. Expected: 3 events listed!
      2. TalentHub will display the events that match the given keyword(s).
    3. Test case: find event Emmys.
      1. Expected: 0 events listed!
    4. Test case: find event Oscars Red.
      1. Expected: 4 events listed!
    5. Test case: find event.
      1. Expected
        1. Invalid command format!
          find: Finds all events whose names contain any of the specified keywords (case-insensitive) and displays them as a list with index numbers.
          Parameters: KEYWORD [MORE_KEYWORDS]…
          Example: find event Emmys Oscars
    6. Other incorrect inputs to try: find event Red Carpet or any other events not found in TalentHub.

Filter a person

  1. Filtering a person on TalentHub by tag.

    1. Prerequisites: List all persons using the list person command. Multiple persons in the list. Three entries with tags called Celebrity. No entries with tags called TwitchStreamer.

    2. Test case: filter person celebrity.
      1. Expected: 3 persons listed!
      2. TalentHub will display the contacts with the given tag(s).
    3. Test case: filter person TwitchStreamer.
      1. Expected: 0 persons listed!
    4. Test case: filter person.
      1. Expected
        1. Invalid command format!
          filter: Filters the persons by the specified tag (case-insensitive) and displays it.
          Parameters: TAG
          Example: filter person Chauffeur
    5. Other incorrect inputs to try: filter person TikToker or any other tags not found in TalentHub.

Filtering an event

  1. Filtering an event on TalentHub.

    1. Prerequisites: List all events using the list event command. Multiple events in the list. Three events with celebrity, Alex Yeoh. No events with celebrity, Bernice Yu listed.

    2. Test case: filter event Alex Yeoh.
      1. Expected: 3 events listed!
      2. TalentHub will display the events with the given celebrity name(s).
    3. Test case: filter event Bernice Yu.
      1. Expected: 0 events listed!
    4. Test case: filter event.
      1. Expected
        1. Invalid command format!
          filter: Filters the events by the specified celebrity (case-insensitive) and displays it.
          Parameters: NAME
          Example: filter event Alex Yeoh
    5. Other incorrect inputs to try: filter event John Doe or any other contact names not found in TalentHub.

Editing a person

  1. Editing a person on TalentHub.

    1. Prerequisites: List all persons using the list person command. Multiple persons in the list.

    2. Test case: edit person 1 p/91234567 e/johndoe@example.com.
      1. Expected: Edited Person: Alex Yeoh; Phone: 91234567; Email: johndoe@example.com; Address: 311, Clementi Ave 2, #02-25; Tags: [Celebrity]
    3. Test case: Edit contact to have the same name as another contact.
      1. Expected: This person already exists in the address book.
    4. Test case: Edit contact to have the same number as another contact.
      1. Expected: This phone number is already being used by another person in TalentHub.
    5. Test case: edit person.
      1. Expected
        1. Invalid command format!
          edit person: Edits the details of the person identified by the index number used in the displayed person list. Existing values will be overwritten by the input values.
          Parameters: INDEX (must be a positive integer) [n/NAME] [p/PHONE] [e/EMAIL] [a/ADDRESS] [t/TAG]…
          Example: edit person 1 p/91234567 e/johndoe@example.com
    6. Other incorrect inputs to try: edit person 0 or any other edit command with inputs of the wrong format.

Editing an event

  1. Editing an event on TalentHub.

    1. Prerequisites: List all persons using the list event command. Multiple persons in the list.

    2. Test case: edit event 1 t/2024-03-01 13:10 to 2024-03-01 19:30 v/Broadway c/Bernice Yu p/Alex Yeoh.
      1. Expected: Edited Event: Emmys; Time: From: 2024-03-01 13:10 To: 2024-03-01 19:30; Venue: Broadway; Celebrity: Bernice Yu; Contacts: CelebrityAlex Yeoh 90765432
    3. Test case: Edit event to have same details as another event.
      1. Expected: This event already exists in TalentHub.
    4. Test case: Same celebrity has clashing events e.g. edit event 2 t/2024-03-01 13:10 to 2024-03-01 19:30 v/Broadway c/Bernice Yu p/David Lee.
      1. Expected: Bernice Yu has another event that clashes with this event!
    5. Test case: Celebrity is both celebrity and contact e.g. edit event 2 p/Bernice Yu.
      1. Expected: Celebrity cannot be a contact in contact list!
    6. Test case: edit event.
      1. Expected
        1. Invalid command format!
          edit event: Edits the details of the event identified by the index number used in the displayed event list. Existing values will be overwritten by the input values.
          Parameters: INDEX (must be a positive integer) [n/EVENT NAME] [t/TIME] [v/VENUE] [c/CELEBRITY]…
          Example: edit event 1 t/2024-03-01 13:10 to 2024-03-01 19:30 v/Broadway c/David Li p/Alex Yeoh
    7. Other incorrect inputs to try: edit event 0 or any edit event command with inputs in the wrong format.

Appendix: Planned Enhancements

Team size: 5

  1. Undo/Redo Feature: Implement an undo/redo feature for the TalentHub application. This feature will allow users to undo or redo their last action, providing a safety net for accidental deletions or modifications.
  2. Add check for overlapping dates and valid times when deserializing: Implement a check for overlapping dates and valid times (start time before end time) when deserializing the data from the storage file. This will ensure that the data is consistent and accurate when loaded into the application.
  3. Add support for accepting empty prefix for tags and contacts during add person and add event commands: Modify the application to recognize an empty prefix for tags and contacts when using the add person and add event commands. This will allow users to specify no tags or points of contacts when adding a person or event.
  4. Add support for choosing or viewing multiple tags for contacts in events: Enhance the application to allow users to choose or view multiple tags for contacts in events in the GUI. This will provide more flexibility in managing contacts and events with different categories or groups.
  5. Add case-sensitive duplication check for names: Implement case-sensitive validation for names when adding or editing persons and events. This will ensure that names are stored and displayed consistently in the application.
  6. Add feature which programmatically discerns if a person is a celebrity or industry professional: Implement a feature that programmatically discerns if a person is a contact or a celebrity. Only celebrities would be allowed to be added as the celebrity in an event.
  7. Add stricter validation for names: Only allow names to contain alphabets, spaces, and special characters like hyphens and apostrophes. Names should not contain numbers or other special characters.