omppatil
(Om Patil)
28.Ноябрь.2023 12:34:55
1
Привет!
Я новичок в создании плагинов для Discourse и был бы признателен за помощь в добавлении кнопки переключения в меню поста и реализации её действия в плагине.
Lilly
(Lillian )
28.Ноябрь.2023 12:41:05
2
Привет @omppatil , возможно, этот пост поможет вам двигаться в правильном направлении:
If you want to add a button to the post menu then you’ll need something a little bit different since posts are widgets .
You would need to add something like this to your theme / plugin.
api.addPostMenuButton("my-button", () => {
return {
action: "someAction",
icon: "someIcon",
className: "someClass",
title: "some title",
};
});
The plugin API has a method for adding new buttons that makes this relatively easy.
discourse/app/assets/javascripts/discourse/app/lib/plugin-api.…
Также, если вы новичок в разработке плагинов для Discourse:
I’ve only just started but here’s my ‘starter for 10’ to get you going:
Read:
these
this
Try and read the code on the simplest, but popular plugins and see if you can understand what they are doing (this is not always easy, especially with the complexity of dealing with multiple files and the sometimes brutal functional brevity of javasctipt, but persevere)
You need to learn:
Lots of Javascript (look no further than @mpj ’s Fun Fun Function excellent & fun (!) videos (thanks man!))
Lots of …
There are a few ‘how to start’ guides for working with Discourse already and a wealth of useful info on meta, but I thought it might help to give an insight to the mental processes of starting from little, if any, prior coding experience to building substantial Discourse plugins.
Discourse is written by experienced developers and has a large codebase. This can feel intimidating. This intimidation factor can be a significant barrier for novice developers. This is a kind of ‘psychological primer’…
Привет!
Вы можете использовать addPostMenuButton.
api.addPostMenuButton('coffee', () => {
return {
action: 'drinkCoffee',
icon: 'coffee',
className: 'hot-coffee',
title: 'coffee.title',
position: 'first' // может быть `first`, `last` или `second-last-hidden`
};
});
Затем вы можете добавить своё действие следующим образом:
api.attachWidgetAction("post", "drinkCoffee", function () {
//
}
РЕДАКТИРОВАНИЕ: Получил «Лиллиан» . Также было бы хорошей идеей ознакомиться с руководствами, которые опубликовала Лилли!
omppatil
(Om Patil)
28.Ноябрь.2023 12:53:27
4
Следовательно, какую файловую структуру следует реализовать и где должен быть размещен приведенный выше код?
Lilly
(Lillian )
28.Ноябрь.2023 13:26:19
5
Прочтение тем, на которые приведены ссылки выше, должно ответить на ваши вопросы по разработке. Возможно, вы сможете реализовать то, что хотите, с помощью компонента темы вместо плагина. Поэтому я также рекомендую добавить в ваш список для чтения следующие материалы:
This is a crash course in Discourse theme basics. The target audience is everyone who is not familiar with Discourse themes. If you’ve already used Discourse theme / theme components, this guide is probably not something you need to read.
What are themes and theme components?
A theme or theme component is a set of files packaged together designed to either modify Discourse visually or to add new features.
Let’s start with themes.
Themes
In general, themes are not supposed to be compatible …
Discourse Themes and Theme Components can be used to customize the look, feel and functionality of Discourse’s frontend. This section of the developer guides aims to provide all the reference materials you need to develop simple themes for a single site, right up to complex open-source theme components.
This introduction aims to provide a map of all the tools and APIs for theme development. If you prefer a step-by-step tutorial for theme development, jump straight to:
Themes vs. Theme Compon…
Кроме того, из первой ссылки, которую я привёл: