mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
stickers with empty text should not have blackbox at view mode
This commit is contained in:
parent
cf8edf8a81
commit
16f5875adc
3 changed files with 33 additions and 22 deletions
|
@ -1,4 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import classnames from 'classnames';
|
||||||
|
|
||||||
type State = {
|
type State = {
|
||||||
text: String,
|
text: String,
|
||||||
|
@ -21,7 +22,7 @@ export class StickerDesc extends React.PureComponent<void, State> {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className="sticker-desc"
|
className={classnames('sticker-desc', { is_empty: !text.trim() })}
|
||||||
onMouseDown={this.blockMouse}
|
onMouseDown={this.blockMouse}
|
||||||
onMouseUp={this.blockMouse}
|
onMouseUp={this.blockMouse}
|
||||||
>
|
>
|
||||||
|
|
48
src/index.js
48
src/index.js
|
@ -1,12 +1,37 @@
|
||||||
/*
|
/*
|
||||||
|
|
||||||
|
|
||||||
|
todo fix save button should not react to clicks
|
||||||
|
todo fix loaded stickers has wrong text placement for right-sided captions
|
||||||
|
todo save spinner
|
||||||
|
todo cancelling editing someone's else map return back to it's original address /razminochnyj/
|
||||||
|
|
||||||
|
todo riding speed slider
|
||||||
todo public maps
|
todo public maps
|
||||||
todo editing map on map list
|
todo editing map on map list
|
||||||
todo setting map public on map list
|
todo setting map public on map list
|
||||||
|
|
||||||
|
todo tooltips for panel items
|
||||||
|
|
||||||
|
done map catalogue
|
||||||
|
done public maps
|
||||||
|
done map search
|
||||||
|
todo map list lazy loading
|
||||||
|
|
||||||
|
done better poly editor https://github.com/SupriyaSudhindra/leaflet-editable-polyline
|
||||||
|
done update after point delete
|
||||||
|
todo hidden markers tooltip
|
||||||
|
|
||||||
|
todo network operations notify
|
||||||
|
done delayed notify (delay(2000).then(showLoadingMsg))
|
||||||
|
todo network error notifications
|
||||||
|
todo check canvas support at startup
|
||||||
|
todo check osrm is up
|
||||||
|
|
||||||
|
todo maybe: map preview on save
|
||||||
|
|
||||||
|
done stickers with empty text should not have blackbox at view mode
|
||||||
done add ability to copy-paste address after saving
|
done add ability to copy-paste address after saving
|
||||||
todo save progress
|
|
||||||
todo cancelling editing someone's else map return back to it's original address /razminochnyj/
|
|
||||||
|
|
||||||
done hide sticker dialog on sticker selection
|
done hide sticker dialog on sticker selection
|
||||||
done separate mode for sticker selection
|
done separate mode for sticker selection
|
||||||
|
@ -21,26 +46,7 @@
|
||||||
done better loader screen
|
done better loader screen
|
||||||
done network errors handling on startup
|
done network errors handling on startup
|
||||||
|
|
||||||
done map catalogue
|
|
||||||
done public maps
|
|
||||||
done map search
|
|
||||||
todo map list lazy loading
|
|
||||||
|
|
||||||
todo tooltips
|
|
||||||
|
|
||||||
done better poly editor https://github.com/SupriyaSudhindra/leaflet-editable-polyline
|
|
||||||
done update after point delete
|
|
||||||
todo hidden markers tooltip
|
|
||||||
|
|
||||||
done stickers drag on rotate bug
|
done stickers drag on rotate bug
|
||||||
|
|
||||||
todo network operations notify
|
|
||||||
done delayed notify (delay(2000).then(showLoadingMsg))
|
|
||||||
todo network error notifications
|
|
||||||
todo check canvas support at startup
|
|
||||||
todo check osrm is up
|
|
||||||
|
|
||||||
todo map preview on save
|
|
||||||
*/
|
*/
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
|
|
|
@ -42,6 +42,10 @@
|
||||||
.sticker-delete {
|
.sticker-delete {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sticker-desc.is_empty {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue