@mochi-inc-japan/algolia-firebase-tools
TypeScript icon, indicating that this package has built-in type declarations

1.15.8 • Public • Published

What is this

Auto cli generator for general usage algolia from node. This library mainly targets typescript but may be available as js module.

Ready to use

You need reading env setting if command auto generation.

ALGOLIA_ID: your algolia id
ALGOLIA_ADMIN_KEY: your algolia admin key
ALGOLIA_SEARCH_KEY: our algolia search key
FIREBASE_SERVICE_ACCOUNT_PATH (Optional): path of firebase service account, if you don't specify it, cli surpress firebase batch.
INDEX_NAMESPACE (Optional): prefix for algolia index, this is used to set different environments with one algolia account.

package.json

package.json

  "aftools" : {
    "modulePath": "algoliaIndexManager",
    "out": "dist",
    "dFiles": ["./internalAmbientFiles", "index.d.ts"],
    "envFile": ".env.some"
  }

modulePath: your algolia index manager relative module path from package.json. this is object consistes of IndexManager Class Constructor. It explained later and see example cases.

out (Optional): builded relative cli path from package.json. Default is ${projectRoot}/bin. types (Optional): project internal types. .

firebaseServiceAccountPath (Optional): relative firebase-service json path from package.json. FIREBASE_SERVICE_ACCOUNT_PATH valiable is prior than this. Default is ${projectRoot}/bin.

dFiles: string[] (Optional): For including ambient definition files through build, sometimes you need them using global type in your index modules. You can specify directory and .d.ts file path.

envFile (Optional): your env file specified, default is .env. If not specified, machine variables is used .

Example Index ManagerModules

Make algoliaIndexManager/userExample.ts (if you specify ./algoliaIndexManager as modulePath)

import { AlgoliaIndexManager, IndexInterface } from '@moch-inc-japan/algolia-firebase-tools'

type UserSchema = {
  id: string
  name: string
}
export default class UserIndexManager implements IndexInterface {
  private algoliaIndexManager: AlgoliaIndexManager
  public constructor(args: { algoliaIndexManager: AlgoliaIndexManager }) {
    this.algoliaIndexManager = args.algoliaIndexManager
  }

  public sendIndex = async (userId: string, user: UserSchema) => {
    const result = await this.algoliaIndexManager.sendIndex('users', user)
    if (result) {
      console.log(`users index has been updated: [userId:${user.id}]`)
      return true
    } else {
      console.error('users index update has been failed')
      return false
    }
  }

  public batchSendToIndex = async () => {
    const result = await this.algoliaIndexManager.sendIndex('users', [])
    return result
  }

  public deleteIndexData = async (userIds: string[]) => {
    const result = await this.algoliaIndexManager.deleteIndexData('users', userIds)
    if (result) {
      console.log(`user index has been deleted: [userIds:${userIds}]`)
      return true
    } else {
      console.error('user index delete has been failed')
      return false
    }
  }
}

And you make algoliaIndexManager/index.ts

import users from './userExample'
export default {
  users // This exported as collectionName, so you should use named import specify to collection id
}

Usage

cli init or update indexModules

aftools-build

This is typescript tsc wrapper so you can use tsc --option if your source code including ambient file and json Module like

aftools-build --typeRoots ${DFILE_PATH} --resolveJsonModule

and you can exec build command

aftools-build --verbose

cli run

aftools <scriptId>

You can switch an env file from option. It's prior than config envFile.

aftools-build --envfile ${env_path} <scriptId>

builtin script

see aftools help.

npx aftools

Usage as Modules

Your module can be used backend. We probide algoliaModule default exported. So you can use same logic introduced in cli.

For example.

import algoliaModule from '@mochi-inc-japan/algolia-firebase-tools'
import indexManagers from './algoliaIndexManager'

const manager = algoliaModule(
  {
    client,
    indexNamespace,
  },
  indexManagers
)


manager.indices.users.batchSendIndex()

so on.

Extension for Commander

If you use commader, you can extend it by defined commands in this library.

import AlgoliaModule, {createAlgoliaCommanderPlugin} from '@mochi-inc-japan/algolia-firebase-tools'
import indexManagers from './algoliaIndexManager'
import commander from 'commander'

const algoliaModule = AlgoliaModule(
  {
    client,
    indexNamespace,
  },
  indexManagers,
  {
    plugin: [FirebaseInvoke]
  }
)

const algoliaTasks = new AlgoliaProjectManager(algoliaModule)

// extended to commander commands
createAlgoliaCommanderPlugin(algoliaTasks)(commander)
createFirestoreCommanderPlugin(algoliaTasks.firebaseManager)(commander)// optional if you use firestore

WARNING

This library cli may include your secret files bundled code. So you should not include bundle task files in git repository your aftools-build code.

Readme

Keywords

none

Package Sidebar

Install

npm i @mochi-inc-japan/algolia-firebase-tools

Weekly Downloads

27

Version

1.15.8

License

MIT

Unpacked Size

157 kB

Total Files

59

Last publish

Collaborators

  • tkow