Enable eslint in star and remove from main.js
This commit is contained in:
parent
a6b33275c0
commit
696ffac0ec
2 changed files with 21 additions and 20 deletions
|
@ -116,7 +116,6 @@ import './right_sidebar';
|
|||
import './search';
|
||||
import './search_autocomplete';
|
||||
import './smart_interval';
|
||||
import './star';
|
||||
import './subscription';
|
||||
import './subscription_select';
|
||||
import initBreadcrumbs from './breadcrumb';
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-unused-vars, one-var, no-var, one-var-declaration-per-line, prefer-arrow-callback, no-new, max-len */
|
||||
import Flash from './flash';
|
||||
import { __, s__ } from './locale';
|
||||
|
||||
export default class Star {
|
||||
constructor() {
|
||||
$('.project-home-panel .toggle-star').on('ajax:success', function(e, data, status, xhr) {
|
||||
var $starIcon, $starSpan, $this, toggleStar;
|
||||
$this = $(this);
|
||||
$starSpan = $this.find('span');
|
||||
$starIcon = $this.find('i');
|
||||
toggleStar = function(isStarred) {
|
||||
$('.project-home-panel .toggle-star')
|
||||
.on('ajax:success', function handleSuccess(e, data) {
|
||||
const $this = $(this);
|
||||
const $starSpan = $this.find('span');
|
||||
const $starIcon = $this.find('i');
|
||||
|
||||
function toggleStar(isStarred) {
|
||||
$this.parent().find('.star-count').text(data.star_count);
|
||||
if (isStarred) {
|
||||
$starSpan.removeClass('starred').text(s__('StarProject|Star'));
|
||||
|
@ -18,10 +18,12 @@ export default class Star {
|
|||
$starSpan.addClass('starred').text(__('Unstar'));
|
||||
$starIcon.removeClass('fa-star-o').addClass('fa-star');
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
toggleStar($starSpan.hasClass('starred'));
|
||||
}).on('ajax:error', function(e, xhr, status, error) {
|
||||
new Flash('Star toggle failed. Try again later.', 'alert');
|
||||
})
|
||||
.on('ajax:error', () => {
|
||||
Flash('Star toggle failed. Try again later.', 'alert');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue