Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
CAF brings to Angular / Ionic 2+ the same functionalities that CTF (Convertigo Templating Framework) brings to JQuery. The goal is to add Convertigo back end support directly in to the Ionic HTML templates without having to program complex TypeScript. For example calling a Convertigo sequence from a button is as simple as that:
<button ion-button full (click)="call('.Login')">Click Me</button>
CAF will automatically handle the sequence call, using the configured endpoint. Displaying data from a Sequence response, for example assuming that sequence returns a
{
"login": "some data"
}
Object, is as simple as that:
<ion-item>{{listen([".Login"])?.login}}</ion-item>
See? No other TypeScript to Write !
CAF also handles forms easily. To submit a form to a Convertigo sequence (for example "Login") just use:
<form (ngSubmit)="call('.Login')">
....
<input type="text" [(ngModel)]="form.user">
....
<input type="text" [(ngModel)]="form.password">
...
<button type="submit">
</form>
The login sequence will be called and automatically will receive a 'user' and a 'password' variable populated by the user input.
CAF also helps by providing a page navigation routing table just as CTF doses. The concept is to configure in the table the pages that must be displayed when a Convertigo Sequence response is received by the mobile app.
CAF routing table is built using CAF TypeScript Objects so you can use IDE completion to write your routing.
The template provides a sample routing table you may use and extend for your app. The routing table is held in the app.component.ts file :
this.router.addRouteListener(new C8oRouteListener([".Login"]) // When a response comes from ".Login" requestable,
.addRoute(
new C8oRoute(
(data:any)=>{ // and that login == "ok",
return data.login == "ok" ? true : false
},
tableOptions // Use optional routing tables options defined higher,
)
.setTarget("root", Page1) // and route( set as root on stack to display page) to Page1.
)
.addRoute(
new C8oRoute(
(data:any)=>{
return data.login == "ko" // If instead login == "ko",
}
)
.setTarget("toast") // Display a Toast with the following options.
.setToastMesage("Your login or password is incorrect")
.setToastDuration(5000)
.setToastPosition("bottom")
)
.addFailedRoute( // When a requestable fails (Network error for example),
new C8oRoute(
(exception:any)=>{
return true // In any case,
}
)
.setTarget("toast") // Display a Toast with the following options.
.setToastMesage("No network connection")
.setToastDuration(5000)
.setToastPosition("bottom")
)
)
CAF is used as the base framework for Convertigo Mobile Builder, the Visual Drag & Drop Mobile RAD Ionic / Angular Builder.. https://www.convertigo.com/document/latest/reference-manual/convertigo-mobile-builder/
FAQs
Convertigo Angular Framework
We found that c8ocaf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.