1
- import discourseComputed , { observes } from "discourse-common/utils/decorators" ;
2
1
import { inject as service } from "@ember/service" ;
3
2
import { apiInitializer } from "discourse/lib/api" ;
3
+ import discourseComputed , { observes } from "discourse-common/utils/decorators" ;
4
4
5
5
const PLUGIN_ID = "whos-online" ;
6
6
7
7
export default apiInitializer ( "0.8" , ( api ) => {
8
- const siteSettings = api . container . lookup ( "site-settings:main " ) ;
8
+ const siteSettings = api . container . lookup ( "service: site-settings" ) ;
9
9
10
10
const indicatorType = siteSettings . whos_online_avatar_indicator ;
11
11
if ( indicatorType === "none" ) {
@@ -26,6 +26,7 @@ export default apiInitializer("0.8", (api) => {
26
26
27
27
api . modifyClass ( "component:user-card-contents" , {
28
28
pluginId : PLUGIN_ID ,
29
+
29
30
whosOnline : service ( ) ,
30
31
classNameBindings : [ "isOnline:user-online" ] ,
31
32
@@ -37,6 +38,7 @@ export default apiInitializer("0.8", (api) => {
37
38
38
39
api . modifyClass ( "route:user" , {
39
40
pluginId : PLUGIN_ID ,
41
+
40
42
whosOnline : service ( ) ,
41
43
42
44
async afterModel ( model ) {
@@ -69,8 +71,10 @@ export default apiInitializer("0.8", (api) => {
69
71
if ( siteSettings . whos_online_avatar_indicator_topic_lists ) {
70
72
api . modifyClass ( "component:topic-list-item" , {
71
73
pluginId : PLUGIN_ID ,
74
+
72
75
whosOnline : service ( ) ,
73
76
classNameBindings : [ "isOnline:last-poster-online" ] ,
77
+
74
78
@discourseComputed (
75
79
"topic.lastPoster.id" ,
76
80
"topic.lastPosterUser.id" ,
@@ -83,8 +87,10 @@ export default apiInitializer("0.8", (api) => {
83
87
84
88
api . modifyClass ( "component:latest-topic-list-item" , {
85
89
pluginId : PLUGIN_ID ,
90
+
86
91
whosOnline : service ( ) ,
87
92
classNameBindings : [ "isOnline:last-poster-online" ] ,
93
+
88
94
@discourseComputed (
89
95
"topic.lastPoster.id" ,
90
96
"topic.lastPosterUser.id" ,
@@ -98,6 +104,7 @@ export default apiInitializer("0.8", (api) => {
98
104
99
105
api . modifyClass ( "component:scrolling-post-stream" , {
100
106
pluginId : PLUGIN_ID ,
107
+
101
108
didInsertElement ( ) {
102
109
this . _super ( ) ;
103
110
this . appEvents . on ( "whosonline:changed" , this , this . _whosOnlineCallback ) ;
0 commit comments