eisen-dev/eisen_front

View on GitHub

Showing 2,746 of 2,746 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

jQuery(window).resize(function () {
jQuery('.list-data-cbox').bind('click',function(e){
e.stopPropagation();
});
// リサイズ対象の現在開かれているモーダル
Severity: Major
Found in webd/ts/async.ts and 1 other location - About 6 hrs to fix
webd/ts/script.ts on lines 74..87

Function format has 155 lines of code (exceeds 25 allowed). Consider refactoring.
Open

format: function(table, c, wo) {
// filter widget doesn't initialize on an empty table. Fixes #449
if ( c.$table.hasClass('hasStickyHeaders') || ($.inArray('filter', c.widgets) >= 0 && !c.$table.hasClass('hasFilters')) ) {
return;
}
Severity: Major
Found in webd/includes/tablesorter/jquery.tablesorter.widgets.js - About 6 hrs to fix

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function tasks_list($rest_host, $rest_port, $username, $password)
    {
    try {
    $uri = 'http://' . $rest_host . ':' . $rest_port . '/eisen/api/v1.0/tasks';
    $response = \Httpful\Request::get($uri)
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 121..146

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function recipe_list($rest_host, $rest_port, $username, $password)
    {
    try {
    $uri = 'http://' . $rest_host . ':' . $rest_port . '/eisen/api/v1.0/recipes';
    $response = \Httpful\Request::get($uri)
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 94..119

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function tasks_run($rest_host, $rest_port, $username, $password, $task_id)
    {
    try {
    $uri = 'http://' . $rest_host . ':' . $rest_port . '/eisen/api/v1.0/task/' . $task_id . '/run';
    $response = \Httpful\Request::get($uri)
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 203..227

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function recipe_run($rest_host, $rest_port, $username, $password, $task_id)
    {
    try {
    $uri = 'http://' . $rest_host . ':' . $rest_port . '/eisen/api/v1.0/recipe/' . $task_id . '/run';
    $response = \Httpful\Request::get($uri)
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 177..201

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function task_register(
    $rest_host,
    $rest_port,
    $username,
    $password,
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 380..415

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    public function recipe_register(
    $rest_host,
    $rest_port,
    $username,
    $password,
    Severity: Major
    Found in webd/includes/restclient.php and 1 other location - About 5 hrs to fix
    webd/includes/restclient.php on lines 332..367

    Method TableCreation has 136 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    public function TableCreation($dbh)
    {
     
    $this->CreateDbTable(
    'user_info',
    Severity: Major
    Found in webd/includes/DbAction.php - About 5 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      fail(f: (err: Rejection) => void ): Deferred<Value>
      {
      if (this.status === Status.Rejected) {
      f(this._error);
      return this;
      Severity: Major
      Found in webd/ts/libs/Promise.ts and 1 other location - About 4 hrs to fix
      webd/ts/libs/Promise.ts on lines 330..344

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      done(f: (v: Value) => void ): Deferred<Value>
      {
      if (this.status === Status.Resolved) {
      f(this._result);
      return this;
      Severity: Major
      Found in webd/ts/libs/Promise.ts and 1 other location - About 4 hrs to fix
      webd/ts/libs/Promise.ts on lines 346..360

      Function buildCache has 119 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      buildCache : function( c, callback, $tbodies ) {
      var cache, val, txt, rowIndex, colIndex, tbodyIndex, $tbody, $row,
      cols, $cells, cell, cacheTime, totalRows, rowData, prevRowData,
      colMax, span, cacheIndex, hasParser, max, len, index,
      table = c.table,
      Severity: Major
      Found in webd/includes/tablesorter/jquery.tablesorter.js - About 4 hrs to fix

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

        jQuery.ajax({
        type: "POST",
        url: "includes/search.php",
        data: data,
        dataType: "json",
        Severity: Major
        Found in webd/ts/async.ts and 1 other location - About 4 hrs to fix
        webd/ts/async.ts on lines 60..76

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

        jQuery.ajax({
        type: "POST",
        url: "includes/search.php",
        data: data,
        dataType: "json",
        Severity: Major
        Found in webd/ts/async.ts and 1 other location - About 4 hrs to fix
        webd/ts/async.ts on lines 35..51

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

        if ( dir < 2 ) {
        c.sortList.push( [ col, dir ] );
        // add other columns if header spans across multiple
        if ( cell.colSpan > 1 ) {
        for ( indx = 1; indx < cell.colSpan; indx++ ) {
        Severity: Major
        Found in webd/includes/tablesorter/jquery.tablesorter.js and 1 other location - About 4 hrs to fix
        webd/includes/tablesorter/jquery.tablesorter.js on lines 1508..1518

        Identical blocks of code found in 2 locations. Consider refactoring.
        Open

        if ( dir < 2 ) {
        c.sortList.push( [ col, dir ] );
        // add other columns if header spans across multiple
        if ( cell.colSpan > 1 ) {
        for ( indx = 1; indx < cell.colSpan; indx++ ) {
        Severity: Major
        Found in webd/includes/tablesorter/jquery.tablesorter.js and 1 other location - About 4 hrs to fix
        webd/includes/tablesorter/jquery.tablesorter.js on lines 1541..1551

        Function initSort has 111 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        initSort : function( c, cell, event ) {
        if ( c.table.isUpdating ) {
        // let any updates complete before initializing a sort
        return setTimeout( function(){
        ts.initSort( c, cell, event );
        Severity: Major
        Found in webd/includes/tablesorter/jquery.tablesorter.js - About 4 hrs to fix

          Function processRow has 105 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          processRow: function( c, data, vars ) {
          var result, filterMatched,
          fxn, ffxn, txt,
          wo = c.widgetOptions,
          showRow = true,
          Severity: Major
          Found in webd/includes/tablesorter/jquery.tablesorter.widgets.js - About 4 hrs to fix

            DbAction has 33 functions (exceeds 20 allowed). Consider refactoring.
            Open

            class DbAction
            {
            /**
            * @return Logger
            */
            Severity: Minor
            Found in webd/includes/DbAction.php - About 4 hrs to fix

              File index.php has 336 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              <?php
              /**
              * Eisen Frontend
              * http://eisen-dev.github.io
              *
              Severity: Minor
              Found in webd/index.php - About 4 hrs to fix
                Severity
                Category
                Status
                Source
                Language