interface CacheConfig {
name: string;
validTime: number;
endpoints: string[];
options?: CacheOptions;
clearOnHide?: boolean;
}
An Angular carousel created with SwiperJs.
Carousel component is programmed to accept every kind of template passed as carouselItem
and return data passed as carouselData
to the template.
This "short circuit" allows the Carousel component to stay transparent and agnostic, delegating the logic and design to the component that uses the Carousel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// core.providers.ts | |
import { APP_INITIALIZER } from '@angular/core'; | |
export const load<domain>ServiceFnFactory = (<domain>Service: <domain>Service): (() => Promise<any>) => () => { | |
<domain>Service.init(); | |
return Promise.resolve(); | |
}; | |
export const APP_INITIALIZER_PROVIDERS: Provider[] = [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// best practice arch | |
// app | |
// L hooks | |
// L useIsSsr.hook.ts | |
// useIsSsr.hook.ts | |
import { useState, useEffect } from "react"; | |
const useIsSsr = () => { | |
const [isSsr, setIsSsr] = useState(true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// best practice arch | |
// app | |
// L core | |
// L core.module.ts | |
// L core.providers.ts | |
// L core.model.ts | |
// core.module.ts | |
import { ModuleWithProviders, NgModule, Optional, SkipSelf } from '@angular/core'; |
Akita is a fantastic and lightweight library for state management.
<namespace>
L <namespace>.store.ts
L <namespace>.service.ts
L <namespace>.query.ts
NewerOlder