1

I am trying to build a student-teacher result view portal in which teachers can login and see all of the students result and add to that list or edit that list. Students can login to search using their credentials and see their own result.

I have a list of students (Array). I want to use that list in my student-view to search the list and return the student with the matching credentials. I want to use that list to provide the teachers with the CRUD functionality for complete list.

I could not figure out the correct way to get access to the list of students in different parts of my project.

I tried using @Input and Service but I couldnt do it in the correct way and I am getting empty array in both of the methods.

What is the correct way to acheive this? I have data in sibling component. Should I store data in parent component? Please help me find the correct way to do this.

This is the component where I have the data, students component. You can also see the component and project structure in this photo. Currently I am trying to transfer data between siblings using service and failed. I am setting the data in constructor using :

this.studentTransferData.setData(this.students)

this is where I have the data

I am trying to get data in my StudentView Component using :

  export class StudentViewComponent implements OnInit {

  name: string = ""
  rollno: number = 0
  
  studentList = this.studentDataTransferService.getData();

  @Input() students: Student[] = []
  @Output() studentSearch: EventEmitter<Student> = new EventEmitter();

  constructor(private studentDataTransferService: StudentDataTransferService) {
    console.log(this.students)
    console.log(this.studentList)
   }

It consoles empty array.

How to get the data in my different components. I have it in students component. Thanks.

Edit: I tried doing inside on ngInit as suggested in different post and it does not work as expected and I want it in complete project (siblings and parent to child) That is not what I want at the moment.

Innomight
  • 556
  • 3
  • 15
  • 1
    Does this answer your question? [@Input() value is always undefined](https://stackoverflow.com/questions/42123170/input-value-is-always-undefined) – jeremy-denis Sep 29 '22 at 06:36
  • *I couldnt do it in the correct way*...this is the code we want to see and how you determined it's not the correct way, as well as the html with students passed in. Your input will not have happened yet when you log within the constructor, try logging in `ngOnInit() {}` – Andrew Allen Sep 29 '22 at 07:12

2 Answers2

2

When you need to share data between several components, you usually use a service.

To be truly reactive, you should also use what are called proxies : those are RxJS elements that can act both as observables and observers.

private _students = new BehaviorSubject<Student[]>([]);
public students$ = this._students.asObservable();

get students() { return this._students.value; }

loadStudents() {
  this.http.get<Student[]>(...).subscribe(students => this._students.next(students));
}

Then in other components

students$ = this.service.students$;
constructor(private service: StudentsService) {}
<ng-container *ngFor="let student of students$ | async">
  ...
</ng-container>

EDIT : using it in services

Yes, you can use it in services. If you need to make an HTTP call at some point, this is the best solution :


constructor(private service: StudentsService) {}

rewardStudent() {
  const bestStudent = this.service.students[0];
  this.http.post(...).subscribe();
}

Otherwise, you have access to students$ the same way you do with components.

MGX
  • 2,534
  • 2
  • 14
1

You can create and store the student list inside a student service class and also create a public function: getStudentsList inside your service and then call it from your different views.

Roy Christo
  • 354
  • 2
  • 13
  • Thanks, can we also manipulate the list from other components this way? This is the easiest way to do so yet, if we can also modify the list in the service and store in the service itself then it will solve it. – Innomight Sep 29 '22 at 07:10
  • 1
    Yes you can the list from other components and create other function to manipulate the list of students – Roy Christo Sep 29 '22 at 07:13