|
|
@ -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); |
|
|
|
|
|
|
|
|
|
|
|