mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FEATURE: Add experimental plugin API to register messages nav dropdown (#19294)
This commit also removes the `user-messages-nav` plugin outlet without deprecation in the redesigned user page navigation.
This commit is contained in:
parent
425bebb337
commit
02f48414b8
app/assets/javascripts/discourse
app
tests/acceptance
@ -2,11 +2,27 @@ import Controller, { inject as controller } from "@ember/controller";
|
|||||||
import { action, computed } from "@ember/object";
|
import { action, computed } from "@ember/object";
|
||||||
import { inject as service } from "@ember/service";
|
import { inject as service } from "@ember/service";
|
||||||
import { alias, and, equal, readOnly } from "@ember/object/computed";
|
import { alias, and, equal, readOnly } from "@ember/object/computed";
|
||||||
import { tracked } from "@glimmer/tracking";
|
import { cached, tracked } from "@glimmer/tracking";
|
||||||
import I18n from "I18n";
|
import I18n from "I18n";
|
||||||
import DiscourseURL from "discourse/lib/url";
|
import DiscourseURL from "discourse/lib/url";
|
||||||
|
|
||||||
export const PERSONAL_INBOX = "__personal_inbox__";
|
const customUserNavMessagesDropdownRows = [];
|
||||||
|
|
||||||
|
export function registerCustomUserNavMessagesDropdownRow(
|
||||||
|
routeName,
|
||||||
|
name,
|
||||||
|
icon
|
||||||
|
) {
|
||||||
|
customUserNavMessagesDropdownRows.push({
|
||||||
|
routeName,
|
||||||
|
name,
|
||||||
|
icon,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export function resetCustomUserNavMessagesDropdownRows() {
|
||||||
|
customUserNavMessagesDropdownRows.length = 0;
|
||||||
|
}
|
||||||
|
|
||||||
export default class extends Controller {
|
export default class extends Controller {
|
||||||
@service router;
|
@service router;
|
||||||
@ -25,19 +41,21 @@ export default class extends Controller {
|
|||||||
@readOnly("site.can_tag_pms") pmTaggingEnabled;
|
@readOnly("site.can_tag_pms") pmTaggingEnabled;
|
||||||
|
|
||||||
get messagesDropdownValue() {
|
get messagesDropdownValue() {
|
||||||
const parentRoute = this.router.currentRoute.parent;
|
let value;
|
||||||
|
|
||||||
if (Object.keys(parentRoute.params).length > 0) {
|
for (let i = this.messagesDropdownContent.length - 1; i >= 0; i--) {
|
||||||
return this.router.urlFor(
|
const row = this.messagesDropdownContent[i];
|
||||||
parentRoute.name,
|
|
||||||
this.model.username,
|
if (this.router.currentURL.includes(row.id)) {
|
||||||
parentRoute.params
|
value = row.id;
|
||||||
);
|
break;
|
||||||
} else {
|
}
|
||||||
return this.router.urlFor(parentRoute.name, this.model.username);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@cached
|
||||||
get messagesDropdownContent() {
|
get messagesDropdownContent() {
|
||||||
const content = [
|
const content = [
|
||||||
{
|
{
|
||||||
@ -66,6 +84,14 @@ export default class extends Controller {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customUserNavMessagesDropdownRows.forEach((row) => {
|
||||||
|
content.push({
|
||||||
|
id: this.router.urlFor(row.routeName, this.model.username),
|
||||||
|
name: row.name,
|
||||||
|
icon: row.icon,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
return content;
|
return content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,6 +107,7 @@ import DiscourseURL from "discourse/lib/url";
|
|||||||
import { registerNotificationTypeRenderer } from "discourse/lib/notification-types-manager";
|
import { registerNotificationTypeRenderer } from "discourse/lib/notification-types-manager";
|
||||||
import { registerUserMenuTab } from "discourse/lib/user-menu/tab";
|
import { registerUserMenuTab } from "discourse/lib/user-menu/tab";
|
||||||
import { registerModelTransformer } from "discourse/lib/model-transformers";
|
import { registerModelTransformer } from "discourse/lib/model-transformers";
|
||||||
|
import { registerCustomUserNavMessagesDropdownRow } from "discourse/controllers/user-private-messages";
|
||||||
|
|
||||||
// If you add any methods to the API ensure you bump up the version number
|
// If you add any methods to the API ensure you bump up the version number
|
||||||
// based on Semantic Versioning 2.0.0. Please update the changelog at
|
// based on Semantic Versioning 2.0.0. Please update the changelog at
|
||||||
@ -2018,6 +2019,19 @@ class PluginApi {
|
|||||||
registerModelTransformer(modelName, transformer) {
|
registerModelTransformer(modelName, transformer) {
|
||||||
registerModelTransformer(modelName, transformer);
|
registerModelTransformer(modelName, transformer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EXPERIMENTAL. Do not use.
|
||||||
|
* Adds a row to the dropdown used on the `userPrivateMessages` route used to navigate between the different user
|
||||||
|
* messages pages.
|
||||||
|
*
|
||||||
|
* @param {string} routeName The Ember route name to transition to when the row is selected in the dropdown
|
||||||
|
* @param {string} name The text displayed to represent the row in the dropdown
|
||||||
|
* @param {string} [icon] The name of the icon that will be used when displaying the row in the dropdown
|
||||||
|
*/
|
||||||
|
addUserMessagesNavigationDropdownRow(routeName, name, icon) {
|
||||||
|
registerCustomUserNavMessagesDropdownRow(routeName, name, icon);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// from http://stackoverflow.com/questions/6832596/how-to-compare-software-version-number-using-js-only-number
|
// from http://stackoverflow.com/questions/6832596/how-to-compare-software-version-number-using-js-only-number
|
||||||
|
@ -39,8 +39,6 @@
|
|||||||
<span>{{i18n "user.messages.archive"}}</span>
|
<span>{{i18n "user.messages.archive"}}</span>
|
||||||
</LinkTo>
|
</LinkTo>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<PluginOutlet @name="user-messages-nav" @connectorTagName="li" @args={{hash model=this.model}} />
|
|
||||||
</UserNav::MessagesSecondaryNav>
|
</UserNav::MessagesSecondaryNav>
|
||||||
|
|
||||||
{{outlet}}
|
{{outlet}}
|
||||||
|
@ -17,6 +17,8 @@ import {
|
|||||||
resetHighestReadCache,
|
resetHighestReadCache,
|
||||||
setHighestReadCache,
|
setHighestReadCache,
|
||||||
} from "discourse/lib/topic-list-tracker";
|
} from "discourse/lib/topic-list-tracker";
|
||||||
|
import { withPluginApi } from "discourse/lib/plugin-api";
|
||||||
|
import { resetCustomUserNavMessagesDropdownRows } from "discourse/controllers/user-private-messages";
|
||||||
|
|
||||||
acceptance(
|
acceptance(
|
||||||
"User Private Messages - user with no group messages",
|
"User Private Messages - user with no group messages",
|
||||||
@ -753,6 +755,30 @@ function testUserPrivateMessagesWithGroupMessages(needs, customUserProps) {
|
|||||||
"All tags is still selected in dropdown"
|
"All tags is still selected in dropdown"
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("addUserMessagesNavigationDropdownRow plugin api", async function (assert) {
|
||||||
|
try {
|
||||||
|
withPluginApi("1.5.0", (api) => {
|
||||||
|
api.addUserMessagesNavigationDropdownRow(
|
||||||
|
"preferences",
|
||||||
|
"test nav",
|
||||||
|
"arrow-left"
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
await visit("/u/eviltrout/messages");
|
||||||
|
|
||||||
|
const messagesDropdown = selectKit(".user-nav-messages-dropdown");
|
||||||
|
await messagesDropdown.expand();
|
||||||
|
|
||||||
|
const row = messagesDropdown.rowByName("test nav");
|
||||||
|
|
||||||
|
assert.strictEqual(row.value(), "/u/eviltrout/preferences");
|
||||||
|
assert.ok(row.icon().classList.contains("d-icon-arrow-left"));
|
||||||
|
} finally {
|
||||||
|
resetCustomUserNavMessagesDropdownRows();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user