Tasks: adds tags
parent
93f06f81cd
commit
fe8fbfdfd8
|
@ -47,7 +47,7 @@ const muiTheme = createMuiTheme({
|
|||
light: lightBlue.A200,
|
||||
main: lightBlue.A400,
|
||||
dark: lightBlue.A700,
|
||||
contrastText: 'white',
|
||||
contrastText: '#fff',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -18,6 +18,8 @@ import * as colors from '@material-ui/core/colors';
|
|||
import FormLabel from '@material-ui/core/FormLabel';
|
||||
import RadioGroup from '@material-ui/core/RadioGroup';
|
||||
|
||||
import Autocomplete from '@material-ui/lab/Autocomplete';
|
||||
|
||||
import IconDelete from '@material-ui/icons/Delete';
|
||||
import IconCancel from '@material-ui/icons/Clear';
|
||||
import IconSave from '@material-ui/icons/Save';
|
||||
|
@ -37,7 +39,7 @@ import * as EteSync from 'etesync';
|
|||
|
||||
import { getCurrentTimezone, mapPriority } from '../../helpers';
|
||||
|
||||
import { TaskType, TaskStatusType, timezoneLoadFromName, TaskPriorityType } from '../../pim-types';
|
||||
import { TaskType, TaskStatusType, timezoneLoadFromName, TaskPriorityType, TaskTags } from '../../pim-types';
|
||||
|
||||
import { History } from 'history';
|
||||
|
||||
|
@ -66,6 +68,7 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
timezone: string | null;
|
||||
location: string;
|
||||
description: string;
|
||||
tags: string[];
|
||||
journalUid: string;
|
||||
|
||||
error?: string;
|
||||
|
@ -82,6 +85,7 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
allDay: false,
|
||||
location: '',
|
||||
description: '',
|
||||
tags: [],
|
||||
timezone: null,
|
||||
|
||||
journalUid: '',
|
||||
|
@ -105,6 +109,7 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
this.state.location = task.location ? task.location : '';
|
||||
this.state.description = task.description ? task.description : '';
|
||||
this.state.timezone = task.timezone;
|
||||
this.state.tags = task.tags;
|
||||
} else {
|
||||
this.state.uid = uuid.v4();
|
||||
}
|
||||
|
@ -139,7 +144,7 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
}
|
||||
}
|
||||
|
||||
public handleChange(name: string, value: string | number) {
|
||||
public handleChange(name: string, value: string | number | string[]) {
|
||||
this.setState({
|
||||
[name]: value,
|
||||
});
|
||||
|
@ -193,6 +198,7 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
task.summary = this.state.title;
|
||||
task.status = this.state.status;
|
||||
task.priority = this.state.priority;
|
||||
task.tags = this.state.tags;
|
||||
if (startDate) {
|
||||
task.startDate = startDate;
|
||||
}
|
||||
|
@ -379,6 +385,22 @@ class TaskEdit extends React.PureComponent<PropsType> {
|
|||
onChange={this.handleInputChange}
|
||||
/>
|
||||
|
||||
<Autocomplete
|
||||
style={styles.fullWidth}
|
||||
multiple
|
||||
options={TaskTags}
|
||||
value={this.state.tags}
|
||||
onChange={(_e, value) => this.handleChange('tags', value)}
|
||||
renderInput={(params) => (
|
||||
<TextField
|
||||
{...params}
|
||||
variant="standard"
|
||||
label="Tags"
|
||||
fullWidth
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
|
||||
<div style={styles.submit}>
|
||||
<Button
|
||||
variant="contained"
|
||||
|
|
|
@ -142,6 +142,8 @@ export enum TaskPriorityType {
|
|||
Low = 9
|
||||
}
|
||||
|
||||
export const TaskTags = ['Work', 'Home'];
|
||||
|
||||
export class TaskType extends EventType {
|
||||
public static fromVCalendar(comp: ICAL.Component) {
|
||||
const task = new TaskType(comp.getFirstSubcomponent('vtodo'));
|
||||
|
@ -181,6 +183,15 @@ export class TaskType extends EventType {
|
|||
return this.component.getFirstPropertyValue('priority');
|
||||
}
|
||||
|
||||
set tags(tags: string[]) {
|
||||
this.component.updatePropertyWithValue('categories', tags.join(','));
|
||||
}
|
||||
|
||||
get tags() {
|
||||
const tags = this.component.getFirstPropertyValue('categories');
|
||||
return tags ? tags.split(',') : [];
|
||||
}
|
||||
|
||||
set dueDate(date: ICAL.Time | undefined) {
|
||||
if (date) {
|
||||
this.component.updatePropertyWithValue('due', date);
|
||||
|
|
Loading…
Reference in New Issue