aboutsummaryrefslogtreecommitdiffstats
path: root/lib/data/models/users.dart
blob: 9b4d027c793ed3aa4c3bc7c0a3caf0447dcf4707 (plain)
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
import 'dart:convert';

import 'package:flutter_ics_homescreen/data/models/user.dart';
import 'package:flutter_ics_homescreen/export.dart';
// ignore: depend_on_referenced_packages
import 'package:collection/collection.dart';

@immutable
class Users {
  final List<User> users;
  final User selectedUser;
  const Users({
    required this.users,
    required this.selectedUser,
  });
  Users.initial()
      //: users = <User>[],
      : users = [],
        selectedUser = const User(id: '', name: '');

  Users copyWith({
    List<User>? users,
    User? selectedUser,
  }) {
    return Users(
      users: users ?? this.users,
      selectedUser: selectedUser ?? this.selectedUser,
    );
  }

  Map<String, dynamic> toMap() {
    return {
      'users': users.map((x) => x.toMap()).toList(),
      'selectedUser': selectedUser.toMap(),
    };
  }

  factory Users.fromMap(Map<String, dynamic> map) {
    return Users(
      users: List<User>.from(map['users']?.map((x) => User.fromMap(x))),
      selectedUser: User.fromMap(map['selectedUser']),
    );
  }

  String toJson() => json.encode(toMap());

  factory Users.fromJson(String source) => Users.fromMap(json.decode(source));

  @override
  String toString() => 'Users(users: $users, selectedUser: $selectedUser)';

  @override
  bool operator ==(Object other) {
    if (identical(this, other)) return true;
    final listEquals = const DeepCollectionEquality().equals;

    return other is Users &&
        listEquals(other.users, users) &&
        other.selectedUser == selectedUser;
  }

  @override
  int get hashCode => users.hashCode ^ selectedUser.hashCode;
}