Files
PiliPlus/lib/http/loading_state.dart
bggRGjQaUbCoE 4a782332d3 mod: err string
fix: typo

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-11 23:20:29 +08:00

78 lines
1.5 KiB
Dart

import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
sealed class LoadingState<T> {
const LoadingState();
factory LoadingState.loading() = Loading;
bool get isSuccess => this is Success<T>;
T get data => switch (this) {
Success(:var response) => response,
_ => throw this,
};
T? get dataOrNull => switch (this) {
Success(:var response) => response,
_ => null,
};
void toast() => SmartDialog.showToast(toString());
}
class Loading extends LoadingState<Never> {
const Loading._internal();
static const Loading _instance = Loading._internal();
factory Loading() => _instance;
@override
String toString() {
return 'ApiException: loading';
}
}
class Success<T> extends LoadingState<T> {
final T response;
const Success(this.response);
@override
bool operator ==(Object other) {
if (identical(this, other)) {
return true;
}
if (other is Success) {
return response == other.response;
}
return false;
}
@override
int get hashCode => response.hashCode;
}
class Error extends LoadingState<Never> {
final String? errMsg;
const Error(this.errMsg);
@override
bool operator ==(Object other) {
if (identical(this, other)) {
return true;
}
if (other is Error) {
return errMsg == other.errMsg;
}
return false;
}
@override
int get hashCode => errMsg.hashCode;
@override
String toString() {
return errMsg ?? '';
}
}