mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
typed MapListDialog
This commit is contained in:
parent
9006bb375b
commit
cf6866240b
6 changed files with 124 additions and 66 deletions
|
@ -16,11 +16,12 @@ import { Range } from 'rc-slider';
|
|||
import { TABS } from '$constants/dialogs';
|
||||
import { Icon } from '$components/panels/Icon';
|
||||
import { pushPath } from '$utils/history';
|
||||
import { IRootState } from '$redux/user/reducer';
|
||||
import { IRootState, IRouteListItem } from '$redux/user/reducer';
|
||||
|
||||
interface Props extends IRootState {
|
||||
marks: { [x: number]: string },
|
||||
routes_sorted: Array<string>,
|
||||
routes_sorted: Array<IRouteListItem>,
|
||||
|
||||
mapsLoadMore: typeof mapsLoadMore,
|
||||
searchSetDistance: typeof searchSetDistance,
|
||||
searchSetTitle: typeof searchSetTitle,
|
||||
|
@ -29,7 +30,7 @@ interface Props extends IRootState {
|
|||
}
|
||||
|
||||
interface State {
|
||||
editing_item: string,
|
||||
editing_item: IRouteListItem['_id'],
|
||||
}
|
||||
|
||||
class Component extends React.Component<Props, State> {
|
||||
|
@ -77,9 +78,8 @@ class Component extends React.Component<Props, State> {
|
|||
tab,
|
||||
}
|
||||
},
|
||||
editing,
|
||||
marks,
|
||||
} = this.props;
|
||||
}: Props = this.props;
|
||||
|
||||
const { editing_item } = this.state;
|
||||
|
||||
|
@ -151,8 +151,10 @@ class Component extends React.Component<Props, State> {
|
|||
{
|
||||
list.map(route => (
|
||||
<RouteRow
|
||||
editing={editing}
|
||||
{...route}
|
||||
title={route.title}
|
||||
distance={route.distance}
|
||||
_id={route._id}
|
||||
is_public={route.is_public}
|
||||
tab={tab}
|
||||
is_editing={(editing_item === route._id)}
|
||||
openRoute={this.openRoute}
|
||||
|
|
|
@ -17,7 +17,9 @@ interface Props {
|
|||
key: string,
|
||||
}
|
||||
|
||||
export const RouteRow = ({ title, distance, _id, openRoute, tab, is_editing, startEditing }: any) => (
|
||||
export const RouteRow = ({
|
||||
title, distance, _id, openRoute, tab, is_editing, startEditing
|
||||
}: Props) => (
|
||||
<div className={classnames('route-row-wrapper', { is_editing })}>
|
||||
{
|
||||
tab === 'mine' &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue