Compare commits

...

2 Commits

Author SHA1 Message Date
f3ab7f6d6a 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
Reviewed-on: #151
Reviewed-by: enes <enes@noreply.git.nostrdev.com>
2024-11-18 10:20:44 +00:00
daniyal
77c2e880f3 fix: change default value for wotLevel 2024-11-18 12:27:43 +05:00
2 changed files with 22 additions and 7 deletions

View File

@ -10,12 +10,14 @@ import { log, LogType, now } from 'utils'
// todo: use components from Input.tsx
export const PreferencesSetting = () => {
const { ndk, fetchEventFromUserRelays, publish } = useNDKContext()
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 { userWotLevel } = useAppSelector((state) => state.wot)
const [wotLevel, setWotLevel] = useState(userWotLevel)
const [isSaving, setIsSaving] = useState(false)
useEffect(() => {
if (user?.pubkey) {
@ -80,9 +82,22 @@ export const PreferencesSetting = () => {
const ndkEvent = new NDKEvent(ndk, signedEvent)
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 (

View File

@ -19,10 +19,10 @@ export interface IWOT {
const initialState: IWOT = {
siteWot: [],
siteWotStatus: WOTStatus.IDLE,
siteWotLevel: 3,
siteWotLevel: 0,
userWot: [],
userWotStatus: WOTStatus.IDLE,
userWotLevel: 3
userWotLevel: 0
}
export const wotSlice = createSlice({