Skip to content

Commit 8e16013

Browse files
author
Sheeshpaul Kamboj
committed
Initial checkin
Initial check in for webcomponent-redux
1 parent 90f3f02 commit 8e16013

11 files changed

+283
-674
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules
3+
dist

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry = "https://registry.npmjs.com/"

LICENSE

-674
This file was deleted.

package.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "webcomponent-redux",
3+
"version": "0.0.1",
4+
"description": "Redux binding for web component",
5+
"main": "dist/index.node.js",
6+
"module": "dist/index.js",
7+
"browser": "dist/webcomponent-redux.min.js",
8+
"unpkg": "dist/webcomponent-redux.min.js",
9+
"repository": {
10+
"type": "git",
11+
"url": "git://github.com/sheeshpaul/webcomponent-redux.git"
12+
},
13+
"author": "Sheeshpaul Kamboj <[email protected]>",
14+
"license": "MIT",
15+
"sideEffects": false,
16+
"dependencies": {
17+
},
18+
"devDependencies": {
19+
"rollup": "^1.30.1",
20+
"rollup-plugin-commonjs": "^10.1.0",
21+
"rollup-plugin-node-resolve": "^5.2.0",
22+
"rollup-plugin-replace": "^2.2.0",
23+
"rollup-plugin-typescript": "^1.0.1",
24+
"rollup-plugin-uglify-es": "0.0.1",
25+
"tslib": "^1.10.0",
26+
"typescript": "^3.7.5"
27+
},
28+
"scripts": {
29+
"prepare": "rollup -c --environment NODE_ENV:production",
30+
"build": "rollup -c",
31+
"build-prod": "rollup -c --environment NODE_ENV:production",
32+
"watch": "rollup -c -w"
33+
},
34+
"files": [
35+
"dist"
36+
]
37+
}

rollup.config.js

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import commonjs from "rollup-plugin-commonjs";
2+
import pkg from './package.json';
3+
import replace from "rollup-plugin-replace";
4+
import resolve from "rollup-plugin-node-resolve";
5+
import typescript from "rollup-plugin-typescript";
6+
import uglify from "rollup-plugin-uglify-es";
7+
8+
const production = "production";
9+
10+
const development = "development";
11+
12+
const plugins = [
13+
resolve(), // Locate modules using the Node resolution algorithm, for using third party modules in node_modules
14+
commonjs(), // Convert CommonJS modules to ES6, so they can be included in a Rollup bundle
15+
typescript(), // Convert TypeScript to JavaScript
16+
replace({
17+
exclude: "node_modules/**", ENV: JSON.stringify(process.env.NODE_ENV || development),
18+
}),
19+
(process.env.NODE_ENV === production && uglify())
20+
];
21+
22+
export default [
23+
// Browser bundle
24+
{
25+
input: "src/main.ts",
26+
output: {
27+
name: "WebComponentRedux",
28+
format: "iife",
29+
esModule: false,
30+
file: process.env.NODE_ENV === production ? pkg.browser : "dist/webcomponent-redux.js"
31+
},
32+
plugins: plugins
33+
},
34+
35+
// CommonJS (for Node) and ES module (for bundlers) build
36+
{
37+
input: "src/main.ts",
38+
plugins: [
39+
typescript() // Convert TypeScript to JavaScript
40+
],
41+
output: [
42+
{ file: pkg.main, format: "cjs" },
43+
{ file: pkg.module, format: "esm" }
44+
]
45+
}
46+
];

src/connect.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { mixinConnectedCallback } from "./mixin-connectedcallback";
2+
import { mixinDisconnectedCallback } from "./mixin-disconnectedcallback";
3+
import { mixinWebcomponent } from "./mixin-webcomponent";
4+
5+
/**
6+
* Add Redux state management functionality to class prototype.
7+
* @param className - The class
8+
* @param mixinStore - The store object
9+
*/
10+
export function connect(className: any, mixinStore: any) {
11+
Object.assign(className.prototype, mixinWebcomponent);
12+
13+
if (!className.prototype.hasOwnProperty("connectedCallback")) {
14+
Object.assign(className.prototype, mixinConnectedCallback);
15+
}
16+
17+
if (!className.prototype.hasOwnProperty("disconnectedCallback")) {
18+
Object.assign(className.prototype, mixinDisconnectedCallback);
19+
}
20+
21+
className.prototype.mixinStore = mixinStore;
22+
}

src/main.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./connect";

src/mixin-connectedcallback.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Interface for MixinConnectedCallback.
3+
*/
4+
interface MixinConnectedCallback {
5+
connectedCallback: any;
6+
}
7+
8+
/**
9+
* The mixin for generic connectedCallback implementation.
10+
*/
11+
export const mixinConnectedCallback: MixinConnectedCallback = {
12+
connectedCallback() {
13+
// Issue is super is not present here
14+
// Walking the prototype chain to call the connectedCallback on parent (super)
15+
16+
//@ts-ignore
17+
this.__proto__.__proto__.connectedCallback.call(this);
18+
19+
//@ts-ignore
20+
this.connectState();
21+
}
22+
};

