Merge pull request #1091 from BeatC/customer-agreement

Customer agreement
This commit is contained in:
Дамян Минков 2016-11-02 13:18:33 -05:00 committed by GitHub
commit a9c984e7db
11 changed files with 117 additions and 46 deletions

29
css/_inlay.scss Normal file
View File

@ -0,0 +1,29 @@
.inlay {
margin-top: 14%;
@include border-radius(3px);
padding: 40px 38px 44px;
color: #fff;
background: lighten(desaturate($defaultBackground, 70%), 20%);
text-align: center;
&__title {
margin: 12px 0;
padding-bottom: 17px;
color: $popoverFontColor;
font-size: 21px;
letter-spacing: 0.3px;
border-bottom: 1px solid $auiBorderColor;
}
&__text {
color: $popoverFontColor;
display: block;
margin-top: 22px;
font-size: 16px;
}
&__icon {
margin: 0 10px;
font-size: 50px;
}
}

15
css/_policy.scss Normal file
View File

@ -0,0 +1,15 @@
.policy {
&__logo {
display: block;
width: 200px;
height: 50px;
margin: 30px auto 0;
}
&__text {
text-align: center;
font-size: 14px;
line-height: 21px;
font-weight: 300;
}
}

View File

@ -1,3 +1,5 @@
@import "themes/light";
/**
* Style variables
*/
@ -23,7 +25,6 @@ $defaultColor: #F1F1F1;
$defaultSideBarFontColor: #44A5FF;
$defaultSemiDarkColor: #ACACAC;
$defaultDarkColor: #2b3d5c;
$defaultBackground: #474747;
$tooltipBg: rgba(0,0,0, 0.7);
/**

View File

@ -29,15 +29,12 @@
/* Fonts END */
/* Theme BEGIN */
@import "themes/main";
/* Theme END */
/* Modules BEGIN */
@import 'toastr';
@import 'base';
@import 'overlay/overlay';
@import 'inlay';
@import 'reload_overlay/reload_overlay';
@import 'modals/dialog';
@import 'modals/feedback/feedback';
@ -65,5 +62,6 @@
@import "connection-info";
@import 'aui-components/dropdown';
@import '404';
@import 'policy';
/* Modules END */

View File

@ -1,30 +1,31 @@
.overlay_container {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: $overlayZ;
background: rgba(22, 185, 252, .9);
}
.overlay {
&__container {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: fixed;
z-index: $overlayZ;
background: $defaultBackground;
}
.overlay_content {
color: #fff;
text-align: center;
width: 400px;
height: 250px;
top: 50%;
left: 50%;
position: absolute;
margin-top: -125px;
margin-left: -200px;
}
&__content {
position: absolute;
margin: 0 auto;
height: 100%;
width: 56%;
left: 50%;
@include transform(translateX(-50%));
.overlay_text_small {
display: block;
font-size: 18px;
}
&_bottom {
position: absolute;
bottom: 0;
}
}
.overlay_icon {
font-size: 100px;
}
&__policy {
position: absolute;
bottom: 24px;
width: 100%;
}
}

View File

@ -22,6 +22,11 @@ $primaryButtonFontWeight: 400;
$buttonShadowColor: #192d4f;
/**
* Color variables
**/
$defaultBackground: #474747;
/**
* Connection indicator
**/

View File

@ -1,5 +0,0 @@
/**
* Switch themes here
*/
@import "light";

View File

@ -69,5 +69,6 @@ var interfaceConfig = { // eslint-disable-line no-unused-vars
// disables the ringing sound when the RingOverlay is shown.
DISABLE_RINGING: false,
AUDIO_LEVEL_PRIMARY_COLOR: "rgba(255,255,255,0.4)",
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.2)"
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.2)",
POLICY_LOGO: null
};

View File

@ -75,6 +75,10 @@
"content": "Learn about your users through easy integration with Piwik, Google Analytics, and other usage monitoring and statistics systems."
}
},
"startupoverlay": {
"policyText": " ",
"title": "__app__ needs to use your microphone and camera."
},
"toolbar": {
"mute": "Mute / Unmute",
"videomute": "Start / Stop camera",

View File

@ -1,4 +1,4 @@
/* global */
/* global interfaceConfig */
import Overlay from '../overlay/Overlay';
@ -22,11 +22,33 @@ class GUMOverlayImpl extends Overlay {
* @inheritDoc
*/
_buildOverlayContent() {
return `
<span class="overlay_icon icon-microphone"></span>
<span class="overlay_icon icon-camera"></span>
<span data-i18n='[html]userMedia.${this.browser}GrantPermissions'
class='overlay_text_small'></span>`;
let textKey = `userMedia.${this.browser}GrantPermissions`;
let titleKey = 'startupoverlay.title';
let titleOptions = '{ "postProcess": "resolveAppName" }';
let policyTextKey = 'startupoverlay.policyText';
let policyLogo = '';
let policyLogoSrc = interfaceConfig.POLICY_LOGO;
if (policyLogoSrc) {
policyLogo += (
`<div class="policy__logo">
<img src="${policyLogoSrc}"/>
</div>`
);
}
return (
`<div class="inlay">
<span class="inlay__icon icon-microphone"></span>
<span class="inlay__icon icon-camera"></span>
<h3 class="inlay__title" data-i18n="${titleKey}"
data-i18n-options='${titleOptions}'></h3>
<span class='inlay__text'data-i18n='[html]${textKey}'></span>
</div>
<div class="policy overlay__policy">
<p class="policy__text" data-i18n="[html]${policyTextKey}"></p>
${policyLogo}
</div>`
);
}
}

View File

@ -34,8 +34,8 @@ export default class Overlay{
let overlayContent = this._buildOverlayContent();
this.$overlay = $(`
<div class='overlay_container'>
<div class='overlay_content'>
<div class='overlay__container'>
<div class='overlay__content'>
${overlayContent}
</div>
</div>`);