Interacting with the server
Now that we've reviewed the general concepts of working with data in Bryntum components, let's explore server interactions in more detail. There are multiple ways to interact with the server.
For Bryntum Scheduler, you can either use loadUrl to interact with all stores collectively:
crudManager : {
loadUrl : '/data.php'
}
or use createUrl, readUrl, updateUrl, and deleteUrl to define an endpoint for each store individually. For example:
const scheduler = new Scheduler({
// other config
resourceStore : {
createUrl : 'resource/create.js',
readUrl : 'resource/read.js',
updateUrl : 'resource/update.js',
deleteUrl : 'resource/delete.js'
}
});
// SchedulerConfig.tsx
import { type BryntumSchedulerProps } from "@bryntum/scheduler-react";
export const schedulerProps: BryntumSchedulerProps = {
// other config
resourceStore : {
createUrl : 'resource/create.js',
readUrl : 'resource/read.js',
updateUrl : 'resource/update.js',
deleteUrl : 'resource/delete.js'
}
};
import schedulerProps from "./schedulerConfig";
// App.tsx
const App = props => {
return <BryntumScheduler {...schedulerProps} />
}
<script setup lang="ts">
import { BryntumScheduler } from '@bryntum/scheduler-vue-3';
import schedulerConfig from './AppConfig.ts';
</script>
<template>
<bryntum-scheduler v-bind="schedulerConfig" />
</template>
import { type BryntumSchedulerProps } from '@bryntum/scheduler-vue-3';
export const schedulerConfig : BryntumSchedulerProps = {
// other config
resourceStore : {
createUrl : 'resource/create.js',
readUrl : 'resource/read.js',
updateUrl : 'resource/update.js',
deleteUrl : 'resource/delete.js'
}
};
<bryntum-scheduler
#scheduler
[crudManager]="schedulerProps.crudManager!"
></bryntum-scheduler>
// app.config.ts
import { type BryntumSchedulerProps } from '@bryntum/scheduler-angular';
export const schedulerProps: BryntumSchedulerProps = {
// other config
resourceStore : {
createUrl : 'resource/create.js',
readUrl : 'resource/read.js',
updateUrl : 'resource/update.js',
deleteUrl : 'resource/delete.js'
}
};
// app.component.ts
export class AppComponent implements AfterViewInit {
// other config
schedulerProps = schedulerProps;
}
The ResourceStore then uses the URLs for AJAX requests for the different CRUD operations. You'll learn more about the ResourceStore in the store interaction section below.
The crudManager is a top-level entity that holds multiple stores together.
You can pass autoLoad : true, if you want the data to be loaded automatically after a store has been initialized.
const scheduler = new Scheduler({
// other config
resourceStore : {
autoLoad : true,
createUrl : 'resource/create.php',
readUrl : 'resource/read.php',
updateUrl : 'resource/update.php',
deleteUrl : 'resource/delete.php'
}
});
Using Fetch
You can use the JavaScript Fetch API to fetch the data and feed it into the Bryntum Scheduler:
const response = await fetch('resource/load.php');
const data = await response.json();
// feed it to Scheduler like this:
const scheduler = new Scheduler({
resourceStore : {
data : data
}
})
// or this:
scheduler.resourceStore.data = data;
Understanding Crud Manager
The Crud Manager provides an easy way to define endpoints for server interactions. It accepts only two endpoints, one for loading data (loadUrl) and another for creating, updating, and deleting data (syncUrl).
const scheduler = new Scheduler({
// other config
crudManager : {
loadUrl : 'read.js',
syncUrl : 'sync.js'
},
})
// SchedulerConfig.tsx
import { type BryntumSchedulerProps } from "@bryntum/scheduler-react";
export const schedulerProps: BryntumSchedulerProps = {
// other config
crudManager : {
loadUrl : 'read.js',
syncUrl : 'sync.js'
}
};
import schedulerProps from "./schedulerConfig";
// App.tsx
const App = props => {
return <BryntumScheduler {...schedulerProps} />
}
<script setup lang="ts">
import { BryntumScheduler } from '@bryntum/scheduler-vue-3';
import schedulerConfig from './AppConfig.ts';
</script>
<template>
<bryntum-scheduler v-bind="schedulerConfig" />
</template>
import { type BryntumSchedulerProps } from '@bryntum/scheduler-vue-3';
export const schedulerConfig : BryntumSchedulerProps = {
// other config
crudManager : {
loadUrl : 'read.js',
syncUrl : 'sync.js'
}
};
<bryntum-scheduler
#scheduler
[crudManager]="schedulerProps.crudManager!"
></bryntum-scheduler>
// app.config.ts
import { type BryntumSchedulerProps } from '@bryntum/scheduler-angular';
export const schedulerProps: BryntumSchedulerProps = {
// other config
crudManager : {
loadUrl : 'read.js',
syncUrl : 'sync.js'
}
};
// app.component.ts
export class AppComponent implements AfterViewInit {
// other config
schedulerProps = schedulerProps;
}
Check out the Scheduler demo that uses the Crud Manager.
The Bryntum component then uses the crudManager to handle CRUD operations for you. Whenever changes are made to tasks, assignments, resources, or anything else, a request is sent to the syncUrl path.
On the backend, you can see the type of change (Create, Update, or Delete) by looking at the request body. Then, based on the operation type, it sends the relevant data.
The following examples use the loadUrl to load the Scheduler data with a fake API call using crudManager.
Store interactions
You can use one of the stores, such as AssignmentStore or ResourceStore, to handle a specific type of store data. For example:
const customAssignmentStore = new AssignmentStore({
createUrl : "assignment/create.php",
readUrl : "assignment/read.php",
updateUrl : "assignment/update.php",
deleteUrl : "assignment/delete.php"
});
new Scheduler({
assignmentStore : customAssignmentStore
})
We recommend you use this approach when you have API endpoints for a specific store, like AssignmentStore. The Bryntum Scheduler will then use these endpoints to interact with the server for assignment-related data.
This means you can have multiple data-specific stores:
new Scheduler({
assignmentStore : {
createUrl : "assignment/create.php",
readUrl : "assignment/read.php",
updateUrl : "assignment/update.php",
deleteUrl : "assignment/delete.php"
},
resourceStore : {
createUrl : "resource/create.php",
readUrl : "resource/read.php",
updateUrl : "resource/update.php",
deleteUrl : "resource/delete.php"
}
});
This is useful for managing a single store, but management becomes more difficult when you use all your stores this way. Therefore, we encourage you to use the Crud Manager to manage your data.
Headers
You can use the headers config to configure requests and send custom HTTP headers to the server:
crudManager : {
transport : {
sync : {
url : 'http://mycool-server.com/sync.php',
// specify Content-Type for requests
headers : {
'Content-Type' : 'application/json'
}
}
}
}
If you want send headers in a separate store :
// Configuring headers for each request
const resourceStore = new ResourceStore({
readUrl : "resource/read.php",
headers : {
"Content-Type" : "text/xml",
"Accept-Charset" : "utf-8",
},
});
Next, let's learn how data is structured for different requests.
Continue reading: Understanding structure.