|
|
@ -25,13 +25,20 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
const [themeName, ] = useState('') |
|
|
|
const [themeName, ] = useState('') |
|
|
|
const [privateBeeAddress, setPrivateBeeAddress] = useState('') |
|
|
|
const [privateBeeAddress, setPrivateBeeAddress] = useState('') |
|
|
|
const [postageStampId, setPostageStampId] = useState('') |
|
|
|
const [postageStampId, setPostageStampId] = useState('') |
|
|
|
|
|
|
|
const [resetState, refresh] = useState(0) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const initValue = () => { |
|
|
|
|
|
|
|
const metadataConfig = props.config.get('settings/generate-contract-metadata') |
|
|
|
|
|
|
|
if (metadataConfig === undefined || metadataConfig === null) generateContractMetadat(props.config, true, dispatch) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const javascriptVM = props.config.get('settings/always-use-vm') |
|
|
|
|
|
|
|
if (javascriptVM === null || javascriptVM === undefined) ethereumVM(props.config, true, dispatch) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
useEffect(() => initValue(), [resetState, props.config]) |
|
|
|
|
|
|
|
useEffect(() => initValue(), []) |
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
useEffect(() => { |
|
|
|
const token = props.config.get('settings/' + labels['gist'].key) |
|
|
|
const token = props.config.get('settings/' + labels['gist'].key) |
|
|
|
if (token === undefined) { |
|
|
|
|
|
|
|
props.config.set('settings/generate-contract-metadata', true) |
|
|
|
|
|
|
|
dispatch({ type: 'contractMetadata', payload: { name: 'contractMetadata', isChecked: true, textClass: textDark } }) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (token) { |
|
|
|
if (token) { |
|
|
|
setTokenValue(prevState => { |
|
|
|
setTokenValue(prevState => { |
|
|
|
return { ...prevState, gist: token } |
|
|
|
return { ...prevState, gist: token } |
|
|
@ -58,12 +65,6 @@ export const RemixUiSettings = (props: RemixUiSettingsProps) => { |
|
|
|
if (props.useMatomoAnalytics !== null) useMatomoAnalytics(props.config, props.useMatomoAnalytics, dispatch) |
|
|
|
if (props.useMatomoAnalytics !== null) useMatomoAnalytics(props.config, props.useMatomoAnalytics, dispatch) |
|
|
|
}, [props.useMatomoAnalytics]) |
|
|
|
}, [props.useMatomoAnalytics]) |
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => { |
|
|
|
|
|
|
|
const javascriptVM = props.config.get('settings/always-use-vm') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((javascriptVM === null) || (javascriptVM === undefined)) ethereumVM(props.config, true, dispatch) |
|
|
|
|
|
|
|
}, [props.config]) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const onchangeGenerateContractMetadata = (event) => { |
|
|
|
const onchangeGenerateContractMetadata = (event) => { |
|
|
|
generateContractMetadat(props.config, event.target.checked, dispatch) |
|
|
|
generateContractMetadat(props.config, event.target.checked, dispatch) |
|
|
|
} |
|
|
|
} |
|
|
|