mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
52 lines
1.8 KiB
TypeScript
52 lines
1.8 KiB
TypeScript
import { useMessages } from 'components/hooks';
|
|
import { useContext } from 'react';
|
|
import { Form, FormButtons, FormInput, FormRow, SubmitButton, TextField } from 'react-basics';
|
|
import BaseParameters from '../[reportId]/BaseParameters';
|
|
import { ReportContext } from '../[reportId]/Report';
|
|
|
|
export function RevenueParameters() {
|
|
const { report, runReport, isRunning } = useContext(ReportContext);
|
|
const { formatMessage, labels } = useMessages();
|
|
|
|
const { id, parameters } = report || {};
|
|
const { websiteId, dateRange } = parameters || {};
|
|
const queryDisabled = !websiteId || !dateRange;
|
|
|
|
const handleSubmit = (data: any, e: any) => {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
|
|
if (!queryDisabled) {
|
|
runReport(data);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Form values={parameters} onSubmit={handleSubmit} preventSubmit={true}>
|
|
<BaseParameters showDateSelect={true} allowWebsiteSelect={!id} />
|
|
<FormRow label={formatMessage(labels.event)}>
|
|
<FormInput name="eventName" rules={{ required: formatMessage(labels.required) }}>
|
|
<TextField autoComplete="off" />
|
|
</FormInput>
|
|
</FormRow>
|
|
<FormRow label={formatMessage(labels.revenueProperty)}>
|
|
<FormInput name="revenueProperty" rules={{ required: formatMessage(labels.required) }}>
|
|
<TextField autoComplete="off" />
|
|
</FormInput>
|
|
</FormRow>
|
|
<FormRow label={formatMessage(labels.userProperty)}>
|
|
<FormInput name="userProperty">
|
|
<TextField autoComplete="off" />
|
|
</FormInput>
|
|
</FormRow>
|
|
<FormButtons>
|
|
<SubmitButton variant="primary" disabled={queryDisabled} isLoading={isRunning}>
|
|
{formatMessage(labels.runQuery)}
|
|
</SubmitButton>
|
|
</FormButtons>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
export default RevenueParameters;
|