prettier state.js
This commit is contained in:
parent
480bac98df
commit
ab23f7e86f
@ -215,8 +215,8 @@ export const applyEvent = async (event, socket) => {
|
|||||||
a.href = eval?.(
|
a.href = eval?.(
|
||||||
event.payload.url.replace(
|
event.payload.url.replace(
|
||||||
"getBackendURL(env.UPLOAD)",
|
"getBackendURL(env.UPLOAD)",
|
||||||
`"${getBackendURL(env.UPLOAD)}"`
|
`"${getBackendURL(env.UPLOAD)}"`,
|
||||||
)
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
a.download = event.payload.filename;
|
a.download = event.payload.filename;
|
||||||
@ -329,7 +329,7 @@ export const applyRestEvent = async (event, socket) => {
|
|||||||
event.payload.files,
|
event.payload.files,
|
||||||
event.payload.upload_id,
|
event.payload.upload_id,
|
||||||
event.payload.on_upload_progress,
|
event.payload.on_upload_progress,
|
||||||
socket
|
socket,
|
||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -396,7 +396,7 @@ export const connect = async (
|
|||||||
dispatch,
|
dispatch,
|
||||||
transports,
|
transports,
|
||||||
setConnectErrors,
|
setConnectErrors,
|
||||||
client_storage = {}
|
client_storage = {},
|
||||||
) => {
|
) => {
|
||||||
// Get backend URL object from the endpoint.
|
// Get backend URL object from the endpoint.
|
||||||
const endpoint = getBackendURL(EVENTURL);
|
const endpoint = getBackendURL(EVENTURL);
|
||||||
@ -487,7 +487,7 @@ export const uploadFiles = async (
|
|||||||
files,
|
files,
|
||||||
upload_id,
|
upload_id,
|
||||||
on_upload_progress,
|
on_upload_progress,
|
||||||
socket
|
socket,
|
||||||
) => {
|
) => {
|
||||||
// return if there's no file to upload
|
// return if there's no file to upload
|
||||||
if (files === undefined || files.length === 0) {
|
if (files === undefined || files.length === 0) {
|
||||||
@ -592,7 +592,7 @@ export const Event = (
|
|||||||
name,
|
name,
|
||||||
payload = {},
|
payload = {},
|
||||||
event_actions = {},
|
event_actions = {},
|
||||||
handler = null
|
handler = null,
|
||||||
) => {
|
) => {
|
||||||
return { name, payload, handler, event_actions };
|
return { name, payload, handler, event_actions };
|
||||||
};
|
};
|
||||||
@ -619,7 +619,7 @@ export const hydrateClientStorage = (client_storage) => {
|
|||||||
for (const state_key in client_storage.local_storage) {
|
for (const state_key in client_storage.local_storage) {
|
||||||
const options = client_storage.local_storage[state_key];
|
const options = client_storage.local_storage[state_key];
|
||||||
const local_storage_value = localStorage.getItem(
|
const local_storage_value = localStorage.getItem(
|
||||||
options.name || state_key
|
options.name || state_key,
|
||||||
);
|
);
|
||||||
if (local_storage_value !== null) {
|
if (local_storage_value !== null) {
|
||||||
client_storage_values[state_key] = local_storage_value;
|
client_storage_values[state_key] = local_storage_value;
|
||||||
@ -630,7 +630,7 @@ export const hydrateClientStorage = (client_storage) => {
|
|||||||
for (const state_key in client_storage.session_storage) {
|
for (const state_key in client_storage.session_storage) {
|
||||||
const session_options = client_storage.session_storage[state_key];
|
const session_options = client_storage.session_storage[state_key];
|
||||||
const session_storage_value = sessionStorage.getItem(
|
const session_storage_value = sessionStorage.getItem(
|
||||||
session_options.name || state_key
|
session_options.name || state_key,
|
||||||
);
|
);
|
||||||
if (session_storage_value != null) {
|
if (session_storage_value != null) {
|
||||||
client_storage_values[state_key] = session_storage_value;
|
client_storage_values[state_key] = session_storage_value;
|
||||||
@ -655,7 +655,7 @@ export const hydrateClientStorage = (client_storage) => {
|
|||||||
const applyClientStorageDelta = (client_storage, delta) => {
|
const applyClientStorageDelta = (client_storage, delta) => {
|
||||||
// find the main state and check for is_hydrated
|
// find the main state and check for is_hydrated
|
||||||
const unqualified_states = Object.keys(delta).filter(
|
const unqualified_states = Object.keys(delta).filter(
|
||||||
(key) => key.split(".").length === 1
|
(key) => key.split(".").length === 1,
|
||||||
);
|
);
|
||||||
if (unqualified_states.length === 1) {
|
if (unqualified_states.length === 1) {
|
||||||
const main_state = delta[unqualified_states[0]];
|
const main_state = delta[unqualified_states[0]];
|
||||||
@ -689,7 +689,7 @@ const applyClientStorageDelta = (client_storage, delta) => {
|
|||||||
const session_options = client_storage.session_storage[state_key];
|
const session_options = client_storage.session_storage[state_key];
|
||||||
sessionStorage.setItem(
|
sessionStorage.setItem(
|
||||||
session_options.name || state_key,
|
session_options.name || state_key,
|
||||||
delta[substate][key]
|
delta[substate][key],
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -709,7 +709,7 @@ const applyClientStorageDelta = (client_storage, delta) => {
|
|||||||
export const useEventLoop = (
|
export const useEventLoop = (
|
||||||
dispatch,
|
dispatch,
|
||||||
initial_events = () => [],
|
initial_events = () => [],
|
||||||
client_storage = {}
|
client_storage = {},
|
||||||
) => {
|
) => {
|
||||||
const socket = useRef(null);
|
const socket = useRef(null);
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
@ -723,7 +723,7 @@ export const useEventLoop = (
|
|||||||
|
|
||||||
event_actions = events.reduce(
|
event_actions = events.reduce(
|
||||||
(acc, e) => ({ ...acc, ...e.event_actions }),
|
(acc, e) => ({ ...acc, ...e.event_actions }),
|
||||||
event_actions ?? {}
|
event_actions ?? {},
|
||||||
);
|
);
|
||||||
|
|
||||||
const _e = args.filter((o) => o?.preventDefault !== undefined)[0];
|
const _e = args.filter((o) => o?.preventDefault !== undefined)[0];
|
||||||
@ -751,7 +751,7 @@ export const useEventLoop = (
|
|||||||
debounce(
|
debounce(
|
||||||
combined_name,
|
combined_name,
|
||||||
() => queueEvents(events, socket),
|
() => queueEvents(events, socket),
|
||||||
event_actions.debounce
|
event_actions.debounce,
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
queueEvents(events, socket);
|
queueEvents(events, socket);
|
||||||
@ -770,7 +770,7 @@ export const useEventLoop = (
|
|||||||
query,
|
query,
|
||||||
asPath,
|
asPath,
|
||||||
}))(router),
|
}))(router),
|
||||||
}))
|
})),
|
||||||
);
|
);
|
||||||
sentHydrate.current = true;
|
sentHydrate.current = true;
|
||||||
}
|
}
|
||||||
@ -864,7 +864,7 @@ export const useEventLoop = (
|
|||||||
vars[storage_to_state_map[e.key]] = e.newValue;
|
vars[storage_to_state_map[e.key]] = e.newValue;
|
||||||
const event = Event(
|
const event = Event(
|
||||||
`${state_name}.reflex___state____update_vars_internal_state.update_vars_internal`,
|
`${state_name}.reflex___state____update_vars_internal_state.update_vars_internal`,
|
||||||
{ vars: vars }
|
{ vars: vars },
|
||||||
);
|
);
|
||||||
addEvents([event], e);
|
addEvents([event], e);
|
||||||
}
|
}
|
||||||
@ -957,7 +957,7 @@ export const getRefValues = (refs) => {
|
|||||||
return refs.map((ref) =>
|
return refs.map((ref) =>
|
||||||
ref.current
|
ref.current
|
||||||
? ref.current.value || ref.current.getAttribute("aria-valuenow")
|
? ref.current.value || ref.current.getAttribute("aria-valuenow")
|
||||||
: null
|
: null,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user