21 lines
490 B
JavaScript
21 lines
490 B
JavaScript
import {trimSlash} from "../common/trimSlash";
|
|
|
|
export const loadRecord = (api) => async ({recordKey, statePath}) => {
|
|
|
|
if(!recordKey) {
|
|
api.error("Load Record: record key not set");
|
|
return;
|
|
}
|
|
|
|
if(!statePath) {
|
|
api.error("Load Record: state path not set");
|
|
return;
|
|
}
|
|
|
|
const record = await api.get({
|
|
url:`/api/record/${trimSlash(recordKey)}`
|
|
});
|
|
|
|
if(api.isSuccess(record))
|
|
api.setState(statePath, record);
|
|
} |