mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
a54ca799b9
* update rules of analysis_options.yaml. and solved all problems * refactor: fix remaining problems --------- Co-authored-by: Ushie <ushiekane@gmail.com>
25 lines
1.0 KiB
Dart
25 lines
1.0 KiB
Dart
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/services/manager_api.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
class ContributorsViewModel extends BaseViewModel {
|
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
|
List<dynamic> patcherContributors = [];
|
|
List<dynamic> patchesContributors = [];
|
|
List<dynamic> integrationsContributors = [];
|
|
List<dynamic> cliContributors = [];
|
|
List<dynamic> managerContributors = [];
|
|
|
|
Future<void> getContributors() async {
|
|
final Map<String, List<dynamic>> contributors =
|
|
await _managerAPI.getContributors();
|
|
patcherContributors = contributors[_managerAPI.defaultPatcherRepo] ?? [];
|
|
patchesContributors = contributors[_managerAPI.getPatchesRepo()] ?? [];
|
|
integrationsContributors =
|
|
contributors[_managerAPI.getIntegrationsRepo()] ?? [];
|
|
cliContributors = contributors[_managerAPI.defaultCliRepo] ?? [];
|
|
managerContributors = contributors[_managerAPI.defaultManagerRepo] ?? [];
|
|
notifyListeners();
|
|
}
|
|
}
|