-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusuario.ts
81 lines (67 loc) · 2.14 KB
/
usuario.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { Album } from "./album";
import { Imagen } from "./imagen";
import { MuroGeneral } from "./muroGeneral";
import { Publicacion } from "./publicacion";
import { Muro } from "./muro";
export class Usuario{
private nombre: string;
private apellido: string;
fotoPerfil: Imagen;
albums: Array<Album>;
muro: Muro;
constructor(nombre: string){
this.nombre = nombre;
this.albums = [];
this.muro = new Muro();
}
agregarAlbum(album: Album){
var bandera = 0;
this.albums.forEach((key, index) => {
if(key.getNombre() == album.getNombre()){
bandera = 1
}
});
if(bandera == 0){
this.albums.push(album);
}
}
quitarAlbum(nombre: string){
this.albums.forEach((key, index) => {
if(key.getNombre() == nombre ){
this.albums.splice(index, 1);
}
});
}
obtenerAlbum(nombre: string): Album{
var albumBuscado: Album;
this.albums.forEach((key, index) => {
if(key.getNombre() == nombre ){
albumBuscado = key;
}
});
return albumBuscado;
}
agregarImagen(imagen: Imagen, nombreAlbum: string, posicion?: number){
this.obtenerAlbum(nombreAlbum).agregarImagen(imagen, posicion);
}
eliminarImagen(nombreimagen: string, nombreAlbum: string){
this.obtenerAlbum(nombreAlbum).eliminarImagen(nombreimagen);
}
asignarCaratula(nombreImagen: string, nombreAlbum: string){
this.obtenerAlbum(nombreAlbum).asignarCaratula(nombreImagen);
}
asignarFotoPerfil(imagen: Imagen){
if(this.obtenerAlbum("albumPerfil")){
this.obtenerAlbum("albumPerfil").imagenes.forEach((key, index) => {
if(key.getNombre() == imagen.getNombre()){
this.fotoPerfil = key;
}
})
}
}
agregarImagenPosicion(imagen: Imagen){
}
publicar(descripcion: string, contenido: string, tipo: string){
this.muro.publicar(descripcion, contenido, tipo);
}
}