Skip to content
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

allow passing arguments to components #163

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
19 changes: 17 additions & 2 deletions src/useCSVDownloader.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
import React from 'react';
import PapaParse, { UnparseConfig } from 'papaparse';

type ButtonAttributes = React.ButtonHTMLAttributes<HTMLButtonElement>;
type AnchorAttributes = React.AnchorHTMLAttributes<HTMLAnchorElement>;
type CommonButtonAnchorProps = Pick<
ButtonAttributes & AnchorAttributes,
Exclude<keyof ButtonAttributes, keyof AnchorAttributes>
>;

const Type = {
Link: 'link',
Button: 'button',
} as const;

export interface Props {
interface _Props {
children: React.ReactNode;
data: any;
filename: string;
Expand All @@ -16,6 +23,7 @@ export interface Props {
bom?: boolean;
config?: UnparseConfig;
}
export type Props = _Props & CommonButtonAnchorProps;

function useCSVDownloaderComponent() {
const CSVDownloaderComponent = ({
Expand All @@ -27,6 +35,7 @@ function useCSVDownloaderComponent() {
className = '',
bom = false,
config = {},
...props
}: Props) => {
const download = async () => {
const bomCode = bom ? '\ufeff' : '';
Expand Down Expand Up @@ -68,11 +77,17 @@ function useCSVDownloaderComponent() {
onClick={() => download()}
style={style}
className={className}
{...props}
>
{children}
</button>
) : (
<a onClick={() => download()} style={style} className={className}>
<a
onClick={() => download()}
style={style}
className={className}
{...props}
>
{children}
</a>
)}
Expand Down