1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

[share dialog] expiration time: improved 'date-and-time-picker' (#4613)

* changed it to 'click outside to close the dialog'
This commit is contained in:
llj
2020-07-05 10:20:23 +08:00
committed by GitHub
parent 05fc148ec7
commit bf3b8d5d23

View File

@@ -22,11 +22,40 @@ class Picker extends React.Component {
super(props);
this.defaultCalendarValue = null;
this.calendarContainerRef = React.createRef();
this.inputRef = React.createRef();
this.state = {
isOpen: true
};
}
closeDialog = () => {
this.setState({
isOpen: false
});
}
openDialog = () => {
this.setState({
isOpen: true
});
}
clickOutsideToClose = (e) => {
if (!this.inputRef.current.contains(e.target) &&
!this.calendarContainerRef.current.contains(e.target)) {
this.closeDialog();
}
}
componentDidMount() {
let lang = window.app.config.lang;
this.defaultCalendarValue = moment().locale(lang).clone();
document.addEventListener('click', this.clickOutsideToClose);
}
componentWillUnmount() {
document.removeEventListener('click', this.clickOutsideToClose);
}
getCalendarContainer = () => {
@@ -48,6 +77,7 @@ class Picker extends React.Component {
getCalendarContainer={this.getCalendarContainer}
calendar={calendar}
value={props.value}
open={this.state.isOpen}
onChange={props.onChange}
>
{
@@ -59,9 +89,11 @@ class Picker extends React.Component {
style={{ width: props.inputWidth || 250 }}
tabIndex="-1"
disabled={props.disabled}
readOnly
readOnly={true}
value={value && value.format(FORMAT) || ''}
className="form-control"
onClick={this.openDialog}
ref={this.inputRef}
/>
<div ref={this.calendarContainerRef} />
</div>