frontend: display anonymous button in textarea
This commit is contained in:
parent
bcc81e1ad8
commit
87a0c577bb
@ -27,6 +27,7 @@
|
|||||||
var ID_LOGIN_BOX_HR = "commento-login-box-hr";
|
var ID_LOGIN_BOX_HR = "commento-login-box-hr";
|
||||||
var ID_LOGIN_BOX_OAUTH_PRETEXT = "commento-login-box-oauth-pretext";
|
var ID_LOGIN_BOX_OAUTH_PRETEXT = "commento-login-box-oauth-pretext";
|
||||||
var ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER = "commento-login-box-oauth-buttons-container";
|
var ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER = "commento-login-box-oauth-buttons-container";
|
||||||
|
var ID_LOGIN_BOX_ANONYMOUS_BUTTON = "commento-login-box-anonymous-button";
|
||||||
var ID_MOD_TOOLS = "commento-mod-tools";
|
var ID_MOD_TOOLS = "commento-mod-tools";
|
||||||
var ID_MOD_TOOLS_LOCK_BUTTON = "commento-mod-tools-lock-button";
|
var ID_MOD_TOOLS_LOCK_BUTTON = "commento-mod-tools-lock-button";
|
||||||
var ID_ERROR = "commento-error";
|
var ID_ERROR = "commento-error";
|
||||||
@ -112,6 +113,7 @@
|
|||||||
|
|
||||||
|
|
||||||
function classRemove(el, cls) {
|
function classRemove(el, cls) {
|
||||||
|
if (el !== null)
|
||||||
el.classList.remove("commento-" + cls);
|
el.classList.remove("commento-" + cls);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,6 +124,7 @@
|
|||||||
|
|
||||||
|
|
||||||
function remove(el) {
|
function remove(el) {
|
||||||
|
if (el !== null)
|
||||||
el.parentNode.removeChild(el);
|
el.parentNode.removeChild(el);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,9 +353,6 @@
|
|||||||
commenters = resp.commenters;
|
commenters = resp.commenters;
|
||||||
configuredOauths = resp.configuredOauths;
|
configuredOauths = resp.configuredOauths;
|
||||||
|
|
||||||
if (!resp.requireIdentification)
|
|
||||||
configuredOauths.push("anonymous");
|
|
||||||
|
|
||||||
cssLoad(cdn + "/css/commento.css", "window.loadCssOverride()");
|
cssLoad(cdn + "/css/commento.css", "window.loadCssOverride()");
|
||||||
|
|
||||||
call(callback);
|
call(callback);
|
||||||
@ -406,6 +406,7 @@
|
|||||||
var buttons = create("div");
|
var buttons = create("div");
|
||||||
var createButton = create("div");
|
var createButton = create("div");
|
||||||
var loginButton = create("div");
|
var loginButton = create("div");
|
||||||
|
var anonymousButton = create("div");
|
||||||
|
|
||||||
classAdd(buttonsContainer, "account-buttons-container");
|
classAdd(buttonsContainer, "account-buttons-container");
|
||||||
classAdd(question, "account-buttons-question");
|
classAdd(question, "account-buttons-question");
|
||||||
@ -414,18 +415,23 @@
|
|||||||
classAdd(createButton, "create-button");
|
classAdd(createButton, "create-button");
|
||||||
classAdd(loginButton, "button");
|
classAdd(loginButton, "button");
|
||||||
classAdd(loginButton, "login-button");
|
classAdd(loginButton, "login-button");
|
||||||
|
classAdd(anonymousButton, "anonymous-button");
|
||||||
|
|
||||||
attrSet(createButton, "onclick", "loginBoxShow()");
|
attrSet(createButton, "onclick", "loginBoxShow()");
|
||||||
attrSet(loginButton, "onclick", "loginBoxShow(); loginSwitch(true);");
|
attrSet(loginButton, "onclick", "loginBoxShow(); loginSwitch(true);");
|
||||||
|
attrSet(anonymousButton, "onclick", "anonymousChoose()");
|
||||||
attrSet(textarea, "disabled", true);
|
attrSet(textarea, "disabled", true);
|
||||||
|
|
||||||
createButton.innerText = "Create an Account";
|
createButton.innerText = "Create an Account";
|
||||||
loginButton.innerText = "Login";
|
loginButton.innerText = "Login";
|
||||||
|
anonymousButton.innerText = "Comment anonymously";
|
||||||
question.innerText = "Want to add to the discussion?";
|
question.innerText = "Want to add to the discussion?";
|
||||||
|
|
||||||
append(buttons, createButton);
|
append(buttons, createButton);
|
||||||
append(buttons, loginButton);
|
append(buttons, loginButton);
|
||||||
append(buttonsContainer, buttons);
|
append(buttonsContainer, buttons);
|
||||||
|
if (!requireIdentification)
|
||||||
|
append(buttonsContainer, anonymousButton);
|
||||||
append(textareaContainer, question);
|
append(textareaContainer, question);
|
||||||
append(textareaContainer, buttonsContainer);
|
append(textareaContainer, buttonsContainer);
|
||||||
}
|
}
|
||||||
@ -999,15 +1005,14 @@
|
|||||||
append(el, submit);
|
append(el, submit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
global.anonymousChoose = function(provider) {
|
||||||
global.commentoAuth = function(provider) {
|
|
||||||
if (provider == "anonymous") {
|
|
||||||
cookieSet("commentoCommenterToken", "anonymous");
|
cookieSet("commentoCommenterToken", "anonymous");
|
||||||
chosenAnonymous = true;
|
chosenAnonymous = true;
|
||||||
refreshAll();
|
refreshAll();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
global.commentoAuth = function(provider) {
|
||||||
var popup = window.open("", "_blank");
|
var popup = window.open("", "_blank");
|
||||||
|
|
||||||
get(origin + "/api/commenter/token/new", function(resp) {
|
get(origin + "/api/commenter/token/new", function(resp) {
|
||||||
@ -1062,6 +1067,7 @@
|
|||||||
var oauthPretext = create("div");
|
var oauthPretext = create("div");
|
||||||
var oauthButtonsContainer = create("div");
|
var oauthButtonsContainer = create("div");
|
||||||
var oauthButtons = create("div");
|
var oauthButtons = create("div");
|
||||||
|
var anonymousButton = create("div");
|
||||||
var close = create("div");
|
var close = create("div");
|
||||||
|
|
||||||
loginBox.id = ID_LOGIN_BOX;
|
loginBox.id = ID_LOGIN_BOX;
|
||||||
@ -1074,6 +1080,7 @@
|
|||||||
hr.id = ID_LOGIN_BOX_HR;
|
hr.id = ID_LOGIN_BOX_HR;
|
||||||
oauthPretext.id = ID_LOGIN_BOX_OAUTH_PRETEXT;
|
oauthPretext.id = ID_LOGIN_BOX_OAUTH_PRETEXT;
|
||||||
oauthButtonsContainer.id = ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER;
|
oauthButtonsContainer.id = ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER;
|
||||||
|
anonymousButton.id = ID_LOGIN_BOX_ANONYMOUS_BUTTON;
|
||||||
|
|
||||||
header.innerText = "Create an account to join the discussion!";
|
header.innerText = "Create an account to join the discussion!";
|
||||||
|
|
||||||
@ -1090,6 +1097,7 @@
|
|||||||
classAdd(oauthPretext, "login-box-subtitle");
|
classAdd(oauthPretext, "login-box-subtitle");
|
||||||
classAdd(oauthButtonsContainer, "oauth-buttons-container");
|
classAdd(oauthButtonsContainer, "oauth-buttons-container");
|
||||||
classAdd(oauthButtons, "oauth-buttons");
|
classAdd(oauthButtons, "oauth-buttons");
|
||||||
|
classAdd(anonymousButton, "anonymous-button");
|
||||||
classAdd(close, "login-box-close");
|
classAdd(close, "login-box-close");
|
||||||
classAdd(root, "root-min-height");
|
classAdd(root, "root-min-height");
|
||||||
|
|
||||||
@ -1097,6 +1105,7 @@
|
|||||||
loginLink.innerText = "Already have an account? Log in.";
|
loginLink.innerText = "Already have an account? Log in.";
|
||||||
subtitle.innerText = "Sign up with your email to vote and comment.";
|
subtitle.innerText = "Sign up with your email to vote and comment.";
|
||||||
oauthPretext.innerText = "Or proceed with social login.";
|
oauthPretext.innerText = "Or proceed with social login.";
|
||||||
|
anonymousButton.innerText = "Comment anonymously";
|
||||||
|
|
||||||
attrSet(loginBoxContainer, "style", "display: none; opacity: 0;");
|
attrSet(loginBoxContainer, "style", "display: none; opacity: 0;");
|
||||||
attrSet(emailInput, "name", "email");
|
attrSet(emailInput, "name", "email");
|
||||||
@ -1104,6 +1113,7 @@
|
|||||||
attrSet(emailInput, "type", "text");
|
attrSet(emailInput, "type", "text");
|
||||||
attrSet(emailButton, "onclick", "passwordAsk()");
|
attrSet(emailButton, "onclick", "passwordAsk()");
|
||||||
attrSet(loginLink, "onclick", "loginSwitch()");
|
attrSet(loginLink, "onclick", "loginSwitch()");
|
||||||
|
attrSet(anonymousButton, "onclick", "anonymousChoose()");
|
||||||
attrSet(close, "onclick", "loginBoxClose()");
|
attrSet(close, "onclick", "loginBoxClose()");
|
||||||
|
|
||||||
for (var i = 0; i < configuredOauths.length; i++) {
|
for (var i = 0; i < configuredOauths.length; i++) {
|
||||||
@ -1135,6 +1145,8 @@
|
|||||||
append(loginBox, oauthPretext);
|
append(loginBox, oauthPretext);
|
||||||
append(oauthButtonsContainer, oauthButtons);
|
append(oauthButtonsContainer, oauthButtons);
|
||||||
append(loginBox, oauthButtonsContainer);
|
append(loginBox, oauthButtonsContainer);
|
||||||
|
if (!requireIdentification)
|
||||||
|
append(loginBox, anonymousButton);
|
||||||
oauthButtonsShown = true;
|
oauthButtonsShown = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1240,6 +1252,9 @@
|
|||||||
var hr = $(ID_LOGIN_BOX_HR);
|
var hr = $(ID_LOGIN_BOX_HR);
|
||||||
var oauthButtonsContainer = $(ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER);
|
var oauthButtonsContainer = $(ID_LOGIN_BOX_OAUTH_BUTTONS_CONTAINER);
|
||||||
var oauthPretext = $(ID_LOGIN_BOX_OAUTH_PRETEXT);
|
var oauthPretext = $(ID_LOGIN_BOX_OAUTH_PRETEXT);
|
||||||
|
var anonymousButton = null;
|
||||||
|
if (!requireIdentification);
|
||||||
|
anonymousButton = $(ID_LOGIN_BOX_ANONYMOUS_BUTTON);
|
||||||
|
|
||||||
remove(emailButton);
|
remove(emailButton);
|
||||||
remove(loginLinkContainer);
|
remove(loginLinkContainer);
|
||||||
@ -1250,6 +1265,7 @@
|
|||||||
remove(oauthButtonsContainer);
|
remove(oauthButtonsContainer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
remove(anonymousButton);
|
||||||
|
|
||||||
var order, id, type, placeholder;
|
var order, id, type, placeholder;
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ textarea::placeholder {
|
|||||||
color: #aaa;
|
color: #aaa;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
line-height: 80px;
|
line-height: 110px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -28,7 +28,7 @@ textarea {
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
outline: none;
|
outline: none;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
min-height: 100px;
|
min-height: 130px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ textarea {
|
|||||||
|
|
||||||
.commento-account-buttons-question {
|
.commento-account-buttons-question {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0.5rem;
|
top: 10px;
|
||||||
display: block;
|
display: block;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -124,9 +124,14 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.commento-anonymous-button {
|
.commento-anonymous-button {
|
||||||
background: #096fa6;
|
display: block;
|
||||||
text-transform: uppercase;
|
color: $blue-6;
|
||||||
|
font-weight: 700;
|
||||||
|
margin-top: 12px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commento-blurred-textarea {
|
.commento-blurred-textarea {
|
||||||
@ -154,16 +159,22 @@ textarea {
|
|||||||
.commento-create-button {
|
.commento-create-button {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
background: $pink-9;
|
background: $pink-9;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commento-login-button {
|
.commento-login-button {
|
||||||
width: 50px;
|
width: 50px;
|
||||||
background: $cyan-9;
|
background: $cyan-9;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commento-submit-button {
|
.commento-submit-button {
|
||||||
float: right;
|
float: right;
|
||||||
background: $indigo-7;
|
background: $indigo-7;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commento-approve-button {
|
.commento-approve-button {
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
.commento-login-link {
|
.commento-login-link {
|
||||||
font-size: 15px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user