In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Launches the test runner and displays code coverage
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.\
Bundles the app into a single bundle named widget_bundle.js
for easy embedding
Snippet can be embedded to any site using the following html:
<div id="byk-va"></div>
<script>
window._env_ = {
RUUTER_API_URL: 'LOCATION_OF_RUUTER',
TIM_AUTHENTICATION_URL: 'TIM url with callback parameter',
NOTIFICATION_NODE_URL: 'LOCATION_OF_NOTIFICATION_SERVER',
OFFICE_HOURS: {
TIMEZONE: 'Europe/Tallinn',
BEGIN: 8,
END: 17,
DAYS: [1, 2, 4, 5],
},
other variables...
};
</script>
<script id="script-bundle" type="text/javascript" src="LOCATION_OF_WIDGET_BUNDLE" crossorigin=""></script>
RUUTER_API_URL
: Location of back end for fetching dataTIM_AUTHENTICATION_URL
: Link to authenticate userOFFICE_HOURS
: If this variable is added, widget will be hidden when not in defined work hours. If this variable is not added, the widget will always be displayedTIMEZONE
: Used for comparing the following variables against a specific timezone.BEGIN
: Beginning of office hours. If current time is before this hour (24H), the widget will not be displayedEND
: End of office hours. If current time is after this hour (24H), the widget will not be displayedDAYS
: List of days in numbers, where 1=monday, 2=tuesday, 3=wednesday... If current day is in the list of days, the widget will be displayed according to BEGIN and END times.
In order for Rasa buttons to be supported this Pull Request must be merged and deployed. Other option is to merge and deploy it manually using these steps:
-
Add
m.buttons,
to theSELECT
statement ofDSL.Resql/get-chat-messages-updated-after-time.sql
as in here -
Add
m.buttons,
to theSELECT
statement ofDSL.Resql/get-chat-messages.sql
as in here -
Add
"buttons": "{{buttons}}",
in line number 5 ofDSL.DMapper/format_chat_log.hbs
as in here -
Add the following line
"buttons": "[{{#each buttons}}{\"title\": \"{{{escape_special_chars title}}}\",\"payload\": \"{{{escape_special_chars payload}}}\"}{{#unless @last}},{{/unless}}{{/each}}]",
in line number 6 of
DSL.DMapper/bot_responses_to_messages.hbs
as in here -
Add
buttons,
into theSELECT
statement ofDSL.Resql/get-message-by-id.sql
as in here -
Add
buttons,
into theSELECT
statement ofDSL.Resql/get-messages-by-ids.sql
as in here -
Inside file
DSL.Resql/insert-bot-message.sql
do -
Copy database migration file into
DSL.Liquibase/changelog/20231116124800_add_buttons_to_messages.xml
-
Run database migration by executing this command
docker run --rm --network bykstack -v `pwd`/DSL.Liquibase/changelog:/liquibase/changelog -v `pwd`/DSL.Liquibase/master.yml:/liquibase/master.yml -v `pwd`/DSL.Liquibase/data:/liquibase/data liquibase/liquibase --defaultsFile=/liquibase/changelog/liquibase.properties --changelog-file=master.yml --url=jdbc:postgresql://users_db:5432/byk?user=byk --password=01234 update
See licence here.