!MMqDFaFUehZZVwknKE:matrix.org

Draftail

50 Members
A configurable rich text editor built with Draft.js https://www.draftail.org/21 Servers

Load older messages


SenderMessageTime
13 Aug 2019
@_slack_wagtailcms_UBVEB3T0T:matrix.orgHanz van Aardt
In reply to@_slack_wagtailcms_UBVEB3T0T:matrix.org
Hi coenvanderkamp - thank you for the fiddle. It helps. I have modified it a bit to demonstrate the inline effect we are trying to achieve but failing to get right. See https://jsfiddle.net/utz2bkvf/1/
Float right and Float left is not the issue ... the issue we are struggling with is have an image embedded inline in the text. The issue is that the p element closes the moment you add an image. If the p element did not close this would not have been an issue I think.
03:58:15
@_slack_wagtailcms_U1HDLHL9M:matrix.orgcoenvanderkamp
In reply to@_slack_wagtailcms_UBVEB3T0T:matrix.org
Float right and Float left is not the issue ... the issue we are struggling with is have an image embedded inline in the text. The issue is that the p element closes the moment you add an image. If the p element did not close this would not have been an issue I think.
Ah, yes, the closing. Sorry, I don't know what is causing that or how to handle that.
06:48:32
@_slack_wagtailcms_U3T796GEP:matrix.orgharris changed their profile picture.13:42:07
@_slack_wagtailcms_UJ8V8S3M3:matrix.orgthp44 joined the room.14:27:27
@_slack_wagtailcms_UJ8V8S3M3:matrix.orgthp44 Would it be possible to add an “edit in html” button? 😉 14:33:52
@_slack_wagtailcms_U1HDLHL9M:matrix.orgcoenvanderkamp 'Edit in json' should be possible! 14:35:02
@_slack_wagtailcms_U4N6SF7K5:matrix.orgflipperpa changed their profile picture.22:10:18
14 Aug 2019
@_slack_wagtailcms_U642SEV53:matrix.orgalejandro changed their profile picture.14:05:02
15 Aug 2019
@_slack_wagtailcms_UANB7K25B:matrix.orgArthur changed their profile picture.09:18:32
@_slack_wagtailcms_U7KV2C319:matrix.orgsonny changed their profile picture.09:55:22
@_slack_wagtailcms_U0ME9SGR1:matrix.orgThibaud changed their profile picture.14:15:11
@_slack_wagtailcms_U0ME9SGR1:matrix.orgThibaud New Draftail release, & blog post: https://www.draftail.org/blog/2019/08/15/draftail-v1-3-0-community-improvements-beyond-wagtail TL;DR; – nothing new for Wagtail in here 😅 but hopefully useful improvements for people using the editor elsewhere 14:19:11
@_slack_wagtailcms_U0ME9SGR1:matrix.orgThibaud I’m just back from holidays, I see there’s been lots of activity here, will try my best to answer all of the messages tomorrow or early next week 14:19:42
@_slack_wagtailcms_U4N6SF7K5:matrix.orgflipperpa Awesome to see that Draftail is getting adopted outside of our ecosystem - great work, Thibaud! 🙂 16:00:00
@_slack_wagtailcms_UJHDYNXJP:matrix.orgEric Sherman joined the room.16:29:29
@_slack_wagtailcms_UJHDYNXJP:matrix.orgEric Sherman interested in talking about tables! 16:29:29
@_slack_wagtailcms_UB1CW1P53:matrix.orgKalobTaulien
In reply to@_slack_wagtailcms_UJHDYNXJP:matrix.org
interested in talking about tables!
https://media.giphy.com/media/X83Y7r03T6uty/giphy.gif
20:06:22
21 Aug 2019
@_slack_wagtailcms_UJHDYNXJP:matrix.orgEric Sherman changed their profile picture.23:03:54
22 Aug 2019
@_slack_wagtailcms_U4N6SF7K5:matrix.orgflipperpa changed their profile picture.01:30:51
@_slack_wagtailcms_U9DQ4PP9R:matrix.orgsharpertool changed their profile picture.10:55:11
@_slack_wagtailcms_U0LQA2BFT:matrix.orgmattwestcott changed their profile picture.14:23:36
23 Aug 2019
@_slack_wagtailcms_UJ6DZ84J2:matrix.orgJonathan Liuti changed their profile picture.10:32:59
@_slack_wagtailcms_UFCCF5RND:matrix.orgJason Dilworth changed their profile picture.11:31:06
@_slack_wagtailcms_U3T796GEP:matrix.orgharris changed their profile picture.16:42:50
@_slack_wagtailcms_UB1CW1P53:matrix.orgKalobTaulien changed their profile picture.17:22:24
25 Aug 2019
@faabler:matrix.org@faabler:matrix.org joined the room.04:21:09
@faabler:matrix.org@faabler:matrix.org left the room.04:21:18
@_slack_wagtailcms_U1HDLHL9M:matrix.orgcoenvanderkamp changed their profile picture.09:02:29
26 Aug 2019
@_slack_wagtailcms_UMQ2MVBEJ:matrix.orgMartin Kimmig joined the room.06:58:28
@_slack_wagtailcms_UMQ2MVBEJ:matrix.orgMartin Kimmig Hello together, We are trying to support fontawesomes Icons for the RichtextEditor(Draftail). So if an editor enters for example "fa-lightbulb" as content, the output will be the lightbulb-Icon on the content page. This works with following code plus Javascript-manipulation. hooks.register('register_rich_text_features') def register_mark_feature(features): feature_name = 'fontawesome_icon' type_ = 'MARK' tag = 'i' # configure how Draftail handles the feature in its toolbar. control = { 'type': type_, 'label': 'FontAwesome', 'description': 'Mark as FontAwesome Icon', 'style': {'background': 'lightblue'}, } ... # configure the content transform from the DB to the editor and back. db_conversion = { 'from_database_format': { 'i[class="rtfa fa"]': InlineStyleElementHandler(type_) }, 'to_database_format': { 'style_map': {type_: 'i class="rtfa fa"'} }, } ... JS-Manipulation: window.onload = function () { // get all elements that were marked as font awesome icons in richtext let richtTextFontAwesomeIcons = document.querySelectorAll(".rtfa"); // make them display the icon richtTextFontAwesomeIcons.forEach(rtfa => { rtfa.classList.add(rtfa.textContent); rtfa.textContent = ''; }); }; A prettier solution would be to directly manipulate the input string inside the register_mark_feature method. Do anybody of you know, whether there is a way to access the input string to use it in db_conversion? Thank you in advance for any help! 06:58:29

Show newer messages


Back to Room ListRoom Version: 1