aboutsummaryrefslogtreecommitdiff
path: root/lib/screens/favorites_screen.dart
blob: 4d6f949da24697f534280e9fe62585cc33c3e63c (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import 'package:flutter/material.dart';
import 'package:linkchat/firebase/database.dart';
import 'package:linkchat/widgets/chat_bubble.dart';

import '../firebase/auth.dart';
import '../models/favorite.dart';

class FavoritesScreen extends StatefulWidget {
  const FavoritesScreen({super.key});

  @override
  State<FavoritesScreen> createState() => _FavoritesScreenState();
}

class _FavoritesScreenState extends State<FavoritesScreen> {
  final Auth _auth = Auth();
  final Database _db = Database();
  final TextEditingController _controller = TextEditingController();
  List<Favorite> favorites = [];
  List<Favorite> filteredFavorites = [];

  @override
  void initState() {
    super.initState();
    _db.getFavoritesByUserID(_auth.currentUser!.uid).first.then((f) {
      setState(() {
        favorites = f;
        filteredFavorites = f;
      });
    }).onError((e, st) {
      print(e);
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Favoritos'),
        leading: IconButton(
          icon: const Icon(Icons.arrow_back),
          onPressed: () {
            Navigator.of(context).pop();
          },
        ),
      ),
      body: Column(
        children: [
          Padding(
            padding: const EdgeInsets.all(8.0),
            child: TextField(
              controller: _controller,
              decoration: const InputDecoration(
                border: OutlineInputBorder(),
                labelText: 'Buscar',
              ),
              onChanged: (value) {
                setState(() {
                  if (value.isNotEmpty) {
                    filteredFavorites = favorites
                        .where((fav) =>
                            fav.messageText.contains(value) == true ||
                            fav.linkTitle?.contains(value) == true ||
                            fav.linkDescription?.contains(value) == true)
                        .toList();
                  } else {
                    filteredFavorites = favorites;
                  }
                });
              },
            ),
          ),
          Expanded(
            child: ListView.builder(
              itemCount: filteredFavorites.length,
              itemBuilder: (context, index) {
                Favorite fav = filteredFavorites[index];
                return LinkPreview(fav.getMessage());
              },
            ),
          ),
        ],
      ),
    );
  }
}