Angular 5 How to convert list of json objects to a list












0















I am using Angular 5 to make a To-do List App.
I am able to add tasks into the list with local storage.
But I try to have multiple lists in my App, which means when user click the drop down menu, user can select any list, and see the tasks that is in that list.



I stored data in JSON(but I do not know if I did it correct). I think what I have now is a list of JSON objects, but I need a list.



Here is my todo.service.ts



 import { Injectable } from '@angular/core';
import { Todo } from '../classes/todo';

@Injectable({
providedIn: 'root'
})
export class TodoService {
private todolist: Todo;
private nextId: number;


constructor() {

let todolist = this.getTodos();

if (todolist.length == 0) {
this.nextId = 0;
} else {
let maxId = todolist[todolist.length - 1].id;
this.nextId = maxId + 1;
}
}

public addTodo(text: string, date: Date): void {

let jsonitem = new Todo(this.nextId,text,date);
let todoitem = {
'id': jsonitem["nextId"],
'text': jsonitem["text"],
'date':jsonitem["date"]
};

let todolist = this.getTodos();
todolist.push(todoitem);
this.setLocalStoragetodolist(todolist);
this.nextId++;
}

public getTodos() :Todo{
let localStorageItem = JSON.parse(localStorage.getItem('todolist'));
return localStorageItem == null ? : localStorageItem.todolist;
}

public removeTodo(id: number): void {
let todolist = this.getTodos();
todolist = todolist.filter((todoitem) => todoitem.id !== id);
this.setLocalStoragetodolist(todolist);
}

private setLocalStoragetodolist(todolist: Todo): void {
localStorage.setItem('todolist', JSON.stringify({todolist: todolist}));
}
}


Here is my lists.component.ts



@Component({
selector: 'app-lists',
templateUrl: './lists.component.html',
styleUrls: ['./lists.component.css']
})
export class ListsComponent implements OnInit {

closeResult: string;
// firstList: any;
private todolist: Todo;


constructor(private modalService: NgbModal, private listService: ListService, private todoService: TodoService) {
// this.getTodos();
}

ngOnInit() {
}

private getTodos(): void{
this.todoService.getTodos();
}
}


Here is lists.component.html



<div class="modal-body">
<select [(ngModel)] = "todolist">
<option value="" disabled selected>select a list</option>
</select>









