aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/App.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js
index c61ba33..4237784 100644
--- a/src/App.js
+++ b/src/App.js
@@ -60,6 +60,29 @@ class App extends Component {
} else {
this.setState({ nightMode: JSON.parse(_nightMode) });
}
+ let password = localStorage.getItem("password");
+ if (password === null) {
+ localStorage.setItem("password", this.genPassword());
+ }
+ }
+
+ genPassword() {
+ let pass = "";
+ for (let i = 0; i < 10; i++) {
+ let x = Math.round(Math.random() * 2);
+ switch (x) {
+ case 0:
+ pass += String.fromCharCode(48 + Math.round(Math.random() * 9));
+ break;
+ case 1:
+ pass += String.fromCharCode(65 + Math.round(Math.random() * 25));
+ break;
+ case 2:
+ pass += String.fromCharCode(97 + Math.round(Math.random() * 25));
+ break;
+ }
+ }
+ return pass;
}
componentDidUpdate() {