1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 17:33:18 +00:00

change share dialog UI

This commit is contained in:
Michael An
2019-07-03 10:55:16 +08:00
parent 188f01e6a1
commit 2bfb4b2879

View File

@@ -391,24 +391,24 @@ class GenerateShareLink extends React.Component {
</Label> </Label>
</FormGroup> </FormGroup>
<FormGroup check className="permission"> <FormGroup check className="permission">
<Label check> <Label className="form-check-label">
<Input type="radio" name="radio1" defaultChecked={true} onChange={() => this.setPermission('previewAndDownload')}/>{' '}{gettext('Preview and download')} <Input type="radio" name="radio1" defaultChecked={true} onChange={() => this.setPermission('previewAndDownload')}/>{' '}{gettext('Preview and download')}
</Label> </Label>
</FormGroup> </FormGroup>
<FormGroup check className="permission"> <FormGroup check className="permission">
<Label> <Label className="form-check-label">
<Input type="radio" name="radio1" onChange={() => this.setPermission('preview')} />{' '}{gettext('Preview only')} <Input type="radio" name="radio1" onChange={() => this.setPermission('preview')} />{' '}{gettext('Preview only')}
</Label> </Label>
</FormGroup> </FormGroup>
{(Utils.isOfficeFile(this.props.itemPath) && fileInfo && fileInfo.can_edit) && {(Utils.isOfficeFile(this.props.itemPath) && fileInfo && fileInfo.can_edit) &&
<FormGroup check className="permission"> <FormGroup check className="permission">
<Label> <Label className="form-check-label">
<Input type="radio" name="radio1" onChange={() => this.setPermission('editOnCloudAndDownload')} />{' '}{gettext('Edit on cloud and download')} <Input type="radio" name="radio1" onChange={() => this.setPermission('editOnCloudAndDownload')} />{' '}{gettext('Edit on cloud and download')}
</Label> </Label>
</FormGroup> </FormGroup>
} }
{this.state.errorInfo && <Alert color="danger" className="mt-2">{gettext(this.state.errorInfo)}</Alert>} {this.state.errorInfo && <Alert color="danger" className="mt-2">{gettext(this.state.errorInfo)}</Alert>}
<Button onClick={this.generateShareLink}>{gettext('Generate')}</Button> <Button onClick={this.generateShareLink} className="mt-2">{gettext('Generate')}</Button>
</Form> </Form>
); );
} }