Skip to content

feat(site): Support list(string) rich parameter field #6653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add MultiTextField
  • Loading branch information
BrunoQuaresma committed Mar 17, 2023
commit fb1ca9e18c60559b1fdc56f9c9734104b9943b09
16 changes: 16 additions & 0 deletions site/src/components/MultiTextField/MultiTextField.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Story } from "@storybook/react"
import { useState } from "react"
import { MultiTextField, MultiTextFieldProps } from "./MultiTextField"

export default {
title: "components/MultiTextField",
component: MultiTextField,
}

const Template: Story<MultiTextFieldProps> = (args) => {
const [values, setValues] = useState(args.values ?? ["foo", "bar"])
return <MultiTextField {...args} values={values} onChange={setValues} />
}

export const Example = Template.bind({})
Example.args = {}
95 changes: 95 additions & 0 deletions site/src/components/MultiTextField/MultiTextField.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
import Chip from "@material-ui/core/Chip"
import { makeStyles } from "@material-ui/core/styles"
import { FC } from "react"

export type MultiTextFieldProps = {
label: string
values: string[]
onChange: (values: string[]) => void
}

export const MultiTextField: FC<MultiTextFieldProps> = ({
label,
values,
onChange,
}) => {
const styles = useStyles()

return (
<label className={styles.root}>
{values.map((value, index) => (
<Chip
key={index}
label={value}
size="small"
color="primary"
onDelete={() => {
onChange(values.filter((oldValue) => oldValue !== value))
}}
/>
))}
<input
aria-label={label}
className={styles.input}
onKeyDown={(event) => {
if (event.key === ",") {
event.preventDefault()
const newValue = event.currentTarget.value
onChange([...values, newValue])
event.currentTarget.value = ""
return
}

if (event.key === "Backspace" && event.currentTarget.value === "") {
event.preventDefault()
const lastValue = values[values.length - 1]
onChange(values.slice(0, -1))
event.currentTarget.value = lastValue
return
}
}}
onBlur={(event) => {
if (event.currentTarget.value !== "") {
const newValue = event.currentTarget.value
onChange([...values, newValue])
event.currentTarget.value = ""
}
}}
/>
</label>
)
}

const useStyles = makeStyles((theme) => ({
root: {
border: `1px solid ${theme.palette.divider}`,
borderRadius: theme.shape.borderRadius,
minHeight: theme.spacing(5),
padding: theme.spacing(1.25, 1.75),
fontSize: theme.spacing(2),
display: "flex",
flexWrap: "wrap",
gap: theme.spacing(1),
position: "relative",

"&:has(input:focus)": {
borderColor: theme.palette.primary.main,
borderWidth: 2,
// Compensate for the border width
top: -1,
left: -1,
},
},

input: {
flexGrow: 1,
fontSize: "inherit",
padding: 0,
border: "none",
background: "none",

"&:focus": {
outline: "none",
},
},
}))