poll-from-text
is a PHP package to parse semi-structured text into structured-data that can be used to build questionnaires (forms). The main goal is to allow end users to build dynamic forms, e.g. Google Forms, using plain text like they would if the forms were to be printed on paper.
NOTICE: this package assumes a certain format in the "pure" text, so it might not be as generic as possible. The world has bigger problems.
- Simple input questions (useful to create
<input type="text" />
elements); - Question with options (useful to create
<select>
elements); - Options with no value (only text), e.g.
- Text
, or* Text
(like in<option>Text</option>
); - Options with a value, e.g
a) Text
(value is"a"
, like in<option value="a">Text</option>
); - Data attributes (as JSON objects) for both questions and options, e.g.
{"type":"file"} What?
(useful to create custom form elements such as<input type="file" />
).
At the root of your project, run:
composer require ccuffs/poll-from-text
Instantiate the class CCUFFS\Text\PollFromText
then call parse()
:
Tip: use
CCUFFS\Text\PollFromText::make()
if you don't want to instantiate an object.
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('Favorite color?')
var_dump($questions);
The output should be something like:
array(1) {
[0]=>
array(2) {
["text"]=>
string(15) "Favorite color?"
["type"]=>
string(5) "input"
}
}
A new line (without the option marks) indicates a new question:
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('
Favorite color?
Favorite food?
')
var_dump($questions);
The output should be something like:
array(2) {
[0]=>
array(2) {
["text"]=>
string(15) "Favorite color?"
["type"]=>
string(5) "input"
}
[1]=>
array(2) {
["text"]=>
string(15) "Favorite food?"
["type"]=>
string(5) "input"
}
}
You can create questions with options by prefixing lines with -
or *
:
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('
Choose favorite color
- Green
');
var_dump($questions);
The output should be something like:
array(1) {
[0]=>
array(3) {
["text"]=>
string(21) "Choose favorite color"
["type"]=>
string(6) "select"
["options"]=>
array(1) {
["text"]=>
string(5) "Green",
["marker"]=>
string(1) "-"
}
}
}
You can create questions with options and their values by using )
, for instance:
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('
Choose favorite color
a) Green
');
var_dump($questions);
The output should be something like:
array(1) {
[0]=>
array(3) {
["text"]=>
string(21) "Choose favorite color"
["type"]=>
string(6) "select"
["options"]=>
array(1) {
["a"]=>
array(3) {
["text"]=>
string(5) "Green"
["marker"]=>
string(1) "a"
["separator"]=>
string(1) ")"
}
}
}
Both questions and options accept a json string as a data field, e.g.
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('{"attr":"value", "attr2":"value"} Type favorite color');
var_dump($questions);
The output should be something like:
array(1) {
[0]=>
array(3) {
["text"]=>
string(21) "Type favorite color"
["type"]=>
string(5) "input"
["data"]=>
array(2) {
["attr"]=>
string(5) "value"
["attr2"]=>
string(5) "value"
}
}
}
Data attribute for an options:
$poller = new CCUFFS\Text\PollFromText();
$questions = $poller->parse('
Choose favorite color
{"attr":"hi"} a) Green
');
var_dump($questions);
The output should be something like:
array(1) {
[0]=>
array(3) {
["text"]=>
string(21) "Choose favorite color"
["type"]=>
string(6) "select"
["options"]=>
array(1) {
["a"]=> array(2) {
["text"]=>
string(5) "Green"
["marker"]=>
string(1) "a"
["separator"]=>
string(1) ")"
["data"]=>
array(1) {
["attr"]=>
string(2) "hi"
}
}
}
}
}
Both parse()
and make()
accept a $config
which is an array of configuration to consider when generating the questionnaire. Below is a complete list of all available configuration options:
$config = [
'multiline_question' => false, // if `true`, questions are allowed to have `\n` in their text.
'attr_validation' => PollFromText::ATTR_AS_TEXT, // allow any text a attribute (no validation)
];
If you plan on changing how the package works, be sure to clone it first:
git clone https://github.com/ccuffs/poll-from-text && cd poll-from-text
Install dependencies
composer install
Make your changes. After, run the tests it to ensure nothing breaked:
./vendor/bin/pest
There should be plenty of green marks all over 😁
Your help is most welcome regardless of form! Check out the CONTRIBUTING.md file for all ways you can contribute to the project. For example, suggest a new feature, report a problem/bug, submit a pull request, or simply use the project and comment your experience. You are encourage to participate as much as possible, but stay tuned to the code of conduct before making any interaction with other community members.
See the ROADMAP.md file for an idea of how the project should evolve.
This project is licensed under the MIT open-source license and is available for free.
See all changes to this project in the CHANGELOG.md file.
Below is a list of interesting links and similar projects: