2024-05-09 17:20:51 +08:00
|
|
|
|
import React, { useEffect, useState, useRef } from 'react';
|
|
|
|
|
|
import { Button, Col, Form, Row, Spin, Tag } from '@douyinfe/semi-ui';
|
|
|
|
|
|
import {
|
|
|
|
|
|
compareObjects,
|
|
|
|
|
|
API,
|
|
|
|
|
|
showError,
|
|
|
|
|
|
showSuccess,
|
|
|
|
|
|
showWarning,
|
|
|
|
|
|
} from '../../../helpers';
|
|
|
|
|
|
|
2024-05-10 16:17:48 +08:00
|
|
|
|
export default function SettingsDrawing(props) {
|
2024-05-09 17:20:51 +08:00
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
|
const [inputs, setInputs] = useState({
|
|
|
|
|
|
DrawingEnabled: false,
|
|
|
|
|
|
MjNotifyEnabled: false,
|
|
|
|
|
|
MjAccountFilterEnabled: false,
|
|
|
|
|
|
MjForwardUrlEnabled: false,
|
|
|
|
|
|
MjModeClearEnabled: false,
|
2024-07-08 16:48:10 +08:00
|
|
|
|
MjActionCheckSuccessEnabled: false,
|
2024-05-09 17:20:51 +08:00
|
|
|
|
});
|
|
|
|
|
|
const refForm = useRef();
|
|
|
|
|
|
const [inputsRow, setInputsRow] = useState(inputs);
|
|
|
|
|
|
|
|
|
|
|
|
function onSubmit() {
|
|
|
|
|
|
const updateArray = compareObjects(inputs, inputsRow);
|
|
|
|
|
|
if (!updateArray.length) return showWarning('你似乎并没有修改什么');
|
|
|
|
|
|
const requestQueue = updateArray.map((item) => {
|
|
|
|
|
|
let value = '';
|
|
|
|
|
|
if (typeof inputs[item.key] === 'boolean') {
|
|
|
|
|
|
value = String(inputs[item.key]);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
value = inputs[item.key];
|
|
|
|
|
|
}
|
|
|
|
|
|
return API.put('/api/option/', {
|
|
|
|
|
|
key: item.key,
|
|
|
|
|
|
value,
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
setLoading(true);
|
|
|
|
|
|
Promise.all(requestQueue)
|
|
|
|
|
|
.then((res) => {
|
|
|
|
|
|
if (requestQueue.length === 1) {
|
|
|
|
|
|
if (res.includes(undefined)) return;
|
|
|
|
|
|
} else if (requestQueue.length > 1) {
|
2024-05-14 10:18:24 +08:00
|
|
|
|
if (res.includes(undefined)) return showError('部分保存失败,请重试');
|
2024-05-09 17:20:51 +08:00
|
|
|
|
}
|
2024-05-14 10:18:24 +08:00
|
|
|
|
showSuccess('保存成功');
|
2024-05-14 10:17:20 +08:00
|
|
|
|
props.refresh();
|
2024-05-09 17:20:51 +08:00
|
|
|
|
})
|
|
|
|
|
|
.catch(() => {
|
2024-05-14 10:18:24 +08:00
|
|
|
|
showError('保存失败,请重试');
|
2024-05-09 17:20:51 +08:00
|
|
|
|
})
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
setLoading(false);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
const currentInputs = {};
|
|
|
|
|
|
for (let key in props.options) {
|
|
|
|
|
|
if (Object.keys(inputs).includes(key)) {
|
|
|
|
|
|
currentInputs[key] = props.options[key];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
setInputs(currentInputs);
|
|
|
|
|
|
setInputsRow(structuredClone(currentInputs));
|
|
|
|
|
|
refForm.current.setValues(currentInputs);
|
2024-05-11 16:19:35 +08:00
|
|
|
|
localStorage.setItem('mj_notify_enabled', String(inputs.MjNotifyEnabled));
|
2024-05-09 17:20:51 +08:00
|
|
|
|
}, [props.options]);
|
|
|
|
|
|
return (
|
|
|
|
|
|
<>
|
|
|
|
|
|
<Spin spinning={loading}>
|
|
|
|
|
|
<Form
|
|
|
|
|
|
values={inputs}
|
|
|
|
|
|
getFormApi={(formAPI) => (refForm.current = formAPI)}
|
|
|
|
|
|
style={{ marginBottom: 15 }}
|
|
|
|
|
|
>
|
|
|
|
|
|
<Form.Section text={'绘图设置'}>
|
|
|
|
|
|
<Row gutter={16}>
|
|
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'DrawingEnabled'}
|
|
|
|
|
|
label={'启用绘图功能'}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) => {
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
DrawingEnabled: value,
|
|
|
|
|
|
});
|
|
|
|
|
|
}}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
|
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'MjNotifyEnabled'}
|
|
|
|
|
|
label={'允许回调(会泄露服务器 IP 地址)'}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) =>
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
MjNotifyEnabled: value,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
|
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'MjAccountFilterEnabled'}
|
|
|
|
|
|
label={'允许 AccountFilter 参数'}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) =>
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
MjAccountFilterEnabled: value,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
|
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'MjForwardUrlEnabled'}
|
|
|
|
|
|
label={'开启之后将上游地址替换为服务器地址'}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) =>
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
MjForwardUrlEnabled: value,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
|
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'MjModeClearEnabled'}
|
|
|
|
|
|
label={
|
|
|
|
|
|
<>
|
|
|
|
|
|
开启之后会清除用户提示词中的 <Tag>--fast</Tag> 、
|
|
|
|
|
|
<Tag>--relax</Tag> 以及 <Tag>--turbo</Tag> 参数
|
|
|
|
|
|
</>
|
|
|
|
|
|
}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) =>
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
MjModeClearEnabled: value,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
2024-07-08 16:48:10 +08:00
|
|
|
|
<Col span={8}>
|
|
|
|
|
|
<Form.Switch
|
|
|
|
|
|
field={'MjActionCheckSuccessEnabled'}
|
|
|
|
|
|
label={
|
|
|
|
|
|
<>
|
|
|
|
|
|
检测必须等待绘图成功才能进行放大等操作
|
|
|
|
|
|
</>
|
|
|
|
|
|
}
|
|
|
|
|
|
size='large'
|
|
|
|
|
|
checkedText='|'
|
|
|
|
|
|
uncheckedText='〇'
|
|
|
|
|
|
onChange={(value) =>
|
|
|
|
|
|
setInputs({
|
|
|
|
|
|
...inputs,
|
|
|
|
|
|
MjActionCheckSuccessEnabled: value,
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</Col>
|
2024-05-09 17:20:51 +08:00
|
|
|
|
</Row>
|
|
|
|
|
|
<Row>
|
2024-11-12 16:30:51 +08:00
|
|
|
|
<Button size='default' onClick={onSubmit}>
|
2024-05-09 17:20:51 +08:00
|
|
|
|
保存绘图设置
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</Row>
|
|
|
|
|
|
</Form.Section>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
</Spin>
|
|
|
|
|
|
</>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|