feat:分类切换优化
This commit is contained in:
parent
f22c893932
commit
5c00e4efef
@ -133,6 +133,7 @@ class KtHomeLogic extends GetxController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getCategoryVideoList({bool isRefresh = false}) async {
|
getCategoryVideoList({bool isRefresh = false}) async {
|
||||||
|
state.categoryLoadStatus = KtLoadStatusType.loading;
|
||||||
if (isRefresh) {
|
if (isRefresh) {
|
||||||
state.pageIndex = 1;
|
state.pageIndex = 1;
|
||||||
state.categoryVideoList.clear();
|
state.categoryVideoList.clear();
|
||||||
@ -154,6 +155,7 @@ class KtHomeLogic extends GetxController {
|
|||||||
easyRefreshController.finishRefresh();
|
easyRefreshController.finishRefresh();
|
||||||
easyRefreshController.finishLoad();
|
easyRefreshController.finishLoad();
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
state.categoryLoadStatus = KtLoadStatusType.loadSuccess;
|
||||||
List<KtShortVideoBean> list = [
|
List<KtShortVideoBean> list = [
|
||||||
...res.data['list']
|
...res.data['list']
|
||||||
.map(
|
.map(
|
||||||
@ -165,6 +167,13 @@ class KtHomeLogic extends GetxController {
|
|||||||
easyRefreshController.finishLoad(IndicatorResult.noMore);
|
easyRefreshController.finishLoad(IndicatorResult.noMore);
|
||||||
}
|
}
|
||||||
state.categoryVideoList.addAll(list);
|
state.categoryVideoList.addAll(list);
|
||||||
|
if (state.categoryVideoList.isEmpty) {
|
||||||
|
state.categoryLoadStatus = KtLoadStatusType.loadNoData;
|
||||||
|
}
|
||||||
|
|
||||||
|
update();
|
||||||
|
} else {
|
||||||
|
state.categoryLoadStatus = KtLoadStatusType.loadFailed;
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ import '../../kt_widgets/kt_status_widget.dart';
|
|||||||
|
|
||||||
class KtHomeState {
|
class KtHomeState {
|
||||||
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
|
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
|
||||||
|
KtLoadStatusType categoryLoadStatus = KtLoadStatusType.loading;
|
||||||
List<KtShortVideoBean> topPickList = [];
|
List<KtShortVideoBean> topPickList = [];
|
||||||
List<KtShortVideoBean> hotList = [];
|
List<KtShortVideoBean> hotList = [];
|
||||||
List<KtShortVideoBean> arrivalList = [];
|
List<KtShortVideoBean> arrivalList = [];
|
||||||
|
@ -535,9 +535,9 @@ class _KtHomePageState extends State<KtHomePage>
|
|||||||
KtHomeCategoryBean item = state.categoryList[index];
|
KtHomeCategoryBean item = state.categoryList[index];
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: () {
|
onTap: () {
|
||||||
|
if( state.selCategoryId == item.categoryId!) return;
|
||||||
state.selCategoryId = item.categoryId!;
|
state.selCategoryId = item.categoryId!;
|
||||||
logic.getCategoryVideoList(isRefresh: true);
|
logic.getCategoryVideoList(isRefresh: true);
|
||||||
logic.update(['category-items']);
|
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
width: (ScreenUtil().screenWidth - 42.w) / 3,
|
width: (ScreenUtil().screenWidth - 42.w) / 3,
|
||||||
@ -1445,7 +1445,7 @@ class _KtHomePageState extends State<KtHomePage>
|
|||||||
return GetBuilder<KtHomeLogic>(
|
return GetBuilder<KtHomeLogic>(
|
||||||
id: 'category-list',
|
id: 'category-list',
|
||||||
builder: (ctrl) {
|
builder: (ctrl) {
|
||||||
if (state.categoryVideoList.isEmpty) {
|
if (state.categoryLoadStatus == KtLoadStatusType.loadNoData) {
|
||||||
return KtStatusWidget(
|
return KtStatusWidget(
|
||||||
type: KtErrorStatusType.nothingYet,
|
type: KtErrorStatusType.nothingYet,
|
||||||
onPressed: logic.getCategoryVideoList,
|
onPressed: logic.getCategoryVideoList,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user