1
- import chalk from 'chalk' ;
2
1
import deburr from 'lodash.deburr' ;
3
2
import { Option } from '../enums/option' ;
4
3
import { wordsToList } from '../functions/words-to-list' ;
5
4
import { IAssignee } from '../interfaces/assignee' ;
6
5
import { IIssuesProcessorOptions } from '../interfaces/issues-processor-options' ;
7
6
import { Issue } from './issue' ;
8
7
import { IssueLogger } from './loggers/issue-logger' ;
8
+ import { LoggerService } from '../services/logger.service' ;
9
9
10
10
type CleanAssignee = string ;
11
11
@@ -34,7 +34,7 @@ export class Assignees {
34
34
35
35
if ( this . _shouldExemptAllAssignees ( ) ) {
36
36
this . _issueLogger . info (
37
- chalk . white ( '└──' ) ,
37
+ LoggerService . white ( '└──' ) ,
38
38
'Skipping this $$type because it has an exempt assignee'
39
39
) ;
40
40
@@ -45,7 +45,7 @@ export class Assignees {
45
45
46
46
if ( exemptAssignees . length === 0 ) {
47
47
this . _issueLogger . info (
48
- chalk . white ( '├──' ) ,
48
+ LoggerService . white ( '├──' ) ,
49
49
`No assignee option was specified to skip the stale process for this $$type`
50
50
) ;
51
51
this . _logSkip ( ) ;
@@ -54,8 +54,8 @@ export class Assignees {
54
54
}
55
55
56
56
this . _issueLogger . info (
57
- chalk . white ( '├──' ) ,
58
- `Found ${ chalk . cyan ( exemptAssignees . length ) } assignee${
57
+ LoggerService . white ( '├──' ) ,
58
+ `Found ${ LoggerService . cyan ( exemptAssignees . length ) } assignee${
59
59
exemptAssignees . length > 1 ? 's' : ''
60
60
} that can exempt stale on this $$type`
61
61
) ;
@@ -67,13 +67,13 @@ export class Assignees {
67
67
68
68
if ( ! hasExemptAssignee ) {
69
69
this . _issueLogger . info (
70
- chalk . white ( '├──' ) ,
70
+ LoggerService . white ( '├──' ) ,
71
71
'No assignee on this $$type can exempt the stale process'
72
72
) ;
73
73
this . _logSkip ( ) ;
74
74
} else {
75
75
this . _issueLogger . info (
76
- chalk . white ( '└──' ) ,
76
+ LoggerService . white ( '└──' ) ,
77
77
'Skipping this $$type because it has an exempt assignee'
78
78
) ;
79
79
}
@@ -90,15 +90,15 @@ export class Assignees {
90
90
private _getExemptIssueAssignees ( ) : string [ ] {
91
91
if ( this . _options . exemptIssueAssignees === '' ) {
92
92
this . _issueLogger . info (
93
- chalk . white ( '├──' ) ,
93
+ LoggerService . white ( '├──' ) ,
94
94
`The option ${ this . _issueLogger . createOptionLink (
95
95
Option . ExemptIssueAssignees
96
96
) } is disabled. No specific assignee can skip the stale process for this $$type`
97
97
) ;
98
98
99
99
if ( this . _options . exemptAssignees === '' ) {
100
100
this . _issueLogger . info (
101
- chalk . white ( '├──' ) ,
101
+ LoggerService . white ( '├──' ) ,
102
102
`The option ${ this . _issueLogger . createOptionLink (
103
103
Option . ExemptAssignees
104
104
) } is disabled. No specific assignee can skip the stale process for this $$type`
@@ -112,10 +112,10 @@ export class Assignees {
112
112
) ;
113
113
114
114
this . _issueLogger . info (
115
- chalk . white ( '├──' ) ,
115
+ LoggerService . white ( '├──' ) ,
116
116
`The option ${ this . _issueLogger . createOptionLink (
117
117
Option . ExemptAssignees
118
- ) } is set. ${ chalk . cyan ( exemptAssignees . length ) } assignee${
118
+ ) } is set. ${ LoggerService . cyan ( exemptAssignees . length ) } assignee${
119
119
exemptAssignees . length === 1 ? '' : 's'
120
120
} can skip the stale process for this $$type`
121
121
) ;
@@ -128,10 +128,10 @@ export class Assignees {
128
128
) ;
129
129
130
130
this . _issueLogger . info (
131
- chalk . white ( '├──' ) ,
131
+ LoggerService . white ( '├──' ) ,
132
132
`The option ${ this . _issueLogger . createOptionLink (
133
133
Option . ExemptIssueAssignees
134
- ) } is set. ${ chalk . cyan ( exemptAssignees . length ) } assignee${
134
+ ) } is set. ${ LoggerService . cyan ( exemptAssignees . length ) } assignee${
135
135
exemptAssignees . length === 1 ? '' : 's'
136
136
} can skip the stale process for this $$type`
137
137
) ;
@@ -142,15 +142,15 @@ export class Assignees {
142
142
private _getExemptPullRequestAssignees ( ) : string [ ] {
143
143
if ( this . _options . exemptPrAssignees === '' ) {
144
144
this . _issueLogger . info (
145
- chalk . white ( '├──' ) ,
145
+ LoggerService . white ( '├──' ) ,
146
146
`The option ${ this . _issueLogger . createOptionLink (
147
147
Option . ExemptPrAssignees
148
148
) } is disabled. No specific assignee can skip the stale process for this $$type`
149
149
) ;
150
150
151
151
if ( this . _options . exemptAssignees === '' ) {
152
152
this . _issueLogger . info (
153
- chalk . white ( '├──' ) ,
153
+ LoggerService . white ( '├──' ) ,
154
154
`The option ${ this . _issueLogger . createOptionLink (
155
155
Option . ExemptAssignees
156
156
) } is disabled. No specific assignee can skip the stale process for this $$type`
@@ -164,10 +164,10 @@ export class Assignees {
164
164
) ;
165
165
166
166
this . _issueLogger . info (
167
- chalk . white ( '├──' ) ,
167
+ LoggerService . white ( '├──' ) ,
168
168
`The option ${ this . _issueLogger . createOptionLink (
169
169
Option . ExemptAssignees
170
- ) } is set. ${ chalk . cyan ( exemptAssignees . length ) } assignee${
170
+ ) } is set. ${ LoggerService . cyan ( exemptAssignees . length ) } assignee${
171
171
exemptAssignees . length === 1 ? '' : 's'
172
172
} can skip the stale process for this $$type`
173
173
) ;
@@ -180,10 +180,10 @@ export class Assignees {
180
180
) ;
181
181
182
182
this . _issueLogger . info (
183
- chalk . white ( '├──' ) ,
183
+ LoggerService . white ( '├──' ) ,
184
184
`The option ${ this . _issueLogger . createOptionLink (
185
185
Option . ExemptPrAssignees
186
- ) } is set. ${ chalk . cyan ( exemptAssignees . length ) } assignee${
186
+ ) } is set. ${ LoggerService . cyan ( exemptAssignees . length ) } assignee${
187
187
exemptAssignees . length === 1 ? '' : 's'
188
188
} can skip the stale process for this $$type`
189
189
) ;
@@ -201,7 +201,7 @@ export class Assignees {
201
201
202
202
if ( isSameAssignee ) {
203
203
this . _issueLogger . info (
204
- chalk . white ( '├──' ) ,
204
+ LoggerService . white ( '├──' ) ,
205
205
`@${ issueAssignee . login } is assigned on this $$type and is an exempt assignee`
206
206
) ;
207
207
}
@@ -282,6 +282,9 @@ export class Assignees {
282
282
}
283
283
284
284
private _logSkip ( ) : void {
285
- this . _issueLogger . info ( chalk . white ( '└──' ) , 'Skip the assignees checks' ) ;
285
+ this . _issueLogger . info (
286
+ LoggerService . white ( '└──' ) ,
287
+ 'Skip the assignees checks'
288
+ ) ;
286
289
}
287
290
}
0 commit comments