mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
36 lines
859 B
Dart
36 lines
859 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:server_box/data/model/server/private_key_info.dart';
|
|
import 'package:server_box/data/res/store.dart';
|
|
|
|
class PrivateKeyProvider extends ChangeNotifier {
|
|
List<PrivateKeyInfo> get pkis => _pkis;
|
|
late List<PrivateKeyInfo> _pkis;
|
|
|
|
void load() {
|
|
_pkis = Stores.key.fetch();
|
|
}
|
|
|
|
void add(PrivateKeyInfo info) {
|
|
_pkis.add(info);
|
|
Stores.key.put(info);
|
|
notifyListeners();
|
|
}
|
|
|
|
void delete(PrivateKeyInfo info) {
|
|
_pkis.removeWhere((e) => e.id == info.id);
|
|
Stores.key.delete(info);
|
|
notifyListeners();
|
|
}
|
|
|
|
void update(PrivateKeyInfo old, PrivateKeyInfo newInfo) {
|
|
final idx = _pkis.indexWhere((e) => e.id == old.id);
|
|
if (idx == -1) {
|
|
_pkis.add(newInfo);
|
|
} else {
|
|
_pkis[idx] = newInfo;
|
|
}
|
|
Stores.key.put(newInfo);
|
|
notifyListeners();
|
|
}
|
|
}
|