Fix QuillToolbarFontFamilyButton

pull/1653/head
Ellet 1 year ago
parent 0d77c12e5b
commit fe856afd75
  1. 9
      example/lib/screens/quill/quill_screen.dart
  2. 3
      lib/src/models/config/toolbar/buttons/font_size_configurations.dart
  3. 4
      lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart
  4. 87
      lib/src/widgets/toolbar/buttons/font_family_button.dart
  5. 3
      lib/src/widgets/toolbar/buttons/font_size_button.dart
  6. 1
      lib/src/widgets/toolbar/simple_toolbar.dart

@ -107,15 +107,6 @@ class _QuillScreenState extends State<QuillScreen> {
}, },
child: const Text('Print as PDF'), child: const Text('Print as PDF'),
), ),
MenuItemButton(
child: const Text('Convert to markdown'),
onPressed: () {
final delta = _controller.document.toDelta();
// final content = DeltaToMarkdown().convert(delta);
print('H');
context.messenger.showText('Printted to log');
},
),
], ],
), ),
IconButton( IconButton(

@ -42,7 +42,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
super.tooltip, super.tooltip,
this.padding, this.padding,
this.style, this.style,
this.width, @Deprecated('No longer used') this.width,
this.initialValue, this.initialValue,
this.labelOverflow = TextOverflow.visible, this.labelOverflow = TextOverflow.visible,
this.itemHeight, this.itemHeight,
@ -106,6 +106,7 @@ class QuillToolbarFontSizeButtonOptions extends QuillToolbarBaseButtonOptions<
attribute: attribute ?? this.attribute, attribute: attribute ?? this.attribute,
padding: padding ?? this.padding, padding: padding ?? this.padding,
style: style ?? this.style, style: style ?? this.style,
// ignore: deprecated_member_use_from_same_package
width: width ?? this.width, width: width ?? this.width,
initialValue: initialValue ?? this.initialValue, initialValue: initialValue ?? this.initialValue,
labelOverflow: labelOverflow ?? this.labelOverflow, labelOverflow: labelOverflow ?? this.labelOverflow,

@ -31,6 +31,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
super.iconData, super.iconData,
this.attributes, this.attributes,
this.defaultDisplayText, this.defaultDisplayText,
this.width,
}); });
/// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations] /// By default we will the toolbar axis from [QuillSimpleToolbarConfigurations]
@ -51,6 +52,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
/// ] /// ]
/// ``` /// ```
final List<Attribute<int?>>? attributes; final List<Attribute<int?>>? attributes;
final double? width;
final String? defaultDisplayText; final String? defaultDisplayText;
@ -65,6 +67,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
String? tooltip, String? tooltip,
QuillIconTheme? iconTheme, QuillIconTheme? iconTheme,
String? defaultDisplayText, String? defaultDisplayText,
double? width,
}) { }) {
return QuillToolbarSelectHeaderStyleDropdownButtonOptions( return QuillToolbarSelectHeaderStyleDropdownButtonOptions(
attributes: attributes ?? this.attributes, attributes: attributes ?? this.attributes,
@ -75,6 +78,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
iconSize: iconSize ?? this.iconSize, iconSize: iconSize ?? this.iconSize,
iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor, iconButtonFactor: iconButtonFactor ?? this.iconButtonFactor,
defaultDisplayText: defaultDisplayText ?? this.defaultDisplayText, defaultDisplayText: defaultDisplayText ?? this.defaultDisplayText,
width: width ?? this.width,
); );
} }
} }

