insomnia/app/ui/components/modals/changelog-modal.js

189 lines
4.7 KiB
JavaScript
Raw Normal View History

import React, {PureComponent} from 'react';
import autobind from 'autobind-decorator';
import Link from '../base/link';
import Modal from '../base/modal';
import ModalBody from '../base/modal-body';
import ModalHeader from '../base/modal-header';
import ModalFooter from '../base/modal-footer';
2017-08-12 16:58:22 +00:00
import {getAppVersion, CHANGELOG_URL, CHANGELOG_PAGE, isDevelopment} from '../../../common/constants';
import * as querystring from '../../../common/querystring';
2016-07-20 00:34:47 +00:00
@autobind
class ChangelogModal extends PureComponent {
constructor (props) {
super(props);
this.state = {
changelog: null
};
}
_setModalRef (m) {
this.modal = m;
}
2016-11-23 19:59:26 +00:00
show () {
this.modal.show();
2016-11-23 19:59:26 +00:00
}
2016-07-20 00:34:47 +00:00
2017-03-29 02:21:49 +00:00
hide () {
this.modal.hide();
}
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-08-02 20:38:31 +00:00
// TODO: Implement release channels
2017-08-02 20:38:40 +00:00
// NOTE: We add current version to break CDN cache
2017-08-12 16:58:22 +00:00
const params = [
{name: 'v', value: getAppVersion()},
{name: 'channel', value: 'stable'}
];
// Add extra param during dev so we don't affect CDN cache
if (isDevelopment()) {
params.push({name: 'dev'});
}
const qs = querystring.buildFromParams(params);
const url = querystring.joinUrl(CHANGELOG_URL, qs);
const response = await window.fetch(url);
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">
2017-07-25 22:28:53 +00:00
<i className="fa fa-refresh fa-spin"/>
2016-07-20 00:34:47 +00:00
</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>
];
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>,
...change.summary.slice(1).map(
2016-10-29 22:15:13 +00:00
(text, j) => <p key={`summary.${i}[${j}]`}>{text}</p>
)
];
2016-07-20 00:34:47 +00:00
}
}
2016-12-01 00:02:35 +00:00
if (change.link) {
html = [
...html,
<Link href={change.link} className="btn btn--clicky" button key={`link.${i}`}>
2016-12-01 00:02:35 +00:00
Read More
</Link>
];
2016-12-01 00:02:35 +00:00
}
2017-06-30 17:46:19 +00:00
const printThing = (text, key) => {
const match = text.match(/\(PR:(\d+)(:([^)]+))?\)/);
let link = null;
if (match) {
const prNumber = match[1];
const user = match[3] || '';
text = text.replace(match[0], '');
link = (
<Link href={`https://github.com/getinsomnia/insomnia/pull/${prNumber}`}>
#{prNumber}
{user ? ` by ${user}` : null}
</Link>
);
}
return <li key={key}>{text}{link && '('}{link}{link && ')'}</li>;
};
2016-07-20 00:34:47 +00:00
if (change.major && change.major.length) {
html = [
...html,
<h3 key={`major.${i}`}>Major</h3>,
2016-07-21 16:33:35 +00:00
<ul key={`major.${i}.list`}>
2017-06-30 17:46:19 +00:00
{change.major.map(printThing)}
2016-07-20 18:35:08 +00:00
</ul>
2016-07-20 00:34:47 +00:00
];
}
if (change.fixes && change.fixes.length) {
html = [
...html,
<h3 key={`fixes.${i}`}>Bug Fixes</h3>,
2016-07-21 16:33:35 +00:00
<ul key={`fixes.${i}.list`}>
2017-06-30 17:46:19 +00:00
{change.fixes.map(printThing)}
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,
<h3 key={`minor.${i}`}>Minor</h3>,
2016-07-21 16:33:35 +00:00
<ul key={`minor.${i}.list`}>
2017-06-30 17:46:19 +00:00
{change.minor.map(printThing)}
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}`}/>
];
2016-07-20 00:34:47 +00:00
});
}
return (
<Modal tall ref={this._setModalRef} {...this.props}>
2016-07-20 00:34:47 +00:00
<ModalHeader>Insomnia Changelog</ModalHeader>
<ModalBody className="pad changelog">
{html}
</ModalBody>
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
<ModalFooter>
<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;