You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aku_new_community/lib/ui/community/facility/facility_appointment_view.dart

75 lines
2.1 KiB

3 years ago
import 'package:aku_new_community/constants/api.dart';
import 'package:aku_new_community/models/facility/facility_appointment_model.dart';
import 'package:aku_new_community/pages/things_page/widget/bee_list_view.dart';
import 'package:aku_new_community/ui/community/facility/facility_appointment_card.dart';
import 'package:aku_new_community/utils/headers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart';
enum FacilityAppointmentType {
MY,
HISTORY,
}
3 years ago
GlobalKey<_FacilityAppointmentViewState> childKey = GlobalKey();
class FacilityAppointmentView extends StatefulWidget {
final FacilityAppointmentType type;
3 years ago
FacilityAppointmentView({Key? key, required this.type}) : super(key: key);
@override
_FacilityAppointmentViewState createState() =>
_FacilityAppointmentViewState();
}
class _FacilityAppointmentViewState extends State<FacilityAppointmentView> {
EasyRefreshController _refreshController = EasyRefreshController();
3 years ago
int get _facilityType {
switch (widget.type) {
case FacilityAppointmentType.MY:
return 1;
case FacilityAppointmentType.HISTORY:
return 2;
}
}
@override
void dispose() {
_refreshController.dispose();
super.dispose();
}
void callRefresh() {
return _refreshController.callRefresh();
}
@override
Widget build(BuildContext context) {
return BeeListView(
path: API.manager.facility.appointment,
controller: _refreshController,
convert: (model) => model.tableList!
.map((e) => FacilityAppointmentModel.fromJson(e))
.toList(),
extraParams: {'facilitiesType': _facilityType},
builder: (items) {
return ListView.separated(
padding: EdgeInsets.all(32.w),
itemBuilder: (context, index) {
return FacilityAppointmentCard(
model: items[index],
onUpdate: () {
_refreshController.callRefresh();
},
);
},
separatorBuilder: (_, __) => 32.hb,
itemCount: items.length,
);
},
);
}
}