made onboarding use bulma steps
This commit is contained in:
parent
d24fd41c53
commit
71c7ad4545
24
static-data/www/onboarding/consentskip.js
Normal file
24
static-data/www/onboarding/consentskip.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
let skipConsentBtns = function(){
|
||||||
|
var skipBtn = document.getElementsByClassName('skipToConsent')[0]
|
||||||
|
var sections = document.getElementsByClassName('step-item')
|
||||||
|
var content = document.getElementsByClassName('step-content')
|
||||||
|
skipBtn.onclick = function(e){
|
||||||
|
e.preventDefault()
|
||||||
|
for (el of document.querySelectorAll('.steps-action a')){
|
||||||
|
el.classList.add('is-hidden')
|
||||||
|
}
|
||||||
|
for (el of content){
|
||||||
|
el.classList.remove('is-active')
|
||||||
|
var last = el
|
||||||
|
}
|
||||||
|
last.classList.add('is-active')
|
||||||
|
for (el = 0; el <= sections.length; el++){
|
||||||
|
sections[el].classList.add('is-completed')
|
||||||
|
sections[el].classList.remove('is-active')
|
||||||
|
var last = sections[el]
|
||||||
|
}
|
||||||
|
last.classList.add('is-active')
|
||||||
|
|
||||||
|
//is-completed
|
||||||
|
}
|
||||||
|
}()
|
@ -2,29 +2,34 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset='utf-8'>
|
<meta charset="utf-8">
|
||||||
<!--Mobile responsive-->
|
<!--Mobile responsive-->
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>
|
<title>
|
||||||
Onionr
|
Onionr
|
||||||
</title>
|
</title>
|
||||||
<link rel='shortcut icon' type='image/ico' href='/shared/images/favicon.ico'>
|
<link rel="shortcut icon" type="image/ico" href="/shared/images/favicon.ico">
|
||||||
<link rel="stylesheet" href="/private/main.css">
|
<link rel="stylesheet" href="/private/main.css">
|
||||||
<link rel="stylesheet" href="/shared/fontawesome-free-5.10.2/css/all.min.css">
|
<link rel="stylesheet" href="/shared/fontawesome-free-5.10.2/css/all.min.css">
|
||||||
<link rel="stylesheet" href="/gettheme">
|
<link rel="stylesheet" href="/gettheme">
|
||||||
|
<link rel="stylesheet" href="/shared/bulma-steps.min.css">
|
||||||
|
<link rel="stylesheet" href="/shared/bulma-tooltip.min.css">
|
||||||
<link rel="stylesheet" href="donate-modal.css">
|
<link rel="stylesheet" href="donate-modal.css">
|
||||||
<link rel="stylesheet" href="onboarding.css">
|
<link rel="stylesheet" href="onboarding.css">
|
||||||
<script defer src='/shared/loadabout.js'></script>
|
|
||||||
<script defer src='/shared/misc.js'></script>
|
<script defer src="/shared/loadabout.js"></script>
|
||||||
<script defer src='/private/js/console.js'></script>
|
<script defer src="/shared/misc.js"></script>
|
||||||
<script defer src='donate.js'></script>
|
<script defer src="/private/js/console.js"></script>
|
||||||
<script defer src='onboarding.js'></script>
|
<script defer src="donate.js"></script>
|
||||||
|
<script defer src="onboarding.js"></script>
|
||||||
<script defer src="/shared/panel.js"></script>
|
<script defer src="/shared/panel.js"></script>
|
||||||
|
<script defer src="/shared/bulma-steps.min.js"></script>
|
||||||
|
<script defer src="consentskip.js"></script>
|
||||||
<script>alert("Content security policy appears to not be working. Your browser security is weak!")</script>
|
<script>alert("Content security policy appears to not be working. Your browser security is weak!")</script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="shutdownNotice" class='overlay'>
|
<div id="shutdownNotice" class="overlay">
|
||||||
<div>
|
<div>
|
||||||
<p>Your node will shutdown. Thank you for using Onionr.</p>
|
<p>Your node will shutdown. Thank you for using Onionr.</p>
|
||||||
<p>If you are using random bind IPs (default in non dev mode), Onionr will have a different URL next time.
|
<p>If you are using random bind IPs (default in non dev mode), Onionr will have a different URL next time.
|
||||||
@ -38,9 +43,9 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<h1 class="title">
|
<div class="image is-128x128">
|
||||||
Onionr
|
<img src="/shared/images/onionr-text.png">
|
||||||
</h1>
|
</div>
|
||||||
<h2 class="subtitle">
|
<h2 class="subtitle">
|
||||||
Private Decentralized Communication
|
Private Decentralized Communication
|
||||||
</h2>
|
</h2>
|
||||||
@ -48,7 +53,7 @@
|
|||||||
<div class="column is-7">
|
<div class="column is-7">
|
||||||
<div class="field is-grouped is-pulled-right">
|
<div class="field is-grouped is-pulled-right">
|
||||||
<p class="control">
|
<p class="control">
|
||||||
<a class="button is-danger is-outlined" id='shutdownNode'>
|
<a class="button is-danger is-outlined" id="shutdownNode">
|
||||||
Shutdown
|
Shutdown
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
@ -73,55 +78,202 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="columns">
|
<div class="container">
|
||||||
<div class="column">
|
|
||||||
<div class="onboarding">
|
<div class="onboarding">
|
||||||
<noscript><h1>Unfortunately, this requires JavaScript. Don't worry, all scripts are open source and locally loaded.</h1></noscript>
|
<noscript><h1>Unfortunately, this requires JavaScript. Don't worry, all scripts are open source and locally loaded.</h1></noscript>
|
||||||
<p>Welcome. There are just a few questions for you to answer before you get started.</p>
|
<form method="post" id="onboardingForm">
|
||||||
<br>
|
<div class="columns">
|
||||||
<form method='post' id="onboardingForm">
|
<div class="column">
|
||||||
<div class="field">
|
<div class="steps" id="stepsDemo">
|
||||||
<div>
|
<div class="step-item is-active">
|
||||||
I am concerned about the following targeting me...
|
<div class="step-marker">1</div>
|
||||||
|
<div class="step-details">
|
||||||
|
<p class="step-title">Welcome</p>
|
||||||
</div>
|
</div>
|
||||||
<i class="icon fas fa-eye"></i> <input type="checkbox" name="state" checked> <label for="state">Government (mass surveillance)</label>
|
</div>
|
||||||
<br>
|
<div class="step-item">
|
||||||
<i class="icon fas fa-university"></i> <input type="checkbox" name="stateTarget"> <label for="stateTarget">Government (direct target)</label>
|
<div class="step-marker">2</div>
|
||||||
<br>
|
<div class="step-details">
|
||||||
|
<p class="step-title">Security</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="step-item">
|
||||||
|
<div class="step-marker">3</div>
|
||||||
|
<div class="step-details">
|
||||||
|
<p class="step-title">Plugins</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="step-item">
|
||||||
|
<div class="step-marker">4</div>
|
||||||
|
<div class="step-details">
|
||||||
|
<p class="step-title">Options</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="step-item">
|
||||||
|
<div class="step-marker">5</div>
|
||||||
|
<div class="step-details">
|
||||||
|
<p class="step-title">Consent</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="steps-content">
|
||||||
|
<div class="step-content has-text-justified is-active">
|
||||||
|
<div class="box">
|
||||||
|
<p>The default settings are intended to be safe for most users.</p>
|
||||||
|
<p>Use the button below to skip to the end.</p>
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item">
|
||||||
|
<button class="button is-primary formBtn skipToConsent">Use default setup</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
<div class="level-item has-text-danger">
|
||||||
|
<small class="is-danger">Those targeted by powerful actors (governments, organized crime,
|
||||||
|
<span data-tooltip="advanced persistent threats">APTs</span>) should press next instead.</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="step-content has-text-justified">
|
||||||
|
<div class="box">
|
||||||
|
<p>Configure Onionr according to one's <a href="https://ssd.eff.org/en/module/your-security-plan" target="_blank" rel="noopener">threat model</a></p>
|
||||||
|
<p>I am concerned about the following:</p>
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item"><i class="icon fas fa-eye"></i> <input type="checkbox" name="state" checked></div>
|
||||||
|
<label for="state">Mass surveillance</label>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item">
|
||||||
|
<i class="icon fas fa-university"></i> <input type="checkbox" name="stateTarget">
|
||||||
|
</div>
|
||||||
|
<label for="stateTarget">State actor (direct target)</label>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
<i class="icon fas fa-binoculars"></i> <input type="checkbox" name="local"> <label for="local">Nearby threat</label>
|
<i class="icon fas fa-binoculars"></i> <input type="checkbox" name="local"> <label for="local">Nearby threat</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
|
||||||
<div>
|
|
||||||
I want to contribute to Onionr by...
|
|
||||||
</div>
|
</div>
|
||||||
<i class="icon fas fa-network-wired"></i> <input checked type="checkbox" name="networkContribution"> <label for="networkContribution">Participating in data storage & sharing</label>
|
</div>
|
||||||
<br>
|
</div>
|
||||||
<i class="icon fas fa-book-open"></i> <input checked type="checkbox" name="networkContributionPlain"> <label for="networkContributionPlain">Storing plaintext data</label>
|
</div>
|
||||||
<br>
|
<div class="step-content has-text-justified">
|
||||||
|
<div class="box">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<i class="icon fas fa-envelope"></i> <input type="checkbox" name="useMail" checked> <label for="useMail">Use OnionrMail</label>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<i class="icon fas fa-comments"></i> <input type="checkbox" name="useCircles" checked> <label for="useMail">Use Circles (message board system)</label>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="step-content has-text-justified">
|
||||||
|
<div class="box">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<i class="icon fas fa-palette"></i> <input type="checkbox" name="useDarkTheme" checked> <label for="useDark">Use Dark Theme</label>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item">
|
||||||
<i class="icon fas fa-dollar-sign"></i> <input type="checkbox" name="donate"> <label for="donate">Donating the price of a coffee to fund development</label>
|
<i class="icon fas fa-dollar-sign"></i> <input type="checkbox" name="donate"> <label for="donate">Donating the price of a coffee to fund development</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="field">
|
|
||||||
<div>
|
|
||||||
I want to...
|
|
||||||
</div>
|
</div>
|
||||||
<!--<i class="icon fas fa-user"></i> <input type="checkbox" name="useDeterministic"> <label for="useDeterministic">Use a seed to re(generate) a user ID</label>
|
</nav>
|
||||||
<br>
|
</div>
|
||||||
-->
|
</div>
|
||||||
<i class="icon fas fa-envelope"></i> <input type="checkbox" name="useMail" checked> <label for="useMail">Use OnionrMail</label>
|
</div>
|
||||||
<br>
|
</div>
|
||||||
<i class="icon fas fa-comments"></i> <input type="checkbox" name="useCircles" checked> <label for="useMail">Use Circles (message board system)</label>
|
</div>
|
||||||
<br>
|
<div class="step-content has-text-justified">
|
||||||
<i class="icon fas fa-palette"></i> <input type="checkbox" name="useDarkTheme" checked> <label for="useDark">Use Dark Theme</label>
|
<div class="box">
|
||||||
|
<div class="columns">
|
||||||
<br>
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item">
|
||||||
|
<i class="icon fas fa-book-open"></i> <input checked type="checkbox" name="networkContributionPlain"> <label for="networkContributionPlain">Storing plaintext data</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="level-right">
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="column is-4">
|
||||||
|
<div class="box">
|
||||||
|
<nav class="level">
|
||||||
|
<div class="level-left">
|
||||||
|
<div class="level-item">
|
||||||
|
<i class="icon fas fa-network-wired"></i> <input checked type="checkbox" name="networkContribution"> <label for="networkContribution">Participating in data storage & sharing</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<input type="submit" class="button is-primary" value="Complete Setup">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="steps-actions">
|
||||||
|
<div class="steps-action">
|
||||||
|
<a data-nav="previous" class="button is-light">Previous</a>
|
||||||
|
</div>
|
||||||
|
<div class="steps-action">
|
||||||
|
<a data-nav="next" class="button is-light">Next</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<input type="submit" value="Get Started" class="button is-primary">
|
|
||||||
<br><br>
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -23,3 +23,26 @@ noscript{
|
|||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
color: yellow;
|
color: yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
font-size: 1.3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.formBtn{
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
.steps-content{
|
||||||
|
min-height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-content .box{
|
||||||
|
padding: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.step-content .box span{
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.steps-content input[type='checkbox'] {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
1
static-data/www/shared/bulma-steps.min.css
vendored
Normal file
1
static-data/www/shared/bulma-steps.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
595
static-data/www/shared/bulma-steps.min.js
vendored
Normal file
595
static-data/www/shared/bulma-steps.min.js
vendored
Normal file
@ -0,0 +1,595 @@
|
|||||||
|
(function webpackUniversalModuleDefinition(root, factory) {
|
||||||
|
if(typeof exports === 'object' && typeof module === 'object')
|
||||||
|
module.exports = factory();
|
||||||
|
else if(typeof define === 'function' && define.amd)
|
||||||
|
define([], factory);
|
||||||
|
else if(typeof exports === 'object')
|
||||||
|
exports["bulmaSteps"] = factory();
|
||||||
|
else
|
||||||
|
root["bulmaSteps"] = factory();
|
||||||
|
})(typeof self !== 'undefined' ? self : this, function() {
|
||||||
|
return /******/ (function(modules) { // webpackBootstrap
|
||||||
|
/******/ // The module cache
|
||||||
|
/******/ var installedModules = {};
|
||||||
|
/******/
|
||||||
|
/******/ // The require function
|
||||||
|
/******/ function __webpack_require__(moduleId) {
|
||||||
|
/******/
|
||||||
|
/******/ // Check if module is in cache
|
||||||
|
/******/ if(installedModules[moduleId]) {
|
||||||
|
/******/ return installedModules[moduleId].exports;
|
||||||
|
/******/ }
|
||||||
|
/******/ // Create a new module (and put it into the cache)
|
||||||
|
/******/ var module = installedModules[moduleId] = {
|
||||||
|
/******/ i: moduleId,
|
||||||
|
/******/ l: false,
|
||||||
|
/******/ exports: {}
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // Execute the module function
|
||||||
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||||
|
/******/
|
||||||
|
/******/ // Flag the module as loaded
|
||||||
|
/******/ module.l = true;
|
||||||
|
/******/
|
||||||
|
/******/ // Return the exports of the module
|
||||||
|
/******/ return module.exports;
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/
|
||||||
|
/******/ // expose the modules object (__webpack_modules__)
|
||||||
|
/******/ __webpack_require__.m = modules;
|
||||||
|
/******/
|
||||||
|
/******/ // expose the module cache
|
||||||
|
/******/ __webpack_require__.c = installedModules;
|
||||||
|
/******/
|
||||||
|
/******/ // define getter function for harmony exports
|
||||||
|
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||||
|
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||||
|
/******/ Object.defineProperty(exports, name, {
|
||||||
|
/******/ configurable: false,
|
||||||
|
/******/ enumerable: true,
|
||||||
|
/******/ get: getter
|
||||||
|
/******/ });
|
||||||
|
/******/ }
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||||
|
/******/ __webpack_require__.n = function(module) {
|
||||||
|
/******/ var getter = module && module.__esModule ?
|
||||||
|
/******/ function getDefault() { return module['default']; } :
|
||||||
|
/******/ function getModuleExports() { return module; };
|
||||||
|
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||||
|
/******/ return getter;
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // Object.prototype.hasOwnProperty.call
|
||||||
|
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||||
|
/******/
|
||||||
|
/******/ // __webpack_public_path__
|
||||||
|
/******/ __webpack_require__.p = "";
|
||||||
|
/******/
|
||||||
|
/******/ // Load entry module and return exports
|
||||||
|
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
||||||
|
/******/ })
|
||||||
|
/************************************************************************/
|
||||||
|
/******/ ([
|
||||||
|
/* 0 */
|
||||||
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
||||||
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__events__ = __webpack_require__(1);
|
||||||
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__defaultOptions__ = __webpack_require__(2);
|
||||||
|
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
||||||
|
|
||||||
|
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||||
|
|
||||||
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||||
|
|
||||||
|
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
||||||
|
|
||||||
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
var onStepsPrevious = Symbol('onStepsPrevious');
|
||||||
|
var onStepsNext = Symbol('onStepsNext');
|
||||||
|
|
||||||
|
var bulmaSteps = function (_EventEmitter) {
|
||||||
|
_inherits(bulmaSteps, _EventEmitter);
|
||||||
|
|
||||||
|
function bulmaSteps(selector) {
|
||||||
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||||
|
|
||||||
|
_classCallCheck(this, bulmaSteps);
|
||||||
|
|
||||||
|
var _this = _possibleConstructorReturn(this, (bulmaSteps.__proto__ || Object.getPrototypeOf(bulmaSteps)).call(this));
|
||||||
|
|
||||||
|
_this.element = typeof selector === 'string' ? document.querySelector(selector) : selector;
|
||||||
|
// An invalid selector or non-DOM node has been provided.
|
||||||
|
if (!_this.element) {
|
||||||
|
throw new Error('An invalid selector or non-DOM node has been provided.');
|
||||||
|
}
|
||||||
|
|
||||||
|
_this._clickEvents = ['click'];
|
||||||
|
/// Set default options and merge with instance defined
|
||||||
|
_this.options = _extends({}, __WEBPACK_IMPORTED_MODULE_1__defaultOptions__["a" /* default */], options);
|
||||||
|
|
||||||
|
_this[onStepsPrevious] = _this[onStepsPrevious].bind(_this);
|
||||||
|
_this[onStepsNext] = _this[onStepsNext].bind(_this);
|
||||||
|
|
||||||
|
_this.init();
|
||||||
|
return _this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiate all DOM element containing carousel class
|
||||||
|
* @method
|
||||||
|
* @return {Array} Array of all Carousel instances
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
_createClass(bulmaSteps, [{
|
||||||
|
key: 'init',
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiate plugin
|
||||||
|
* @method init
|
||||||
|
* @return {void}
|
||||||
|
*/
|
||||||
|
value: function init() {
|
||||||
|
this._id = 'bulmaSteps' + new Date().getTime() + Math.floor(Math.random() * Math.floor(9999));
|
||||||
|
|
||||||
|
this.steps = this.element.querySelectorAll(this.options.selector);
|
||||||
|
this.contents = this.element.querySelectorAll(this.options.selector_content);
|
||||||
|
this.previous_btn = this.element.querySelector(this.options.previous_selector);
|
||||||
|
this.next_btn = this.element.querySelector(this.options.next_selector);
|
||||||
|
|
||||||
|
[].forEach.call(this.steps, function (step, index) {
|
||||||
|
step.setAttribute('data-step-id', index);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (this.steps && this.steps.length) {
|
||||||
|
this.activate_step(0);
|
||||||
|
this.updateActions(this.steps[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
this._bindEvents();
|
||||||
|
|
||||||
|
this.emit('bulmasteps:ready', this.element.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bind all events
|
||||||
|
* @method _bindEvents
|
||||||
|
* @return {void}
|
||||||
|
*/
|
||||||
|
|
||||||
|
}, {
|
||||||
|
key: '_bindEvents',
|
||||||
|
value: function _bindEvents() {
|
||||||
|
var _this2 = this;
|
||||||
|
|
||||||
|
if (this.previous_btn != null) {
|
||||||
|
this._clickEvents.forEach(function (event) {
|
||||||
|
_this2.previous_btn.addEventListener(event, _this2[onStepsPrevious], false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.next_btn != null) {
|
||||||
|
this._clickEvents.forEach(function (event) {
|
||||||
|
_this2.next_btn.addEventListener(event, _this2[onStepsNext], false);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.options.stepClickable) {
|
||||||
|
[].forEach.call(this.steps, function (step, index) {
|
||||||
|
_this2._clickEvents.forEach(function (event) {
|
||||||
|
while (index > _this2.current_id) {
|
||||||
|
_this2[onStepsNext](event);
|
||||||
|
}
|
||||||
|
while (index < _this2.current_id) {
|
||||||
|
_this2[onStepsPrevious](event);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: onStepsPrevious,
|
||||||
|
value: function value(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
if (!e.target.getAttribute('disabled')) {
|
||||||
|
this.previous_step();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: onStepsNext,
|
||||||
|
value: function value(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
if (!e.target.getAttribute('disabled')) {
|
||||||
|
this.next_step();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'get_current_step_id',
|
||||||
|
value: function get_current_step_id() {
|
||||||
|
for (var i = 0; i < this.steps.length; i++) {
|
||||||
|
var step = this.steps[i];
|
||||||
|
|
||||||
|
if (step.classList.contains(this.options.active_class)) {
|
||||||
|
return parseInt(step.getAttribute('data-step-id'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'updateActions',
|
||||||
|
value: function updateActions(step) {
|
||||||
|
var stepId = parseInt(step.getAttribute('data-step-id'));
|
||||||
|
if (stepId == 0) {
|
||||||
|
if (this.previous_btn != null) {
|
||||||
|
this.previous_btn.setAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
if (this.next_btn != null) {
|
||||||
|
this.next_btn.removeAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
} else if (stepId == this.steps.length - 1) {
|
||||||
|
if (this.previous_btn != null) {
|
||||||
|
this.previous_btn.removeAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
if (this.next_btn != null) {
|
||||||
|
this.next_btn.setAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.previous_btn != null) {
|
||||||
|
this.previous_btn.removeAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
if (this.next_btn != null) {
|
||||||
|
this.next_btn.removeAttribute('disabled', 'disabled');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'next_step',
|
||||||
|
value: function next_step() {
|
||||||
|
var current_id = this.get_current_step_id();
|
||||||
|
|
||||||
|
if (current_id == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var next_id = current_id + 1,
|
||||||
|
errors = [];
|
||||||
|
|
||||||
|
if (typeof this.options.beforeNext != 'undefined' && this.options.beforeNext != null && this.options.beforeNext) {
|
||||||
|
errors = this.options.beforeNext(current_id);
|
||||||
|
}
|
||||||
|
this.emit('bulmasteps:before:next', current_id);
|
||||||
|
|
||||||
|
if (typeof errors == 'undefined') {
|
||||||
|
errors = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (errors.length > 0) {
|
||||||
|
this.emit('bulmasteps:errors', errors);
|
||||||
|
for (var i = 0; i < errors.length; i++) {
|
||||||
|
if (typeof this.options.onError != 'undefined' && this.options.onError != null && this.options.onError) {
|
||||||
|
this.options.onError(errors[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (next_id >= this.steps.length) {
|
||||||
|
if (typeof this.options.onFinish != 'undefined' && this.options.onFinish != null && this.options.onFinish) {
|
||||||
|
this.options.onFinish(current_id);
|
||||||
|
}
|
||||||
|
this.emit('bulmasteps:finish', current_id);
|
||||||
|
this.deactivate_step(current_id);
|
||||||
|
} else {
|
||||||
|
this.complete_step(current_id);
|
||||||
|
this.activate_step(next_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'previous_step',
|
||||||
|
value: function previous_step() {
|
||||||
|
var current_id = this.get_current_step_id();
|
||||||
|
if (current_id == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.uncomplete_step(current_id - 1);
|
||||||
|
this.activate_step(current_id - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Activate a single step,
|
||||||
|
* will deactivate all other steps.
|
||||||
|
*/
|
||||||
|
|
||||||
|
}, {
|
||||||
|
key: 'activate_step',
|
||||||
|
value: function activate_step(step_id) {
|
||||||
|
this.updateActions(this.steps[step_id]);
|
||||||
|
|
||||||
|
for (var i = 0; i < this.steps.length; i++) {
|
||||||
|
var _step = this.steps[i];
|
||||||
|
|
||||||
|
if (_step == this.steps[step_id]) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.deactivate_step(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.steps[step_id].classList.add(this.options.active_class);
|
||||||
|
if (typeof this.contents[step_id] !== 'undefined') {
|
||||||
|
this.contents[step_id].classList.add(this.options.active_class);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof this.options.onShow != 'undefined' && this.options.onShow != null && this.options.onShow) {
|
||||||
|
this.options.onShow(step_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.emit('bulmasteps:step:show', step_id);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'complete_step',
|
||||||
|
value: function complete_step(step_id) {
|
||||||
|
this.steps[step_id].classList.add(this.options.completed_class);
|
||||||
|
this.emit('bulmasteps:step:completed', step_id);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'uncomplete_step',
|
||||||
|
value: function uncomplete_step(step_id) {
|
||||||
|
this.steps[step_id].classList.remove(this.options.completed_class);
|
||||||
|
this.emit('bulmasteps:step:uncompleted', step_id);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: 'deactivate_step',
|
||||||
|
value: function deactivate_step(step_id) {
|
||||||
|
this.steps[step_id].classList.remove(this.options.active_class);
|
||||||
|
if (typeof this.contents[step_id] !== 'undefined') {
|
||||||
|
this.contents[step_id].classList.remove(this.options.active_class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}], [{
|
||||||
|
key: 'attach',
|
||||||
|
value: function attach() {
|
||||||
|
var selector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '.steps';
|
||||||
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
||||||
|
|
||||||
|
var instances = new Array();
|
||||||
|
|
||||||
|
var elements = document.querySelectorAll(selector);
|
||||||
|
[].forEach.call(elements, function (element) {
|
||||||
|
setTimeout(function () {
|
||||||
|
instances.push(new bulmaSteps(element, options));
|
||||||
|
}, 100);
|
||||||
|
});
|
||||||
|
return instances;
|
||||||
|
}
|
||||||
|
}]);
|
||||||
|
|
||||||
|
return bulmaSteps;
|
||||||
|
}(__WEBPACK_IMPORTED_MODULE_0__events__["a" /* default */]);
|
||||||
|
|
||||||
|
/* harmony default export */ __webpack_exports__["default"] = (bulmaSteps);
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
/* 1 */
|
||||||
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||||
|
|
||||||
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||||
|
|
||||||
|
var EventEmitter = function () {
|
||||||
|
function EventEmitter() {
|
||||||
|
var listeners = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
||||||
|
|
||||||
|
_classCallCheck(this, EventEmitter);
|
||||||
|
|
||||||
|
this._listeners = new Map(listeners);
|
||||||
|
this._middlewares = new Map();
|
||||||
|
}
|
||||||
|
|
||||||
|
_createClass(EventEmitter, [{
|
||||||
|
key: "listenerCount",
|
||||||
|
value: function listenerCount(eventName) {
|
||||||
|
if (!this._listeners.has(eventName)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
var eventListeners = this._listeners.get(eventName);
|
||||||
|
return eventListeners.length;
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "removeListeners",
|
||||||
|
value: function removeListeners() {
|
||||||
|
var _this = this;
|
||||||
|
|
||||||
|
var eventName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
|
||||||
|
var middleware = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
||||||
|
|
||||||
|
if (eventName !== null) {
|
||||||
|
if (Array.isArray(eventName)) {
|
||||||
|
name.forEach(function (e) {
|
||||||
|
return _this.removeListeners(e, middleware);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this._listeners.delete(eventName);
|
||||||
|
|
||||||
|
if (middleware) {
|
||||||
|
this.removeMiddleware(eventName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this._listeners = new Map();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "middleware",
|
||||||
|
value: function middleware(eventName, fn) {
|
||||||
|
var _this2 = this;
|
||||||
|
|
||||||
|
if (Array.isArray(eventName)) {
|
||||||
|
name.forEach(function (e) {
|
||||||
|
return _this2.middleware(e, fn);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
if (!Array.isArray(this._middlewares.get(eventName))) {
|
||||||
|
this._middlewares.set(eventName, []);
|
||||||
|
}
|
||||||
|
|
||||||
|
this._middlewares.get(eventName).push(fn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "removeMiddleware",
|
||||||
|
value: function removeMiddleware() {
|
||||||
|
var _this3 = this;
|
||||||
|
|
||||||
|
var eventName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
|
||||||
|
|
||||||
|
if (eventName !== null) {
|
||||||
|
if (Array.isArray(eventName)) {
|
||||||
|
name.forEach(function (e) {
|
||||||
|
return _this3.removeMiddleware(e);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this._middlewares.delete(eventName);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this._middlewares = new Map();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "on",
|
||||||
|
value: function on(name, callback) {
|
||||||
|
var _this4 = this;
|
||||||
|
|
||||||
|
var once = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
||||||
|
|
||||||
|
if (Array.isArray(name)) {
|
||||||
|
name.forEach(function (e) {
|
||||||
|
return _this4.on(e, callback);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
name = name.toString();
|
||||||
|
var split = name.split(/,|, | /);
|
||||||
|
|
||||||
|
if (split.length > 1) {
|
||||||
|
split.forEach(function (e) {
|
||||||
|
return _this4.on(e, callback);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
if (!Array.isArray(this._listeners.get(name))) {
|
||||||
|
this._listeners.set(name, []);
|
||||||
|
}
|
||||||
|
|
||||||
|
this._listeners.get(name).push({ once: once, callback: callback });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "once",
|
||||||
|
value: function once(name, callback) {
|
||||||
|
this.on(name, callback, true);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
key: "emit",
|
||||||
|
value: function emit(name, data) {
|
||||||
|
var _this5 = this;
|
||||||
|
|
||||||
|
var silent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
||||||
|
|
||||||
|
name = name.toString();
|
||||||
|
var listeners = this._listeners.get(name);
|
||||||
|
var middlewares = null;
|
||||||
|
var doneCount = 0;
|
||||||
|
var execute = silent;
|
||||||
|
|
||||||
|
if (Array.isArray(listeners)) {
|
||||||
|
listeners.forEach(function (listener, index) {
|
||||||
|
// Start Middleware checks unless we're doing a silent emit
|
||||||
|
if (!silent) {
|
||||||
|
middlewares = _this5._middlewares.get(name);
|
||||||
|
// Check and execute Middleware
|
||||||
|
if (Array.isArray(middlewares)) {
|
||||||
|
middlewares.forEach(function (middleware) {
|
||||||
|
middleware(data, function () {
|
||||||
|
var newData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
|
||||||
|
|
||||||
|
if (newData !== null) {
|
||||||
|
data = newData;
|
||||||
|
}
|
||||||
|
doneCount++;
|
||||||
|
}, name);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (doneCount >= middlewares.length) {
|
||||||
|
execute = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
execute = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// If Middleware checks have been passed, execute
|
||||||
|
if (execute) {
|
||||||
|
if (listener.once) {
|
||||||
|
listeners[index] = null;
|
||||||
|
}
|
||||||
|
listener.callback(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Dirty way of removing used Events
|
||||||
|
while (listeners.indexOf(null) !== -1) {
|
||||||
|
listeners.splice(listeners.indexOf(null), 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}]);
|
||||||
|
|
||||||
|
return EventEmitter;
|
||||||
|
}();
|
||||||
|
|
||||||
|
/* harmony default export */ __webpack_exports__["a"] = (EventEmitter);
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
/* 2 */
|
||||||
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
var defaultOptions = {
|
||||||
|
'selector': '.step-item',
|
||||||
|
'selector_content': '.step-content',
|
||||||
|
'previous_selector': '[data-nav="previous"]',
|
||||||
|
'next_selector': '[data-nav="next"]',
|
||||||
|
'active_class': 'is-active',
|
||||||
|
'completed_class': 'is-completed',
|
||||||
|
'stepClickable': false,
|
||||||
|
'beforeNext': null,
|
||||||
|
'onShow': null,
|
||||||
|
'onFinish': null,
|
||||||
|
'onError': null
|
||||||
|
};
|
||||||
|
|
||||||
|
/* harmony default export */ __webpack_exports__["a"] = (defaultOptions);
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
/******/ ])["default"];
|
||||||
|
});
|
||||||
|
bulmaSteps.attach();
|
1
static-data/www/shared/bulma-tooltip.min.css
vendored
Normal file
1
static-data/www/shared/bulma-tooltip.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -29,6 +29,8 @@ shutdownBtn.onclick = function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (document.location.pathname != "/onboarding/"){
|
||||||
|
|
||||||
restartBtn.onclick = function(){
|
restartBtn.onclick = function(){
|
||||||
if (! nowebpass){
|
if (! nowebpass){
|
||||||
if (confirm("Really restart Onionr?")){
|
if (confirm("Really restart Onionr?")){
|
||||||
@ -41,7 +43,6 @@ restartBtn.onclick = function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
fetch('/config/get/onboarding.done', {
|
fetch('/config/get/onboarding.done', {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
@ -54,3 +55,4 @@ fetch('/config/get/onboarding.done', {
|
|||||||
window.location.href = window.location.pathname = "/onboarding/" + window.location.hash
|
window.location.href = window.location.pathname = "/onboarding/" + window.location.hash
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user