mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-27 20:03:45 +03:00
Make PAC switching work
This commit is contained in:
parent
82a2994dcc
commit
e97a2bcff5
|
@ -137,8 +137,8 @@ export default function getApp(theState) {
|
||||||
|
|
||||||
props = Object.assign({}, props, {
|
props = Object.assign({}, props, {
|
||||||
funs: {
|
funs: {
|
||||||
setStatusTo: this.setStatusTo,
|
setStatusTo: this.setStatusTo.bind(this),
|
||||||
conduct: this.conduct,
|
conduct: this.conduct.bind(this),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@ export default function getInfoRow() {
|
||||||
const iddy = props.idPrefix + ( props.ifDashify ? camelToDash(props.conf.key) : props.conf.key );
|
const iddy = props.idPrefix + ( props.ifDashify ? camelToDash(props.conf.key) : props.conf.key );
|
||||||
return (
|
return (
|
||||||
<li class={scopedCss.infoRow + ' horFlex'}>
|
<li class={scopedCss.infoRow + ' horFlex'}>
|
||||||
<input type={props.type} name={props.name} checked={props.checked} id={iddy} />
|
<input type={props.type} name={props.name} checked={props.checked} id={iddy} onClick={props.onClick}/>
|
||||||
<div class={scopedCss.labelContainer}>
|
<div class={scopedCss.labelContainer}>
|
||||||
<label for={iddy}>{props.conf.label}</label>
|
<label for={iddy}>{props.conf.label}</label>
|
||||||
{props.children}
|
{props.children}
|
||||||
|
|
|
@ -45,22 +45,6 @@ export default function getPacChooser(...args) {
|
||||||
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
// UTILS START.
|
|
||||||
|
|
||||||
const currentProviderRadio = () => {
|
|
||||||
|
|
||||||
const iddy = antiCensorRu.getCurrentPacProviderKey() || 'none';
|
|
||||||
return document.getElementById(iddy);
|
|
||||||
|
|
||||||
};
|
|
||||||
const checkChosenProvider = () => {
|
|
||||||
|
|
||||||
currentProviderRadio().checked = true;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
// UTILS END.
|
|
||||||
|
|
||||||
class LastUpdateDate extends Component {
|
class LastUpdateDate extends Component {
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -115,6 +99,54 @@ export default function getPacChooser(...args) {
|
||||||
|
|
||||||
return class PacChooser extends Component {
|
return class PacChooser extends Component {
|
||||||
|
|
||||||
|
constructor(props) {
|
||||||
|
|
||||||
|
super();
|
||||||
|
this.state = {
|
||||||
|
chosenPacName: 'none',
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
getCurrentProviderId() {
|
||||||
|
|
||||||
|
return this.props.apis.antiCensorRu.getCurrentPacProviderKey() || 'none';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
radioClickHandler(event) {
|
||||||
|
|
||||||
|
const checkChosenProvider = () =>
|
||||||
|
this.setState({ chosenPacName: this.getCurrentProviderId() });
|
||||||
|
|
||||||
|
const pacKey = event.target.id;
|
||||||
|
if (
|
||||||
|
pacKey === (
|
||||||
|
this.props.apis.antiCensorRu.getCurrentPacProviderKey() || 'none'
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (pacKey === 'none') {
|
||||||
|
this.props.funs.conduct(
|
||||||
|
'Отключение...',
|
||||||
|
(cb) => this.props.apis.antiCensorRu.clearPacAsync(cb),
|
||||||
|
'Отключено.',
|
||||||
|
() => this.setState({ chosenPacName: 'none' }),
|
||||||
|
checkChosenProvider
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
this.props.funs.conduct(
|
||||||
|
'Установка...',
|
||||||
|
(cb) => this.props.apis.antiCensorRu.installPacAsync(pacKey, cb),
|
||||||
|
'PAC-скрипт установлен.',
|
||||||
|
checkChosenProvider
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
render(props) {
|
render(props) {
|
||||||
|
|
||||||
const updatePac = function updatePac() {
|
const updatePac = function updatePac() {
|
||||||
|
@ -125,7 +157,7 @@ export default function getPacChooser(...args) {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const checkedIddy = props.apis.antiCensorRu.getCurrentPacProviderKey() || 'none';
|
const iddyToCheck = this.getCurrentProviderId();
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{props.flags.ifInsideOptionsPage && (<header>PAC-скрипт:</header>)}
|
{props.flags.ifInsideOptionsPage && (<header>PAC-скрипт:</header>)}
|
||||||
|
@ -133,16 +165,23 @@ export default function getPacChooser(...args) {
|
||||||
{
|
{
|
||||||
props.apis.antiCensorRu.getSortedEntriesForProviders().map((provConf) =>
|
props.apis.antiCensorRu.getSortedEntriesForProviders().map((provConf) =>
|
||||||
(<InfoLi
|
(<InfoLi
|
||||||
|
onClick={this.radioClickHandler.bind(this)}
|
||||||
conf={provConf}
|
conf={provConf}
|
||||||
type="radio"
|
type="radio"
|
||||||
name="pacProvider"
|
name="pacProvider"
|
||||||
checked={checkedIddy === provConf.key}
|
checked={iddyToCheck === provConf.key}
|
||||||
>
|
>
|
||||||
<a href="" class={scopedCss.updateButton} onClick={(evt) => { evt.preventDefault(); updatePac(); }}>[обновить]</a>
|
<a href="" class={scopedCss.updateButton} onClick={(evt) => { evt.preventDefault(); updatePac(); }}>[обновить]</a>
|
||||||
</InfoLi>)
|
</InfoLi>)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
<InfoLi type="radio" name="pacProvider" conf={{key: 'none', label: 'Отключить'}} checked={checkedIddy === 'none'}/>
|
<InfoLi
|
||||||
|
onClick={this.radioClickHandler.bind(this)}
|
||||||
|
type="radio"
|
||||||
|
name="pacProvider"
|
||||||
|
conf={{key: 'none', label: 'Отключить'}}
|
||||||
|
checked={iddyToCheck === 'none'}
|
||||||
|
/>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="updateMessage" class="horFlex" style="align-items: center">
|
<div id="updateMessage" class="horFlex" style="align-items: center">
|
||||||
{ createElement(LastUpdateDate, props) }
|
{ createElement(LastUpdateDate, props) }
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default function append(document, props) {
|
||||||
--cr-icon-selected: #d7d7d7;
|
--cr-icon-selected: #d7d7d7;
|
||||||
--cr-popup-border: #bababa;
|
--cr-popup-border: #bababa;
|
||||||
--cr-grey-panel: #f2f2f2;
|
--cr-grey-panel: #f2f2f2;
|
||||||
max-width: 28em;
|
max-width: 24em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BASE ELEMENTS */
|
/* BASE ELEMENTS */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user