share|improve this question





























    0















    I am using Angular 5 to make a To-do List App.
    I am able to add tasks into the list with local storage.
    But I try to have multiple lists in my App, which means when user click the drop down menu, user can select any list, and see the tasks that is in that list.



    I stored data in JSON(but I do not know if I did it correct). I think what I have now is a list of JSON objects, but I need a list.



    Here is my todo.service.ts



     import { Injectable } from '@angular/core';
    import { Todo } from '../classes/todo';

    @Injectable({
    providedIn: 'root'
    })
    export class TodoService {
    private todolist: Todo;
    private nextId: number;


    constructor() {

    let todolist = this.getTodos();

    if (todolist.length == 0) {
    this.nextId = 0;
    } else {
    let maxId = todolist[todolist.length - 1].id;
    this.nextId = maxId + 1;
    }
    }

    public addTodo(text: string, date: Date): void {

    let jsonitem = new Todo(this.nextId,text,date);
    let todoitem = {
    'id': jsonitem["nextId"],
    'text': jsonitem["text"],
    'date':jsonitem["date"]
    };

    let todolist = this.getTodos();
    todolist.push(todoitem);
    this.setLocalStoragetodolist(todolist);
    this.nextId++;
    }

    public getTodos() :Todo{
    let localStorageItem = JSON.parse(localStorage.getItem('todolist'));
    return localStorageItem == null ? : localStorageItem.todolist;
    }

    public removeTodo(id: number): void {
    let todolist = this.getTodos();
    todolist = todolist.filter((todoitem) => todoitem.id !== id);
    this.setLocalStoragetodolist(todolist);
    }

    private setLocalStoragetodolist(todolist: Todo): void {
    localStorage.setItem('todolist', JSON.stringify({todolist: todolist}));
    }
    }


    Here is my lists.component.ts



    @Component({
    selector: 'app-lists',
    templateUrl: './lists.component.html',
    styleUrls: ['./lists.component.css']
    })
    export class ListsComponent implements OnInit {

    closeResult: string;
    // firstList: any;
    private todolist: Todo;


    constructor(private modalService: NgbModal, private listService: ListService, private todoService: TodoService) {
    // this.getTodos();
    }

    ngOnInit() {
    }

    private getTodos(): void{
    this.todoService.getTodos();
    }
    }


    Here is lists.component.html



    <div class="modal-body">
    <select [(ngModel)] = "todolist">
    <option value="" disabled selected>select a list</option>
    </select>









    share|improve this question



























      0












      0








      0








      I am using Angular 5 to make a To-do List App.
      I am able to add tasks into the list with local storage.
      But I try to have multiple lists in my App, which means when user click the drop down menu, user can select any list, and see the tasks that is in that list.



      I stored data in JSON(but I do not know if I did it correct). I think what I have now is a list of JSON objects, but I need a list.



      Here is my todo.service.ts



       import { Injectable } from '@angular/core';
      import { Todo } from '../classes/todo';

      @Injectable({
      providedIn: 'root'
      })
      export class TodoService {
      private todolist: Todo;
      private nextId: number;


      constructor() {

      let todolist = this.getTodos();

      if (todolist.length == 0) {
      this.nextId = 0;
      } else {
      let maxId = todolist[todolist.length - 1].id;
      this.nextId = maxId + 1;
      }
      }

      public addTodo(text: string, date: Date): void {

      let jsonitem = new Todo(this.nextId,text,date);
      let todoitem = {
      'id': jsonitem["nextId"],
      'text': jsonitem["text"],
      'date':jsonitem["date"]
      };

      let todolist = this.getTodos();
      todolist.push(todoitem);
      this.setLocalStoragetodolist(todolist);
      this.nextId++;
      }

      public getTodos() :Todo{
      let localStorageItem = JSON.parse(localStorage.getItem('todolist'));
      return localStorageItem == null ? : localStorageItem.todolist;
      }

      public removeTodo(id: number): void {
      let todolist = this.getTodos();
      todolist = todolist.filter((todoitem) => todoitem.id !== id);
      this.setLocalStoragetodolist(todolist);
      }

      private setLocalStoragetodolist(todolist: Todo): void {
      localStorage.setItem('todolist', JSON.stringify({todolist: todolist}));
      }
      }


      Here is my lists.component.ts



      @Component({
      selector: 'app-lists',
      templateUrl: './lists.component.html',
      styleUrls: ['./lists.component.css']
      })
      export class ListsComponent implements OnInit {

      closeResult: string;
      // firstList: any;
      private todolist: Todo;


      constructor(private modalService: NgbModal, private listService: ListService, private todoService: TodoService) {
      // this.getTodos();
      }

      ngOnInit() {
      }

      private getTodos(): void{
      this.todoService.getTodos();
      }
      }


      Here is lists.component.html



      <div class="modal-body">
      <select [(ngModel)] = "todolist">
      <option value="" disabled selected>select a list</option>
      </select>









      share|improve this question
















      I am using Angular 5 to make a To-do List App.
      I am able to add tasks into the list with local storage.
      But I try to have multiple lists in my App, which means when user click the drop down menu, user can select any list, and see the tasks that is in that list.



      I stored data in JSON(but I do not know if I did it correct). I think what I have now is a list of JSON objects, but I need a list.



      Here is my todo.service.ts



       import { Injectable } from '@angular/core';
      import { Todo } from '../classes/todo';

      @Injectable({
      providedIn: 'root'
      })
      export class TodoService {
      private todolist: Todo;
      private nextId: number;


      constructor() {

      let todolist = this.getTodos();

      if (todolist.length == 0) {
      this.nextId = 0;
      } else {
      let maxId = todolist[todolist.length - 1].id;
      this.nextId = maxId + 1;
      }
      }

      public addTodo(text: string, date: Date): void {

      let jsonitem = new Todo(this.nextId,text,date);
      let todoitem = {
      'id': jsonitem["nextId"],
      'text': jsonitem["text"],
      'date':jsonitem["date"]
      };

      let todolist = this.getTodos();
      todolist.push(todoitem);
      this.setLocalStoragetodolist(todolist);
      this.nextId++;
      }

      public getTodos() :Todo{
      let localStorageItem = JSON.parse(localStorage.getItem('todolist'));
      return localStorageItem == null ? : localStorageItem.todolist;
      }

      public removeTodo(id: number): void {
      let todolist = this.getTodos();
      todolist = todolist.filter((todoitem) => todoitem.id !== id);
      this.setLocalStoragetodolist(todolist);
      }

      private setLocalStoragetodolist(todolist: Todo): void {
      localStorage.setItem('todolist', JSON.stringify({todolist: todolist}));
      }
      }


      Here is my lists.component.ts



      @Component({
      selector: 'app-lists',
      templateUrl: './lists.component.html',
      styleUrls: ['./lists.component.css']
      })
      export class ListsComponent implements OnInit {

      closeResult: string;
      // firstList: any;
      private todolist: Todo;


      constructor(private modalService: NgbModal, private listService: ListService, private todoService: TodoService) {
      // this.getTodos();
      }

      ngOnInit() {
      }

      private getTodos(): void{
      this.todoService.getTodos();
      }
      }


      Here is lists.component.html



      <div class="modal-body">
      <select [(ngModel)] = "todolist">
      <option value="" disabled selected>select a list</option>
      </select>






      angular






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '18 at 21:42









      ams

      2187




      2187










      asked Nov 20 '18 at 20:58









      user10375726user10375726

      34




      34
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401426%2fangular-5-how-to-convert-list-of-json-objects-to-a-list%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401426%2fangular-5-how-to-convert-list-of-json-objects-to-a-list%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter