2020-09-01 13:22:37 +02:00
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
|
|
|
|
part of 'accounts_store.dart';
|
|
|
|
|
|
|
|
// **************************************************************************
|
|
|
|
// StoreGenerator
|
|
|
|
// **************************************************************************
|
|
|
|
|
|
|
|
// ignore_for_file: non_constant_identifier_names, unnecessary_brace_in_string_interps, unnecessary_lambdas, prefer_expression_function_bodies, lines_longer_than_80_chars, avoid_as, avoid_annotating_with_dynamic
|
|
|
|
|
|
|
|
mixin _$AccountsStore on _AccountsStore, Store {
|
2020-09-29 23:15:51 +02:00
|
|
|
Computed<String> _$defaultUsernameComputed;
|
2020-09-01 13:22:37 +02:00
|
|
|
|
|
|
|
@override
|
2020-09-29 23:15:51 +02:00
|
|
|
String get defaultUsername => (_$defaultUsernameComputed ??= Computed<String>(
|
|
|
|
() => super.defaultUsername,
|
|
|
|
name: '_AccountsStore.defaultUsername'))
|
|
|
|
.value;
|
|
|
|
Computed<String> _$defaultInstanceUrlComputed;
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get defaultInstanceUrl => (_$defaultInstanceUrlComputed ??=
|
|
|
|
Computed<String>(() => super.defaultInstanceUrl,
|
|
|
|
name: '_AccountsStore.defaultInstanceUrl'))
|
|
|
|
.value;
|
2020-09-01 13:22:37 +02:00
|
|
|
Computed<Jwt> _$defaultTokenComputed;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Jwt get defaultToken =>
|
|
|
|
(_$defaultTokenComputed ??= Computed<Jwt>(() => super.defaultToken,
|
|
|
|
name: '_AccountsStore.defaultToken'))
|
|
|
|
.value;
|
2020-09-22 23:17:02 +02:00
|
|
|
Computed<bool> _$hasNoAccountComputed;
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get hasNoAccount =>
|
|
|
|
(_$hasNoAccountComputed ??= Computed<bool>(() => super.hasNoAccount,
|
|
|
|
name: '_AccountsStore.hasNoAccount'))
|
|
|
|
.value;
|
|
|
|
Computed<Iterable<String>> _$instancesComputed;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Iterable<String> get instances =>
|
|
|
|
(_$instancesComputed ??= Computed<Iterable<String>>(() => super.instances,
|
|
|
|
name: '_AccountsStore.instances'))
|
|
|
|
.value;
|
2020-09-26 12:43:34 +02:00
|
|
|
Computed<Iterable<String>> _$loggedInInstancesComputed;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Iterable<String> get loggedInInstances => (_$loggedInInstancesComputed ??=
|
|
|
|
Computed<Iterable<String>>(() => super.loggedInInstances,
|
|
|
|
name: '_AccountsStore.loggedInInstances'))
|
|
|
|
.value;
|
2020-09-01 13:22:37 +02:00
|
|
|
|
|
|
|
final _$tokensAtom = Atom(name: '_AccountsStore.tokens');
|
|
|
|
|
|
|
|
@override
|
|
|
|
ObservableMap<String, ObservableMap<String, Jwt>> get tokens {
|
|
|
|
_$tokensAtom.reportRead();
|
|
|
|
return super.tokens;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
set tokens(ObservableMap<String, ObservableMap<String, Jwt>> value) {
|
|
|
|
_$tokensAtom.reportWrite(value, super.tokens, () {
|
|
|
|
super.tokens = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
final _$_defaultAccountsAtom = Atom(name: '_AccountsStore._defaultAccounts');
|
|
|
|
|
|
|
|
@override
|
|
|
|
ObservableMap<String, String> get _defaultAccounts {
|
|
|
|
_$_defaultAccountsAtom.reportRead();
|
|
|
|
return super._defaultAccounts;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
set _defaultAccounts(ObservableMap<String, String> value) {
|
|
|
|
_$_defaultAccountsAtom.reportWrite(value, super._defaultAccounts, () {
|
|
|
|
super._defaultAccounts = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
final _$_defaultAccountAtom = Atom(name: '_AccountsStore._defaultAccount');
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get _defaultAccount {
|
|
|
|
_$_defaultAccountAtom.reportRead();
|
|
|
|
return super._defaultAccount;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
set _defaultAccount(String value) {
|
|
|
|
_$_defaultAccountAtom.reportWrite(value, super._defaultAccount, () {
|
|
|
|
super._defaultAccount = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
final _$addAccountAsyncAction = AsyncAction('_AccountsStore.addAccount');
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> addAccount(
|
|
|
|
String instanceUrl, String usernameOrEmail, String password) {
|
|
|
|
return _$addAccountAsyncAction
|
|
|
|
.run(() => super.addAccount(instanceUrl, usernameOrEmail, password));
|
|
|
|
}
|
|
|
|
|
2020-09-08 00:34:09 +02:00
|
|
|
final _$addInstanceAsyncAction = AsyncAction('_AccountsStore.addInstance');
|
|
|
|
|
|
|
|
@override
|
2020-09-21 21:44:56 +02:00
|
|
|
Future<void> addInstance(String instanceUrl, {bool assumeValid = false}) {
|
|
|
|
return _$addInstanceAsyncAction
|
|
|
|
.run(() => super.addInstance(instanceUrl, assumeValid: assumeValid));
|
2020-09-08 00:34:09 +02:00
|
|
|
}
|
|
|
|
|
2020-09-01 13:22:37 +02:00
|
|
|
final _$_AccountsStoreActionController =
|
|
|
|
ActionController(name: '_AccountsStore');
|
|
|
|
|
2020-09-24 00:19:53 +02:00
|
|
|
@override
|
|
|
|
void _assignDefaultAccounts() {
|
|
|
|
final _$actionInfo = _$_AccountsStoreActionController.startAction(
|
|
|
|
name: '_AccountsStore._assignDefaultAccounts');
|
|
|
|
try {
|
|
|
|
return super._assignDefaultAccounts();
|
|
|
|
} finally {
|
|
|
|
_$_AccountsStoreActionController.endAction(_$actionInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 13:22:37 +02:00
|
|
|
@override
|
|
|
|
void setDefaultAccount(String instanceUrl, String username) {
|
|
|
|
final _$actionInfo = _$_AccountsStoreActionController.startAction(
|
|
|
|
name: '_AccountsStore.setDefaultAccount');
|
|
|
|
try {
|
|
|
|
return super.setDefaultAccount(instanceUrl, username);
|
|
|
|
} finally {
|
|
|
|
_$_AccountsStoreActionController.endAction(_$actionInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void setDefaultAccountFor(String instanceUrl, String username) {
|
|
|
|
final _$actionInfo = _$_AccountsStoreActionController.startAction(
|
|
|
|
name: '_AccountsStore.setDefaultAccountFor');
|
|
|
|
try {
|
|
|
|
return super.setDefaultAccountFor(instanceUrl, username);
|
|
|
|
} finally {
|
|
|
|
_$_AccountsStoreActionController.endAction(_$actionInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-22 13:38:31 +02:00
|
|
|
@override
|
|
|
|
void removeInstance(String instanceUrl) {
|
|
|
|
final _$actionInfo = _$_AccountsStoreActionController.startAction(
|
|
|
|
name: '_AccountsStore.removeInstance');
|
|
|
|
try {
|
|
|
|
return super.removeInstance(instanceUrl);
|
|
|
|
} finally {
|
|
|
|
_$_AccountsStoreActionController.endAction(_$actionInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void removeAccount(String instanceUrl, String username) {
|
|
|
|
final _$actionInfo = _$_AccountsStoreActionController.startAction(
|
|
|
|
name: '_AccountsStore.removeAccount');
|
|
|
|
try {
|
|
|
|
return super.removeAccount(instanceUrl, username);
|
|
|
|
} finally {
|
|
|
|
_$_AccountsStoreActionController.endAction(_$actionInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-01 13:22:37 +02:00
|
|
|
@override
|
|
|
|
String toString() {
|
|
|
|
return '''
|
|
|
|
tokens: ${tokens},
|
2020-09-29 23:15:51 +02:00
|
|
|
defaultUsername: ${defaultUsername},
|
|
|
|
defaultInstanceUrl: ${defaultInstanceUrl},
|
2020-09-22 23:17:02 +02:00
|
|
|
defaultToken: ${defaultToken},
|
|
|
|
hasNoAccount: ${hasNoAccount},
|
2020-09-26 12:43:34 +02:00
|
|
|
instances: ${instances},
|
|
|
|
loggedInInstances: ${loggedInInstances}
|
2020-09-01 13:22:37 +02:00
|
|
|
''';
|
|
|
|
}
|
|
|
|
}
|