Welcome to JSCroot Tutorial. To begin with this section you must know about Vanilla JS ES6+ script first.
Please follow every step in every section :
To check the login cookies and redirect to the login page if the login cookie doesn’t exist
import {getCookie} from "https://cdn.jsdelivr.net/gh/jscroot/cookie@0.0.1/croot.js";
import {redirect} from "https://cdn.jsdelivr.net/gh/jscroot/url@0.0.9/croot.js";
//check if login cookies is exist
if(!getCookie("login")){
redirect("/");
}
Get data from Form and Post to the server
import {onClick,getValue} from "https://cdn.jsdelivr.net/gh/jscroot/element@0.1.5/croot.js";
import { postWithToken } from "https://cdn.jsdelivr.net/gh/jscroot/api@0.0.6/croot.js";
onClick("submit",PostSignUp);
function PostSignUp(){
let datainjson = {
"nama": getValue("nama"),
"email": getValue("email"),
"phone":getValue("phone"),
"nik":getValue("nik"),
"pekerjaan":getValue("pekerjaan"),
"alamat":getValue("alamat")
}
postWithToken("https://ped.fly.dev/auth/userdata","login",getCookie("login"),datainjson,responseFunction);
}
function responseFunction(result){
console.log(result);
}
This is a sample of a four-step run of the js command, where js can be run in serial and parallel mode:
import {functionName, runFunction} from "https://cdn.jsdelvr.com/gh/jscroot/croot.js";
// Step 1: run and wait until finish execute
await functionName(arg);
// Step 2: Just run without waiting until finished, immediately go to the next step
runFunction(arg);
// Step 3: Run after HTML loaded
document.addEventListener('DOMContentLoaded', function() {
// initial HTML document has been completely loaded and parsed, without waiting
// for stylesheets, images, and subframes to finish loading
console.log('DOM fully loaded and parsed');
});
// Step 4: Run after all loaded
window.addEventListener('load', (event) => {
//This includes after-all assets like images, scripts, and CSS files.
//Loaded
console.log('The page has fully loaded');
});