@DownPW said in Threaded chat support for NodeBB:
Better like this : add shadow and border-left on self answer
Of course - you style to your own requirements and taste ๐ Iโll commit that CSS we discussed yesterday also
maybe another plugin for help you: https://github.com/NodeBB/nodebb-plugin-dice
The interrest : He have an admin panel with creation of a bot for responceโฆ
And maybe using filter:messaging.save and Messaging.addSystemMessage instead of topic events
@DownPW Thanks. Will review
No problem @phenomlab
I have open an issue on the first plugin official github and that works now on chat/global chat and topic !
He use action:messaging.save if iโm not mistaken
But if you want to check in on JS, why not ?
Itโs maybe better than a plugin
@DownPW sounds like the plugin author is responsive and open to requests etc. I think taking this route is going to be quicker, but happy to review of you think otherwise.
Nope no problem mark @phenomlab
I have another request that should take less time for you.
I open it in another thread.
@phenomlab said in nodebb chat roll dice game:
@DownPW sounds like the plugin author is responsive and open to requests etc. I think taking this route is going to be quicker, but happy to review of you think otherwise.
hi @phenomlab
Have you got an idea for improve that bug ? :
Hello @oplik0
Itโs appear when the result of a roll appear on 2 lines in the timeline (Example: lot of dice roll)
Example here with no bugs on 1 line :
thanks for your futur replies
@DownPW is there a url where I can see this ?
You can test on my VM test as usual
MP
I have test some CSS code but itโs difficult for me.
I just manage to remove the span time but it also removes it for other system events appearing on the timeline.
span.timeago.timeline-text {
display: none;
}
I canโt figure out why the username and timestamp display correctly on one line and not on 2. Itโs almost the same thing finally
@DownPW This isnโt going to be a simple fix you can resolve with CSS. The issue here is how the plugin injects new code into an existing HTML structure, but doesnโt provide any means of identifying elements by ID rather than using a shared class name. Based on this, โbest effortโ is all that can be offered without directly changing any code.
For example
.dice-event-text {
display: inline-block;
align-items: center;
flex-wrap: wrap;
max-width: 800px;
width: 800px;
}
This yields
Not perfect of course, but certainly better than what you have.
indeed it is better but it also modifies the result on 1 lineโฆ
As you say, we canโt do much until the plugin is modified
@DownPW Yes, itโs not very elegant sadly, and there is an impact to other elements. You could write a jQuery function that only modifies the CSS when there are more than x of the same element in that div
โฆ
Why not @phenomlab but like you know, iโm not a good JS develloper lol
I have not the skills for that
@phenomlab do you think it is difficult to do?
@DownPW said in nodebb chat roll dice game:
do you think it is difficult to do?
No, but judging by this
https://github.com/NodeBB/NodeBB/pull/10837/commits/e7404fd7c3d401e6adb6246c23e5567cda136dec
It might be best to wait - or if you canโt, you could easily patch that file, or overwrite it (public/src/modules/helpers.common.js
)
@phenomlab said in nodebb chat roll dice game:
It might be best to wait - or if you canโt, you could easily patch that file, or overwrite it
ok but I donโt understand what the correction do for my problem ?
The interpretation of HTML is better ?
@DownPW yes, exactly. Itโll enable better element styling meaning a greater flexibility in terms of being able to target specific components
I will test to see if itโs better out of curiosity but I donโt think that will be enoughโฆ
That is what I thought. patching the file is not enough. Same result