Project

General

Profile

Actions

Task #46357

closed

Epic #55575: Streamline JavaScript Code in the TYPO3 Backend

Move TCEForms JS Code to external file - part 1

Added by Benni Mack about 11 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
FormEngine aka TCEforms
Target version:
-
Start date:
2013-03-16
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.1
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

Parts of the JavaScript code used in TCEforms is put inline, coming from
the PHP file. There is no concept of using HTML5-data attributes
to store information. Plus, most of the JS functions are inline in the
HTML output and called in onclick etc. handlers in the HTML elements.
Thus, the functionality cannot be abstracted from the markup,
and the JS functionality cannot be cached by the browser.

Previously, the JS functionality is based on plain MSIE4-compatible
JS code without any framework (no prototype, jQuery etc), and are not
in any namespace.

This approach extracts TCEforms JS code to an external file (AMD module),
and rewrite it to current jQuery and JS standards. But since the JS code
of TCEforms is very complicated, it is hard to do it all at once.

The beginning makes the functionality around select fields in TCEforms,
the functions for importing values from the Element browser,
from any other source.

The patch does this: * Extract the static functions from the PHP code to an external JS file,
in a new RequireJS module named "TYPO3/CMS/Backend/FormEngine.js" * Add options that are page-specific (backPath, formName, callback fn)
to PHP so JS can access it. * Add classes and data-attributes and remove onclick... functionality in order
to reduce the HTML code and split the data from the logic. * Functionality for icons like "move up" etc are rewritten * Functionality for adding elements from a two-select (like "Access" element in pages)
is rewritten, using CSS classes and data attributes.

By keeping the global variables for the old functionality, the old functions
still work as expected.

Please note that you need to have the RequireJS code in the Core in order to use that.

Also, find the work-in-progress for JS coding guidelines and CSS Class guidelines here:

https://notes.typo3.org/p/JS-Coding-Conventions
https://notes.typo3.org/p/BE-CSS-Classes


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Task #55572: Switch IRRE to jQueryClosedDaniel Siepmann2014-02-02

Actions
Related to TYPO3 Core - Bug #61276: TCA property "exclusiveKeys" prevents from selecting an itemClosed2014-08-29

Actions
Actions

Also available in: Atom PDF