summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/contact-form/grunion-editor-view.php')
-rw-r--r--plugins/jetpack/modules/contact-form/grunion-editor-view.php278
1 files changed, 278 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/contact-form/grunion-editor-view.php b/plugins/jetpack/modules/contact-form/grunion-editor-view.php
new file mode 100644
index 00000000..e6299d06
--- /dev/null
+++ b/plugins/jetpack/modules/contact-form/grunion-editor-view.php
@@ -0,0 +1,278 @@
+<?php
+
+/*
+ * A prototype to allow inline editing / editor views for contact forms.\
+ *
+ * Originally developed in: http://github.com/automattic/gm2016-grunion-editor
+ * Authors: Michael Arestad, Andrew Ozz, and George Stephanis
+ */
+
+class Grunion_Editor_View {
+ public static function add_hooks() {
+ add_action( 'admin_notices', array( __CLASS__, 'handle_editor_view_js' ) );
+ add_filter( 'mce_external_plugins', array( __CLASS__, 'mce_external_plugins' ) );
+ add_filter( 'mce_buttons', array( __CLASS__, 'mce_buttons' ) );
+ add_action( 'admin_head', array( __CLASS__, 'admin_head' ) );
+ }
+
+ public static function admin_head() {
+ remove_action( 'media_buttons', 'grunion_media_button', 999 );
+ add_action( 'media_buttons', array( __CLASS__, 'grunion_media_button' ), 999 );
+ }
+
+ public static function grunion_media_button() {
+ if ( empty( $GLOBALS['pagenow'] ) || 'press-this.php' === $GLOBALS['pagenow'] ) {
+ return;
+ }
+ $title = __( 'Add Contact Form', 'jetpack' );
+ ?>
+
+ <button id="insert-jetpack-contact-form" class="button" title="<?php echo esc_attr( $title ); ?>" href="javascript:;">
+ <span class="jetpack-contact-form-icon"></span>
+ <?php echo esc_html( $title ); ?>
+ </button>
+
+ <?php
+ }
+
+ public static function mce_external_plugins( $plugin_array ) {
+ $plugin_array['grunion_form'] = plugins_url( 'js/tinymce-plugin-form-button.js', __FILE__ );
+ return $plugin_array;
+ }
+
+ public static function mce_buttons( $buttons ) {
+ $size = sizeof( $buttons );
+ $buttons1 = array_slice( $buttons, 0, $size - 1 );
+ $buttons2 = array_slice( $buttons, $size - 1 );
+ return array_merge(
+ $buttons1,
+ array( 'grunion' ),
+ $buttons2
+ );
+ }
+
+ /**
+ * WordPress Shortcode Editor View JS Code
+ */
+ public static function handle_editor_view_js() {
+ $current_screen = get_current_screen();
+ if ( ! isset( $current_screen->id ) || $current_screen->base !== 'post' ) {
+ return;
+ }
+
+ add_action( 'admin_print_footer_scripts', array( __CLASS__, 'editor_view_js_templates' ), 1 );
+
+ wp_enqueue_style( 'grunion-editor-ui', plugins_url( 'css/editor-ui.css', __FILE__ ) );
+ wp_style_add_data( 'grunion-editor-ui', 'rtl', 'replace' );
+ wp_enqueue_script( 'grunion-editor-view', plugins_url( 'js/editor-view.js', __FILE__ ), array( 'wp-util', 'jquery', 'quicktags' ), false, true );
+ wp_localize_script( 'grunion-editor-view', 'grunionEditorView', array(
+ 'inline_editing_style' => plugins_url( 'css/editor-inline-editing-style.css', __FILE__ ),
+ 'inline_editing_style_rtl' => plugins_url( 'css/editor-inline-editing-style-rtl.css', __FILE__ ),
+ 'dashicons_css_url' => includes_url( 'css/dashicons.css' ),
+ 'default_form' => '[contact-field label="' . __( 'Name', 'jetpack' ) . '" type="name" required="true" /]' .
+ '[contact-field label="' . __( 'Email', 'jetpack' ) . '" type="email" required="true" /]' .
+ '[contact-field label="' . __( 'Website', 'jetpack' ) . '" type="url" /]' .
+ '[contact-field label="' . __( 'Message', 'jetpack' ) . '" type="textarea" /]',
+ 'labels' => array(
+ 'submit_button_text' => __( 'Submit', 'jetpack' ),
+ /** This filter is documented in modules/contact-form/grunion-contact-form.php */
+ 'required_field_text' => apply_filters( 'jetpack_required_field_text', __( '(required)', 'jetpack' ) ),
+ 'edit_close_ays' => __( 'Are you sure you\'d like to stop editing this form without saving your changes?', 'jetpack' ),
+ 'quicktags_label' => __( 'contact form', 'jetpack' ),
+ 'tinymce_label' => __( 'Add contact form', 'jetpack' ),
+ )
+ ) );
+
+ add_editor_style( plugins_url( 'css/editor-style.css', __FILE__ ) );
+ }
+
+ /**
+ * JS Templates.
+ */
+ public static function editor_view_js_templates() {
+ ?>
+<script type="text/html" id="tmpl-grunion-contact-form">
+ <form class="card" action='#' method='post' class='contact-form commentsblock' onsubmit="return false;">
+ {{{ data.body }}}
+ <p class='contact-submit'>
+ <input type='submit' value='{{ data.submit_button_text }}' class='pushbutton-wide'/>
+ </p>
+ </form>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-email">
+ <div>
+ <label for='{{ data.id }}' class='grunion-field-label email'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <input type='email' name='{{ data.id }}' id='{{ data.id }}' value='{{ data.value }}' class='{{ data.class }}' placeholder='{{ data.placeholder }}' />
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-telephone">
+ <div>
+ <label for='{{ data.id }}' class='grunion-field-label telephone'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <input type='tel' name='{{ data.id }}' id='{{ data.id }}' value='{{ data.value }}' class='{{ data.class }}' placeholder='{{ data.placeholder }}' />
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-textarea">
+ <div>
+ <label for='contact-form-comment-{{ data.id }}' class='grunion-field-label textarea'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <textarea name='{{ data.id }}' id='contact-form-comment-{{ data.id }}' rows='20' class='{{ data.class }}' placeholder='{{ data.placeholder }}'>{{ data.value }}</textarea>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-radio">
+ <div>
+ <label class='grunion-field-label'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <# _.each( data.options, function( option ) { #>
+ <label class='grunion-radio-label radio'>
+ <input type='radio' name='{{ data.id }}' value='{{ option }}' class="{{ data.class }}" <# if ( option === data.value ) print( "checked='checked'" ) #> />
+ <span>{{ option }}</span>
+ </label>
+ <# }); #>
+ <div class='clear-form'></div>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-checkbox">
+ <div>
+ <label class='grunion-field-label checkbox'>
+ <input type='checkbox' name='{{ data.id }}' value='<?php esc_attr__( 'Yes', 'jetpack' ); ?>' class="{{ data.class }}" <# if ( data.value ) print( 'checked="checked"' ) #> />
+ <span>{{ data.label }}</span><# if ( data.required ) print( " <span>" + data.required + "</span>" ) #>
+ </label>
+ <div class='clear-form'></div>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-checkbox-multiple">
+ <div>
+ <label class='grunion-field-label'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <# _.each( data.options, function( option ) { #>
+ <label class='grunion-checkbox-multiple-label checkbox-multiple'>
+ <input type='checkbox' name='{{ data.id }}[]' value='{{ option }}' class="{{ data.class }}" <# if ( option === data.value || _.contains( data.value, option ) ) print( "checked='checked'" ) #> />
+ <span>{{ option }}</span>
+ </label>
+ <# }); #>
+ <div class='clear-form'></div>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-select">
+ <div>
+ <label for='{{ data.id }}' class='grunion-field-label select'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <select name='{{ data.id }}' id='{{ data.id }}' class="{{ data.class }}">
+ <# _.each( data.options, function( option ) { #>
+ <option <# if ( option === data.value ) print( "selected='selected'" ) #>>{{ option }}</option>
+ <# }); #>
+ </select>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-date">
+ <div>
+ <label for='{{ data.id }}' class='grunion-field-label {{ data.type }}'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <input type='date' name='{{ data.id }}' id='{{ data.id }}' value='{{ data.value }}' class="{{ data.class }}" />
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-text">
+ <div>
+ <label for='{{ data.id }}' class='grunion-field-label {{ data.type }}'>{{ data.label }}<# if ( data.required ) print( " <span>" + data.required + "</span>" ) #></label>
+ <input type='text' name='{{ data.id }}' id='{{ data.id }}' value='{{ data.value }}' class='{{ data.class }}' placeholder='{{ data.placeholder }}' />
+ </div>
+</script>
+
+
+<script type="text/html" id="tmpl-grunion-field-edit">
+ <div class="card is-compact grunion-field-edit grunion-field-{{ data.type }}" aria-label="<?php esc_attr_e( 'Form Field', 'jetpack' ); ?>">
+ <label class="grunion-name">
+ <span><?php esc_html_e( 'Field Label', 'jetpack' ); ?></span>
+ <input type="text" name="label" placeholder="<?php esc_attr_e( 'Label', 'jetpack' ); ?>" value="{{ data.label }}"/>
+ </label>
+
+ <?php
+ $grunion_field_types = array(
+ 'text' => __( 'Text', 'jetpack' ),
+ 'name' => __( 'Name', 'jetpack' ),
+ 'email' => __( 'Email', 'jetpack' ),
+ 'url' => __( 'Website', 'jetpack' ),
+ 'textarea' => __( 'Textarea', 'jetpack' ),
+ 'checkbox' => __( 'Checkbox', 'jetpack' ),
+ 'checkbox-multiple' => __( 'Checkbox with Multiple Items', 'jetpack' ),
+ 'select' => __( 'Drop down', 'jetpack' ),
+ 'radio' => __( 'Radio', 'jetpack' ),
+ );
+ ?>
+ <div class="grunion-type-options">
+ <label class="grunion-type">
+ <?php esc_html_e( 'Field Type', 'jetpack' ); ?>
+ <select name="type">
+ <?php foreach ( $grunion_field_types as $type => $label ) : ?>
+ <option <# if ( '<?php echo esc_js( $type ); ?>' === data.type ) print( "selected='selected'" ) #> value="<?php echo esc_attr( $type ); ?>">
+ <?php echo esc_html( $label ); ?>
+ </option>
+ <?php endforeach; ?>
+ </select>
+ </label>
+
+ <label class="grunion-required">
+ <input type="checkbox" name="required" value="1" <# if ( data.required ) print( 'checked="checked"' ) #> />
+ <span><?php esc_html_e( 'Required?', 'jetpack' ); ?></span>
+ </label>
+ </div>
+
+ <label class="grunion-options">
+ <?php esc_html_e( 'Options', 'jetpack' ); ?>
+ <ol>
+ <# if ( data.options ) { #>
+ <# _.each( data.options, function( option ) { #>
+ <li><input type="text" name="option" value="{{ option }}" /> <a class="delete-option" href="javascript:;"><span class="screen-reader-text"><?php esc_html_e( 'Delete Option', 'jetpack' ); ?></span></a></li>
+ <# }); #>
+ <# } else { #>
+ <li><input type="text" name="option" /> <a class="delete-option" href="javascript:;"><span class="screen-reader-text"><?php esc_html_e( 'Delete Option', 'jetpack' ); ?></span></a></li>
+ <li><input type="text" name="option" /> <a class="delete-option" href="javascript:;"><span class="screen-reader-text"><?php esc_html_e( 'Delete Option', 'jetpack' ); ?></span></a></li>
+ <li><input type="text" name="option" /> <a class="delete-option" href="javascript:;"><span class="screen-reader-text"><?php esc_html_e( 'Delete Option', 'jetpack' ); ?></span></a></li>
+ <# } #>
+ <li><a class="add-option" href="javascript:;"><?php esc_html_e( 'Add new option...', 'jetpack' ); ?></a></li>
+ </ol>
+ </label>
+
+ <a href="javascript:;" class="delete-field"><span class="screen-reader-text"><?php esc_html_e( 'Delete Field', 'jetpack' ); ?></span></a>
+ </div>
+</script>
+
+<script type="text/html" id="tmpl-grunion-field-edit-option">
+ <li><input type="text" name="option" /> <a class="delete-option" href="javascript:;"><span class="screen-reader-text"><?php esc_html_e( 'Delete Option', 'jetpack' ); ?></span></a></li>
+</script>
+
+<script type="text/html" id="tmpl-grunion-editor-inline">
+ <h1 id="form-settings-header" class="grunion-section-header"><?php esc_html_e( 'Contact form information', 'jetpack' ); ?></h1>
+ <section class="card grunion-form-settings" aria-labelledby="form-settings-header">
+ <label><?php esc_html_e( 'What would you like the subject of the email to be?', 'jetpack' ); ?>
+ <input type="text" name="subject" value="{{ data.subject }}" />
+ </label>
+ <label><?php esc_html_e( 'Which email address should we send the submissions to?', 'jetpack' ); ?>
+ <input type="text" name="to" value="{{ data.to }}" />
+ </label>
+ </section>
+ <h1 id="form-fields-header" class="grunion-section-header"><?php esc_html_e( 'Contact form fields', 'jetpack' ); ?></h1>
+ <section class="grunion-fields" aria-labelledby="form-fields-header">
+ {{{ data.fields }}}
+ </section>
+ <section class="grunion-controls">
+ <?php submit_button( esc_html__( 'Add Field', 'jetpack' ), 'secondary', 'add-field', false ); ?>
+
+ <div class="grunion-update-controls">
+ <?php submit_button( esc_html__( 'Cancel', 'jetpack' ), 'delete', 'cancel', false ); ?>
+ <?php submit_button( esc_html__( 'Update Form', 'jetpack' ), 'primary', 'submit', false ); ?>
+ </div>
+ </section>
+</script>
+
+</div>
+ <?php
+ }
+}
+
+
+Grunion_Editor_View::add_hooks();