weexteam/weex_devtools_android

View on GitHub

Showing 472 of 2,519 total issues

Method sendRequest has 45 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    @Override
    public void sendRequest(WXRequest request, final OnHttpListener listener) {
        OkHttpClient httpClient = new OkHttpClient();
        httpClient.setConnectTimeout(request.timeoutMs, TimeUnit.MILLISECONDS);
        httpClient.setReadTimeout(request.timeoutMs, TimeUnit.MILLISECONDS);

    Method sendRequest has 45 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        @Override
        public void sendRequest(final WXRequest request, final OnHttpListener listener) {
            OkHttpClient client = new OkHttpClient.Builder()
                    .addNetworkInterceptor(new WeexOkhttp3Interceptor())
                    .connectTimeout(request.timeoutMs, TimeUnit.MILLISECONDS)

      Function 0 has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      /***/ function(module, exports, __webpack_require__) {
      
          ;__weex_define__("@weex-component/04ff08101087ed57bb9c0e3a77fc1809", [], function(__weex_require__, __weex_exports__, __weex_module__){
          __webpack_require__(14);
      
      
      Severity: Minor
      Found in playground/app/src/main/assets/component/slider/slider-page.js - About 1 hr to fix

        Method setImage has 44 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          @Override
          public void setImage(final String url, final ImageView view,
                               WXImageQuality quality, final WXImageStrategy strategy) {
        
            WXSDKManager.getInstance().postOnUiThread(new Runnable() {

          Function 0 has 44 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          /***/ function(module, exports, __webpack_require__) {
          
              ;__weex_define__("@weex-component/8e6cff2d0487efb24411ddaeb27766c3", [], function(__weex_require__, __weex_exports__, __weex_module__){
          
              ;
          Severity: Minor
          Found in playground/app/src/main/assets/syntax/script-component.js - About 1 hr to fix

            Method testTextStyleRow has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                public void testTextStyleRow(){
            
                    for(final View caseView : mCaseListIndexView){
                       if (((WXTextView)caseView).getText().toString().equals("TC_Text")){
                           Log.e(TAG, "TC_Text find");

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method flush has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

              public void flush() throws IOException {
                //Log.i("PackageManager", "flush mPos=" + mPos);
                if (mPos > 0) {
                  if (mOutputStream != null) {
                    CharBuffer charBuffer = CharBuffer.wrap(mText, 0, mPos);

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method testTextStyleColumn has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                public void testTextStyleColumn(){
            
                    for(final View caseView : mCaseListIndexView){
                        String caseViewText = new String("");
                        caseViewText = ((WXTextView)caseView).getText().toString();

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method execJSWithResult has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
            Open

                @Override
                public byte[] execJSWithResult(String instanceId, String namespace, String function, WXJSObject[] args) {
            
                    String result = "";
            
            

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method syncCall has 42 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                @ChromeDevtoolsMethod
                public SyncCallResponse syncCall(JsonRpcPeer peer, JSONObject params) {
                    WXLogUtils.e("WxDebug-new >>>> syncCall=" + params);
                    SyncCallResponse response = new SyncCallResponse();
                    int syncId = params.optInt("syncId");

              Method getValueForField has 40 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                private Object getValueForField(Field field, Object value)
                    throws JSONException {
                  try {
                    if (value != null) {
                      if (value == JSONObject.NULL) {

                Method _convertToJSONObject has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                  private JSONObject _convertToJSONObject(Object fromValue)
                      throws JSONException, InvocationTargetException, IllegalAccessException {
                    JSONObject jsonObject = new JSONObject();
                
                    if(fromValue instanceof Map) {

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method setElementParent has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                    private void setElementParent(Object element, Object parentElement) {
                      ElementInfo changesElementInfo = mElementToInfoChangesMap.get(element);
                      if (changesElementInfo != null &&
                          parentElement == changesElementInfo.parentElement) {
                        return;

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method onBindViewHolder has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                    @Override
                    public void onBindViewHolder(final ItemHolder holder, int position) {
                      final WXTracing.TraceEvent event = rootEvent.subEvents.valueAt(position);
                      holder.itemView.setOnClickListener(new View.OnClickListener() {
                        @Override

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                /***/ function(module, exports) {
                
                    ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                
                    ;
                Severity: Minor
                Found in playground/app/src/main/assets/showcase/new-fashion/goods.js - About 1 hr to fix

                  Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  /***/ function(module, exports) {
                  
                      ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                  
                      ;
                  Severity: Minor
                  Found in playground/app/src/main/assets/showcase/new-fashion/match.js - About 1 hr to fix

                    Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    /***/ function(module, exports) {
                    
                        ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                    
                        ;
                    Severity: Minor
                    Found in playground/app/src/main/assets/showcase/new-fashion/brand.js - About 1 hr to fix

                      Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      /***/ function(module, exports) {
                      
                          ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                      
                          ;
                      Severity: Minor
                      Found in playground/app/src/main/assets/showcase/new-fashion/headlines.js - About 1 hr to fix

                        Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        /***/ function(module, exports) {
                        
                            ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                        
                            ;
                        Severity: Minor
                        Found in playground/app/src/main/assets/showcase/new-fashion/resource.js - About 1 hr to fix

                          Function 18 has 39 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          /***/ function(module, exports) {
                          
                              ;__weex_define__("@weex-component/banner", [], function(__weex_require__, __weex_exports__, __weex_module__){
                          
                              ;
                          Severity: Minor
                          Found in playground/app/src/main/assets/showcase/new-fashion/fashion.js - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language