Skip to content

Commit 2ceaa16

Browse files
authored
DEV: Update linting (#95)
1 parent 0d323c3 commit 2ceaa16

14 files changed

+1217
-665
lines changed

.eslintrc

-3
This file was deleted.

.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/eslint");

.prettierrc

-1
This file was deleted.

.prettierrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/prettier");

.template-lintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/template-lint");

.template-lintrc.js

-4
This file was deleted.

Gemfile.lock

+31-21
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,45 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
ast (2.4.2)
5-
json (2.6.2)
6-
parallel (1.22.1)
7-
parser (3.1.2.1)
5+
json (2.7.1)
6+
language_server-protocol (3.17.0.3)
7+
parallel (1.24.0)
8+
parser (3.3.0.4)
89
ast (~> 2.4.1)
9-
prettier_print (1.2.0)
10+
racc
11+
prettier_print (1.2.1)
12+
racc (1.7.3)
1013
rainbow (3.1.1)
11-
regexp_parser (2.6.0)
12-
rexml (3.2.5)
13-
rubocop (1.36.0)
14+
regexp_parser (2.9.0)
15+
rexml (3.2.6)
16+
rubocop (1.60.0)
1417
json (~> 2.3)
18+
language_server-protocol (>= 3.17.0)
1519
parallel (~> 1.10)
16-
parser (>= 3.1.2.1)
20+
parser (>= 3.3.0.2)
1721
rainbow (>= 2.2.2, < 4.0)
1822
regexp_parser (>= 1.8, < 3.0)
1923
rexml (>= 3.2.5, < 4.0)
20-
rubocop-ast (>= 1.20.1, < 2.0)
24+
rubocop-ast (>= 1.30.0, < 2.0)
2125
ruby-progressbar (~> 1.7)
22-
unicode-display_width (>= 1.4.0, < 3.0)
23-
rubocop-ast (1.21.0)
24-
parser (>= 3.1.1.0)
25-
rubocop-discourse (3.0)
26-
rubocop (>= 1.1.0)
27-
rubocop-rspec (>= 2.0.0)
28-
rubocop-rspec (2.13.2)
29-
rubocop (~> 1.33)
30-
ruby-progressbar (1.11.0)
31-
syntax_tree (5.1.0)
26+
unicode-display_width (>= 2.4.0, < 3.0)
27+
rubocop-ast (1.30.0)
28+
parser (>= 3.2.1.0)
29+
rubocop-capybara (2.20.0)
30+
rubocop (~> 1.41)
31+
rubocop-discourse (3.6.0)
32+
rubocop (>= 1.59.0)
33+
rubocop-rspec (>= 2.25.0)
34+
rubocop-factory_bot (2.25.1)
35+
rubocop (~> 1.41)
36+
rubocop-rspec (2.26.1)
37+
rubocop (~> 1.40)
38+
rubocop-capybara (~> 2.17)
39+
rubocop-factory_bot (~> 2.22)
40+
ruby-progressbar (1.13.0)
41+
syntax_tree (6.2.0)
3242
prettier_print (>= 1.2.0)
33-
unicode-display_width (2.3.0)
43+
unicode-display_width (2.5.0)
3444

3545
PLATFORMS
3646
ruby
@@ -40,4 +50,4 @@ DEPENDENCIES
4050
syntax_tree
4151

4252
BUNDLED WITH
43-
2.1.4
53+
2.5.4

assets/javascripts/discourse/api-initializers/intitialize-whos-online-indicators.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import discourseComputed, { observes } from "discourse-common/utils/decorators";
21
import { inject as service } from "@ember/service";
32
import { apiInitializer } from "discourse/lib/api";
3+
import discourseComputed, { observes } from "discourse-common/utils/decorators";
44

55
const PLUGIN_ID = "whos-online";
66

77
export default apiInitializer("0.8", (api) => {
8-
const siteSettings = api.container.lookup("site-settings:main");
8+
const siteSettings = api.container.lookup("service:site-settings");
99

1010
const indicatorType = siteSettings.whos_online_avatar_indicator;
1111
if (indicatorType === "none") {
@@ -26,6 +26,7 @@ export default apiInitializer("0.8", (api) => {
2626

2727
api.modifyClass("component:user-card-contents", {
2828
pluginId: PLUGIN_ID,
29+
2930
whosOnline: service(),
3031
classNameBindings: ["isOnline:user-online"],
3132

@@ -37,6 +38,7 @@ export default apiInitializer("0.8", (api) => {
3738

3839
api.modifyClass("route:user", {
3940
pluginId: PLUGIN_ID,
41+
4042
whosOnline: service(),
4143

4244
async afterModel(model) {
@@ -69,8 +71,10 @@ export default apiInitializer("0.8", (api) => {
6971
if (siteSettings.whos_online_avatar_indicator_topic_lists) {
7072
api.modifyClass("component:topic-list-item", {
7173
pluginId: PLUGIN_ID,
74+
7275
whosOnline: service(),
7376
classNameBindings: ["isOnline:last-poster-online"],
77+
7478
@discourseComputed(
7579
"topic.lastPoster.id",
7680
"topic.lastPosterUser.id",
@@ -83,8 +87,10 @@ export default apiInitializer("0.8", (api) => {
8387

8488
api.modifyClass("component:latest-topic-list-item", {
8589
pluginId: PLUGIN_ID,
90+
8691
whosOnline: service(),
8792
classNameBindings: ["isOnline:last-poster-online"],
93+
8894
@discourseComputed(
8995
"topic.lastPoster.id",
9096
"topic.lastPosterUser.id",
@@ -98,6 +104,7 @@ export default apiInitializer("0.8", (api) => {
98104

99105
api.modifyClass("component:scrolling-post-stream", {
100106
pluginId: PLUGIN_ID,
107+
101108
didInsertElement() {
102109
this._super();
103110
this.appEvents.on("whosonline:changed", this, this._whosOnlineCallback);

assets/javascripts/discourse/components/whos-online.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Component from "@ember/component";
2-
import { inject as service } from "@ember/service";
32
import { computed } from "@ember/object";
43
import { readOnly } from "@ember/object/computed";
4+
import { inject as service } from "@ember/service";
55

66
export default class WhosOnline extends Component {
77
@service whosOnline;

assets/javascripts/discourse/services/whos-online.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import Service, { inject as service } from "@ember/service";
2-
import Site from "discourse/models/site";
31
import { computed } from "@ember/object";
42
import { readOnly } from "@ember/object/computed";
3+
import Service, { inject as service } from "@ember/service";
4+
import Site from "discourse/models/site";
55

66
export default class WhosOnlineService extends Service {
77
@service presence;

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "discourse-whos-online",
3-
"version": "1.0.0",
4-
"repository": "[email protected]:discourse/discourse-whos-online.git",
5-
"author": "David Taylor",
6-
"license": "MIT",
3+
"private": true,
74
"devDependencies": {
8-
"eslint-config-discourse": "^2.0.0"
5+
"@discourse/lint-configs": "^1.3.5",
6+
"ember-template-lint": "^5.13.0",
7+
"eslint": "^8.56.0",
8+
"prettier": "^2.8.8"
99
}
1010
}

plugin.rb

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# version: 2.0
77
# authors: David Taylor
88
# url: https://github.com/discourse/discourse-whos-online
9-
# transpile_js: true
109

1110
enabled_site_setting :whos_online_enabled
1211

test/javascripts/acceptance/whos-online-test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1+
import { visit } from "@ember/test-helpers";
2+
import { test } from "qunit";
3+
import { joinChannel } from "discourse/tests/helpers/presence-pretender";
14
import {
25
acceptance,
36
count,
47
exists,
58
} from "discourse/tests/helpers/qunit-helpers";
6-
import { visit } from "@ember/test-helpers";
7-
import { test } from "qunit";
8-
import { joinChannel } from "discourse/tests/helpers/presence-pretender";
99

1010
acceptance("Discourse Whos Online", function (needs) {
1111
needs.user();

0 commit comments

Comments
 (0)