Skip to content

Instantly share code, notes, and snippets.

View peplocanto's full-sized avatar

Pep Locanto peplocanto

View GitHub Profile

Browser Cache Api

interface CacheConfig {
  name: string;
  validTime: number;
  endpoints: string[];
  options?: CacheOptions;
  clearOnHide?: boolean;
}

Click & Drag Scroll in Vanilla JS

const DELTA = 6;
const CONTAINER_CLASS = 'drag-to-scroll__container';

const sliders = document.querySelectorAll('[data-drag-to-scroll]');

let isDown = false;
let isMoving = false;
@peplocanto
peplocanto / swiper_carousel_angular.md
Last active January 20, 2022 15:08
Angular Carousel with SwiperJS
@peplocanto
peplocanto / core.providers.ts
Last active December 14, 2021 12:53
How to start services in core module
// 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[] = [
{
@peplocanto
peplocanto / isSsr_hook.ts
Created November 11, 2021 15:31
isSsr_hook.ts
// 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);
// 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';
@peplocanto
peplocanto / custom_ngIf_directive_angular.md
Last active January 20, 2022 17:32
Angular custom ngIf directive

Custom ngIf directive

Intro

Setup for a custom ngIf directive.

Arch

 app
 L common
   L directives
     L <name>.directive.ts
@peplocanto
peplocanto / akita_store_angular.md
Last active January 20, 2022 17:31
Angular Akita Store

Angular Akita Store

Intro

Akita is a fantastic and lightweight library for state management.

Arch

<namespace>
  L <namespace>.store.ts
  L <namespace>.service.ts
  L <namespace>.query.ts