1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

Change noteHash to noteLink in the input in InfoPanel

This commit is contained in:
asmsuechan
2017-07-15 13:41:22 +09:00
parent 49fd2cfc4d
commit 8365a60d5d
3 changed files with 14 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import CSSModules from 'browser/lib/CSSModules'
import styles from './InfoPanel.styl' import styles from './InfoPanel.styl'
const InfoPanel = ({ const InfoPanel = ({
storageName, folderName, noteKey, updatedAt, createdAt storageName, folderName, noteLink, updatedAt, createdAt
}) => ( }) => (
<div className='infoPanel' styleName='control-infoButton-panel' style={{display: 'none'}}> <div className='infoPanel' styleName='control-infoButton-panel' style={{display: 'none'}}>
<div styleName='group-section'> <div styleName='group-section'>
@@ -43,7 +43,7 @@ const InfoPanel = ({
Note Link Note Link
</div> </div>
<div styleName='group-section-control'> <div styleName='group-section-control'>
<input value={noteKey} onClick={(e) => { e.target.select() }} /> <input value={noteLink} onClick={(e) => { e.target.select() }} />
</div> </div>
</div> </div>
@@ -54,7 +54,7 @@ const InfoPanel = ({
InfoPanel.propTypes = { InfoPanel.propTypes = {
storageName: PropTypes.string.isRequired, storageName: PropTypes.string.isRequired,
folderName: PropTypes.string.isRequired, folderName: PropTypes.string.isRequired,
noteKey: PropTypes.string.isRequired, noteLink: PropTypes.string.isRequired,
updatedAt: PropTypes.string.isRequired, updatedAt: PropTypes.string.isRequired,
createdAt: PropTypes.string.isRequired createdAt: PropTypes.string.isRequired
} }

View File

@@ -352,7 +352,7 @@ class MarkdownNoteDetail extends React.Component {
<InfoPanel <InfoPanel
storageName={currentOption.storage.name} storageName={currentOption.storage.name}
folderName={currentOption.folder.name} folderName={currentOption.folder.name}
noteKey={location.query.key} noteLink={`[title](${location.query.key})`}
updatedAt={formatDate(note.updatedAt)} updatedAt={formatDate(note.updatedAt)}
createdAt={formatDate(note.createdAt)} createdAt={formatDate(note.createdAt)}
/> />

View File

@@ -585,6 +585,16 @@ class SnippetNoteDetail extends React.Component {
> >
<i className='fa fa-arrows-alt' styleName='fullScreen-button' /> <i className='fa fa-arrows-alt' styleName='fullScreen-button' />
</button> </button>
<InfoButton
onClick={(e) => this.handleInfoButtonClick(e)}
/>
<InfoPanel
storageName={currentOption.storage.name}
folderName={currentOption.folder.name}
noteLink={`[title](${location.query.key})`}
updatedAt={formatDate(note.updatedAt)}
createdAt={formatDate(note.createdAt)}
/>
</div> </div>
</div> </div>