@ -11,7 +11,8 @@ import '../base_toolbar.dart';
class QuillToolbarFontFamilyButton extends StatefulWidget { class QuillToolbarFontFamilyButton extends StatefulWidget {
QuillToolbarFontFamilyButton({ QuillToolbarFontFamilyButton({
required this.controller, required this.controller,
required this.defaultDisplayText, @Deprecated('Please use the default display text from the options')
this.defaultDisplayText,
this.options = const QuillToolbarFontFamilyButtonOptions(), this.options = const QuillToolbarFontFamilyButtonOptions(),
super.key, super.key,
}) : assert(options.rawItemsMap?.isNotEmpty ?? (true)), }) : assert(options.rawItemsMap?.isNotEmpty ?? (true)),
@ -21,8 +22,7 @@ class QuillToolbarFontFamilyButton extends StatefulWidget {
final QuillToolbarFontFamilyButtonOptions options; final QuillToolbarFontFamilyButtonOptions options;
@Deprecated('Please use the default display text from the options') final String? defaultDisplayText;
final String defaultDisplayText;
/// Since we can't get the state from the instace of the widget for comparing /// Since we can't get the state from the instace of the widget for comparing
/// in [didUpdateWidget] then we will have to store reference here /// in [didUpdateWidget] then we will have to store reference here
@ -50,10 +50,15 @@ class QuillToolbarFontFamilyButtonState
} }
void _initState() { void _initState() {
_currentValue = _defaultDisplayText;
// controller.addListener(_didChangeEditingValue); // controller.addListener(_didChangeEditingValue);
} }
@override
void didChangeDependencies() {
super.didChangeDependencies();
_currentValue = _defaultDisplayText;
}
// @override // @override
// void dispose() { // void dispose() {
// controller.removeListener(_didChangeEditingValue); // controller.removeListener(_didChangeEditingValue);
@ -63,8 +68,8 @@ class QuillToolbarFontFamilyButtonState
String get _defaultDisplayText { String get _defaultDisplayText {
return options.initialValue ?? return options.initialValue ??
widget.options.defaultDisplayText ?? widget.options.defaultDisplayText ??
// ignore: deprecated_member_use_from_same_package widget.defaultDisplayText ??
widget.defaultDisplayText; context.loc.font;
} }
// @override // @override
@ -169,46 +174,40 @@ class QuillToolbarFontFamilyButtonState
), ),
); );
} }
return ConstrainedBox( return UtilityWidgets.maybeWidget(
constraints: BoxConstraints.tightFor( enabled: tooltip.isNotEmpty || options.overrideTooltipByFontFamily,
height: iconSize * 1.81, wrapper: (child) {
width: options.width, var effectiveTooltip = tooltip;
), if (options.overrideTooltipByFontFamily) {
child: UtilityWidgets.maybeWidget( effectiveTooltip = effectiveTooltip.isNotEmpty
enabled: tooltip.isNotEmpty || options.overrideTooltipByFontFamily, ? '$effectiveTooltip: $_currentValue'
wrapper: (child) { : '${context.loc.font}: $_currentValue';
var effectiveTooltip = tooltip; }
if (options.overrideTooltipByFontFamily) { return Tooltip(message: effectiveTooltip, child: child);
effectiveTooltip = effectiveTooltip.isNotEmpty },
? '$effectiveTooltip: $_currentValue' child: Builder(
: '${context.loc.font}: $_currentValue'; builder: (context) {
} final isMaterial3 = Theme.of(context).useMaterial3;
return Tooltip(message: effectiveTooltip, child: child); if (!isMaterial3) {
}, return RawMaterialButton(
child: Builder(
builder: (context) {
final isMaterial3 = Theme.of(context).useMaterial3;
if (!isMaterial3) {
return RawMaterialButton(
onPressed: _onPressed,
child: _buildContent(context),
);
}
return QuillToolbarIconButton(
isSelected: false,
iconTheme: iconTheme?.copyWith(
iconButtonSelectedData: const IconButtonData(
visualDensity: VisualDensity.compact,
),
iconButtonUnselectedData: const IconButtonData(
visualDensity: VisualDensity.compact,
),
),
onPressed: _onPressed, onPressed: _onPressed,
icon: _buildContent(context), child: _buildContent(context),
); );
}, }
), return QuillToolbarIconButton(
isSelected: false,
iconTheme: iconTheme?.copyWith(
iconButtonSelectedData: const IconButtonData(
visualDensity: VisualDensity.compact,
),
iconButtonUnselectedData: const IconButtonData(
visualDensity: VisualDensity.compact,
),
),
onPressed: _onPressed,
icon: _buildContent(context),
);
},
), ),
); );
} }

@ -13,6 +13,7 @@ import '../base_toolbar.dart';
class QuillToolbarFontSizeButton extends StatefulWidget { class QuillToolbarFontSizeButton extends StatefulWidget {
QuillToolbarFontSizeButton({ QuillToolbarFontSizeButton({
required this.controller, required this.controller,
@Deprecated('Please use the default display text from the options')
this.defaultDisplayText, this.defaultDisplayText,
this.options = const QuillToolbarFontSizeButtonOptions(), this.options = const QuillToolbarFontSizeButtonOptions(),
super.key, super.key,
@ -22,7 +23,6 @@ class QuillToolbarFontSizeButton extends StatefulWidget {
final QuillToolbarFontSizeButtonOptions options; final QuillToolbarFontSizeButtonOptions options;
@Deprecated('Please use the default display text from the options')
final String? defaultDisplayText; final String? defaultDisplayText;
/// Since we can't get the state from the instace of the widget for comparing /// Since we can't get the state from the instace of the widget for comparing
@ -68,7 +68,6 @@ class QuillToolbarFontSizeButtonState
String get _defaultDisplayText { String get _defaultDisplayText {
return options.initialValue ?? return options.initialValue ??
widget.options.defaultDisplayText ?? widget.options.defaultDisplayText ??
// ignore: deprecated_member_use_from_same_package
widget.defaultDisplayText ?? widget.defaultDisplayText ??
context.loc.fontSize; context.loc.fontSize;
} }

@ -77,7 +77,6 @@ class QuillSimpleToolbar extends StatelessWidget
QuillToolbarFontFamilyButton( QuillToolbarFontFamilyButton(
options: toolbarConfigurations.buttonOptions.fontFamily, options: toolbarConfigurations.buttonOptions.fontFamily,
controller: globalController, controller: globalController,
defaultDisplayText: context.loc.font,
), ),
if (configurations.showFontSize) if (configurations.showFontSize)
QuillToolbarFontSizeButton( QuillToolbarFontSizeButton(

Loading…
Cancel
Save