dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
2.9 KiB
110 lines
2.9 KiB
import 'package:flutter/material.dart'; |
|
import 'package:flutter_quill/flutter_quill.dart'; |
|
import 'package:image_picker/image_picker.dart'; |
|
|
|
import '../embed_types.dart'; |
|
import 'image_video_utils.dart'; |
|
|
|
class VideoButton extends StatelessWidget { |
|
const VideoButton({ |
|
required this.icon, |
|
required this.controller, |
|
this.iconSize = kDefaultIconSize, |
|
this.onVideoPickCallback, |
|
this.fillColor, |
|
this.filePickImpl, |
|
this.webVideoPickImpl, |
|
this.mediaPickSettingSelector, |
|
this.iconTheme, |
|
this.dialogTheme, |
|
this.tooltip, |
|
this.linkRegExp, |
|
Key? key, |
|
}) : super(key: key); |
|
|
|
final IconData icon; |
|
final double iconSize; |
|
|
|
final Color? fillColor; |
|
|
|
final QuillController controller; |
|
|
|
final OnVideoPickCallback? onVideoPickCallback; |
|
|
|
final WebVideoPickImpl? webVideoPickImpl; |
|
|
|
final FilePickImpl? filePickImpl; |
|
|
|
final MediaPickSettingSelector? mediaPickSettingSelector; |
|
|
|
final QuillIconTheme? iconTheme; |
|
|
|
final QuillDialogTheme? dialogTheme; |
|
|
|
final String? tooltip; |
|
|
|
final RegExp? linkRegExp; |
|
|
|
@override |
|
Widget build(BuildContext context) { |
|
final theme = Theme.of(context); |
|
|
|
final iconColor = iconTheme?.iconUnselectedColor ?? theme.iconTheme.color; |
|
final iconFillColor = |
|
iconTheme?.iconUnselectedFillColor ?? (fillColor ?? theme.canvasColor); |
|
|
|
return QuillToolbarIconButton( |
|
icon: Icon(icon, size: iconSize, color: iconColor), |
|
tooltip: tooltip, |
|
highlightElevation: 0, |
|
hoverElevation: 0, |
|
size: iconSize * 1.77, |
|
fillColor: iconFillColor, |
|
borderRadius: iconTheme?.borderRadius ?? 2, |
|
onPressed: () => _onPressedHandler(context), |
|
); |
|
} |
|
|
|
Future<void> _onPressedHandler(BuildContext context) async { |
|
if (onVideoPickCallback != null) { |
|
final selector = |
|
mediaPickSettingSelector ?? ImageVideoUtils.selectMediaPickSetting; |
|
final source = await selector(context); |
|
if (source != null) { |
|
if (source == MediaPickSetting.Gallery) { |
|
_pickVideo(context); |
|
} else { |
|
await _typeLink(context); |
|
} |
|
} |
|
} else { |
|
await _typeLink(context); |
|
} |
|
} |
|
|
|
void _pickVideo(BuildContext context) => ImageVideoUtils.handleVideoButtonTap( |
|
context, |
|
controller, |
|
ImageSource.gallery, |
|
onVideoPickCallback!, |
|
filePickImpl: filePickImpl, |
|
webVideoPickImpl: webVideoPickImpl, |
|
); |
|
|
|
Future<void> _typeLink(BuildContext context) async { |
|
final value = await showDialog<String>( |
|
context: context, |
|
builder: (_) => LinkDialog(dialogTheme: dialogTheme), |
|
); |
|
_linkSubmitted(value); |
|
} |
|
|
|
void _linkSubmitted(String? value) { |
|
if (value != null && value.isNotEmpty) { |
|
final index = controller.selection.baseOffset; |
|
final length = controller.selection.extentOffset - index; |
|
|
|
controller.replaceText(index, length, BlockEmbed.video(value), null); |
|
} |
|
} |
|
}
|
|
|