aboutsummaryrefslogtreecommitdiff
path: root/lib/screens/favorites_screen.dart
blob: db87c4af84e20e6a932649bd1e346dde6cfb2878 (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
87
88
import 'package:flutter/foundation.dart';
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();
  final ValueNotifier<List<Favorite>> _favoritesNotifier =
      ValueNotifier<List<Favorite>>([]);
  final ValueNotifier<List<Favorite>> _filteredFavoritesNotifier =
      ValueNotifier<List<Favorite>>([]);

  @override
  void initState() {
    super.initState();
    _db.getFavoritesByUserID(_auth.currentUser!.uid).first.then((f) {
      _favoritesNotifier.value = f;
      _filteredFavoritesNotifier.value = f;
    }).onError((e, st) {
      if (kDebugMode) 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) {
                if (value.isNotEmpty) {
                  _filteredFavoritesNotifier.value = _favoritesNotifier.value
                      .where((fav) =>
                          fav.messageText.contains(value) == true ||
                          fav.linkTitle?.contains(value) == true ||
                          fav.linkDescription?.contains(value) == true)
                      .toList();
                } else {
                  _filteredFavoritesNotifier.value = _favoritesNotifier.value;
                }
              },
            ),
          ),
          Expanded(
            child: ValueListenableBuilder(
              valueListenable: _filteredFavoritesNotifier,
              builder: (context, value, child) => ListView.builder(
                itemCount: value.length,
                itemBuilder: (context, index) {
                  Favorite fav = value[index];
                  return LinkPreview(fav.getMessage());
                },
              ),
            ),
          ),
        ],
      ),
    );
  }
}