mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Add distinction between `getInstance` and `getInstanceOrCreate` since it is not always possible to create an instance (since you might not know the correct arguments) - Remove all the `export const *Store = *Store.getInstance<*Store>();` calls as it defeats the purpose of `Singleton`. Plus with the typing changes the appropriate `*Store.getInstance()` is "short enough". - Special case the two extension export facades to not need to use `getInstanceOrCreate`. Plus since they are just facades it is always possible to create them. - Move some other types to be also `Singleton`'s: ExtensionLoader, ExtensionDiscovery, ThemeStore, LocalizationStore, ... - Fixed dev-run always using the same port with electron inspect - Update Store documentation with new recommendations about creating instances of singletons - Fix all unit tests to create their dependent singletons Signed-off-by: Sebastian Malton <sebastian@malton.name>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import "./whats-new.scss";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { UserStore } from "../../../common/user-store";
|
|
import { navigate } from "../../navigation";
|
|
import { Button } from "../button";
|
|
import marked from "marked";
|
|
|
|
@observer
|
|
export class WhatsNew extends React.Component {
|
|
releaseNotes = fs.readFileSync(path.join(__static, "RELEASE_NOTES.md")).toString();
|
|
|
|
ok = () => {
|
|
navigate("/");
|
|
UserStore.getInstance().saveLastSeenAppVersion();
|
|
};
|
|
|
|
render() {
|
|
const logo = require("../../components/icon/lens-logo.svg");
|
|
const releaseNotes = marked(this.releaseNotes);
|
|
|
|
return (
|
|
<div className="WhatsNew flex column">
|
|
<div className="content box grow">
|
|
<img className="logo" src={logo} alt="Lens"/>
|
|
<div
|
|
className="release-notes flex column gaps"
|
|
dangerouslySetInnerHTML={{ __html: releaseNotes }}
|
|
/>
|
|
</div>
|
|
<div className="bottom">
|
|
<Button
|
|
primary autoFocus
|
|
label="Ok, got it!"
|
|
onClick={this.ok}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|