summaryrefslogtreecommitdiff
path: root/lib/screens/albums_screen.dart
blob: d376e35c171645a0eab101afc4fdba6eaf3d49a3 (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
import 'package:flutter/material.dart';
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
import 'package:pmsna1/models/album.dart';
import 'package:pmsna1/network/music_api.dart';
import 'package:pmsna1/widgets/album_item.dart';
import 'package:pmsna1/widgets/responsive.dart';

import '../widgets/loading_modal_widget.dart';

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

  @override
  State<AlbumsScreen> createState() => _AlbumsScreenState();
}

class _AlbumsScreenState extends State<AlbumsScreen> {
  MusicApi? musicApi;

  @override
  void initState() {
    super.initState();
    musicApi = MusicApi();
  }

  Widget getGridForCount(
    int count,
    int itemCount,
    Widget Function(BuildContext, int) itemBuilder,
  ) {
    return MasonryGridView.builder(
      gridDelegate: SliverSimpleGridDelegateWithFixedCrossAxisCount(
        crossAxisCount: count,
      ),
      itemCount: itemCount,
      itemBuilder: itemBuilder,
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Música (Alvvays)')),
      body: FutureBuilder(
        future: musicApi!.getAlvvaysAlbums(),
        builder: (context, AsyncSnapshot<List<Album>?> snapshot) {
          int itemCount = snapshot.data != null ? snapshot.data!.length : 0;
          itemBuilder(BuildContext context, int index) {
            return AlbumItem(snapshot.data![index]);
          }

          if (snapshot.hasData) {
            return Responsive(
              mobile: getGridForCount(2, itemCount, itemBuilder),
              tablet: getGridForCount(3, itemCount, itemBuilder),
              desktop: getGridForCount(4, itemCount, itemBuilder),
            );
          } else if (snapshot.hasError) {
            print(snapshot.error);
            return const Center(
              child: Text('Ocurrió un error'),
            );
          } else {
            return const LoadingModal();
          }
        },
      ),
    );
  }
}