vorteil/direktiv

View on GitHub

Showing 425 of 1,264 total issues

Avoid too many return statements within this function.
Open

  return (
    <>
      <div className="border-b border-gray-5 bg-gray-1 p-5 dark:border-gray-dark-5 dark:bg-gray-dark-1">
        <div className="flex flex-col gap-5 max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
          <h3 className="flex items-center gap-x-2 font-bold text-primary-500">
Severity: Major
Found in ui/src/pages/namespace/Explorer/Consumer/index.tsx - About 30 mins to fix

    Avoid too many return statements within this function.
    Open

      return (
        <>
          <div className="space-y-5 border-b border-gray-5 bg-gray-1 p-5 pb-0 dark:border-gray-dark-5 dark:bg-gray-dark-1">
            <div className="flex flex-col max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
              <h3
    Severity: Major
    Found in ui/src/pages/namespace/Explorer/Workflow/index.tsx - About 30 mins to fix

      Avoid too many return statements within this function.
      Open

          return new editorWorker();
      Severity: Major
      Found in ui/src/design/Editor/index.tsx - About 30 mins to fix

        Avoid too many return statements within this function.
        Open

          return (
            <>
              <div className="border-b border-gray-5 bg-gray-1 p-5 dark:border-gray-dark-5 dark:bg-gray-dark-1">
                <div className="flex flex-col gap-5 max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
                  <h3 className="flex items-center gap-x-2 font-bold text-primary-500">
        Severity: Major
        Found in ui/src/pages/namespace/Explorer/Service/index.tsx - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

            return (
              <>
                <Header mirror={mirror} loading={!!pendingSyncs.length} />
                <PaginationProvider items={syncs} pageSize={pageSize}>
                  {({
          Severity: Major
          Found in ui/src/pages/namespace/Mirror/Detail/index.tsx - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

              if (!isRouteListFetched) return null;
            Severity: Major
            Found in ui/src/pages/namespace/Explorer/Endpoint/index.tsx - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                return (
                  <>
                    <div className="border-b border-gray-5 bg-gray-1 p-5 dark:border-gray-dark-5 dark:bg-gray-dark-1">
                      <div className="flex flex-col gap-5 max-sm:space-y-4 sm:flex-row sm:items-center sm:justify-between">
                        <h3 className="flex items-center gap-x-2 font-bold text-primary-500">
              Severity: Major
              Found in ui/src/pages/namespace/Explorer/Endpoint/index.tsx - About 30 mins to fix

                Method JSOutboundPlugin.Execute has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                Open

                func (js *JSOutboundPlugin) Execute(w http.ResponseWriter, r *http.Request) *http.Request {
                    var (
                        err error
                        b   []byte
                    )
                Severity: Minor
                Found in pkg/gateway/plugins/outbound/js_outbound.go - About 25 mins to fix

                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 eventsAndLogic.Run has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                Open

                func (logic *eventsAndLogic) Run(ctx context.Context, wakedata []byte) (*Transition, error) {
                    first, err := scheduleTwice(logic, wakedata)
                    if err != nil {
                        return nil, err
                    }
                Severity: Minor
                Found in pkg/flow/states/eventsAnd.go - About 25 mins to fix

                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 truth has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                Open

                func truth(x interface{}) bool {
                    var success bool
                
                    if x != nil { //nolint:nestif
                        switch v := x.(type) {
                Severity: Minor
                Found in pkg/flow/states/helpers.go - About 25 mins to fix

                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 JSInboundPlugin.Execute has a Cognitive Complexity of 21 (exceeds 20 allowed). Consider refactoring.
                Open

                func (js *JSInboundPlugin) Execute(w http.ResponseWriter, r *http.Request) *http.Request {
                    var (
                        err error
                        b   []byte
                    )
                Severity: Minor
                Found in pkg/gateway/plugins/inbound/js-inbound.go - About 25 mins to fix

                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 useSync has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export const useSync = ({
                  onSuccess,
                }: {
                  onSuccess?: (data: SyncResponseSchemaType) => void;
                } = {}) => {
                Severity: Minor
                Found in ui/src/api/syncs/mutate/sync.ts - About 25 mins to fix

                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 AuthPluginForm has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export const AuthPluginForm: FC<AuthPluginFormProps> = ({
                  formControls,
                  onSave,
                }) => {
                  const { t } = useTranslation();

                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 NewWorkflow has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                const NewWorkflow = ({
                  path,
                  close,
                  unallowedNames,
                }: {

                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 ListenersList has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                const ListenersList = () => {
                  const [offset, setOffset] = useState(0);
                  const { data, isFetched, isAllowed, noPermissionMessage } = useEventListeners(
                    { limit: pageSize, offset }
                  );
                Severity: Minor
                Found in ui/src/pages/namespace/Events/Listeners/index.tsx - About 25 mins to fix

                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 WorkflowDiagram has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export default function WorkflowDiagram(props: WorkflowDiagramProps) {
                  const {
                    workflow,
                    flow = [],
                    instanceStatus = "pending",
                Severity: Minor
                Found in ui/src/design/WorkflowDiagram/index.tsx - About 25 mins to fix

                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 State has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export const State: FC<StateProps> = ({ data }) => {
                  const { label, type, wasExecuted, orientation } = data;
                  return (
                    <Card
                      className={twMergeClsx(
                Severity: Minor
                Found in ui/src/design/WorkflowDiagram/nodes.tsx - About 25 mins to fix

                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 getWorker has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  getWorker(_, label) {
                    if (label === "json") {
                      return new jsonWorker();
                    }
                    if (label === "css" || label === "scss" || label === "less") {
                Severity: Minor
                Found in ui/src/design/Editor/index.tsx - About 25 mins to fix

                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 useStreaming has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export const useStreaming = <T>({
                  url,
                  apiKey,
                  enabled,
                  schema,
                Severity: Minor
                Found in ui/src/api/streaming.ts - About 25 mins to fix

                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 useCreateVar has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                export const useCreateVar = ({
                  onSuccess,
                }: {
                  onSuccess?: () => void;
                } = {}) => {
                Severity: Minor
                Found in ui/src/api/variables/mutate/create.ts - About 25 mins to fix

                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

                Severity
                Category
                Status
                Source
                Language