@Norrad Are you looking for anything in particular? I only ask because Sudonix uses a number of custom functions which I wrote, but all are available on GitHub and fully supported here.
nodebb-plugin-reactions not working @v1.0.2 with Harmony theme
-
Hi,
for me the @nodebb-plugin-reactions @v1.0.2 is not working on Harmony theme (nodebb v3). The reaction button doesn’t show up.
As I know for @phenomlab it is working without any problems. There are no errors in the nodebb log so I don’t know exactly where to look at. Harmony is importing the reactions.tpl in post.tpl and I didn’t do any changes. Everything should be alright. Maybe there is a plugin interferring with nodebb-plugins-reactions.
Does anyone have an idea? It worked without problems on v2.
Best regards
David -
@dave1904 I’ve managed to resolve this issue - see below
It seems that there is a conflicting plugin somewhere that causes
reactions
to not fire. Not sure which one it is, but below are the steps I took to resolve- Issue
./nodebb reset -t
- this essentially resets everything back to default - be warned, as it will strip literally all customisations also - Reactivate only the essential plugins (typically those that come with the stock installation)
- Install and activate
nodebb-plugin-emoji
,nodebb-plugin-emoji-android
and@nodebb/nodebb-plugin-reactions@latest
- Rebuild and restart
Obviously, these steps are quite dramatic and would mean some downtime for your forum. You’d also need to put everything back the way it was in terms of CSS, Widgets, etc, so quite invasive. My suggestion would be to try a minimal approach on prod to see if we can get that to work without having to use the somewhat “sledgehammer” approach above.
- Issue
-
@dave1904 hi David can you PM me your server details plus an account that has admin rights there and I’ll take a look.
-
strange, works great on my development environment :
-
@DownPW said in nodebb-plugin-reactions not working @v1.0.2 with Harmony theme:
strange, works great on my development environment :
There is something messed up with peer dependencies on my installation. @phenomlab is looking at it right now.
-
Great, you’re in good hands
-
If needed or if it can be used by someone using this plugin, here is my code for a dark theme :
/*----------------------------------------------------------------------------*/ /*---------------------- nodebb-plugin-reaction ----------------------*/ /*----------------------------------------------------------------------------*/ /* Popup bg */ .emoji-dialog { border: 1px solid var(--bs-border-color); background: var(--bs-card-cap-bg); } /* Tab bg */ .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active { --bs-nav-tabs-link-active-color: var(--bs-body-color-muted); --bs-nav-tabs-link-active-bg: var(--bs-body-navbar-active); --bs-nav-tabs-link-active-border-color: var(--bs-border-color); } /* Tab Hover */ .nav-tabs .nav-link:hover { border: var(--bs-nav-tabs-border-width) solid var(--bs-border-color); } /* Add reaction button */ span.reaction-add { color: var(--bs-link-color); }
cya
-
@dave1904 I’ve managed to fix most of the peer dependencies but there are still some really strange issues with this instance. I need to look at this in a bit more detail unfortunately as it’s like trying to chase a ghost presently
What I am seeing is the below
npm WARN @apidevtools/swagger-parser@10.1.0 requires a peer of openapi-types@>=7 but none is installed. You must install peer dependencies yourself. npm WARN @nodebb/nodebb-plugin-reactions@1.0.2 requires a peer of nodebb-plugin-emoji@^4.0.0 but none is installed. You must install peer dependencies yourself. npm WARN cosmiconfig-typescript-loader@4.3.0 requires a peer of cosmiconfig@>=7 but none is installed. You must install peer dependencies yourself. npm WARN textcomplete.contenteditable@0.1.1 requires a peer of textcomplete@^0.14.2 but none is installed. You must install peer dependencies yourself.
The second line I would not expect because that dependency is satisfied by
nodebb-plugin-emoji@5.0.7
which is now installed. Hard to know what the peer dependencies are currently.EDIT: You have a really old
npm
version at 6.14.17. This should be upgraded and may solve the problems. For example, mine is v9.Additionally, using the command
npm config set legacy-peer-deps true
should auto resolve issues, but likelynpm
needs upgrading. -
@phenomlab I’m very thankful for taking your time and fixing most of the peer dependencies. That’s really strange
-
@dave1904 No issues. See my comment above about
npm
-
@dave1904 I’ll look more into this tomorrow, but you could
- Upgrade
npm
- Stop NodeBB
- Run the NodeBB upgrade process again
- Start NodeBB
- Test
- Upgrade
-
@phenomlab said in nodebb-plugin-reactions not working @v1.0.2 with Harmony theme:
@dave1904 I’ll look more into this tomorrow, but you could
- Upgrade
npm
- Stop NodeBB
- Run the NodeBB upgrade process again
- Start NodeBB
- Test
I tried your steps but still no success unfortunately
- Upgrade
-
@dave1904 what’s the output of
npm --version
andnode --version
? -
-
@dave1904 hmm. Nothing wrong with those.
-
@phenomlab After upgrading npm and node I did upgrade nodebb again but that didn’t do any changes. Can you please tell me which commands I have to use to see those peer dependencies listed in the screenshot you sent me via pn?
-
@dave1904 if you stop NodeBB and use
./nodebb upgrade
, they should appear in the console. -
2. Bringing base dependencies up to date... started up to date, audited 1180 packages in 8s 139 packages are looking for funding run `npm fund` for details
Looks better doesn’t it?
-
@dave1904 yes, it does.
-
@dave1904 did you manage to get any further with this ?
-
@phenomlab I gave up on this yesterday
Did this solution help you?
Related Topics
-
-
-
-
Welcome to NodeBB V3!
Pinned Moved General -
NodeBB v2.4.0
Solved General -
-
-