2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent} from 'react';
|
2017-03-03 01:44:07 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
2016-10-29 22:15:13 +00:00
|
|
|
import Link from '../base/Link';
|
2016-07-22 22:27:04 +00:00
|
|
|
import Modal from '../base/Modal';
|
|
|
|
import ModalBody from '../base/ModalBody';
|
|
|
|
import ModalHeader from '../base/ModalHeader';
|
|
|
|
import ModalFooter from '../base/ModalFooter';
|
2016-11-10 02:40:53 +00:00
|
|
|
import {getAppVersion, CHANGELOG_URL, CHANGELOG_PAGE} from '../../../common/constants';
|
2016-07-20 00:34:47 +00:00
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
@autobind
|
2017-02-28 21:32:23 +00:00
|
|
|
class ChangelogModal extends PureComponent {
|
2017-03-03 01:44:07 +00:00
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2017-03-03 20:09:08 +00:00
|
|
|
changelog: null
|
2017-03-03 01:44:07 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
_setModalRef (m) {
|
|
|
|
this.modal = m;
|
|
|
|
}
|
2017-02-28 21:32:23 +00:00
|
|
|
|
2016-11-23 19:59:26 +00:00
|
|
|
show () {
|
2016-08-15 17:04:36 +00:00
|
|
|
this.modal.show();
|
2016-11-23 19:59:26 +00:00
|
|
|
}
|
2016-07-20 00:34:47 +00:00
|
|
|
|
2016-11-23 19:59:26 +00:00
|
|
|
toggle () {
|
|
|
|
this.modal.toggle();
|
2016-07-21 16:33:35 +00:00
|
|
|
}
|
|
|
|
|
2016-10-29 22:15:13 +00:00
|
|
|
async componentDidMount () {
|
|
|
|
let changelog;
|
|
|
|
try {
|
2017-03-03 20:09:08 +00:00
|
|
|
const response = await window.fetch(`${CHANGELOG_URL}?bust=${Date.now()}`);
|
2016-10-29 22:15:13 +00:00
|
|
|
changelog = await response.json();
|
|
|
|
} catch (e) {
|
|
|
|
console.warn('Failed to fetch changelog', e);
|
|
|
|
return;
|
|
|
|
}
|
2016-07-20 00:34:47 +00:00
|
|
|
|
2016-10-29 22:15:13 +00:00
|
|
|
this.setState({changelog});
|
2016-07-20 00:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2016-11-23 19:59:26 +00:00
|
|
|
const {changelog} = this.state;
|
2016-07-20 00:34:47 +00:00
|
|
|
|
|
|
|
let html;
|
|
|
|
|
|
|
|
if (!changelog) {
|
|
|
|
html = [
|
2016-07-20 18:35:08 +00:00
|
|
|
<div key="spinner" className="txt-lg">
|
2016-07-20 00:34:47 +00:00
|
|
|
<i className="fa fa-refresh fa-spin"></i>
|
|
|
|
</div>
|
|
|
|
];
|
|
|
|
} else {
|
|
|
|
html = [];
|
|
|
|
|
2016-11-23 19:59:26 +00:00
|
|
|
const startVersion = getAppVersion();
|
2016-07-21 16:33:35 +00:00
|
|
|
let startIndex = changelog.findIndex(c => c.version === startVersion);
|
|
|
|
if (startIndex < 0) {
|
|
|
|
startIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
changelog.slice(startIndex).map((change, i) => {
|
2016-07-20 00:34:47 +00:00
|
|
|
html = [
|
|
|
|
...html,
|
2016-07-21 16:33:35 +00:00
|
|
|
<h1 key={`changes.${i}`}>v{change.version} Changes</h1>
|
2016-07-20 00:34:47 +00:00
|
|
|
];
|
2016-12-01 00:02:35 +00:00
|
|
|
|
2016-07-20 00:34:47 +00:00
|
|
|
if (change.summary) {
|
|
|
|
if (!Array.isArray(change.summary)) {
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-10-29 22:15:13 +00:00
|
|
|
<p key={`summary.${i}`}>{change.summary}</p>
|
2017-03-03 20:09:08 +00:00
|
|
|
];
|
2016-07-20 00:34:47 +00:00
|
|
|
} else {
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-10-29 22:15:13 +00:00
|
|
|
<p key={`summary.${i}`}><strong>{change.summary[0]}</strong></p>,
|
2016-08-15 17:04:36 +00:00
|
|
|
...change.summary.slice(1).map(
|
2016-10-29 22:15:13 +00:00
|
|
|
(text, j) => <p key={`summary.${i}[${j}]`}>{text}</p>
|
2016-08-15 17:04:36 +00:00
|
|
|
)
|
2017-03-03 20:09:08 +00:00
|
|
|
];
|
2016-07-20 00:34:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-01 00:02:35 +00:00
|
|
|
if (change.link) {
|
|
|
|
html = [
|
|
|
|
...html,
|
2017-03-01 21:15:56 +00:00
|
|
|
<Link href={change.link} className="btn btn--clicky" button key={`link.${i}`}>
|
2016-12-01 00:02:35 +00:00
|
|
|
Read More
|
|
|
|
</Link>
|
2017-03-03 20:09:08 +00:00
|
|
|
];
|
2016-12-01 00:02:35 +00:00
|
|
|
}
|
|
|
|
|
2016-07-20 00:34:47 +00:00
|
|
|
if (change.major && change.major.length) {
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-11-30 23:11:36 +00:00
|
|
|
<h3 key={`major.${i}`}>Major</h3>,
|
2016-07-21 16:33:35 +00:00
|
|
|
<ul key={`major.${i}.list`}>
|
2016-07-20 18:35:08 +00:00
|
|
|
{change.major.map((text, i) => <li key={i}>{text}</li>)}
|
|
|
|
</ul>
|
2016-07-20 00:34:47 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (change.fixes && change.fixes.length) {
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-11-30 23:11:36 +00:00
|
|
|
<h3 key={`fixes.${i}`}>Bug Fixes</h3>,
|
2016-07-21 16:33:35 +00:00
|
|
|
<ul key={`fixes.${i}.list`}>
|
2016-07-28 20:10:26 +00:00
|
|
|
{change.fixes.map((text, j) => <li key={j}>{text}</li>)}
|
2016-07-21 16:33:35 +00:00
|
|
|
</ul>
|
2016-07-20 00:34:47 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (change.minor && change.minor.length) {
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-11-30 23:11:36 +00:00
|
|
|
<h3 key={`minor.${i}`}>Minor</h3>,
|
2016-07-21 16:33:35 +00:00
|
|
|
<ul key={`minor.${i}.list`}>
|
2016-07-20 18:35:08 +00:00
|
|
|
{change.minor.map((text, i) => <li key={i}>{text}</li>)}
|
2016-07-21 16:33:35 +00:00
|
|
|
</ul>
|
2016-07-20 00:34:47 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
html = [
|
|
|
|
...html,
|
2016-07-21 16:33:35 +00:00
|
|
|
<hr key={`hr.${i}`}/>
|
2017-03-03 20:09:08 +00:00
|
|
|
];
|
2016-07-20 00:34:47 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-02-28 21:32:23 +00:00
|
|
|
<Modal ref={this._setModalRef} {...this.props}>
|
2016-07-20 00:34:47 +00:00
|
|
|
<ModalHeader>Insomnia Changelog</ModalHeader>
|
|
|
|
<ModalBody className="pad changelog">
|
|
|
|
{html}
|
|
|
|
</ModalBody>
|
2016-10-21 17:20:36 +00:00
|
|
|
<ModalFooter>
|
2017-03-01 21:15:56 +00:00
|
|
|
<Link className="btn" href={CHANGELOG_PAGE} button>
|
2016-10-29 22:15:13 +00:00
|
|
|
Visit Full Changelog
|
|
|
|
</Link>
|
2016-07-20 00:34:47 +00:00
|
|
|
</ModalFooter>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ChangelogModal.propTypes = {};
|
|
|
|
|
|
|
|
export default ChangelogModal;
|