stupid console.log and production build + blur phone numbers
This commit is contained in:
parent
7ec315a11f
commit
9f2ec39396
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -12,9 +12,15 @@ function getSelectors(){
|
|||
if(!standardSidebarView)return null
|
||||
let defaultClassName = removeDa(standardSidebarView.standardSidebarView)
|
||||
let selects = []
|
||||
let userSettingsAccount = BDModules.get(e => e.userSettingsAccount)[0]
|
||||
const children = BDModules.get(e => typeof e.children === "string")[0]
|
||||
selects.push(`#app-mount .${defaultClassName} .payment-info .${removeDa(BDModules.get(e => e.description && typeof e.description === "string" && e.description.includes("formText"))[0].description)}`)
|
||||
selects.push(`#app-mount .${defaultClassName} .${removeDa(BDModules.get(e => e.paymentSourceRow)[0].paymentSourceRow)} .${removeDa(BDModules.get(e => e.subText && e.descriptionWrapper)[0].subText)}`)
|
||||
selects.push(`#app-mount .${defaultClassName} .${removeDa(BDModules.get(e => e.userSettingsAccount)[0].userSettingsAccount)} div:nth-child(2)>div:nth-child(2)>.${removeDa(BDModules.get(e => e.viewBody)[0].viewBody)}`)
|
||||
if(userSettingsAccount){
|
||||
selects.push(`#app-mount .${defaultClassName} .${removeDa(userSettingsAccount.userSettingsAccount)} div:nth-child(2)>div:nth-child(2)>.${removeDa(BDModules.get(e => e.viewBody)[0].viewBody)}`)
|
||||
selects.push(`.${removeDa(userSettingsAccount.userSettingsSecurity)} .${removeDa(children.children)} > div:nth-child(2)`)
|
||||
}
|
||||
console.log(selects)
|
||||
return selects
|
||||
}
|
||||
|
||||
|
@ -30,13 +36,13 @@ export default new class BlurPrivate {
|
|||
|
||||
if(!selectors)console.error(new Error("Couldn't find selectors to blur personnal informations."))
|
||||
DOMTools.addStyle("blurPrivate", `
|
||||
${selectors[0]}, ${selectors[1]}, ${selectors[2]} {
|
||||
${selectors.join(", ")} {
|
||||
transition: all 150ms cubic-bezier(.55,.085,.68,.53);
|
||||
filter: blur(4px);
|
||||
opacity: .8;
|
||||
}
|
||||
|
||||
${selectors[0]}:hover, ${selectors[1]}:hover, ${selectors[2]}:hover {
|
||||
${selectors.map(e => e+":hover").join(", ")} {
|
||||
transition: all 150ms cubic-bezier(.55,.09,.68,.53);
|
||||
filter: none;
|
||||
opacity: 1;
|
||||
|
|
|
@ -73,7 +73,7 @@ export default class ApiPreview extends React.PureComponent {
|
|||
let renderPreview = () => {
|
||||
return <div style={{margin: "20px"}}>
|
||||
<div style={{
|
||||
backgroundColor: "var(--background-primary)",
|
||||
backgroundColor: "var(--background-secondary)",
|
||||
padding: "30px 30px",
|
||||
borderRadius: "8px"
|
||||
}} className="lc-tab-box-shadow">
|
||||
|
@ -84,7 +84,7 @@ export default class ApiPreview extends React.PureComponent {
|
|||
let renderCode = () => {
|
||||
return <div style={{margin: "20px"}}>
|
||||
<div style={{
|
||||
backgroundColor: "var(--background-primary)",
|
||||
backgroundColor: "var(--background-secondary)",
|
||||
padding: "30px 30px",
|
||||
borderRadius: "8px"
|
||||
}} className="lc-tab-box-shadow">
|
||||
|
@ -115,7 +115,7 @@ export default class ApiPreview extends React.PureComponent {
|
|||
marginTop: "20px", marginBottom: "20px"
|
||||
}},
|
||||
React.createElement("div", {style: {
|
||||
backgroundColor: "var(--background-primary)",
|
||||
backgroundColor: "var(--background-secondary)",
|
||||
padding: "30px 30px",
|
||||
borderRadius: "8px"
|
||||
}, className: "lc-tab-box-shadow" },
|
||||
|
@ -127,7 +127,7 @@ export default class ApiPreview extends React.PureComponent {
|
|||
marginTop: "20px", marginBottom: "20px"
|
||||
}}>
|
||||
<div style={{
|
||||
backgroundColor: "var(--background-primary)",
|
||||
backgroundColor: "var(--background-secondary)",
|
||||
padding: "30px 30px",
|
||||
borderRadius: "8px"
|
||||
}} className="lc-tab-box-shadow">
|
||||
|
|
|
@ -731,7 +731,6 @@ class Profile extends React.Component {
|
|||
activity: activity
|
||||
})).render().props.children // bypass tracking
|
||||
|
||||
console.log(profile)
|
||||
profile.props.style = {
|
||||
width: "auto"
|
||||
}
|
||||
|
|
2
build.js
2
build.js
|
@ -3,7 +3,7 @@ const path = require("path")
|
|||
const terser = require("terser")
|
||||
const util = require("util")
|
||||
|
||||
const production = false
|
||||
const production = true
|
||||
|
||||
let fs = require("fs")
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "lightcord",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"description": "A simple - customizable - Discord Client.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue