|
|
@ -16,6 +16,8 @@ import ConfirmationDialog from '../widgets/ConfirmationDialog';
|
|
|
|
|
|
|
|
|
|
|
|
import * as EteSync from 'etesync';
|
|
|
|
import * as EteSync from 'etesync';
|
|
|
|
import { SyncInfo } from '../SyncGate';
|
|
|
|
import { SyncInfo } from '../SyncGate';
|
|
|
|
|
|
|
|
import ColorPicker from '../widgets/ColorPicker';
|
|
|
|
|
|
|
|
import { defaultColor, colorHtmlToInt, colorIntToHtml } from '../journal-processors';
|
|
|
|
|
|
|
|
|
|
|
|
interface PropsType {
|
|
|
|
interface PropsType {
|
|
|
|
syncInfo: SyncInfo;
|
|
|
|
syncInfo: SyncInfo;
|
|
|
@ -25,13 +27,23 @@ interface PropsType {
|
|
|
|
onCancel: () => void;
|
|
|
|
onCancel: () => void;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface FormErrors {
|
|
|
|
|
|
|
|
displayName?: string;
|
|
|
|
|
|
|
|
color?: string;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default function JournalEdit(props: PropsType) {
|
|
|
|
export default function JournalEdit(props: PropsType) {
|
|
|
|
|
|
|
|
const [errors, setErrors] = React.useState<FormErrors>({});
|
|
|
|
const [showDeleteDialog, setShowDeleteDialog] = React.useState(false);
|
|
|
|
const [showDeleteDialog, setShowDeleteDialog] = React.useState(false);
|
|
|
|
const [info, setInfo] = React.useState<EteSync.CollectionInfo>();
|
|
|
|
const [info, setInfo] = React.useState<EteSync.CollectionInfo>();
|
|
|
|
|
|
|
|
const [selectedColor, setSelectedColor] = React.useState('');
|
|
|
|
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
React.useEffect(() => {
|
|
|
|
if (props.item !== undefined) {
|
|
|
|
if (props.item !== undefined) {
|
|
|
|
setInfo(props.item);
|
|
|
|
setInfo(props.item);
|
|
|
|
|
|
|
|
if (props.item.color) {
|
|
|
|
|
|
|
|
setSelectedColor(colorIntToHtml(props.item.color));
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
setInfo({
|
|
|
|
setInfo({
|
|
|
|
uid: EteSync.genUid(),
|
|
|
|
uid: EteSync.genUid(),
|
|
|
@ -48,10 +60,28 @@ export default function JournalEdit(props: PropsType) {
|
|
|
|
|
|
|
|
|
|
|
|
function onSubmit(e: React.FormEvent<any>) {
|
|
|
|
function onSubmit(e: React.FormEvent<any>) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
const saveErrors: FormErrors = {};
|
|
|
|
|
|
|
|
const fieldRequired = 'This field is required!';
|
|
|
|
|
|
|
|
|
|
|
|
const { onSave } = props;
|
|
|
|
const { onSave } = props;
|
|
|
|
const item = new EteSync.CollectionInfo(info);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const displayName = info?.displayName;
|
|
|
|
|
|
|
|
const color = colorHtmlToInt(selectedColor);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!displayName) {
|
|
|
|
|
|
|
|
saveErrors.displayName = fieldRequired;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (selectedColor && !color) {
|
|
|
|
|
|
|
|
saveErrors.color = 'Must be of the form #RRGGBB or #RRGGBBAA or empty';
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (Object.keys(saveErrors).length > 0) {
|
|
|
|
|
|
|
|
setErrors(saveErrors);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const item = new EteSync.CollectionInfo({ ...info, color: color });
|
|
|
|
onSave(item, props.item);
|
|
|
|
onSave(item, props.item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -79,6 +109,20 @@ export default function JournalEdit(props: PropsType) {
|
|
|
|
CALENDAR: 'Calendar',
|
|
|
|
CALENDAR: 'Calendar',
|
|
|
|
TASKS: 'Task List',
|
|
|
|
TASKS: 'Task List',
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
let collectionColorBox: React.ReactNode;
|
|
|
|
|
|
|
|
switch (info.type) {
|
|
|
|
|
|
|
|
case 'CALENDAR':
|
|
|
|
|
|
|
|
case 'TASKS':
|
|
|
|
|
|
|
|
collectionColorBox = (
|
|
|
|
|
|
|
|
<ColorPicker
|
|
|
|
|
|
|
|
defaultColor={defaultColor}
|
|
|
|
|
|
|
|
color={selectedColor}
|
|
|
|
|
|
|
|
onChange={(color: string) => setSelectedColor(color)}
|
|
|
|
|
|
|
|
error={errors.color}
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<>
|
|
|
@ -108,6 +152,8 @@ export default function JournalEdit(props: PropsType) {
|
|
|
|
onChange={(event: React.ChangeEvent<{ value: string }>) => setInfo({ ...info, displayName: event.target.value })}
|
|
|
|
onChange={(event: React.ChangeEvent<{ value: string }>) => setInfo({ ...info, displayName: event.target.value })}
|
|
|
|
style={styles.fullWidth}
|
|
|
|
style={styles.fullWidth}
|
|
|
|
margin="normal"
|
|
|
|
margin="normal"
|
|
|
|
|
|
|
|
error={!!errors.displayName}
|
|
|
|
|
|
|
|
helperText={errors.displayName}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
<TextField
|
|
|
|
name="description"
|
|
|
|
name="description"
|
|
|
@ -117,6 +163,7 @@ export default function JournalEdit(props: PropsType) {
|
|
|
|
style={styles.fullWidth}
|
|
|
|
style={styles.fullWidth}
|
|
|
|
margin="normal"
|
|
|
|
margin="normal"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
{collectionColorBox}
|
|
|
|
|
|
|
|
|
|
|
|
<div style={styles.submit}>
|
|
|
|
<div style={styles.submit}>
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
|