Skip to content

Commit 0e1f215

Browse files
authored
Merge pull request #88 from microsoft/dev
[deploy] fix an error with file upload
2 parents 3a4e7f9 + ef13c56 commit 0e1f215

File tree

3 files changed

+33
-19
lines changed

3 files changed

+33
-19
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "data_formulator"
7-
version = "0.1.5"
7+
version = "0.1.5.1"
88

99
requires-python = ">=3.9"
1010
authors = [

src/views/ConceptCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ export const ConceptCard: FC<ConceptCardProps> = function ConceptCard({ field })
278278
<Typography className="draggable-card-title" sx={{ fontSize: 13, height: 28, width: "100%" }} component={'span'} gutterBottom>
279279
{typeIconMenu}
280280
{fieldNameEntry}
281-
{field.semanticType ? <Typography sx={{fontSize: "xx-small", marginLeft: "6px", fontStyle: 'italic'}}>-- {field.semanticType}</Typography> : ""}
281+
{field.semanticType ? <Typography sx={{fontSize: "xx-small", marginLeft: "6px", fontStyle: 'italic', whiteSpace: 'nowrap'}}>-- {field.semanticType}</Typography> : ""}
282282
{/* {field.source == "custom" ? exampleToComponent(field.domain.values, 3) : ""} */}
283283
</Typography>
284284
<Box className='draggable-card-action-button' sx={{ position: "absolute", right: 1, background: 'rgba(255, 255, 255, 0.95)' }}>{cardHeaderOptions}</Box>

src/views/TableSelectionView.tsx

+31-17
Original file line numberDiff line numberDiff line change
@@ -255,17 +255,15 @@ export interface TableUploadDialogProps {
255255
}
256256

257257
export const TableUploadDialog: React.FC<TableUploadDialogProps> = ({ buttonElement, disabled }) => {
258-
259258
const dispatch = useDispatch<AppDispatch>();
260-
261-
let $uploadInputFile = React.createRef<HTMLInputElement>();
262-
263-
let handleFileUpload = (event: React.FormEvent<HTMLElement>): void => {
264-
const target: any = event.target;
265-
if (target && target.files) {
266-
for (let file of target.files) {
267-
//const file: File = target.files[0];
268-
(file as File).text().then((text) => {
259+
const inputRef = React.useRef<HTMLInputElement>(null);
260+
261+
let handleFileUpload = (event: React.ChangeEvent<HTMLInputElement>): void => {
262+
const files = event.target.files;
263+
264+
if (files) {
265+
for (let file of files) {
266+
file.text().then((text) => {
269267
let table = loadDataWrapper(file.name, text, file.type);
270268
if (table) {
271269
dispatch(dfActions.addTable(table));
@@ -276,14 +274,30 @@ export const TableUploadDialog: React.FC<TableUploadDialogProps> = ({ buttonElem
276274
}
277275
};
278276

279-
return <Button sx={{fontSize: "inherit"}} variant="text" color="primary"
280-
disabled={disabled}>
281-
<Input inputProps={{ accept: '.csv,.tsv,.json', multiple: true }} id="upload-data-file"
282-
type="file" sx={{ display: 'none' }} aria-hidden={true}
283-
ref={$uploadInputFile} onChange={handleFileUpload}
284-
/>
277+
return (
278+
<>
279+
<Input
280+
inputProps={{
281+
accept: '.csv,.tsv,.json',
282+
multiple: true,
283+
}}
284+
id="upload-data-file"
285+
type="file"
286+
sx={{ display: 'none' }}
287+
inputRef={inputRef}
288+
onChange={handleFileUpload}
289+
/>
290+
<Button
291+
sx={{fontSize: "inherit"}}
292+
variant="text"
293+
color="primary"
294+
disabled={disabled}
295+
onClick={() => inputRef.current?.click()}
296+
>
285297
{buttonElement}
286-
</Button>;
298+
</Button>
299+
</>
300+
);
287301
}
288302

289303

0 commit comments

Comments
 (0)