I was wondering if it would be plausible (whether through CSS or a component) to have a dropdown in the mobile view that is similar to that in desktop - meaning showing categories as opposed to Latest, Top, etc.

I was wondering if it would be plausible (whether through CSS or a component) to have a dropdown in the mobile view that is similar to that in desktop - meaning showing categories as opposed to Latest, Top, etc.

I’m working on it, and have something almost finished, I just need to improve a part of our internal library to allow it. Should come rather soon.
That’s awesome!! Thanks @j.jaffeux 
FTR, it’s being worked on in this PR if you want to follow along
Did this end up being implemented?
No I didnt so far for mulitple reasons, we worked on double nesting categories support and reworked a lot of dropdowns internals.
Will update if we come up with a good solution.
Joffrey will that potentially include the tag picker too?
Yes possibly 
I’m confused, I’m waiting for this feature (category and tag dropdown in mobile view) but noticed that in my instance they’re already present on any category page, but nowhere else.
Is this the current behavior and I just missed it - or am I seeing it differently due to some plugin/TC? Is there currently any way of enabling this on the other pages?
That’s the behavior that has existed for a decent amount of time now… the category dropdowns appear on category topic lists, but not on /categories or aggregate pages like /latest /new /top.
It should be possible to get those dropdowns on those other pages in a theme today, but I don’t believe anyone’s tried it yet.
We’re still planning on doing this by default, but other features and customer work have taken priority.
هل هذا لا يزال مدرجًا في خارطة الطريق؟ من الصعب بناء تنقل متسق على الهاتف المحمول، خاصة وأن القائمة المنسدلة للعلامات متداخلة أيضًا مع القائمة المنسدلة للفئات وبالتالي تظهر فقط في قوائم الفئات.
على سبيل المثال، أنا في فئة وتظهر العلامة المحددة في القائمة المنسدلة للعلامات:
ولكن عندما ألغي تحديد الفئة، تظل العلامة محددة (ويمكنني النقر على أيقونة معلومات العلامة)، ولكن جميع القوائم المنسدلة مفقودة. هذا مربك للغاية:

أنا أبني منتدى يستخدم العلامات فقط للتنظيم. إنه يعمل بشكل رائع على سطح المكتب ولكن مع تجربة المستخدم الحالية على الهاتف المحمول، لا يمكنني سوى وضع رابط لصفحة العلامات في قائمة شريط التنقل. لكي تظهر القائمة المنسدلة للعلامات في جميع الصفحات، هل أحتاج إلى استبدال قالب الهاتف المحمول أم يمكن أن تكون هناك طريقة أبسط؟
إن تفكيرنا العام هنا هو مجرد إعادة بناء المجموعة بأكملها.
1 عنصر تحكم للعلامات / الفئات / المرشحات … كلها. بالتأكيد سيكون ملاءمة هذا على الهاتف المحمول تحديًا، ولكن عنصر التحكم “الضخم” يأتي مع العديد من المزايا.
لقد أخذت لقطة اليوم لجعلها مرئية دائمًا ويبدو أن هذا يعمل معي دون أي آثار جانبية لاحظتها:
api.modifyClass("component:bread-crumbs", {
pluginId: "never-hidden-bread-crumbs",
hidden: false,
});
hidden هو في الأصل:
@discourseComputed("category")
hidden(category) {
return this.site.mobileView && !category;
},
فضلت جعله مخفيًا في صفحة الفئات فقط.