summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushalspandya@gmail.com>2019-06-14 04:05:58 +0000
committerKushal Pandya <kushalspandya@gmail.com>2019-06-14 04:05:58 +0000
commitf35d3a241caab4c4b926d1ad6fee64ad1bdf8625 (patch)
tree4e14e47833b3e893b6eb25cbc681a0997b24158c
parent6dc4bc44b0e07666513fb7e93f04b1343fe984d6 (diff)
parent1e9fd7ad77a3460868b9d6e2582a2ca648853ca6 (diff)
downloadgitlab-ce-f35d3a241caab4c4b926d1ad6fee64ad1bdf8625.tar.gz
Merge branch 'fix-static-analysis-visual_review_toolbar' into 'master'
Exclude preexisting lint issues for i18n Closes #63223 See merge request gitlab-org/gitlab-ce!29649
-rw-r--r--app/assets/javascripts/visual_review_toolbar/components/comment.js5
-rw-r--r--app/assets/javascripts/visual_review_toolbar/components/login.js1
-rw-r--r--app/assets/javascripts/visual_review_toolbar/components/utils.js1
-rw-r--r--app/assets/javascripts/visual_review_toolbar/store/state.js1
4 files changed, 8 insertions, 0 deletions
diff --git a/app/assets/javascripts/visual_review_toolbar/components/comment.js b/app/assets/javascripts/visual_review_toolbar/components/comment.js
index 3ad99732c4c..2fec96d1435 100644
--- a/app/assets/javascripts/visual_review_toolbar/components/comment.js
+++ b/app/assets/javascripts/visual_review_toolbar/components/comment.js
@@ -18,6 +18,7 @@ const resetCommentBox = () => {
const commentBox = selectCommentBox();
const commentButton = selectCommentButton();
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
commentButton.innerText = 'Send feedback';
commentButton.classList.replace('gitlab-button-secondary', 'gitlab-button-success');
commentButton.style.opacity = 1;
@@ -43,7 +44,9 @@ const confirmAndClear = mergeRequestId => {
const commentButton = selectCommentButton();
const currentNote = selectNote();
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
commentButton.innerText = 'Feedback sent';
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
currentNote.innerText = `Your comment was successfully posted to merge request #${mergeRequestId}`;
setTimeout(resetComment, 2000);
};
@@ -52,6 +55,7 @@ const setInProgressState = () => {
const commentButton = selectCommentButton();
const commentBox = selectCommentBox();
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
commentButton.innerText = 'Sending feedback';
commentButton.classList.replace('gitlab-button-success', 'gitlab-button-secondary');
commentButton.style.opacity = 0.5;
@@ -79,6 +83,7 @@ const postComment = ({
const commentText = selectCommentBox().value.trim();
if (!commentText) {
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
postError('Your comment appears to be empty.', COMMENT_BOX);
resetCommentBox();
return;
diff --git a/app/assets/javascripts/visual_review_toolbar/components/login.js b/app/assets/javascripts/visual_review_toolbar/components/login.js
index a2fb905aca7..ce713cdc520 100644
--- a/app/assets/javascripts/visual_review_toolbar/components/login.js
+++ b/app/assets/javascripts/visual_review_toolbar/components/login.js
@@ -40,6 +40,7 @@ const authorizeUser = state => {
const token = selectToken().value;
if (!token) {
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
postError('Please enter your token.', TOKEN_BOX);
return;
}
diff --git a/app/assets/javascripts/visual_review_toolbar/components/utils.js b/app/assets/javascripts/visual_review_toolbar/components/utils.js
index 5938441cd8c..7bc2e5a905b 100644
--- a/app/assets/javascripts/visual_review_toolbar/components/utils.js
+++ b/app/assets/javascripts/visual_review_toolbar/components/utils.js
@@ -12,6 +12,7 @@ import {
} from './constants';
// this style must be applied inline in a handful of components
+/* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
const buttonClearStyles = `
-webkit-appearance: none;
`;
diff --git a/app/assets/javascripts/visual_review_toolbar/store/state.js b/app/assets/javascripts/visual_review_toolbar/store/state.js
index b4e239a9586..f5ede6e85b2 100644
--- a/app/assets/javascripts/visual_review_toolbar/store/state.js
+++ b/app/assets/javascripts/visual_review_toolbar/store/state.js
@@ -15,6 +15,7 @@ const state = {
// adapted from https://developer.mozilla.org/en-US/docs/Web/API/Window/navigator#Example_2_Browser_detect_and_return_an_index
const getBrowserId = sUsrAg => {
+ /* eslint-disable-next-line @gitlab/i18n/no-non-i18n-strings */
const aKeys = ['MSIE', 'Edge', 'Firefox', 'Safari', 'Chrome', 'Opera'];
let nIdx = aKeys.length - 1;