أيقونة Discourse

:discourse2: Summary Discourse Icon allows you to use icons from your SVG icon subset in a post.
:eyeglasses: Preview Preview on Discourse Theme Creator
:hammer_and_wrench: Repository Link https://github.com/discourse/discourse-icon
:open_book: New to Discourse Themes? Beginner’s guide to using Discourse Themes

Install this theme component

Features

Usage:

[wrap=icon id=square][/wrap]

Example:
This is the icon and the icon.

This is the [wrap=icon id=far-square][/wrap] icon and the [wrap=icon id=pencil][/wrap] icon.

Note: if the icon doesn’t show it’s because it’s not in your subset. If you are admin you can add it in your site settings: svg icon subset.


:discourse2: Hosted by us? Theme components are available to use on our Standard, Business, and Enterprise plans.

Last edited by @kelv 2025-04-28T07:23:04Z

Last checked by @Muhammed_EKİCİ 2024-12-02T09:46:54Z

Check documentPerform check on document:
31 إعجابًا

Awesome! This is iconic!

(meta has many many themes, but luckily thanks to @kris.kotlarek we have an add to all themes button… got to sort out progress there, cause it takes a while to do its magic)

13 إعجابًا

Yes didnt want to add to all for now, as I just finished coding it :grin: but will do now

Edit: oh already done

10 إعجابات

Thanks, that’s super fun! :sunglasses:

I never got into BB script tags, nor have I hand-coded FontAwesome, so the practice of using an empty tag pair has always seemed strange to me. Is that by popular convention, or is there a webcraft reason for using tag pairs? Also, can they have stuff between them, does that affect the text?

3 إعجابات

There are multiple causes here.

First when I wrote the wrap BBCode feature, @sam explicitly asked to me support 3 formats:

[wrap=foo][/wrap]
[wrap=foo]bar[/wrap]
[wrap=foo]
bar
[/wrap] 

This is done to be consistent with our existing BBCode usage in Discourse.

I could have a better syntax as: [icon=times] but then it would have to be a plugin and not a theme component.

As an experimentation, I think it’s fine as it is today, and if people were to use it a lot, we could think of having a plugin do this with a more concise syntax.

Another idea I have had is to add an API to add autocompletes symbol in the composer just like we have fore users/categories/emojis… But I’m afraid this would be a nightmare with multiple components choosing their own symbol…

5 إعجابات

Oh! I need to add support for another bbcode and those) thought that I’d use this as a starting point, but you’re saying that the wrap stuff is handled in core, which explains why I can’t find how it’s handled by your theme component.

My current solution is to use the linked words component and an ugly regex, but I’m still struggling to add the necessary classes to the links.

3 إعجابات

Yes read this topic to know more:

4 إعجابات

Right I’ve looked at it a dozen times. And printed out the code for your component and stared at it for hours, trying to understand if the degree to which it’s javascript or ember that I don’t understand. I can’t add a [foo] tag without a plugin? Or can I some how replace wrap in your code with foo to cover my new bbcode?

إعجاب واحد (1)

No you can’t. Because part of it is server side. If you want your own custom BBCode you will have to write a plugin and look at how wrap is implemented for example:

https://github.com/discourse/discourse/blob/master/app/assets/javascripts/pretty-text/engines/discourse-markdown/d-wrap.js.es6

5 إعجابات

Thanks! It’s starting to make sense. I’ve not had this much trouble learning a new language since C++ and objective Pascal in 1990.

My current regex hack almost works. I’ll need to decide whether to go the plugin route or stick with my hack (and figure out how to add the classes).

At least now I understand why I can’t find that wrap in the theme component!

3 إعجابات

I can think of a few possible syntax layouts to add to the wrap plugin for this:

[wrap=foo /]
[wrap/=foo]

(mimicing XML’s self-closing tags) but those are both fairly ugly :confused:

Anyone got amazing ideas for something that looks okay?

3 إعجابات

yeh not a big fan of these :confused:

6 إعجابات

لقد وجدت خطأً كبيراً…

إذا استخدمت غلاف أيقونة ثم قمت بتمييز الاقتباس، فإن الصورة الناتجة تتضخم بشكل كبير:

  • استخدم غلاف أيقونة في جملة في منشور. مثال: This is an icon [wrap=icon id=far-check-square][/wrap]
  • قم بتمييز النص ذي الصلة و"اقتبس".
  • الأيقونة تصبح كبيرة جداً في المقتطف المقتبس.

هذا ما تبدو عليه الصيغة عند اقتباسها:

[quote="JammyDodger, post:1, topic:294, full:true"]
This is an icon ![](/svg-sprite/grumpy.jammydodger.monster/icon/222222/far-check-square.svg)
[/quote]

This is a reply where it gets massive

على الرغم من أن اقتباسها باستخدام فقاعة الكلام في شريط التنسيق يعمل بشكل جيد.

4 إعجابات

كيف يمكنك تمييز الأيقونة باقتباس؟ في موقع الاختبار الخاص بي، يتم تخطي الأيقونة.

لست متأكدًا؟ أنا فقط أستخدم الماوس.

ما هو المتصفح الذي تستخدمه؟
باستخدام الماوس، اختبرت باستخدام Chrome و Firefox، ولم أتمكن من تحديد الأيقونة. :thinking:

تعديل:
إذا قمت بتضمين أيقونة غير متوفرة في المجموعة الفرعية الحالية، فسيؤدي ذلك إلى إنشاء صورة SVG بدلاً من ذلك.
بعد ذلك، يمكنك اقتباسها.

إعجاب واحد (1)

هل يمكنك تقديم مثال؟ تعرض لقطة الشاشة الخاصة بك علامة اختيار محددة ولا توجد لدي مشكلة في تحديدها في نسختي التجريبية (بالإضافة إلى أيقونات أخرى ربما لا يستخدمها Discourse مثل x-ray).

إعجاب واحد (1)

أرى المشكلة. يبحث المكون من خلال النظر فيما إذا كان هناك غلاف بفئة d-wrap؛ ولكن لا يوجد غلاف إذا لم يكن الرمز المقدم من المجموعة الفرعية. يقوم بإنشاء صورة كـ SVG بدلاً من ذلك.

على سبيل المثال:

SVG، رمز داخل المجموعة الفرعية

صورة كـ SVG، رمز ليس ضمن المجموعة الفرعية

إذا قمت باقتباس الصور، فلن يقوم المكون بأي شيء، حيث لا يوجد غلاف (ويتم تحويل الصورة إلى ترميز markdown مما ينتج عنه صورة بدون أي فئة)

إعجاب واحد (1)

هل هذا يعني أنني بحاجة إلى حقل svg_icons في settings.yml متاح في السمة الخاصة بي؟ أم يمكنني استخدام أي حقل svg_icons متاح من أي مكون سمة ممكّن أيضًا؟ وإذا كان الأمر كذلك، فهل سيكون إضافة هذا الحقل إلى مكون السمة هذا منطقيًا؟

svg_icons:
  default: ''
  type: 'list'
  list_type: 'compact'

لأنه في تجربتي، يتم تحويل أيقونات SVG إلى علامات <img>، ولا ترث currentColor عند تغيير مخطط الألوان:
قارن فقرة المثال:

إعجابَين (2)

هل يمكن تحسين العرض في الوضع المظلم؟

أود أن أحصل على نفس الألوان الموجودة في الواجهة:

3 إعجابات