src/mixin-disconnectedcallback.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Interface for MixinDisconnectedCallback.
3+
*/
4+
interface MixinDisconnectedCallback {
5+
disconnectedCallback: any;
6+
}
7+
8+
/**
9+
* The mixin for generic disconnectedCallback implementation.
10+
*/
11+
export const mixinDisconnectedCallback: MixinDisconnectedCallback = {
12+
disconnectedCallback() {
13+
// Issue is super is not present here
14+
// Walking the prototype chain to call the connectedCallback on parent (super)
15+
16+
//@ts-ignore
17+
this.__proto__.__proto__.disconnectedCallback.call(this);
18+
19+
//@ts-ignore
20+
this.disconnectState();
21+
}
22+
};

src/mixin-webcomponent.ts

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/**
2+
* Interface for MixinWebComponent.
3+
*/
4+
interface MixinWebComponent {
5+
mixinStore: any;
6+
mixinState: any;
7+
mixinUnsubscribeStore: any;
8+
connectState: any;
9+
disconnectState: any;
10+
onMixinStateChange: any;
11+
mapDispatchToProps?: any;
12+
mapStateToProps?: any;
13+
}
14+
15+
/**
16+
* The mixin for generic state management functionality.
17+
*/
18+
export const mixinWebcomponent: MixinWebComponent = {
19+
mixinStore: null,
20+
21+
mixinState: undefined,
22+
23+
mixinUnsubscribeStore: null,
24+
25+
connectState() {
26+
// Step 1: To the instance add dispatch functions as properties
27+
if (this.mapDispatchToProps) {
28+
let obj = this.mapDispatchToProps(this.mixinStore.dispatch);
29+
30+
if (obj) {
31+
for (let key in obj) {
32+
//@ts-ignore
33+
this[key] = obj[key];
34+
}
35+
}
36+
}
37+
38+
// Step 2: Get the current state and trigger initial mapStateToAttributes
39+
let nextState = this.mixinStore.getState();
40+
41+
this.mapStateToProps && this.mapStateToProps(this.mixinState, nextState);
42+
43+
// Step 3: Save the current state and subscribe to store change event
44+
this.mixinState = nextState;
45+
46+
this.onMixinStateChange = this.onMixinStateChange.bind(this);
47+
48+
this.mixinUnsubscribeStore = this.mixinStore.subscribe(this.onMixinStateChange);
49+
},
50+
51+
disconnectState() {
52+
if (this.mixinUnsubscribeStore) {
53+
this.mixinUnsubscribeStore();
54+
this.mixinUnsubscribeStore = null;
55+
}
56+
},
57+
58+
onMixinStateChange() {
59+
let nextState = this.mixinStore.getState();
60+
61+
if (nextState === this.mixinState) {
62+
return;
63+
}
64+
65+
this.mapStateToProps && this.mapStateToProps(this.mixinState, nextState);
66+
67+
this.mixinState = nextState;
68+
}
69+
}

tsconfig.json

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"compilerOptions": {
3+
/* Basic Options */
4+
"target": "ES6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
5+
"module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
6+
"lib": ["dom", "es2015", "es2016"], /* Specify library files to be included in the compilation. */
7+
// "allowJs": true, /* Allow javascript files to be compiled. */
8+
// "checkJs": true, /* Report errors in .js files. */
9+
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
10+
// "declaration": true, /* Generates corresponding '.d.ts' file. */
11+
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
12+
"sourceMap": true, /* Generates corresponding '.map' file. */
13+
// "outFile": "./", /* Concatenate and emit output to single file. */
14+
// "outDir": "./", /* Redirect output structure to the directory. */
15+
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
16+
// "composite": true, /* Enable project compilation */
17+
// "removeComments": true, /* Do not emit comments to output. */
18+
// "noEmit": true, /* Do not emit outputs. */
19+
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
20+
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
21+
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
22+
23+
/* Strict Type-Checking Options */
24+
"strict": true, /* Enable all strict type-checking options. */
25+
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
26+
"strictNullChecks": true, /* Enable strict null checks. */
27+
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
28+
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
29+
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
30+
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
31+
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
32+
33+
/* Additional Checks */
34+
"noUnusedLocals": true, /* Report errors on unused locals. */
35+
"noUnusedParameters": true, /* Report errors on unused parameters. */
36+
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
37+
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
38+
39+
/* Module Resolution Options */
40+
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
41+
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
42+
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
43+
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
44+
// "typeRoots": [], /* List of folders to include type definitions from. */
45+
// "types": [], /* Type declaration files to be included in compilation. */
46+
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
47+
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
48+
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
49+
50+
/* Source Map Options */
51+
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
52+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
53+
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
54+
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
55+
56+
/* Experimental Options */
57+
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
58+
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
59+
}
60+
}

0 commit comments

Comments
 (0)