Use immutable when possible

pull/1530/head
Ellet 1 year ago
parent a2a0378d46
commit d3dc385d52
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 2
      lib/src/models/documents/attribute.dart
  2. 11
      lib/src/models/documents/history.dart
  3. 7
      lib/src/models/rules/delete.dart
  4. 7
      lib/src/models/rules/format.dart
  5. 16
      lib/src/models/rules/insert.dart
  6. 39
      lib/src/models/rules/rule.dart
  7. 3
      lib/src/models/structs/history_changed.dart
  8. 3
      lib/src/models/structs/image_url.dart
  9. 8
      lib/src/models/structs/link_dialog_action.dart
  10. 5
      lib/src/models/structs/offset_value.dart
  11. 1
      lib/src/models/structs/optional_size.dart
  12. 3
      lib/src/models/structs/segment_leaf_node.dart
  13. 3
      lib/src/models/structs/vertical_spacing.dart
  14. 15
      lib/src/models/themes/quill_dialog_theme.dart
  15. 5
      lib/src/models/themes/quill_icon_theme.dart

@ -1,6 +1,7 @@
import 'dart:collection'; import 'dart:collection';
import 'package:equatable/equatable.dart'; import 'package:equatable/equatable.dart';
import 'package:meta/meta.dart' show immutable;
import 'package:quiver/core.dart'; import 'package:quiver/core.dart';
enum AttributeScope { enum AttributeScope {
@ -10,6 +11,7 @@ enum AttributeScope {
ignore, // attributes that can be ignored ignore, // attributes that can be ignored
} }
@immutable
class Attribute<T> extends Equatable { class Attribute<T> extends Equatable {
const Attribute( const Attribute(
this.key, this.key,

@ -1,3 +1,5 @@
import 'package:meta/meta.dart' show immutable;
import '../quill_delta.dart'; import '../quill_delta.dart';
import '../structs/doc_change.dart'; import '../structs/doc_change.dart';
import '../structs/history_changed.dart'; import '../structs/history_changed.dart';
@ -12,7 +14,7 @@ class History {
this.lastRecorded = 0, this.lastRecorded = 0,
}); });
final HistoryStack stack = HistoryStack.empty(); final HistoryStack stack = const HistoryStack.empty();
bool get hasUndo => stack.undo.isNotEmpty; bool get hasUndo => stack.undo.isNotEmpty;
@ -119,10 +121,11 @@ class History {
} }
} }
@immutable
class HistoryStack { class HistoryStack {
HistoryStack.empty() const HistoryStack.empty()
: undo = [], : undo = const [],
redo = []; redo = const [];
final List<Delta> undo; final List<Delta> undo;
final List<Delta> redo; final List<Delta> redo;

@ -1,9 +1,12 @@
import 'package:meta/meta.dart' show immutable;
import '../documents/attribute.dart'; import '../documents/attribute.dart';
import '../documents/nodes/embeddable.dart'; import '../documents/nodes/embeddable.dart';
import '../quill_delta.dart'; import '../quill_delta.dart';
import 'rule.dart'; import 'rule.dart';
/// A heuristic rule for delete operations. /// A heuristic rule for delete operations.
@immutable
abstract class DeleteRule extends Rule { abstract class DeleteRule extends Rule {
const DeleteRule(); const DeleteRule();
@ -18,6 +21,7 @@ abstract class DeleteRule extends Rule {
} }
} }
@immutable
class EnsureLastLineBreakDeleteRule extends DeleteRule { class EnsureLastLineBreakDeleteRule extends DeleteRule {
const EnsureLastLineBreakDeleteRule(); const EnsureLastLineBreakDeleteRule();
@ -34,6 +38,7 @@ class EnsureLastLineBreakDeleteRule extends DeleteRule {
/// Fallback rule for delete operations which simply deletes specified text /// Fallback rule for delete operations which simply deletes specified text
/// range without any special handling. /// range without any special handling.
@immutable
class CatchAllDeleteRule extends DeleteRule { class CatchAllDeleteRule extends DeleteRule {
const CatchAllDeleteRule(); const CatchAllDeleteRule();
@ -54,6 +59,7 @@ class CatchAllDeleteRule extends DeleteRule {
/// This rule makes sure to apply all style attributes of deleted newline /// This rule makes sure to apply all style attributes of deleted newline
/// to the next available newline, which may reset any style attributes /// to the next available newline, which may reset any style attributes
/// already present there. /// already present there.
@immutable
class PreserveLineStyleOnMergeRule extends DeleteRule { class PreserveLineStyleOnMergeRule extends DeleteRule {
const PreserveLineStyleOnMergeRule(); const PreserveLineStyleOnMergeRule();
@ -112,6 +118,7 @@ class PreserveLineStyleOnMergeRule extends DeleteRule {
/// Prevents user from merging a line containing an embed with other lines. /// Prevents user from merging a line containing an embed with other lines.
/// This rule applies to video, not image. /// This rule applies to video, not image.
/// The rule relates to [InsertEmbedsRule]. /// The rule relates to [InsertEmbedsRule].
@immutable
class EnsureEmbedLineRule extends DeleteRule { class EnsureEmbedLineRule extends DeleteRule {
const EnsureEmbedLineRule(); const EnsureEmbedLineRule();

@ -1,8 +1,11 @@
import 'package:meta/meta.dart' show immutable;
import '../documents/attribute.dart'; import '../documents/attribute.dart';
import '../quill_delta.dart'; import '../quill_delta.dart';
import 'rule.dart'; import 'rule.dart';
/// A heuristic rule for format (retain) operations. /// A heuristic rule for format (retain) operations.
@immutable
abstract class FormatRule extends Rule { abstract class FormatRule extends Rule {
const FormatRule(); const FormatRule();
@ -19,6 +22,7 @@ abstract class FormatRule extends Rule {
/// Produces Delta with line-level attributes applied strictly to /// Produces Delta with line-level attributes applied strictly to
/// newline characters. /// newline characters.
@immutable
class ResolveLineFormatRule extends FormatRule { class ResolveLineFormatRule extends FormatRule {
const ResolveLineFormatRule(); const ResolveLineFormatRule();
@ -109,6 +113,7 @@ class ResolveLineFormatRule extends FormatRule {
} }
/// Allows updating link format with collapsed selection. /// Allows updating link format with collapsed selection.
@immutable
class FormatLinkAtCaretPositionRule extends FormatRule { class FormatLinkAtCaretPositionRule extends FormatRule {
const FormatLinkAtCaretPositionRule(); const FormatLinkAtCaretPositionRule();
@ -148,6 +153,7 @@ class FormatLinkAtCaretPositionRule extends FormatRule {
/// Produces Delta with inline-level attributes applied to all characters /// Produces Delta with inline-level attributes applied to all characters
/// except newlines. /// except newlines.
@immutable
class ResolveInlineFormatRule extends FormatRule { class ResolveInlineFormatRule extends FormatRule {
const ResolveInlineFormatRule(); const ResolveInlineFormatRule();
@ -193,6 +199,7 @@ class ResolveInlineFormatRule extends FormatRule {
} }
/// Produces Delta with attributes applied to image leaf node /// Produces Delta with attributes applied to image leaf node
@immutable
class ResolveImageFormatRule extends FormatRule { class ResolveImageFormatRule extends FormatRule {
const ResolveImageFormatRule(); const ResolveImageFormatRule();

@ -1,3 +1,5 @@
import 'package:meta/meta.dart' show immutable;
import '../../models/documents/document.dart'; import '../../models/documents/document.dart';
import '../documents/attribute.dart'; import '../documents/attribute.dart';
import '../documents/nodes/embeddable.dart'; import '../documents/nodes/embeddable.dart';
@ -6,6 +8,7 @@ import '../quill_delta.dart';
import 'rule.dart'; import 'rule.dart';
/// A heuristic rule for insert operations. /// A heuristic rule for insert operations.
@immutable
abstract class InsertRule extends Rule { abstract class InsertRule extends Rule {
const InsertRule(); const InsertRule();
@ -23,6 +26,7 @@ abstract class InsertRule extends Rule {
/// ///
/// This rule ignores scenarios when the line is split on its edge, meaning /// This rule ignores scenarios when the line is split on its edge, meaning
/// a newline is inserted at the beginning or the end of a line. /// a newline is inserted at the beginning or the end of a line.
@immutable
class PreserveLineStyleOnSplitRule extends InsertRule { class PreserveLineStyleOnSplitRule extends InsertRule {
const PreserveLineStyleOnSplitRule(); const PreserveLineStyleOnSplitRule();
@ -73,6 +77,7 @@ class PreserveLineStyleOnSplitRule extends InsertRule {
/// * pasting text containing multiple lines of text in a block /// * pasting text containing multiple lines of text in a block
/// ///
/// This rule may also be activated for changes triggered by auto-correct. /// This rule may also be activated for changes triggered by auto-correct.
@immutable
class PreserveBlockStyleOnInsertRule extends InsertRule { class PreserveBlockStyleOnInsertRule extends InsertRule {
const PreserveBlockStyleOnInsertRule(); const PreserveBlockStyleOnInsertRule();
@ -149,6 +154,7 @@ class PreserveBlockStyleOnInsertRule extends InsertRule {
/// This rule is only applied when the cursor is on the last line of a block. /// This rule is only applied when the cursor is on the last line of a block.
/// When the cursor is in the middle of a block we allow adding empty lines /// When the cursor is in the middle of a block we allow adding empty lines
/// and preserving the block's style. /// and preserving the block's style.
@immutable
class AutoExitBlockRule extends InsertRule { class AutoExitBlockRule extends InsertRule {
const AutoExitBlockRule(); const AutoExitBlockRule();
@ -228,6 +234,7 @@ class AutoExitBlockRule extends InsertRule {
/// ///
/// This handles scenarios when a new line is added when at the end of a /// This handles scenarios when a new line is added when at the end of a
/// heading line. The newly added line should be a regular paragraph. /// heading line. The newly added line should be a regular paragraph.
@immutable
class ResetLineFormatOnNewLineRule extends InsertRule { class ResetLineFormatOnNewLineRule extends InsertRule {
const ResetLineFormatOnNewLineRule(); const ResetLineFormatOnNewLineRule();
@ -264,6 +271,7 @@ class ResetLineFormatOnNewLineRule extends InsertRule {
/// Handles all format operations which manipulate embeds. /// Handles all format operations which manipulate embeds.
/// This rule wraps line breaks around video, not image. /// This rule wraps line breaks around video, not image.
@immutable
class InsertEmbedsRule extends InsertRule { class InsertEmbedsRule extends InsertRule {
const InsertEmbedsRule(); const InsertEmbedsRule();
@ -327,6 +335,7 @@ class InsertEmbedsRule extends InsertRule {
/// the URL pattern. /// the URL pattern.
/// ///
/// The link attribute is applied as the user types. /// The link attribute is applied as the user types.
@immutable
class AutoFormatMultipleLinksRule extends InsertRule { class AutoFormatMultipleLinksRule extends InsertRule {
const AutoFormatMultipleLinksRule(); const AutoFormatMultipleLinksRule();
@ -355,9 +364,6 @@ class AutoFormatMultipleLinksRule extends InsertRule {
// https://example.net/ // https://example.net/
// URL generator tool (https://www.randomlists.com/urls) is used. // URL generator tool (https://www.randomlists.com/urls) is used.
// TODO: You might want to rename those but everywhere even in
// flutter_quill_extensions
static const _oneLineLinkPattern = static const _oneLineLinkPattern =
r'^https?:\/\/[\w\-]+(\.[\w\-]+)*(:\d+)?(\/.*)?$'; r'^https?:\/\/[\w\-]+(\.[\w\-]+)*(:\d+)?(\/.*)?$';
static const _detectLinkPattern = static const _detectLinkPattern =
@ -489,6 +495,7 @@ class AutoFormatMultipleLinksRule extends InsertRule {
/// Applies link format to text segment (which looks like a link) when user /// Applies link format to text segment (which looks like a link) when user
/// inserts space character after it. /// inserts space character after it.
@immutable
class AutoFormatLinksRule extends InsertRule { class AutoFormatLinksRule extends InsertRule {
const AutoFormatLinksRule(); const AutoFormatLinksRule();
@ -534,6 +541,7 @@ class AutoFormatLinksRule extends InsertRule {
} }
/// Preserves inline styles when user inserts text inside formatted segment. /// Preserves inline styles when user inserts text inside formatted segment.
@immutable
class PreserveInlineStylesRule extends InsertRule { class PreserveInlineStylesRule extends InsertRule {
const PreserveInlineStylesRule(); const PreserveInlineStylesRule();
@ -585,6 +593,7 @@ class PreserveInlineStylesRule extends InsertRule {
} }
/// Fallback rule which simply inserts text as-is without any special handling. /// Fallback rule which simply inserts text as-is without any special handling.
@immutable
class CatchAllInsertRule extends InsertRule { class CatchAllInsertRule extends InsertRule {
const CatchAllInsertRule(); const CatchAllInsertRule();
@ -615,6 +624,7 @@ _NextNewLine _getNextNewLine(DeltaIterator iterator) {
return const _NextNewLine(null, null); return const _NextNewLine(null, null);
} }
@immutable
class _NextNewLine { class _NextNewLine {
const _NextNewLine(this.operation, this.skipped); const _NextNewLine(this.operation, this.skipped);

@ -1,3 +1,5 @@
import 'package:meta/meta.dart' show immutable;
import '../documents/attribute.dart'; import '../documents/attribute.dart';
import '../documents/document.dart'; import '../documents/document.dart';
import '../quill_delta.dart'; import '../quill_delta.dart';
@ -7,6 +9,7 @@ import 'insert.dart';
enum RuleType { insert, delete, format } enum RuleType { insert, delete, format }
@immutable
abstract class Rule { abstract class Rule {
const Rule(); const Rule();
@ -48,24 +51,24 @@ class Rules {
List<Rule> _customRules = []; List<Rule> _customRules = [];
final List<Rule> _rules; final List<Rule> _rules;
static final Rules _instance = Rules([ static final Rules _instance = Rules(const [
const FormatLinkAtCaretPositionRule(), FormatLinkAtCaretPositionRule(),
const ResolveLineFormatRule(), ResolveLineFormatRule(),
const ResolveInlineFormatRule(), ResolveInlineFormatRule(),
const ResolveImageFormatRule(), ResolveImageFormatRule(),
const InsertEmbedsRule(), InsertEmbedsRule(),
const AutoExitBlockRule(), AutoExitBlockRule(),
const PreserveBlockStyleOnInsertRule(), PreserveBlockStyleOnInsertRule(),
const PreserveLineStyleOnSplitRule(), PreserveLineStyleOnSplitRule(),
const ResetLineFormatOnNewLineRule(), ResetLineFormatOnNewLineRule(),
const AutoFormatLinksRule(), AutoFormatLinksRule(),
const AutoFormatMultipleLinksRule(), AutoFormatMultipleLinksRule(),
const PreserveInlineStylesRule(), PreserveInlineStylesRule(),
const CatchAllInsertRule(), CatchAllInsertRule(),
const EnsureEmbedLineRule(), EnsureEmbedLineRule(),
const PreserveLineStyleOnMergeRule(), PreserveLineStyleOnMergeRule(),
const CatchAllDeleteRule(), CatchAllDeleteRule(),
const EnsureLastLineBreakDeleteRule() EnsureLastLineBreakDeleteRule()
]); ]);
static Rules getInstance() => _instance; static Rules getInstance() => _instance;

@ -1,3 +1,6 @@
import 'package:meta/meta.dart' show immutable;
@immutable
class HistoryChanged { class HistoryChanged {
const HistoryChanged( const HistoryChanged(
this.changed, this.changed,

@ -1,3 +1,6 @@
import 'package:meta/meta.dart' show immutable;
@immutable
class ImageUrl { class ImageUrl {
const ImageUrl( const ImageUrl(
this.url, this.url,

@ -1,7 +1,9 @@
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart' show Widget;
import 'package:meta/meta.dart' show immutable;
@immutable
class LinkDialogAction { class LinkDialogAction {
LinkDialogAction({required this.builder}); const LinkDialogAction({required this.builder});
Widget Function(bool canPress, void Function() applyLink) builder; final Widget Function(bool canPress, void Function() applyLink) builder;
} }

@ -1,5 +1,8 @@
import 'package:meta/meta.dart' show immutable;
@immutable
class OffsetValue<T> { class OffsetValue<T> {
OffsetValue(this.offset, this.value, [this.length]); const OffsetValue(this.offset, this.value, [this.length]);
final int offset; final int offset;
final int? length; final int? length;
final T value; final T value;

@ -1,4 +1,3 @@
// ignore_for_file: public_member_api_docs, sort_constructors_first
import 'package:meta/meta.dart' show immutable; import 'package:meta/meta.dart' show immutable;
@immutable @immutable

@ -1,6 +1,9 @@
import 'package:meta/meta.dart' show immutable;
import '../documents/nodes/leaf.dart'; import '../documents/nodes/leaf.dart';
import '../documents/nodes/line.dart'; import '../documents/nodes/line.dart';
@immutable
class SegmentLeafNode { class SegmentLeafNode {
const SegmentLeafNode(this.line, this.leaf); const SegmentLeafNode(this.line, this.leaf);

@ -1,3 +1,6 @@
import 'package:meta/meta.dart' show immutable;
@immutable
class VerticalSpacing { class VerticalSpacing {
const VerticalSpacing( const VerticalSpacing(
this.top, this.top,

@ -1,7 +1,18 @@
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart' show Diagnosticable;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart'
show
BoxConstraints,
ButtonStyle,
Color,
EdgeInsets,
EdgeInsetsGeometry,
ShapeBorder,
TextStyle;
import 'package:meta/meta.dart' show immutable;
/// Used to configure the dialog's look and feel. /// Used to configure the dialog's look and feel.
@immutable
class QuillDialogTheme with Diagnosticable { class QuillDialogTheme with Diagnosticable {
const QuillDialogTheme({ const QuillDialogTheme({
this.buttonTextStyle, this.buttonTextStyle,

@ -1,5 +1,8 @@
import 'package:flutter/material.dart'; import 'package:flutter/widgets.dart' show Color;
import 'package:meta/meta.dart' show immutable;
@immutable
class QuillIconTheme { class QuillIconTheme {
const QuillIconTheme( const QuillIconTheme(
{this.iconSelectedColor, {this.iconSelectedColor,

Loading…
Cancel
Save