Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit bee45ae

Browse files
hugomrdiasvasco-santosGozalaachingbrain
authored
feat: ts types, github ci and clean up (#39)
- add ts types with jsdocs and aegir - remove travis and add github action - update deps and repo clean up (readme, package.json, etc.. ) Co-authored-by: Vasco Santos <vasco.santos@moxy.studio> Co-authored-by: Irakli Gozalishvili <contact@gozala.io> Co-authored-by: achingbrain <alex@achingbrain.net>
1 parent 5c732be commit bee45ae

20 files changed

+470
-212
lines changed

.github/workflows/main.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
10+
jobs:
11+
check:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- run: npm install
16+
- run: npx aegir lint
17+
- uses: gozala/typescript-error-reporter-action@v1.0.8
18+
- run: npx aegir build
19+
- run: npx aegir dep-check
20+
- uses: ipfs/aegir/actions/bundle-size@master
21+
name: size
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
test-node:
25+
needs: check
26+
runs-on: ${{ matrix.os }}
27+
strategy:
28+
matrix:
29+
os: [windows-latest, ubuntu-latest, macos-latest]
30+
node: [12, 14]
31+
fail-fast: true
32+
steps:
33+
- uses: actions/checkout@v2
34+
- uses: actions/setup-node@v1
35+
with:
36+
node-version: ${{ matrix.node }}
37+
- run: npm install
38+
- run: npx nyc --reporter=lcov aegir test -t node -- --bail
39+
- uses: codecov/codecov-action@v1
40+
test-chrome:
41+
needs: check
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v2
45+
- run: npm install
46+
- run: npx aegir test -t browser -t webworker --bail
47+
test-firefox:
48+
needs: check
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v2
52+
- run: npm install
53+
- run: npx aegir test -t browser -t webworker --bail -- --browsers FirefoxHeadless
54+
test-electron-main:
55+
needs: check
56+
runs-on: ubuntu-latest
57+
steps:
58+
- uses: actions/checkout@v2
59+
- run: npm install
60+
- run: npx xvfb-maybe aegir test -t electron-main --bail
61+
test-electron-renderer:
62+
needs: check
63+
runs-on: ubuntu-latest
64+
steps:
65+
- uses: actions/checkout@v2
66+
- run: npm install
67+
- run: npx xvfb-maybe aegir test -t electron-renderer --bail

.travis.yml

-42
This file was deleted.

README.md

+12-20
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,25 @@
1-
# js-datastore-core
1+
# js-datastore-core <!-- omit in toc -->
22

33
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
44
[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/)
55
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
6-
[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
7-
[![Build Status](https://flat.badgen.net/travis/ipfs/js-datastore-core)](https://travis-ci.com/ipfs/js-datastore-core)
8-
[![Codecov](https://codecov.io/gh/ipfs/js-datastore-core/branch/master/graph/badge.svg)](https://codecov.io/gh/ipfs/js-datastore-core)
9-
[![Dependency Status](https://david-dm.org/ipfs/js-datastore-core.svg?style=flat-square)](https://david-dm.org/ipfs/js-datastore-core)
10-
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard)
11-
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
12-
![](https://img.shields.io/badge/Node.js-%3E%3D8.0.0-orange.svg?style=flat-square)
6+
[![codecov](https://img.shields.io/codecov/c/github/ipfs/js-datastore-core.svg?style=flat-square)](https://codecov.io/gh/ipfs/js-datastore-core)
7+
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/ipfs/js-datastore-core/ci?label=ci&style=flat-square)](https://github.com/ipfs/js-datastore-core/actions?query=branch%3Amaster+workflow%3Aci+)
138

149
> Wrapping implementations for [interface-datastore](https://github.com/ipfs/interface-datastore).
1510
16-
## Lead Maintainer
11+
## Lead Maintainer <!-- omit in toc -->
1712

1813
[Alex Potsides](https://github.com/achingbrain)
1914

20-
## Table of Contents
21-
22-
- [js-datastore-core](#js-datastore-core)
23-
- [Lead Maintainer](#lead-maintainer)
24-
- [Table of Contents](#table-of-contents)
25-
- [Implementations](#implementations)
26-
- [Install](#install)
27-
- [Usage](#usage)
28-
- [Wrapping Stores](#wrapping-stores)
29-
- [Contribute](#contribute)
30-
- [License](#license)
15+
## Table of Contents <!-- omit in toc -->
16+
17+
- [Implementations](#implementations)
18+
- [Install](#install)
19+
- [Usage](#usage)
20+
- [Wrapping Stores](#wrapping-stores)
21+
- [Contribute](#contribute)
22+
- [License](#license)
3123

3224
## Implementations
3325

package.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "datastore-core",
33
"version": "2.0.1",
4-
"description": "Wrapper implmentation for interface-datastore",
5-
"leadMaintainer": "Pedro Teixeira <pedro@protocol.ai>",
4+
"description": "Wrapper implementation for interface-datastore",
5+
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
66
"main": "src/index.js",
7+
"types": "dist/src/index.d.ts",
78
"scripts": {
9+
"prepare": "aegir build --no-bundle",
810
"test": "aegir test",
911
"test:node": "aegir test -t node",
1012
"test:browser": "aegir test -t browser",
1113
"test:webworker": "aegir test -t webworker",
12-
"build": "aegir build",
1314
"lint": "aegir lint",
1415
"release": "aegir release",
1516
"release-minor": "aegir release --type minor",
@@ -38,19 +39,19 @@
3839
},
3940
"homepage": "https://github.com/ipfs/js-datastore-core#readme",
4041
"devDependencies": {
41-
"aegir": "^28.1.0",
42-
"async-iterator-all": "^1.0.0",
43-
"chai": "^4.2.0",
44-
"dirty-chai": "^2.0.1"
42+
"@types/debug": "^4.1.5",
43+
"aegir": "^30.3.0",
44+
"it-all": "^1.0.4"
4545
},
4646
"dependencies": {
4747
"debug": "^4.1.1",
48-
"interface-datastore": "^2.0.0",
49-
"ipfs-utils": "^4.0.1"
48+
"interface-datastore": "^3.0.1"
5049
},
5150
"engines": {
52-
"node": ">=6.0.0",
53-
"npm": ">=3.0.0"
51+
"node": ">=12.0.0"
52+
},
53+
"eslintConfig": {
54+
"extends": "ipfs"
5455
},
5556
"contributors": [
5657
"achingbrain <alex@achingbrain.net>",

src/index.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,16 @@ const TieredDatastore = require('./tiered')
77
const NamespaceDatastore = require('./namespace')
88
const shard = require('./shard')
99

10-
exports.KeytransformDatastore = KeytransformDatastore
11-
exports.ShardingDatastore = ShardingDatastore
12-
exports.MountDatastore = MountDatastore
13-
exports.TieredDatastore = TieredDatastore
14-
exports.NamespaceDatastore = NamespaceDatastore
15-
exports.shard = shard
10+
/**
11+
* @typedef {import("./types").Shard } Shard
12+
* @typedef {import("./types").KeyTransform } KeyTransform
13+
*/
14+
15+
module.exports = {
16+
KeytransformDatastore,
17+
ShardingDatastore,
18+
MountDatastore,
19+
TieredDatastore,
20+
NamespaceDatastore,
21+
shard
22+
}

src/keytransform.js

+38
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,27 @@
22

33
const { Adapter, utils } = require('interface-datastore')
44
const map = utils.map
5+
/**
6+
* @typedef {import('interface-datastore').Datastore} Datastore
7+
* @typedef {import('interface-datastore').Options} Options
8+
* @typedef {import('interface-datastore').Batch} Batch
9+
* @typedef {import('interface-datastore').Query} Query
10+
* @typedef {import('interface-datastore').Key} Key
11+
* @typedef {import('./types').KeyTransform} KeyTransform
12+
*/
513

614
/**
715
* A datastore shim, that wraps around a given datastore, changing
816
* the way keys look to the user, for example namespacing
917
* keys, reversing them, etc.
18+
*
19+
* @implements {Datastore}
1020
*/
1121
class KeyTransformDatastore extends Adapter {
22+
/**
23+
* @param {Datastore} child
24+
* @param {KeyTransform} transform
25+
*/
1226
constructor (child, transform) {
1327
super()
1428

@@ -20,22 +34,42 @@ class KeyTransformDatastore extends Adapter {
2034
return this.child.open()
2135
}
2236

37+
/**
38+
* @param {Key} key
39+
* @param {Uint8Array} val
40+
* @param {Options} [options]
41+
*/
2342
put (key, val, options) {
2443
return this.child.put(this.transform.convert(key), val, options)
2544
}
2645

46+
/**
47+
* @param {Key} key
48+
* @param {Options} [options]
49+
*/
2750
get (key, options) {
2851
return this.child.get(this.transform.convert(key), options)
2952
}
3053

54+
/**
55+
* @param {Key} key
56+
* @param {Options} [options]
57+
*/
3158
has (key, options) {
3259
return this.child.has(this.transform.convert(key), options)
3360
}
3461

62+
/**
63+
* @param {Key} key
64+
* @param {Options} [options]
65+
*/
3566
delete (key, options) {
3667
return this.child.delete(this.transform.convert(key), options)
3768
}
3869

70+
/**
71+
* @returns {Batch}
72+
*/
3973
batch () {
4074
const b = this.child.batch()
4175
return {
@@ -51,6 +85,10 @@ class KeyTransformDatastore extends Adapter {
5185
}
5286
}
5387

88+
/**
89+
* @param {Query} q
90+
* @param {Options} [options]
91+
*/
5492
query (q, options) {
5593
return map(this.child.query(q, options), e => {
5694
e.key = this.transform.invert(e.key)

0 commit comments

Comments
 (0)