Merge pull request 'fix: change default value for wotLevel' (#151) from wot-fixes into staging
All checks were successful
Release to Staging / build_and_release (push) Successful in 47s
All checks were successful
Release to Staging / build_and_release (push) Successful in 47s
Reviewed-on: #151 Reviewed-by: enes <enes@noreply.git.nostrdev.com>
This commit is contained in:
commit
f3ab7f6d6a
@ -10,12 +10,14 @@ import { log, LogType, now } from 'utils'
|
|||||||
|
|
||||||
// todo: use components from Input.tsx
|
// todo: use components from Input.tsx
|
||||||
export const PreferencesSetting = () => {
|
export const PreferencesSetting = () => {
|
||||||
|
const { ndk, fetchEventFromUserRelays, publish } = useNDKContext()
|
||||||
const dispatch = useAppDispatch()
|
const dispatch = useAppDispatch()
|
||||||
|
|
||||||
const [wotLevel, setWotLevel] = useState(3)
|
|
||||||
const [isSaving, setIsSaving] = useState(false)
|
|
||||||
const { ndk, fetchEventFromUserRelays, publish } = useNDKContext()
|
|
||||||
const user = useAppSelector((state) => state.user.user)
|
const user = useAppSelector((state) => state.user.user)
|
||||||
|
const { userWotLevel } = useAppSelector((state) => state.wot)
|
||||||
|
|
||||||
|
const [wotLevel, setWotLevel] = useState(userWotLevel)
|
||||||
|
const [isSaving, setIsSaving] = useState(false)
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (user?.pubkey) {
|
if (user?.pubkey) {
|
||||||
@ -80,9 +82,22 @@ export const PreferencesSetting = () => {
|
|||||||
|
|
||||||
const ndkEvent = new NDKEvent(ndk, signedEvent)
|
const ndkEvent = new NDKEvent(ndk, signedEvent)
|
||||||
await publish(ndkEvent)
|
await publish(ndkEvent)
|
||||||
dispatch(setUserWotLevel(wotLevel))
|
.then((publishedOnRelays) => {
|
||||||
|
toast.success(
|
||||||
|
`Preferences published to following relays: \n\n${publishedOnRelays.join(
|
||||||
|
'\n'
|
||||||
|
)}`
|
||||||
|
)
|
||||||
|
|
||||||
setIsSaving(false)
|
dispatch(setUserWotLevel(wotLevel))
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err)
|
||||||
|
toast.error('Error: Failed to publish preferences!')
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
setIsSaving(false)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@ -19,10 +19,10 @@ export interface IWOT {
|
|||||||
const initialState: IWOT = {
|
const initialState: IWOT = {
|
||||||
siteWot: [],
|
siteWot: [],
|
||||||
siteWotStatus: WOTStatus.IDLE,
|
siteWotStatus: WOTStatus.IDLE,
|
||||||
siteWotLevel: 3,
|
siteWotLevel: 0,
|
||||||
userWot: [],
|
userWot: [],
|
||||||
userWotStatus: WOTStatus.IDLE,
|
userWotStatus: WOTStatus.IDLE,
|
||||||
userWotLevel: 3
|
userWotLevel: 0
|
||||||
}
|
}
|
||||||
|
|
||||||
export const wotSlice = createSlice({
|
export const wotSlice = createSlice({
|
||||||
|
Loading…
Reference in New Issue
Block a user