This library gives a set of configs, which can be used in all bfx-hf-*
services. Any config in bfx-hf-ui-config
contain predefined default values
npm i --save bfx-hf-ui-config
UserSettings (see docs/user_settings.md
)
To get started, import an bfx-hf-ui-config
to your project, then get any config you need, for istance it will be UserSettings:
const { _default } = require('bfx-hf-ui-config').UserSettings // get UserSettings default values
const send = require('../../util/ws/send')
const sendError = require('../../util/ws/send_error')
const isAuthorized = require('../../util/ws/is_authorized')
module.exports = async (server, ws, msg) => {
const { db } = server
const { UserSettings } = db
const [, authToken] = msg
if (!isAuthorized(ws, authToken)) {
return sendError(ws, 'Unauthorized')
}
const { userSettings } = await UserSettings.getAll()
send(ws, ['data.settings.updated', userSettings || _default]) // in case if userSettings in db are empty, then we should send _default object from the UserSettings
}
- Fork it (https://github.com/bitfinexcom/bfx-hf-ui-config)
- Create your feature branch (`git checkout -b my-new-feature)
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request