-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jay van Adrichem Boogaert edited this page Dec 5, 2024
·
2 revisions
LockedIn is an app that helps you manage your time. You can enter an activity with a name, priority level, repeating flag, start date, and end date. The app will sort your activities based on their priority and the time passed since they were created.
Usage:
- To add an activity fill out all forms under "Add activity". "Priority level" should be an integer, and "Repeats" should be either "True" or "False"
- To clear all activites, click the "Clear Local Storage" button and then refresh the page
Angular Components:
- Header component: Contains the header of the page
- Homepage component: Contains the header component and activity component
- Activity component: Contains the form to add new activities and the table listing activities. When the app is initially opened, the activity component receives an array of activities from the activity-service service.
- Activity-service service: When the app is opened, this service retrieves all stored activities from local storage and sorts them.