Socket
Socket
Sign inDemoInstall

@dac-software/forms

Package Overview
Dependencies
89
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dac-software/forms

This library has forms integrated with CRM. It can be applied to qarson fr. Library uses react, redux, typescript, css written in SASS preprocessor.


Version published
Weekly downloads
0
Maintainers
1
Install size
58.9 MB
Created
Weekly downloads
 

Readme

Source

Forms

This library has forms integrated with CRM. It can be applied to qarson fr. Library uses react, redux, typescript, css written in SASS preprocessor.

Developing bundler is webpack.

Build production build made as simple tsc compilation with asset files copies provided

Requirements

  • nodejs v10 +
  • npm v6.9.0 +

Installation:

Installing dependencies

npm install

Build production library files

npm run build

* Build task build two types of library entrypoints :

  • "web" - destined to web include (for example by script tag) with all depedencies built in (like react, redux and other third party libraries)
  • "ecma script module" - destined for further bundler processing, it is resolved through simply typescript compiling in package.json statement
    tsc -p tsconfig-prod.json && copyfiles "./lib/**/*.!(tsx|ts|d.ts|html)" "dist/esm" -u 1
    

##Use

Application should be used by triggering exposed functions triggering window events. Function can be configured by object with forcedPhoneNumber, it will distribute proper phone number to phone number component used in forms

showContactForm()
showContactForm({forcedPhoneNumber: '123.123.123'})
showMeetingForm()
showMeetingForm({forcedPhoneNumber: '123.123.123'})
<div class="react-root-phone-number"><!-- form --></div>

Second mode allows to "predefine"/"force" phone number to show to client

<div class="react-root-phone-number" data-forced-number=""122.122.122"><!-- form --></div>

Library through ESM exposes PhoneNumber react component

<PhoneNumber forcedNumber={'123.123.123'} />

##Development

Running dev server in standalone mode

npm run start

Running dev mode through bundler in other project. Project should be linked by npm.

npm run build:dev

* build dev emmits files into dist/esm/offers-gallery without CSS / files extraction, it is determined by webpack condition on compilation mode

Running tests

npm run test

####Codestyle

We are in consonance with standardjs.

Validation codestyle:

npm run codestyle-check-typescript

Automatic fix:

npm run codestyle-typescript-fix

####CI (bitbucket pipelines)

Checks codestyles and run tests

##Compilation summary

npm start - (standalone dev)npm run build:dev (imported as esm in higher bundler)npm run build (production build)
key dist filesnonedist/esm/offers-gallery.jsdist/esm/forms.js, dist/forms.js, dist/forms.css
css extractionnocss in jsesm: css in js, web: extracted
files extractionnoyesno (copied)
##App configuration

Offers gallery react app requires simple configuration object in window 'offerSummaryConfig' property.

Example :

 var config = {
        locale: 'fr',
        variantNumber: 'something',
        variantVersion: 'somesome',
        offerData: {
          make: 'Opel',
          model: 'Calibra',
          version: 'GTI',
          engineDisplacement: '3.2',
          fuelType: 'essence',
          enginePower: 320
        }
      }

Object.defineProperty(window, 'offerSummaryConfig', { value: offerSummaryConfig })

NPM publishing

NPM publishing manually:

  1. Increase version in package.json
  2. Npm login with proper username and password
    npm login
    
  3. Npm publish (command will trigger prepare npm method which should build files to dist directory)
    npm publish --access=public
    

NPM publishing through bitbucket pipelines:

  1. dev tag publish using pipeline named: custom: dev-npm-publish

    This pipeline automatically defines branch related tag name, for example : 1.0.0-some-branch-name.0

  2. production tag publish using pipeline named: custom: prod-npm-publish

    This pipeline requires what kind of semver tag should be defined for publish. You need to fill additional field in pipeline form and type one of version type : - patch - minor - major

FAQs

Last updated on 07 Sep 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc