Commit f1960512 authored by joseph izang's avatar joseph izang

updates

parent 30e0b9ef
This diff is collapsed.
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import React from 'react' import React from 'react'
import '../remix-ui-plugin-manager.css' import '../remix-ui-plugin-manager.css'
interface PluginCardProps { interface PluginCardProps {
......
/* eslint-disable @typescript-eslint/no-unused-vars */
import { Profile } from '@remixproject/plugin-utils' import { Profile } from '@remixproject/plugin-utils'
import React, { Fragment } from 'react' import React from 'react'
import { PluginManagerComponent } from '../../types' import { PluginManagerComponent } from '../../types'
import ActivePluginCard from './ActivePluginCard' import ActivePluginCard from './ActivePluginCard'
import ModuleHeading from './moduleHeading' import ModuleHeading from './moduleHeading'
...@@ -15,7 +16,7 @@ function ActivePluginCardContainer ({ pluginComponent }: ActivePluginCardContain ...@@ -15,7 +16,7 @@ function ActivePluginCardContainer ({ pluginComponent }: ActivePluginCardContain
} }
return ( return (
<Fragment> <React.Fragment>
{(pluginComponent.activePlugins && pluginComponent.activePlugins.length) ? <ModuleHeading headingLabel="Active Modules" count={pluginComponent.activePlugins.length} /> : null} {(pluginComponent.activePlugins && pluginComponent.activePlugins.length) ? <ModuleHeading headingLabel="Active Modules" count={pluginComponent.activePlugins.length} /> : null}
{pluginComponent.activePlugins && pluginComponent.activePlugins.map((profile, idx) => { {pluginComponent.activePlugins && pluginComponent.activePlugins.map((profile, idx) => {
return ( return (
...@@ -28,7 +29,7 @@ function ActivePluginCardContainer ({ pluginComponent }: ActivePluginCardContain ...@@ -28,7 +29,7 @@ function ActivePluginCardContainer ({ pluginComponent }: ActivePluginCardContain
) )
}) })
} }
</Fragment> </React.Fragment>
) )
} }
......
/* eslint-disable @typescript-eslint/no-unused-vars */
import { Profile } from '@remixproject/plugin-utils' import { Profile } from '@remixproject/plugin-utils'
import React, { Fragment } from 'react' import React from 'react'
import { PluginManagerComponent, PluginManagerProfile } from '../../types' import { PluginManagerComponent, PluginManagerProfile } from '../../types'
import InactivePluginCard from './InactivePluginCard' import InactivePluginCard from './InactivePluginCard'
import ModuleHeading from './moduleHeading' import ModuleHeading from './moduleHeading'
...@@ -26,7 +27,7 @@ function InactivePluginCardContainer ({ pluginComponent }: InactivePluginCardCon ...@@ -26,7 +27,7 @@ function InactivePluginCardContainer ({ pluginComponent }: InactivePluginCardCon
} }
return ( return (
<Fragment> <React.Fragment>
{(pluginComponent.inactivePlugins && pluginComponent.inactivePlugins.length) ? <ModuleHeading headingLabel="Inactive Modules" count={pluginComponent.inactivePlugins.length} /> : null} {(pluginComponent.inactivePlugins && pluginComponent.inactivePlugins.length) ? <ModuleHeading headingLabel="Inactive Modules" count={pluginComponent.inactivePlugins.length} /> : null}
{pluginComponent.inactivePlugins && pluginComponent.inactivePlugins.map((profile, idx) => { {pluginComponent.inactivePlugins && pluginComponent.inactivePlugins.map((profile, idx) => {
return ( return (
...@@ -39,7 +40,7 @@ function InactivePluginCardContainer ({ pluginComponent }: InactivePluginCardCon ...@@ -39,7 +40,7 @@ function InactivePluginCardContainer ({ pluginComponent }: InactivePluginCardCon
) )
}) })
} }
</Fragment> </React.Fragment>
) )
} }
......
...@@ -12,10 +12,3 @@ export function localPluginToastReducer (currentState: string, toastAction: loca ...@@ -12,10 +12,3 @@ export function localPluginToastReducer (currentState: string, toastAction: loca
return currentState return currentState
} }
} }
export interface activePluginActionType {
type: 'load' | 'refresh'
}
export function loadActivePluginsReducer (activated: string[], action: activePluginActionType) {
}
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
"workspace-schematic": "nx workspace-schematic", "workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph", "dep-graph": "nx dep-graph",
"help": "nx help", "help": "nx help",
"lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd,remix-ui-tree-view,remix-ui-modal-dialog,remix-ui-toaster,remix-ui-file-explorer,remix-ui-debugger-ui,remix-ui-workspace,remix-ui-static-analyser,remix-ui-checkbox,remix-ui-settings,remix-core-plugin,remix-ui-renderer,remix-ui-publish-to-storage,remix-ui-solidity-compiler", "lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd,remix-ui-tree-view,remix-ui-modal-dialog,remix-ui-toaster,remix-ui-file-explorer,remix-ui-debugger-ui,remix-ui-workspace,remix-ui-static-analyser,remix-ui-checkbox,remix-ui-settings,remix-core-plugin,remix-ui-renderer,remix-ui-publish-to-storage,remix-ui-solidity-compiler,remix-ui-plugin-manager",
"build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd", "build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd",
"test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd", "test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver,remixd",
"publish:libs": "npm run build:libs && lerna publish --skip-git && npm run bumpVersion:libs", "publish:libs": "npm run build:libs && lerna publish --skip-git && npm run bumpVersion:libs",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment