-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: wrapped Tag and TagList * refactor: omit unneeded types * fix: hide the MUI interface * fix: adding types as needed * refactor: ensure Tag is li if within a list * refactor: make isInteractive implicit with onClick * chore: fixing types and code style
- Loading branch information
1 parent
7f35e7f
commit 43ab012
Showing
7 changed files
with
140 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/*! | ||
* Copyright (c) 2022-present, Okta, Inc. and/or its affiliates. All rights reserved. | ||
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.") | ||
* | ||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* | ||
* See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
import { Chip, ChipProps } from "@mui/material"; | ||
import { memo, useContext } from "react"; | ||
import { TagListContext } from "./TagListContext"; | ||
|
||
export type TagProps = { | ||
isDisabled?: boolean; | ||
label: string; | ||
onClick?: ChipProps["onClick"]; | ||
onRemove?: ChipProps["onDelete"]; | ||
}; | ||
|
||
const Tag = ({ isDisabled, label, onClick, onRemove }: TagProps) => { | ||
const { chipElementType } = useContext(TagListContext); | ||
|
||
return ( | ||
<Chip | ||
label={label} | ||
clickable={onClick ? true : false} | ||
component={chipElementType} | ||
disabled={isDisabled} | ||
onClick={onClick} | ||
onDelete={onRemove} | ||
/> | ||
); | ||
}; | ||
|
||
const MemoizedTag = memo(Tag); | ||
|
||
export { MemoizedTag as Tag }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/*! | ||
* Copyright (c) 2022-present, Okta, Inc. and/or its affiliates. All rights reserved. | ||
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.") | ||
* | ||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* | ||
* See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
import { Tag } from "./"; | ||
import { Stack } from "@mui/material"; | ||
import { memo, ReactElement, useMemo } from "react"; | ||
import { ChipElementType, TagListContext } from "./TagListContext"; | ||
|
||
export type TagListProps = { | ||
children: ReactElement<typeof Tag> | Array<ReactElement<typeof Tag>>; | ||
}; | ||
|
||
const TagList = ({ children }: TagListProps) => { | ||
const providerValue = useMemo<{ | ||
chipElementType: ChipElementType; | ||
}>( | ||
() => ({ | ||
chipElementType: "li", | ||
}), | ||
[] | ||
); | ||
|
||
return ( | ||
<Stack component="ul" direction="row" spacing={2}> | ||
<TagListContext.Provider value={providerValue}> | ||
{children} | ||
</TagListContext.Provider> | ||
</Stack> | ||
); | ||
}; | ||
|
||
const MemoizedTagList = memo(TagList); | ||
|
||
export { MemoizedTagList as TagList }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/*! | ||
* Copyright (c) 2022-present, Okta, Inc. and/or its affiliates. All rights reserved. | ||
* The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2.0 (the "License.") | ||
* | ||
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* | ||
* See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
import { createContext } from "react"; | ||
|
||
export type ChipElementType = "li" | "div"; | ||
|
||
export type TagListContextType = { | ||
chipElementType: ChipElementType; | ||
}; | ||
|
||
export const TagListContext = createContext<TagListContextType>({ | ||
chipElementType: "div", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters