Character Count Plug-in
Introduction
This article introduces the Character Count Plug-in, which is a plug-in version of the sample code introduced in the "
Count Characters Inside Fields
" article.
This plug-in counts the number of characters in a Text Area field (excluding spaces and line breaks) and stores the number in the specified Number field upon saving the record.
Plug-in file
The packaged sample plug-in zip file can be downloaded from the
Releases page
on GitHub.
Install the plug-in into your domain by following
the plug-in installation guide on the Help page
.
You can then add the plug-in to a specific App by following
the plug-in adding guide on the Help page.
Overview
To set up the plug-in, the Kintone App must have a Text Area field and a Number field set in its form.
There are two settings for this plug-in.
For the first setting, select a Text Area field from the drop-down list.
For the second setting, select a Number field from the drop-down list.
After saving the plug-in settings and updating the App, the plug-in's features will run when a record is saved, by counting the number of characters (excluding spaces and line breaks) in the specified Text Area field, and then inserting the number into the specified Number field.
The Number field is also set to be un-editable while the user enters information into the record.
File structure
The sample codes used in the plug-in are listed under the src file in our
GitHub repository
.
The plug-in is created with the following file structure:
|
|
This file builds the HTML of the plug-in settings page.
Each <div>
tag with the "block" class represents 1 row of related HTML elements.
The first "kintoneplugin-row" div contains the HTML of the first settings, where the user chooses which Text Area field will have their characters counted. A select tag is stated in the HTML, that creates a drop-down field with a value of "-----". This drop-down field is later populated by the config.js file.
|
|
The second "kintoneplugin-row" div contains the HTML of the second settings, where the user chooses which Number field will store the number of counted characters. Similar to the first settings, a select tag is stated in the HTML that creates a drop-down field with a value of "-----". This drop-down field is also later populated by the config.js file.
|
|
Both drop-down fields in the blocks have ids allocated to them, so that they can be targeted and populated by the config.js file.
This CSS file is provided on
GitHub
. This file styles HTML elements on the plug-in config page to fit in with Kintone's UI.
We recommend that you do not make changes to 51-modern-default.css. If you need to style additional elements, or over-ride the default styles, those changes should be added into config.css.
This supporting CSS file is used to style some areas of the plug-in config page that 51-modern-default.css doesn't cover.
This file uses the
kintone-config-helper library
to help build out form elements for the plug-in config page.
The function setDropDown is called when the plug-in config page loads.
|
|
This function calls the KintoneConfigHelper.getFields method from the kintone-config-helper library.
By passing 'MULTI_LINE_TEXT' and 'NUMBER' as the parameters, an array of field information of all Text Area fields and all Number fields are returned.
|
|
The returned array is filtered out to create lists of Text Area fields and Number fields, and are appended to the drop-down stored in $selectBody and $selectCount respectively.
|
|
At the end of the setDropDown function, the code checks the CONF object where any saved setting data are stored. If it's the first time for the user to use the plug-in, there are no saved values, thus no values are placed in the settings of the plug-in settings page. If the user has saved any settings before in the plug-in (which are stored using Kintone's setConfig API ), then those saved values (the specified Text Area field and Number field) are inserted into the designated plug-in settings.
|
|
This file runs on the regular pages of the App, such as the Record List and Record Details pages, but not on the plug-in config page. This file uses the sample code included in the " Count Characters Inside Fields " article. The code used in this plug-in is mostly the same, but it's wrapped in an immediate function with the plug-in ID value as the input parameter. The plug-in ID value is needed for several JavaScript API calls, such as Kintone's getConfig API that retrieves the configuration data that was saved in the plug-in settings page using the setConfig API .
|
|
Data retrieved with the kintone.plugin.app.getConfig(PLUGIN_ID) method are allocated to variables in the code.
|
|
These variables are used when the
app.record.create.submit
,
app.record.edit.submit
or
app.record.index.edit.submit
events (events triggered when records are saved) are triggered to specify the related properties within the event object.
Overwriting values within the event object and returning the object results in specific fields of the App record to be overwritten - in this case, the Number field is overwritten with new data.
|
|
The kintone-config-helper.js file is a library that supports the development of the plug-in config page. View the Introduction to Kintone Config Helper article for more details.
The manifest file states the paths of the files that will be used in the plug-in. It also links to the jQuery library hosted on the Kintone CDN , so that it can be called on the config page.
|
|
The array in the value of the required_params key states which settings in the plug-in config page are required. If these settings are not saved using the setConfig API , errors will be displayed on other pages of the App, stating that the plug-in settings have not been configured yet.
|
|
The name, description, and homepage_url key-value pairs are labels and links displayed in the plug-in settings.
|
|
Finally
Licenses
This plug-in is open sourced under the
MIT License
. It allows open- or closed-sourced distribution, including commercial use.
If you would like to add more functionality to the plug-in, you are welcome to clone our repository to make your own changes and redistribute it. We generally do not accept external pull requests for the sample plug-in as this repository exists for educational purposes.
If you have any questions related to building Kintone plug-ins, please post your question in the
Kintone Developer Program Community Forum
.
Contribution
This sample plug-in was created with the contribution of
Fuji Business International
Mamoru Fujinoki - LinkedIn