Browse Source

neon, neon_files: make models immutable

pull/364/head
Nikolas Rimikis 1 year ago
parent
commit
80dc277f11
No known key found for this signature in database
GPG Key ID: 85ED1DE9786A4FF2
  1. 24
      packages/neon/neon/lib/src/models/account.dart
  2. 4
      packages/neon/neon/lib/src/models/push_notification.dart
  3. 3
      packages/neon/neon_files/lib/models/file_details.dart

24
packages/neon/neon/lib/src/models/account.dart

@ -1,6 +1,7 @@
import 'dart:convert';
import 'package:crypto/crypto.dart';
import 'package:flutter/foundation.dart';
import 'package:json_annotation/json_annotation.dart';
import 'package:nextcloud/nextcloud.dart';
import 'package:package_info_plus/package_info_plus.dart';
@ -39,6 +40,7 @@ String userAgent(final PackageInfo packageInfo) {
}
@JsonSerializable()
@immutable
class Account {
Account({
required this.serverURL,
@ -46,7 +48,14 @@ class Account {
required this.username,
this.password,
this.userAgent,
});
}) : _client = NextcloudClient(
serverURL,
loginName: loginName,
username: username,
password: password,
userAgentOverride: userAgent,
cookieJar: CookieJar(),
);
factory Account.fromJson(final Map<String, dynamic> json) => _$AccountFromJson(json);
Map<String, dynamic> toJson() => _$AccountToJson(this);
@ -58,7 +67,6 @@ class Account {
final String? userAgent;
@override
// ignore: avoid_equals_and_hash_code_on_mutable_classes
bool operator ==(final Object other) =>
other is Account &&
other.serverURL == serverURL &&
@ -68,21 +76,13 @@ class Account {
other.userAgent == userAgent;
@override
// ignore: avoid_equals_and_hash_code_on_mutable_classes
int get hashCode => serverURL.hashCode + username.hashCode;
String get id => client.id;
NextcloudClient? _client;
final NextcloudClient _client;
NextcloudClient get client => _client ??= NextcloudClient(
serverURL,
loginName: loginName,
username: username,
password: password,
userAgentOverride: userAgent,
cookieJar: CookieJar(),
);
NextcloudClient get client => _client;
}
Map<String, String> _idCache = {};

4
packages/neon/neon/lib/src/models/push_notification.dart

@ -1,11 +1,13 @@
import 'package:flutter/foundation.dart';
import 'package:json_annotation/json_annotation.dart';
import 'package:nextcloud/nextcloud.dart';
part 'push_notification.g.dart';
@JsonSerializable()
@immutable
class PushNotification {
PushNotification({
const PushNotification({
required this.accountID,
required this.priority,
required this.type,

3
packages/neon/neon_files/lib/models/file_details.dart

@ -1,7 +1,8 @@
part of '../neon_files.dart';
@immutable
class FileDetails {
FileDetails({
const FileDetails({
required this.path,
required this.isDirectory,
required this.size,

Loading…
Cancel
Save