Skip to content

rnhc1000/task-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

task-list - Manage your daily tasks

This is a simple personal app to add small remainders of the tasks you have to tackle every single day. Simply writen dow a quick note about a task, add it to a list and you're done. It is implemented like a FIFO (First In First Out), using Angulat 17+ as the frontend framework to practice new skills. The idea is just to have an easy and quick remainder of the tasks completed and to be completed at the end of the day, without any of the common burden of other apps. The goal is to have an easy online tool to quicky write down my tasks and no longer using Post-it all over the place. The roadmap of new features will be as follows:

Roadmap of Future App Features

  • URL: https://todo-list.ferreiras.dev.br
  • Timestamp of each task indicating start and end time.
  • Autentication based on Argon2 and Pepper with notification being sent to a registered email
  • Usage of localStorage or Firebase to allow history pagination of tasks completed or !completed
  • Calendar + agenda to allow schedule tasks days ahead
  • Notification of tasks to be done along the day.

Table of contents

Overview

The design is structured as shown:

  • src|
    • app |
      • modules |
      • to-do-list |
        • components |
          • date-pipe
          • input-add-item
          • input-list-items
        • enum
        • interface
        • pages
    • assets |
    • scss|
      • base
      • components
      • layout
      • theme
    • _index.scss
  • index.html
  • main.ts
  • styles.css

Screenshot

Links

Built with

My Sillks

What I practiced

import {
  ChangeDetectorRef,
  Component,
  ElementRef,
  EventEmitter,
  Input,
  Output,
  ViewChild,
  inject,
} from '@angular/core';

// Interfaces
import { NgClass } from '@angular/common';
import { IListItems } from '../../interface/IListItems.interface';
import { DatePipeComponent } from "../date-pipe/date-pipe.component";

@Component({
    selector: 'app-input-add-item',
    standalone: true,
    templateUrl: './input-add-item.component.html',
    styleUrl: './input-add-item.component.scss',
    imports: [NgClass, DatePipeComponent]
})
export class InputAddItemComponent {
  #cdr = inject(ChangeDetectorRef);

  @ViewChild('inputText') public inputText!: ElementRef;

  @Input({ required: true }) public inputListItems: IListItems[] = [];

  @Output() public outputAddListItem = new EventEmitter<IListItems>();
  public focusAndAddItem(value: string) {
    if (value) {
      this.#cdr.detectChanges();
      this.inputText.nativeElement.value = '';

      const currentDate = new Date();
      const timestamp = currentDate.getTime();
      const id = `ID ${timestamp}`;

      this.outputAddListItem.emit({
        id,
        checked: false,
        value,
      });

      return this.inputText.nativeElement.focus();
    }
  }
}

Continued development

  • Next step: Persist the tasks in a DB

Useful resources

Author

Acknowledgments

  • @rnhc1000 and God