can remove Module

This commit is contained in:
Bowen Tan 2021-11-29 15:56:23 +08:00
parent b68f8939f3
commit 95c18aa6b0
2 changed files with 46 additions and 19 deletions

View File

@ -25,7 +25,7 @@ export class AppStorage {
eventBus.on('componentsChange', (components: ApplicationComponent[]) => {
this.components = components;
this.saveInLS();
this.saveComponentsInLS();
});
}
@ -66,7 +66,13 @@ export class AppStorage {
this.saveModulesInLS();
}
saveInLS() {
removeModule(module: ImplementedRuntimeModule) {
console.log(module)
this.setModules(this.modules.filter(m => m !== module));
this.saveModulesInLS();
}
saveComponentsInLS() {
console.log('saveInLS', this.components);
switch (this.currentEditingType) {
case 'app':

View File

@ -1,19 +1,20 @@
import { Divider, HStack, IconButton, Text, VStack } from '@chakra-ui/react';
import React from 'react';
import { RuntimeModuleSpec } from '@sunmao-ui/core';
import { AppStorage } from '../../AppStorage';
import { AddIcon } from '@chakra-ui/icons';
import { AddIcon, DeleteIcon } from '@chakra-ui/icons';
import { eventBus } from '../../eventBus';
import { ImplementedRuntimeModule } from '@sunmao-ui/runtime';
type ExplorerProps = {
appStorage: AppStorage;
};
const useAppStorage = (appStorage: AppStorage) => {
const [modules, setModules] = React.useState<RuntimeModuleSpec[]>(appStorage.modules);
const [modules, setModules] = React.useState<ImplementedRuntimeModule[]>(
appStorage.modules
);
eventBus.on('modulesChange', newModules => {
console.log('modulesChange')
setModules(newModules);
});
@ -43,18 +44,22 @@ export const Explorer: React.FC<ExplorerProps> = ({ appStorage }) => {
);
const { modules } = useAppStorage(appStorage);
const moduleItems = modules.map((module: RuntimeModuleSpec) => {
const moduleItems = modules.map((module: ImplementedRuntimeModule) => {
const moduleItemId = `module_${module.metadata.name}`;
const onClickModule = (id: string) => {
setSelectedItem(id);
appStorage.updateCurrentId('module', module.metadata.name);
};
const onRemove = () => {
appStorage.removeModule(module);
};
return (
<ExplorerItem
key={module.metadata.name}
id={moduleItemId}
title={module.metadata.name}
onClick={onClickModule}
onRemove={onRemove}
isActive={selectedItem === moduleItemId}
/>
);
@ -88,21 +93,37 @@ type ExplorerItemProps = {
title: string;
isActive: boolean;
onClick: (id: string) => void;
onRemove?: () => void;
};
const ExplorerItem: React.FC<ExplorerItemProps> = ({ id, title, isActive, onClick }) => {
const ExplorerItem: React.FC<ExplorerItemProps> = ({
id,
title,
isActive,
onClick,
onRemove,
}) => {
return (
<div
onClick={() => onClick(id)}
style={{
cursor: 'pointer',
padding: '10px',
borderRadius: '5px',
backgroundColor: isActive ? '#eee' : '#fff',
width: '100%',
}}
<HStack
width="full"
justify="space-between"
cursor="pointer"
borderRadius="5"
padding="2"
backgroundColor={isActive ? 'gray.100' : 'white'}
>
{title}
</div>
<Text fontSize="lg" onClick={() => onClick(id)}>
{title}
</Text>
{onRemove ? (
<IconButton
variant="ghost"
size="smx"
aria-label="remove"
icon={<DeleteIcon />}
onClick={() => onRemove()}
/>
) : null}
</HStack>
);
};