codeq / passthrougheditor
This Neos UI editor plugin takes one configured value and saves it transformed into another field.
Installs: 111
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 18
Language:JavaScript
Type:neos-package
Requires
- neos/neos: ~4.0 || ~5.0 || dev-master
- dev-master
- v1.0.1
- v1
- 0.1
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/qs-6.11.0
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/loader-utils-1.4.2
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/shell-quote-1.7.3
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/async-2.6.4
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/chownr-1.1.4
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/mout-1.2.3
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/shelljs-0.8.5
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/tar-4.4.19
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/lodash-4.17.21
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/y18n-3.2.2
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/ini-1.3.7
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/mixin-deep-1.3.2
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/eslint-utils-1.4.3
- dev-dependabot/npm_and_yarn/Resources/Private/PassthroughEditor/merge-1.2.1
This package is auto-updated.
Last update: 2024-11-09 13:54:39 UTC
README
This package provides a dummy text editor that does one thing: take a value from editorOptions.value
and sets it as a value.
It could be useful when doing something unusual with Dynamic Client-side Configuration.
Anyways, see an example below.
Installation
composer require '@codeq/passthrougheditor'
- Start using the editor in NodeTypes.yaml, e.g.:
Some:NodeType:
properties:
geopoint:
type: Ttree\GoogleMapEditor\GeoPoint
ui:
inspector:
editor: Ttree.GoogleMapEditor/Inspector/Editors/GeoPointEditor
group: 'geo'
latitude:
type: string
ui:
inspector:
editor: CodeQ.PassthroughEditor/Inspector/Editors/PassthroughEditor
editorOptions:
value: 'ClientEval:node.properties.geopoint && node.properties.geopoint[0]'
group: 'geo'
In this example we get the latitude from geopoint property and save it in latitude property.