Skip to the content.

record-comparison

A javascript tool to compare array quickly and you can do something when matching, for browsers and NodeJS servers

Via Janden Ma

MIT LICENCE

Warning

This package is now EOL, you can continue to use it but maybe no more support or maintenance.

Well, don’t worry, you can migrate to @rinxun/record-comparison seamlessly, and the new package is more friendly with TypeScript.

中文文档(Simplified Chinese)

Version Change Logs

First of all

If you use this tool to compare arrays, you need to specify one of those as the master array, so others are detail array(s).

When you call compare() function, this tool will generate a master pointer for master array and detail pointer for detail array.

If master item and detail item have finished matching, you need to call detailMoveNext() to move detail pointer to next detail item for next comparison.

If master item and detail item can’t matched, you need to call masterMoveNext() to move master pointer to next master item for next comparison.

Installation

Quick Example

Usage

  1. Import library package

    import RecordComparison from 'record-comparison'
    // or
    const RecordComparison = require('record-comparison')
    
  2. Instantiate RecordComparison

    const rc = new RecordComparison(masterArray, detailArray); 
    
    • masterArray:
      • The master array, which will be operated when comparing
      • Type: Array<object>
    • detailArray:
      • The detail array, as references when comparing
      • Type:
        • Single comparison: Array<object>
        • Multiple comparison: Array<Array<object>>
  3. API

    • master
      • get the master array
      • Type: Array<object>
    • details
      • get the detail array
      • Type:
        • Single comparison: Array<object>
        • Multiple comparison: Array<Array<object>>
    • currentRow
      • get the current item in master array
      • Type: object
    • detailRow
      • get the current item in detail array, if multiple comparison, will return that one which is comparing (according to the index parameter in compare())
      • Type: object
    • masterFields
      • the sort fields for master array, should be included in the item of master array, you need to set it
      • Type: Array<{ field: string, order?: 'ASC' | 'DESC' }> | null
      • field is the field name
      • order is the ordering rule, default 'ASC' for ascending
    • detailFields
      • the sort fields for detail array, should be included in the item of detail array, you need to set it for single comparison
      • Type: Array<{ field: string, order?: 'ASC' | 'DESC' }> | null
      • field is the field name
      • order is the ordering rule, default 'ASC' for ascending
    • detailFieldsArr
      • the sort fields for detail arrays, should be included in the item of detail arrays, you need to set it for multiple comparison
      • Type: Array<Array<{ field: string; order?: 'ASC' | 'DESC' }>> | null
      • field is the field name
      • order is the ordering rule, default 'ASC' for ascending
    • masterEof
      • if book mark is greater than the length of master array, return false that means finish comparing
      • Type: boolean
    • isSorted
      • if you have sorted arrays in outer function, you should set it true to ensure the performance
    • compare(index?: number)
      • the core function for comparison
      • Type: Function
      • Parameter:
        • index: number, for multiple comparison, default 0
      • Returns
        • True for matching, or False
    • getMasterBookMark()
      • get the current book mark for master array, that means the index of the master pointer right now (start from 0).
      • Returns: number
    • getDetailBookMark(index?: number)
      • get the current book mark for detail array, that means the index of the detail pointer right now (start from 0).
      • Parameter:
        • index: number, for multiple comparison, default 0
      • Returns: number
    • masterMoveNext()
      • if master item and detail item can’t be matched, you need to move master pointer to next item
    • detailMoveNext(index?: number)
      • if master item and detail item have finished matching, you need to move detail pointer to next item for next comparison
      • Parameter:
        • index: number, for multiple comparison, default 0