Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
simple-boot-front
Advanced tools
Single Page Application Framworks for Web
npm install simple-boot-front
Here is a quick teaser of a complete simple-boot-front application in typescript
index.ts
const option = new SimOption(AppRouter)
.setUrlType(UrlType.path)
.setAdvice(Advice);
const simpleApplication = new SimpleApplication(option);
simpleApplication.run();
index.html
<!doctype html>
<html>
<head>...</head>
<body id="app"></body>
</html>
AppRouter.ts
@Sim({scheme: 'layout-router'})
export class AppRouter extends RootRouter {
'' = Index;
'ajax' = Ajax;
'intent' = Intents;
'view' = Views;
'exception' = Exception;
'aop' = Aop;
'views' = Views;
constructor() {
super(App);
}
async canActivate(url: Url, module: RouterModule): Promise<RouterModule | ConstructorType<Module>>{
if (url.path === 'views' && url.params.get('auth') === 'false') {
return Forbidden;
} else {
return module;
}
}
notFound(url: Url): ConstructorType<Module> {
console.log(url.path)
return Notfound;
}
}
index.ts
@Sim({scheme: 'index'})
export class Index extends Module {
data = "default data";
thisData = 5151;
constructor(public v: ViewService, public manager: SimstanceManager, public navigation: Navigation) {
super({template: html});
}
onInit() {
}
@PostConstruct
public post(renderer: Renderer) {
}
}
index.html
<h1>index</h1>
links:
<ul>
<li>ajax example page: <a router-link="/ajax">ajax</a></li>
</ul>
<div class="card mt-2" style="width: 100%;">
<div class="card-body">
<h5 class="card-title">set module</h5>
<div>set variable: <!--%write(this.title)%--></div>
<div>input module variable: <input type="text" module-event-keyup="changeText"></div>
</div>
</div>
<div class="card mt-2" style="width: 100%;">
<div class="card-body">
<h5>event click change "module-event-click"</h5>
<!--%module(this.numbers)%-->
<button class="btn btn-info" module-event-click="changeData">change</button>
</div>
</div>
<div class="card mt-2" style="width: 100%;">
<div class="card-body">
<h5>default data set "module-value"</h5>
<input type="text" module-value="data">
</div>
</div>
<div class="card mt-2" style="width: 100%;">
<div class="card-body">
<h5>variable module</h5>
<!--%module(this.data)%-->
data link change event <input type="text" module-value-link="data">
</div>
</div>
<div>
<!--%write(this.thisData)%-->
thisData <button module-event-click="thisDataChange"> this data change</button>
</div>
<div>
<div module-event-click="goto">aaaaaaaaa</div>
</div>
<div><!--%write(this.data)%--></div>
<div><!--%module(this.aModule)%--></div>
<div>
<!--%
for (let i of this.datas) {
write('<li>' + i + '</li>');
}
%-->
</div>
<div>
<!--%
for(var i = 0 ; i < this.count ; i ++) {
write("<img src='https://cdn.imweb.me/thumbnail/20190912/460132b4e4fce.jpg' module-change-attr=\"return {height: this.size, width: this.size}\">");
}
%-->
</div>
@Sim({scheme: 'index'})
export class Index extends Module { }
@PostConstruct
post(projectService: ProjectService) {
console.log('post Construct and dependency injection')
}
@Injectable()
export class CTitle extends Title {
constructor(public testService: TestService) {
super({
template: 'value:(<!--% write(this.value) %--> <button module-event-click="cc">CC</button>)',
value: 'default value'
});
console.log('ctitle constructor-->', this.testService)
}
cc() {
this.value = this.testService.tail(Math.floor(RandomUtils.random(1, 50)), '---');
}
@PostConstruct
ttt(testService: TestService) {
console.log('poo->', testService)
}
}
fire($event: MouseEvent, view: View<Element>) {
console.log('fire method')
this.data = RandomUtils.random(0, 100);
}
@Before({property: 'fire'})
before(obj: any, protoType: Function) {
console.log('before', obj, protoType)
}
@After({property: 'fire'})
after(obj: any, protoType: Function) {
console.log('after', obj, protoType)
}
@EventListener({target: window, name: 'resize'})
callBackResize($event: Event, view: View<any>) {
console.log('----resize-----', view, $event)
}
@EventListener({target: '#zzz', name: 'input'})
callBackInput($event: Event, view: View<any>) {
console.log('----input-----', view, $event)
}
@ExceptionHandler()
public exception0(e: any) {
console.log('Advice Global exception:', e)
}
click() {
this.publish(new Intent('layout://info/data?a=wow&aa=zzz', Math.floor(RandomUtils.random(0, 100))));
// this.publish(new Intent('layout://info/datas', Math.floor(RandomUtils.random(0, 100))));
// this.publish(new Intent('layout://', Math.floor(RandomUtils.random(0, 100)))); // default callback method -> subscribe(i: Intent)
// this.publish(new Intent('://info/datas', Math.floor(RandomUtils.random(0, 100))));
}
@Sim({scheme: 'layout'})
export class App extends Module {
info = new AppInfo();
constructor() {
super({template: html, styleImports:[css]});
}
}
export class AppInfo extends Module {
datas = 'default data';
constructor() {
super({template: '<div><h3>info</h3><!--%write(this.datas)%--></div>'});
}
data(i: Intent) {
this.datas = i.data + '->' + i.params.aa
}
}
attribute
<button module-event-click="changeData">change</button>
<input module-event-change="changeData">
<input module-event-keyup="changeData">
<input module-event-keydown="changeData">
<input module-event-input="changeData">
<input module-value-link="value">
<input module-value="value">
<img src="https://cdn.imweb.me/thumbnail/20190912/460132b4e4fce.jpg" module-change-attr="return {height: it, width: it}">
<div module-change-style="return {fontSize: `${it}px`, color: this.randomColor()}">hello</div>
<a router-link="ajax" router-active-class="['active']">Ajax</a>
<a router-link="ajax">Ajax</a>
click event intent publish:
<button class="btn btn-primary" module-event-click-intent-publish="['layout://info/data?a=wow&aa=ppp','makeRandom']">publish data</button>
typing:
<input type="text" module-event-keyup-intent-publish="['layout://info/viewSubscribe?a=wow&aa=vvv']">
data(i: Intent) {
this.datas = i.data + '->' + i.params.aa
}
viewSubscribe(i: Intent<View<HTMLInputElement>>) {
this.datas = i.data?.value + '->' + i.params.aa + '-->' + i.event
}
<!--%moduleIdAttrSelector()%--> h1 {color: burlywood;}
*[module-id='___Module___module-selector..'] h1 { color: burlywood;}
FAQs
front end SPA frameworks
The npm package simple-boot-front receives a total of 8 weekly downloads. As such, simple-boot-front popularity was classified as not popular.
We found that simple-boot-front demonstrated a not healthy version release cadence and project activity because the last version was released 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.