Version Description
- March 26, 2021 =
- UPDATE - Massive improvement to image download speeds by dynamically resizing the initial download before sending image to media library.
- Intitial testing revealed up to 4x faster download speeds than previous version of Instant Images .
- NEW - Added
instant_images_after_upload
hook that is dispatch after a successful upload allowing users to hook into the attachment and run custom functionality. - UPDATE - Upgraded Axios JS libray to
0.21.1
.
Download this release
Release Info
Developer | dcooney |
Plugin | Instant Images – One Click Unsplash Uploads |
Version | 4.4.0 |
Comparing to | |
See all releases |
Code changes from version 4.3.2 to 4.4.0
- README.txt +34 -58
- admin/admin.php +52 -147
- admin/includes/settings.php +41 -64
- admin/includes/unsplash-settings.php +14 -15
- admin/views/unsplash.php +10 -10
- api/download.php +180 -154
- api/test.php +35 -39
- dist/css/instant-images.css +52 -31
- dist/css/instant-images.min.css +1 -1
- dist/img/ajax-loader-lg.gif +0 -0
- dist/img/ajax-loader.gif +0 -0
- dist/img/logo-48x48.png +0 -0
- dist/js/instant-images-block.js +1595 -1372
- dist/js/instant-images-block.min.js +17 -34
- dist/js/instant-images-media.js +1597 -1363
- dist/js/instant-images-media.min.js +12 -4
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dcooney, connekthq
|
|
3 |
Donate link: https://connekthq.com/donate/
|
4 |
Tags: stock photo, unsplash, prototyping, photos, upload, media library, image upload, free photos
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag:
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -30,6 +30,7 @@ The perfect tool for users who want to save time and frustration by uploading im
|
|
30 |
- **Theme/Plugin Developers** - A great tool for developers who want to prototype and develop using real world imagery.
|
31 |
- **Gutenberg** - Instant Images directly integrates with Gutenberg as a plugin sidebar.
|
32 |
- **Media Modal** - Instant Images is available as a tab in the WordPress Media Modal.
|
|
|
33 |
- **Edit Image Metadata** - Easily edit image filename, alt text and caption prior to uploading to your media library.
|
34 |
- **Accessibility** - Automatically include a relevant alt description for screen readers, visually reduced users, and SEO.
|
35 |
- **Easy to Use** - It couldn't get much more simple, just click an image and it's automatically uploaded to your media library for use on your site.
|
@@ -120,21 +121,43 @@ How to install Instant Images.
|
|
120 |
3. Image Metadata - Easily edit image filename, alt text and caption prior to uploading to your media library.
|
121 |
4. Post/Page Edit - Unsplash images in a lightbox on your post edit/new/post pages.
|
122 |
5. Gutenberg post edit screens. Add as featured image, insert into post or just upload photo.
|
|
|
123 |
|
124 |
== Changelog ==
|
125 |
|
126 |
-
= 4.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
|
|
|
128 |
- UPDATE - Switched REST API methods to `POST` requests from `PUT`. This will hopefully reduce issues users are having with `PUT` being disabled on their servers.
|
129 |
- UPDATE - Added Instant Images media button back to Classic Editor post screen.
|
130 |
|
131 |
-
= 4.3.1 - April 13, 2020 =
|
132 |
|
|
|
133 |
- FIX - Fixed issue with Instant Images causing Yoast SEO metabox to not show correctly in the classic WordPress editor. Not really sure why, but the Instant Images JS dependencies seemed to interfere with Yoast.
|
134 |
- FIX - Added user privileges checks to the new Media Modal functionality.
|
135 |
|
136 |
-
= 4.3.0 - April 9, 2020 =
|
137 |
|
|
|
138 |
- NEW - Adding `Instant Images` tab to the WordPress Media Modal.
|
139 |
- NEW - When images are uploaded directly to a post the current Post ID is attached to the upload as the parent post.
|
140 |
- NEW - Adding default alt text directly from Unsplash API.
|
@@ -142,24 +165,24 @@ How to install Instant Images.
|
|
142 |
- UPDATE - Switching tab navigation from `<a/> to`<button/>` for better accessibility.
|
143 |
- FIX - Added a fix for JS error regarding `PluginSidebar` registration on non-gutenberg editor pages.
|
144 |
|
145 |
-
= 4.2.0 - December 14, 2019 =
|
146 |
|
|
|
147 |
- NEW - Added image orientation search filter
|
148 |
- FIX - Fixed issue with instant images being rendered in Gutenberg editor for users without permissions.
|
149 |
- UPDATE - Updated WordPress role requirement from `edit_theme_options` to [`upload_files`](https://wordpress.org/support/article/roles-and-capabilities/#upload_files).
|
150 |
|
151 |
-
= 4.1.0 - July 23, 2019 =
|
152 |
|
|
|
153 |
- NEW - Added support for updating image title prior to upload.
|
154 |
- NEW - Added link to edit image after upload process completes.
|
155 |
- UPDATE - Updated functionality to trigger photo upload immediately after triggering a `Save` when editing image metadata.
|
156 |
|
157 |
-
= 4.0.1 - April 18, 2019 =
|
158 |
|
|
|
159 |
- FIX - Fixed issue where Instant Images sidebar plugin would not appear in Gutenberg if removed as a pinned item.
|
160 |
|
161 |
-
= 4.0.0 - February 12, 2019 =
|
162 |
|
|
|
163 |
- 4.0 adds Gutenberg support. You can now access instant images directly from inside the block editor.
|
164 |
- NEW - Added Instant Images to Gutenberg as a Plugin Sidebar.
|
165 |
- NEW - Added Gutenberg featured image support.
|
@@ -169,57 +192,10 @@ How to install Instant Images.
|
|
169 |
- UPDATE - Updated REST API methods to prefix function names.
|
170 |
- UPDATE - Various other UI/UX enhancements.
|
171 |
|
172 |
-
= 3.3.0 - January 10, 2019 =
|
173 |
-
|
174 |
-
- UPDATE - Removed cURL usage for downloading images in place of core `copy()` PHP function.
|
175 |
-
- NEW - Adding Axios for HTTP requests
|
176 |
-
- NEW - Removing `/instant-images` folder in uploads directory on plugin de-activation.
|
177 |
-
- FIX - Added fix for directory permission issue when creating `uploads/instant-images`.
|
178 |
-
|
179 |
-
= 3.2.1 - September 25, 2018 =
|
180 |
-
|
181 |
-
- NEW - Added Instant Images to media upload tabs. You can now upload a photo and insert it into a page or page immediately. Please note, this is currently not working with the Gutenberg editor.
|
182 |
-
- UPDATE - Better cURL error handling (hopefully).
|
183 |
-
|
184 |
-
= 3.2 - July 31, 2018
|
185 |
-
** NEW - Added functionality to edit image details (filename, alt text and caption) prior to uploading - edit image detail by clicking the options icon in the top right corner of each image 👍.
|
186 |
-
** UPDATE - Improved error handling and messaging for common REST API and cURL issues.
|
187 |
-
|
188 |
-
= 3.1.1 - June 15, 2018 =
|
189 |
-
** NEW - More stable image uploading 🎉.
|
190 |
-
** NEW - Added `instant_images_user_role` filter to allow for control over user capability.
|
191 |
-
** FIX - Fixing permission issues with uploads when using basic HTTP authentication on domain.
|
192 |
-
** UPDATE - Better error handling
|
193 |
-
\*\* UPDATE - Added permission 755 to the uploads/instant-images directory created on activation.
|
194 |
-
|
195 |
-
= 3.1 - January 2, 2018 =
|
196 |
-
** NEW - Adding support for searching individual photos by ID. Prefix a search term with `id:` to search by Unsplash ID. e.g. `id:ixddk_CepZY`.
|
197 |
-
** UPDATED - Updated to meet revised Unsplash API guidelines.
|
198 |
-
** UPDATED - Better Error messaging for upload/resize errors.
|
199 |
-
** NEW - Added `clear search` button to remove search results.
|
200 |
-
\*\* FIX - Fixed JS error that occurred when `SCRIPT_DEBUG` was set to `true`.
|
201 |
-
|
202 |
= 3.0 - September 21, 2017 =
|
203 |
-
|
204 |
-
|
205 |
-
= 2.1.1 - June 6, 2017 =
|
206 |
-
** NEW - Added infinite scroll while viewing Instant Images on large screens.
|
207 |
-
** FIX - Fixed missing js file error in browser console.
|
208 |
-
\*\* UPDATE - Updated Masonry/Imagesloaded image load functionality.
|
209 |
-
|
210 |
-
= 2.1 - May 12, 2017 =
|
211 |
-
** UPDATE - Remove App ID setting - Unsplash API is now open for everyone without API limit restrictions.
|
212 |
-
** UPDATE - Updating default image upload from 'Full' to 'Raw'. Raw files are significantly smaller size and should make uploads quicker on slower connections and help to reduce upload errors.
|
213 |
-
** UPDATE - UI/UX tweaks and updates.
|
214 |
-
** FIX - Updating media_buttons hook. Was causing issues with other plugins.
|
215 |
-
|
216 |
-
= 2.0.1 - January 12, 2017 =
|
217 |
-
|
218 |
-
- FIX - Update to `instant_img_resize_image` function to remove unnecessary function arguments. These args were causing issues on some servers.
|
219 |
-
- NEW - Refresh Media Library content when uploading images through the Instant Images uploader on edit screen for posts and pages.
|
220 |
-
- UI Enhancements
|
221 |
|
222 |
-
= 2.0 =
|
223 |
|
224 |
- Initial Commit
|
225 |
- Updating plugin from UnsplashWP to Instant Images
|
3 |
Donate link: https://connekthq.com/donate/
|
4 |
Tags: stock photo, unsplash, prototyping, photos, upload, media library, image upload, free photos
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 5.7
|
7 |
+
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
30 |
- **Theme/Plugin Developers** - A great tool for developers who want to prototype and develop using real world imagery.
|
31 |
- **Gutenberg** - Instant Images directly integrates with Gutenberg as a plugin sidebar.
|
32 |
- **Media Modal** - Instant Images is available as a tab in the WordPress Media Modal.
|
33 |
+
- **Page Builders** - Instant Images integrates with page builders such as Elementor, Beaver Builder, Brizy and Divi.
|
34 |
- **Edit Image Metadata** - Easily edit image filename, alt text and caption prior to uploading to your media library.
|
35 |
- **Accessibility** - Automatically include a relevant alt description for screen readers, visually reduced users, and SEO.
|
36 |
- **Easy to Use** - It couldn't get much more simple, just click an image and it's automatically uploaded to your media library for use on your site.
|
121 |
3. Image Metadata - Easily edit image filename, alt text and caption prior to uploading to your media library.
|
122 |
4. Post/Page Edit - Unsplash images in a lightbox on your post edit/new/post pages.
|
123 |
5. Gutenberg post edit screens. Add as featured image, insert into post or just upload photo.
|
124 |
+
6. Instant Images is available in the WordPress media modal as a custom tab. It is available in front end page builder like Elementor, Beaver Builder and Divi.
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= 4.4.0 - March 26, 2021 =
|
129 |
+
* UPDATE - 🎉 Massive improvement to image download speeds by [dynamically resizing](https://unsplash.com/documentation#dynamically-resizable-images) the initial download before sending image to media library.
|
130 |
+
* Intitial testing revealed up to 4x faster download speeds than previous version of Instant Images 🤯.
|
131 |
+
* NEW - Added `instant_images_after_upload` hook that is dispatch after a successful upload allowing users to hook into the attachment and run custom functionality.
|
132 |
+
* UPDATE - Upgraded Axios JS libray to `0.21.1`.
|
133 |
+
|
134 |
+
|
135 |
+
= 4.3.5 - August 14, 2020 =
|
136 |
+
* FIX - Fixed issue with WP 5.5 and REST API warning messages when `WP_DEBUG` is `true`.
|
137 |
+
* FIX - Fixed issue with undefined `$suffix` variable when `WP_DEBUG` is `true`.
|
138 |
+
|
139 |
+
|
140 |
+
= 4.3.4 - August 11, 2020 =
|
141 |
+
* FIX - Fixed issue with Yoast SEO meta boxes not appearing in Classic Editor.
|
142 |
+
* UPDATE - Code cleanup and some refactoring of media enqueue scripts.
|
143 |
+
|
144 |
+
|
145 |
+
= 4.3.3 - August 10, 2020 =
|
146 |
+
* NEW - Adding Instant Images tab to Media Modal windows everywhere, including page builders and taxonomy terms pages.
|
147 |
+
* NEW - Added new plugin setting to hide the Instant Images tab in the Media Modals
|
148 |
+
|
149 |
|
150 |
+
= 4.3.2 - May 28, 2020 =
|
151 |
- UPDATE - Switched REST API methods to `POST` requests from `PUT`. This will hopefully reduce issues users are having with `PUT` being disabled on their servers.
|
152 |
- UPDATE - Added Instant Images media button back to Classic Editor post screen.
|
153 |
|
|
|
154 |
|
155 |
+
= 4.3.1 - April 13, 2020 =
|
156 |
- FIX - Fixed issue with Instant Images causing Yoast SEO metabox to not show correctly in the classic WordPress editor. Not really sure why, but the Instant Images JS dependencies seemed to interfere with Yoast.
|
157 |
- FIX - Added user privileges checks to the new Media Modal functionality.
|
158 |
|
|
|
159 |
|
160 |
+
= 4.3.0 - April 9, 2020 =
|
161 |
- NEW - Adding `Instant Images` tab to the WordPress Media Modal.
|
162 |
- NEW - When images are uploaded directly to a post the current Post ID is attached to the upload as the parent post.
|
163 |
- NEW - Adding default alt text directly from Unsplash API.
|
165 |
- UPDATE - Switching tab navigation from `<a/> to`<button/>` for better accessibility.
|
166 |
- FIX - Added a fix for JS error regarding `PluginSidebar` registration on non-gutenberg editor pages.
|
167 |
|
|
|
168 |
|
169 |
+
= 4.2.0 - December 14, 2019 =
|
170 |
- NEW - Added image orientation search filter
|
171 |
- FIX - Fixed issue with instant images being rendered in Gutenberg editor for users without permissions.
|
172 |
- UPDATE - Updated WordPress role requirement from `edit_theme_options` to [`upload_files`](https://wordpress.org/support/article/roles-and-capabilities/#upload_files).
|
173 |
|
|
|
174 |
|
175 |
+
= 4.1.0 - July 23, 2019 =
|
176 |
- NEW - Added support for updating image title prior to upload.
|
177 |
- NEW - Added link to edit image after upload process completes.
|
178 |
- UPDATE - Updated functionality to trigger photo upload immediately after triggering a `Save` when editing image metadata.
|
179 |
|
|
|
180 |
|
181 |
+
= 4.0.1 - April 18, 2019 =
|
182 |
- FIX - Fixed issue where Instant Images sidebar plugin would not appear in Gutenberg if removed as a pinned item.
|
183 |
|
|
|
184 |
|
185 |
+
= 4.0.0 - February 12, 2019 =
|
186 |
- 4.0 adds Gutenberg support. You can now access instant images directly from inside the block editor.
|
187 |
- NEW - Added Instant Images to Gutenberg as a Plugin Sidebar.
|
188 |
- NEW - Added Gutenberg featured image support.
|
192 |
- UPDATE - Updated REST API methods to prefix function names.
|
193 |
- UPDATE - Various other UI/UX enhancements.
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
= 3.0 - September 21, 2017 =
|
196 |
+
** NEW - Instant Images has been completely re-built using React and the WordPress REST API.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
+
= 2.0 - January 12, 2017 =
|
199 |
|
200 |
- Initial Commit
|
201 |
- Updating plugin from UnsplashWP to Instant Images
|
admin/admin.php
CHANGED
@@ -3,13 +3,10 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
3 |
|
4 |
|
5 |
/**
|
6 |
-
*
|
7 |
-
*
|
8 |
-
|
9 |
-
|
10 |
-
*/
|
11 |
-
|
12 |
-
function instant_img_admin_menu() {
|
13 |
$usplash_settings_page = add_submenu_page(
|
14 |
'upload.php',
|
15 |
INSTANT_IMG_TITLE,
|
@@ -20,80 +17,43 @@ function instant_img_admin_menu() {
|
|
20 |
);
|
21 |
add_action( 'load-' . $usplash_settings_page, 'instant_img_load_scripts' ); //Add our admin scripts
|
22 |
}
|
23 |
-
add_action( 'admin_menu', '
|
24 |
-
|
25 |
|
26 |
|
27 |
/**
|
28 |
-
*
|
29 |
-
*
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
if (!current_user_can( apply_filters('instant_images_user_role', 'upload_files') )){
|
37 |
-
return false;
|
38 |
-
}
|
39 |
-
|
40 |
-
// Exit if not post or edit screen
|
41 |
-
if ( $hook !== 'post-new.php' && $hook !== 'post.php' ) {
|
42 |
-
return false;
|
43 |
-
}
|
44 |
-
|
45 |
-
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
|
46 |
-
|
47 |
-
// CSS
|
48 |
-
wp_enqueue_style( 'admin-instant-images', INSTANT_IMG_URL. 'dist/css/instant-images'. $suffix .'.css', '', INSTANT_IMAGES_VERSION );
|
49 |
-
|
50 |
-
// JS
|
51 |
-
wp_enqueue_script(
|
52 |
-
'instant-images-media-router',
|
53 |
-
INSTANT_IMG_URL. 'dist/js/instant-images-media'. $suffix .'.js',
|
54 |
-
array( 'jquery'),
|
55 |
-
INSTANT_IMAGES_VERSION,
|
56 |
-
true
|
57 |
-
);
|
58 |
-
InstantImages::instant_img_localize( 'instant-images-media-router' );
|
59 |
-
|
60 |
}
|
61 |
-
add_action( 'admin_enqueue_scripts', 'instant_img_post_enqueue_scripts' );
|
62 |
-
|
63 |
|
64 |
|
65 |
/**
|
66 |
-
*
|
67 |
-
*
|
68 |
-
|
69 |
-
* @since 1.0
|
70 |
-
*/
|
71 |
-
|
72 |
function instant_img_load_scripts(){
|
73 |
add_action( 'admin_enqueue_scripts', 'instant_img_enqueue_scripts' );
|
74 |
}
|
75 |
|
76 |
|
77 |
-
|
78 |
/**
|
79 |
-
*
|
80 |
-
*
|
81 |
-
|
82 |
-
* @since 2.0
|
83 |
-
*/
|
84 |
-
|
85 |
function instant_img_enqueue_scripts(){
|
86 |
instant_img_scripts();
|
87 |
}
|
88 |
|
89 |
|
90 |
-
|
91 |
/**
|
92 |
-
*
|
93 |
-
*
|
94 |
-
|
95 |
-
* @since 3.0
|
96 |
-
*/
|
97 |
function instant_img_scripts(){
|
98 |
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Use minified libraries if SCRIPT_DEBUG is turned off
|
99 |
|
@@ -104,121 +64,67 @@ function instant_img_scripts(){
|
|
104 |
wp_enqueue_script('instant-images-react', INSTANT_IMG_URL. 'dist/js/instant-images'. $suffix .'.js', '', INSTANT_IMAGES_VERSION, true);
|
105 |
wp_enqueue_script('instant-images', INSTANT_IMG_ADMIN_URL. 'assets/js/admin.js', 'jquery', INSTANT_IMAGES_VERSION, true);
|
106 |
|
107 |
-
|
108 |
|
109 |
}
|
|
|
|
|
110 |
/**
|
111 |
-
*
|
112 |
-
*
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
$options = get_option( 'instant_img_settings' );
|
119 |
-
$show_tab = true;
|
120 |
-
if(isset($options['instant_img_btn_display'])){
|
121 |
-
if($options['instant_img_btn_display'] == 1){
|
122 |
-
$show_tab = false; // Hide the tab
|
123 |
-
}
|
124 |
-
}
|
125 |
-
|
126 |
-
return $show_tab;
|
127 |
-
}
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
/**
|
132 |
-
* instant_img_media_upload_tabs_handler
|
133 |
-
* Add tab to media upload window
|
134 |
-
*
|
135 |
-
* @since 3.2.1
|
136 |
-
*/
|
137 |
-
function instant_img_media_upload_tabs_handler($tabs) {
|
138 |
-
$options = get_option( 'instant_img_settings' );
|
139 |
-
$show_tab = instant_img_show_tabs();
|
140 |
-
|
141 |
-
if($show_tab){
|
142 |
-
$newtab = array ( 'instant_img_tab' => __('Instant Images', 'instant-images') );
|
143 |
$tabs = array_merge( $tabs, $newtab );
|
144 |
-
return $tabs;
|
145 |
}
|
146 |
}
|
147 |
add_filter('media_upload_tabs', 'instant_img_media_upload_tabs_handler');
|
148 |
|
149 |
|
150 |
-
|
151 |
/**
|
152 |
-
*
|
153 |
-
*
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
if($show_tab){
|
160 |
-
echo '<a href="'.add_query_arg('tab', 'instant_img_tab', esc_url(get_upload_iframe_src())).'" class="thickbox button" title="'.esc_attr__('Instant Images', 'instant-images').'"> '. __('Instant Images', 'instant-images') .' </a>';
|
161 |
}
|
162 |
}
|
163 |
add_filter('media_buttons', 'instant_img_media_buttons');
|
164 |
|
165 |
|
166 |
-
|
167 |
/**
|
168 |
-
*
|
169 |
-
*
|
170 |
-
*
|
171 |
-
* @since 3.2.1
|
172 |
*/
|
173 |
function media_upload_instant_images_handler() {
|
174 |
-
wp_iframe('media_instant_img_tab');
|
175 |
}
|
176 |
add_action('media_upload_instant_img_tab', 'media_upload_instant_images_handler');
|
177 |
|
178 |
|
179 |
-
|
180 |
/**
|
181 |
-
*
|
182 |
-
*
|
183 |
-
|
184 |
-
* @since 2.0
|
185 |
-
*/
|
186 |
function media_instant_img_tab() {
|
187 |
-
//media_upload_header();
|
188 |
instant_img_scripts();
|
189 |
$show_settings = false;
|
190 |
-
?>
|
191 |
<div class="instant-img-container editor" data-media-popup="true">
|
192 |
-
<?php include( INSTANT_IMG_PATH . 'admin/views/unsplash.php'); ?>
|
193 |
</div>
|
194 |
<?php
|
195 |
}
|
196 |
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
* Settings page
|
202 |
-
*
|
203 |
-
* @since 2.0
|
204 |
-
*/
|
205 |
-
|
206 |
-
function instant_img_settings_page(){
|
207 |
-
$show_settings = true;
|
208 |
-
echo '<div class="instant-img-container" data-media-popup="false">';
|
209 |
-
include( INSTANT_IMG_PATH . 'admin/views/unsplash.php');
|
210 |
-
echo '</div>';
|
211 |
-
}
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
/*
|
216 |
-
* instant_img_filter_admin_footer_text
|
217 |
-
* Filter the WP Admin footer text
|
218 |
-
*
|
219 |
-
* @since 2.0
|
220 |
-
*/
|
221 |
-
|
222 |
function instant_img_filter_admin_footer_text( $text ) {
|
223 |
$screen = get_current_screen();
|
224 |
$base = 'media_page_'.INSTANT_IMG_NAME;
|
@@ -227,4 +133,3 @@ function instant_img_filter_admin_footer_text( $text ) {
|
|
227 |
}
|
228 |
}
|
229 |
add_filter( 'admin_footer_text', 'instant_img_filter_admin_footer_text'); // Admin menu text
|
230 |
-
|
3 |
|
4 |
|
5 |
/**
|
6 |
+
* Create admin menu item under 'Media'
|
7 |
+
* @since 2.0
|
8 |
+
*/
|
9 |
+
function instant_img_create_page() {
|
|
|
|
|
|
|
10 |
$usplash_settings_page = add_submenu_page(
|
11 |
'upload.php',
|
12 |
INSTANT_IMG_TITLE,
|
17 |
);
|
18 |
add_action( 'load-' . $usplash_settings_page, 'instant_img_load_scripts' ); //Add our admin scripts
|
19 |
}
|
20 |
+
add_action( 'admin_menu', 'instant_img_create_page' );
|
|
|
21 |
|
22 |
|
23 |
/**
|
24 |
+
* Settings page callback
|
25 |
+
* @since 2.0
|
26 |
+
*/
|
27 |
+
function instant_img_settings_page(){
|
28 |
+
$show_settings = true;
|
29 |
+
echo '<div class="instant-img-container" data-media-popup="false">';
|
30 |
+
include( INSTANT_IMG_PATH . 'admin/views/unsplash.php');
|
31 |
+
echo '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
}
|
|
|
|
|
33 |
|
34 |
|
35 |
/**
|
36 |
+
* Load Admin CSS and JS
|
37 |
+
* @since 1.0
|
38 |
+
*/
|
|
|
|
|
|
|
39 |
function instant_img_load_scripts(){
|
40 |
add_action( 'admin_enqueue_scripts', 'instant_img_enqueue_scripts' );
|
41 |
}
|
42 |
|
43 |
|
|
|
44 |
/**
|
45 |
+
* Admin Enqueue Scripts
|
46 |
+
* @since 2.0
|
47 |
+
*/
|
|
|
|
|
|
|
48 |
function instant_img_enqueue_scripts(){
|
49 |
instant_img_scripts();
|
50 |
}
|
51 |
|
52 |
|
|
|
53 |
/**
|
54 |
+
* Localize vars and scripts
|
55 |
+
* @since 3.0
|
56 |
+
*/
|
|
|
|
|
57 |
function instant_img_scripts(){
|
58 |
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; // Use minified libraries if SCRIPT_DEBUG is turned off
|
59 |
|
64 |
wp_enqueue_script('instant-images-react', INSTANT_IMG_URL. 'dist/js/instant-images'. $suffix .'.js', '', INSTANT_IMAGES_VERSION, true);
|
65 |
wp_enqueue_script('instant-images', INSTANT_IMG_ADMIN_URL. 'assets/js/admin.js', 'jquery', INSTANT_IMAGES_VERSION, true);
|
66 |
|
67 |
+
InstantImages::instant_img_localize();
|
68 |
|
69 |
}
|
70 |
+
|
71 |
+
|
72 |
/**
|
73 |
+
* Add tab to media upload window (left hand sidebar)
|
74 |
+
* @since 3.2.1
|
75 |
+
*/
|
76 |
+
function instant_img_media_upload_tabs_handler($tabs) {
|
77 |
+
$show_media_tab = InstantImages::instant_img_show_tab('media_modal_display');
|
78 |
+
if($show_media_tab){
|
79 |
+
$newtab = array ( 'instant_img_tab' => __('Instant Images', 'instant-images') );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
$tabs = array_merge( $tabs, $newtab );
|
81 |
+
return $tabs;
|
82 |
}
|
83 |
}
|
84 |
add_filter('media_upload_tabs', 'instant_img_media_upload_tabs_handler');
|
85 |
|
86 |
|
|
|
87 |
/**
|
88 |
+
* Add Instant Images media button to classic editor screens
|
89 |
+
* @since 3.2.1
|
90 |
+
*/
|
91 |
+
function instant_img_media_buttons() {
|
92 |
+
$show_button = InstantImages::instant_img_show_tab('media_modal_display');
|
93 |
+
if($show_button){
|
94 |
+
echo '<a href="'.add_query_arg('tab', 'instant_img_tab', esc_url(get_upload_iframe_src())).'" class="thickbox button" title="'.esc_attr__('Instant Images', 'instant-images').'"> '. __('Instant Images', 'instant-images') .' </a>';
|
|
|
|
|
95 |
}
|
96 |
}
|
97 |
add_filter('media_buttons', 'instant_img_media_buttons');
|
98 |
|
99 |
|
|
|
100 |
/**
|
101 |
+
* Add instant images iframe to classic editor screens
|
102 |
+
* @since 3.2.1
|
|
|
|
|
103 |
*/
|
104 |
function media_upload_instant_images_handler() {
|
105 |
+
wp_iframe('media_instant_img_tab');
|
106 |
}
|
107 |
add_action('media_upload_instant_img_tab', 'media_upload_instant_images_handler');
|
108 |
|
109 |
|
|
|
110 |
/**
|
111 |
+
* Add pop up content to edit, new and post pages on classic editor screens
|
112 |
+
* @since 2.0
|
113 |
+
*/
|
|
|
|
|
114 |
function media_instant_img_tab() {
|
|
|
115 |
instant_img_scripts();
|
116 |
$show_settings = false;
|
117 |
+
?>
|
118 |
<div class="instant-img-container editor" data-media-popup="true">
|
119 |
+
<?php include( INSTANT_IMG_PATH . 'admin/views/unsplash.php'); ?>
|
120 |
</div>
|
121 |
<?php
|
122 |
}
|
123 |
|
124 |
+
/**
|
125 |
+
* Filter the WP Admin footer text
|
126 |
+
* @since 2.0
|
127 |
+
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
function instant_img_filter_admin_footer_text( $text ) {
|
129 |
$screen = get_current_screen();
|
130 |
$base = 'media_page_'.INSTANT_IMG_NAME;
|
133 |
}
|
134 |
}
|
135 |
add_filter( 'admin_footer_text', 'instant_img_filter_admin_footer_text'); // Admin menu text
|
|
admin/includes/settings.php
CHANGED
@@ -1,13 +1,10 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
|
4 |
-
|
5 |
-
*
|
6 |
-
*
|
7 |
-
|
8 |
-
* @since 2.0
|
9 |
-
*/
|
10 |
-
|
11 |
add_action( 'admin_init', 'instant_img_admin_init');
|
12 |
function instant_img_admin_init(){
|
13 |
register_setting(
|
@@ -18,7 +15,7 @@ function instant_img_admin_init(){
|
|
18 |
|
19 |
add_settings_section(
|
20 |
'unsplash_general_settings',
|
21 |
-
__('
|
22 |
'unsplash_general_settings_callback',
|
23 |
'instant-images'
|
24 |
);
|
@@ -42,49 +39,37 @@ function instant_img_admin_init(){
|
|
42 |
);
|
43 |
|
44 |
// Button Display
|
45 |
-
|
46 |
-
'
|
47 |
-
__('
|
48 |
-
'
|
49 |
'instant-images',
|
50 |
'unsplash_general_settings'
|
51 |
);
|
52 |
-
|
53 |
-
}
|
54 |
-
|
55 |
|
|
|
56 |
|
57 |
-
|
58 |
-
*
|
59 |
-
*
|
60 |
-
|
61 |
-
* @since 1.0
|
62 |
-
*/
|
63 |
-
|
64 |
function unsplash_general_settings_callback() {
|
65 |
-
echo '<p class="desc">' . __('Manage your media upload settings', 'instant-images') . '
|
66 |
}
|
67 |
|
68 |
|
69 |
-
|
70 |
-
*
|
71 |
-
*
|
72 |
-
|
73 |
-
* @since 1.0
|
74 |
-
*/
|
75 |
-
|
76 |
function unsplash_sanitize( $input ) {
|
77 |
return $input;
|
78 |
}
|
79 |
|
80 |
-
|
81 |
-
|
82 |
-
*
|
83 |
-
|
84 |
-
*
|
85 |
-
* @since 1.0
|
86 |
-
*/
|
87 |
-
|
88 |
function unsplash_download_w_callback(){
|
89 |
$options = get_option( 'instant_img_settings' );
|
90 |
|
@@ -95,15 +80,10 @@ function unsplash_download_w_callback(){
|
|
95 |
echo '<input type="number" id="instant_img_settings[unsplash_download_w]" name="instant_img_settings[unsplash_download_w]" value="'.$options['unsplash_download_w'].'" class="sm" step="20" max="3200" /> ';
|
96 |
}
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
* Max File download height
|
103 |
-
*
|
104 |
-
* @since 1.0
|
105 |
-
*/
|
106 |
-
|
107 |
function unsplash_download_h_callback(){
|
108 |
$options = get_option( 'instant_img_settings' );
|
109 |
|
@@ -114,25 +94,22 @@ function unsplash_download_h_callback(){
|
|
114 |
echo '<input type="number" id="instant_img_settings[unsplash_download_h]" name="instant_img_settings[unsplash_download_h]" value="'.$options['unsplash_download_h'].'" class="sm" step="20" max="3200" /> ';
|
115 |
}
|
116 |
|
117 |
-
|
118 |
-
*
|
119 |
-
*
|
120 |
-
|
121 |
-
|
122 |
-
*/
|
123 |
-
|
124 |
-
function instant_images_button_display_callback(){
|
125 |
$options = get_option( 'instant_img_settings' );
|
126 |
-
if(!isset($options['
|
127 |
-
$options['
|
128 |
-
|
129 |
$style = 'style="position: absolute; left: 0; top: 9px;"'; // CSS style
|
130 |
-
|
131 |
-
$html = '<label style="cursor: default;"><strong>'.__('
|
132 |
-
$html .= '<label for="
|
133 |
-
$html .= '<input type="hidden" name="instant_img_settings[
|
134 |
-
$html .= '<input '. $style .' type="checkbox" name="instant_img_settings[
|
135 |
-
$html .= __('Hide Instant Images
|
136 |
$html .= '</label>';
|
137 |
|
138 |
echo $html;
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
|
4 |
+
/**
|
5 |
+
* Initiate the plugin setting, create settings variables.
|
6 |
+
* @since 2.0
|
7 |
+
*/
|
|
|
|
|
|
|
8 |
add_action( 'admin_init', 'instant_img_admin_init');
|
9 |
function instant_img_admin_init(){
|
10 |
register_setting(
|
15 |
|
16 |
add_settings_section(
|
17 |
'unsplash_general_settings',
|
18 |
+
__('Global Settings', 'instant-images'),
|
19 |
'unsplash_general_settings_callback',
|
20 |
'instant-images'
|
21 |
);
|
39 |
);
|
40 |
|
41 |
// Button Display
|
42 |
+
add_settings_field(
|
43 |
+
'media_modal_display',
|
44 |
+
__('Media Tab', 'instant-images' ),
|
45 |
+
'instant_images_tab_display_callback',
|
46 |
'instant-images',
|
47 |
'unsplash_general_settings'
|
48 |
);
|
|
|
|
|
|
|
49 |
|
50 |
+
}
|
51 |
|
52 |
+
/**
|
53 |
+
* Some general settings text
|
54 |
+
* @since 1.0
|
55 |
+
*/
|
|
|
|
|
|
|
56 |
function unsplash_general_settings_callback() {
|
57 |
+
echo '<p class="desc">' . __('Manage your media upload settings.', 'instant-images') . '</p>';
|
58 |
}
|
59 |
|
60 |
|
61 |
+
/**
|
62 |
+
* Sanitize form fields
|
63 |
+
* @since 1.0
|
64 |
+
*/
|
|
|
|
|
|
|
65 |
function unsplash_sanitize( $input ) {
|
66 |
return $input;
|
67 |
}
|
68 |
|
69 |
+
/**
|
70 |
+
* Max File download width
|
71 |
+
* @since 1.0
|
72 |
+
*/
|
|
|
|
|
|
|
|
|
73 |
function unsplash_download_w_callback(){
|
74 |
$options = get_option( 'instant_img_settings' );
|
75 |
|
80 |
echo '<input type="number" id="instant_img_settings[unsplash_download_w]" name="instant_img_settings[unsplash_download_w]" value="'.$options['unsplash_download_w'].'" class="sm" step="20" max="3200" /> ';
|
81 |
}
|
82 |
|
83 |
+
/**
|
84 |
+
* Max File download height
|
85 |
+
* @since 1.0
|
86 |
+
*/
|
|
|
|
|
|
|
|
|
|
|
87 |
function unsplash_download_h_callback(){
|
88 |
$options = get_option( 'instant_img_settings' );
|
89 |
|
94 |
echo '<input type="number" id="instant_img_settings[unsplash_download_h]" name="instant_img_settings[unsplash_download_h]" value="'.$options['unsplash_download_h'].'" class="sm" step="20" max="3200" /> ';
|
95 |
}
|
96 |
|
97 |
+
/**
|
98 |
+
* Show the Instant Images Tab in Media Modal
|
99 |
+
* @since 3.2.1
|
100 |
+
*/
|
101 |
+
function instant_images_tab_display_callback(){
|
|
|
|
|
|
|
102 |
$options = get_option( 'instant_img_settings' );
|
103 |
+
if(!isset($options['media_modal_display']))
|
104 |
+
$options['media_modal_display'] = '0';
|
105 |
+
|
106 |
$style = 'style="position: absolute; left: 0; top: 9px;"'; // CSS style
|
107 |
+
|
108 |
+
$html = '<label style="cursor: default;"><strong>'.__('Media Modal:', 'instant-images').'</strong></label>';
|
109 |
+
$html .= '<label for="media_modal_display" style="padding-left: 24px; position: relative;">';
|
110 |
+
$html .= '<input type="hidden" name="instant_img_settings[media_modal_display]" value="0" />';
|
111 |
+
$html .= '<input '. $style .' type="checkbox" name="instant_img_settings[media_modal_display]" id="media_modal_display" value="1"'. (($options['media_modal_display']) ? ' checked="checked"' : '') .' />';
|
112 |
+
$html .= __('Hide the <b>Instant Images</b> tab in admin Media Modal windows.', 'instant-images');
|
113 |
$html .= '</label>';
|
114 |
|
115 |
echo $html;
|
admin/includes/unsplash-settings.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
<section class="instant-images-settings">
|
2 |
-
|
3 |
<div class="cnkt-sidebar">
|
4 |
|
5 |
<section class="cta ii-settings">
|
6 |
-
<h2><?php _e('
|
7 |
<p><?php _e('Manage your media upload settings', 'instant-images'); ?>.</p>
|
8 |
<div class="cta-wrap">
|
9 |
<form action="options.php" method="post" id="unsplash-form-options">
|
10 |
<?php
|
11 |
settings_fields( 'instant-img-setting-group' );
|
12 |
-
do_settings_sections( 'instant-images' );
|
13 |
$options = get_option( 'instant_img_settings' ); //get the older values, wont work the first time
|
14 |
?>
|
15 |
<div class="save-settings">
|
@@ -23,18 +23,17 @@
|
|
23 |
<h2 class="w-border"><?php _e('What\'s New', 'instant-images'); ?></h2>
|
24 |
<p><?php _e('The latest Instant Images updates', 'instant-images'); ?>.</p>
|
25 |
<div class="cta-wrap">
|
26 |
-
<h4><span>4.3</span></h4>
|
27 |
<ul class="whats-new">
|
28 |
-
|
29 |
-
<li>
|
30 |
-
<li>
|
31 |
-
<li>
|
32 |
-
<li>
|
33 |
</ul>
|
34 |
</div>
|
35 |
</section>
|
36 |
-
|
37 |
-
<?php
|
38 |
$plugin_array = array(
|
39 |
array(
|
40 |
'slug' => 'ajax-load-more',
|
@@ -49,19 +48,19 @@
|
|
49 |
'slug' => 'velocity',
|
50 |
)
|
51 |
);
|
52 |
-
?>
|
53 |
<section class="cta ii-plugins">
|
54 |
<h2><?php _e('Our Plugins', 'instant-images'); ?></h2>
|
55 |
<p><strong>Instant Images</strong> is made with <span style="color: #e25555;">♥</span> by <a target="blank" href="https://connekthq.com/?utm_source=WPAdmin&utm_medium=InstantImages&utm_campaign=OurPlugins">Connekt</a></p>
|
56 |
<div class="cta-wrap">
|
57 |
-
<?php
|
58 |
if(class_exists('Connekt_Plugin_Installer')){
|
59 |
Connekt_Plugin_Installer::init($plugin_array);
|
60 |
}
|
61 |
?>
|
62 |
</div>
|
63 |
</section>
|
64 |
-
|
65 |
</div>
|
66 |
|
67 |
-
</section>
|
1 |
<section class="instant-images-settings">
|
2 |
+
|
3 |
<div class="cnkt-sidebar">
|
4 |
|
5 |
<section class="cta ii-settings">
|
6 |
+
<h2><?php _e('Global Settings', 'instant-images'); ?></h2>
|
7 |
<p><?php _e('Manage your media upload settings', 'instant-images'); ?>.</p>
|
8 |
<div class="cta-wrap">
|
9 |
<form action="options.php" method="post" id="unsplash-form-options">
|
10 |
<?php
|
11 |
settings_fields( 'instant-img-setting-group' );
|
12 |
+
do_settings_sections( 'instant-images' );
|
13 |
$options = get_option( 'instant_img_settings' ); //get the older values, wont work the first time
|
14 |
?>
|
15 |
<div class="save-settings">
|
23 |
<h2 class="w-border"><?php _e('What\'s New', 'instant-images'); ?></h2>
|
24 |
<p><?php _e('The latest Instant Images updates', 'instant-images'); ?>.</p>
|
25 |
<div class="cta-wrap">
|
|
|
26 |
<ul class="whats-new">
|
27 |
+
<li><strong>Improved Download Speeds</strong>: Instant Images <em>v+</em> is now up to 4x faster than previous versions after a critical update in the initial image fetching process.</li>
|
28 |
+
<li><strong>Media Modals</strong>: Instant Images tab added to all WordPress Media Modal windows.</li>
|
29 |
+
<li><strong>Gutenberg Support</strong>: Instant Images directly integrates with Gutenberg as a plugin sidebar.</li>
|
30 |
+
<li><strong>User Roles</strong>: Added <em>instant_images_user_role</em> filter to allow for control over user capability.</li>
|
31 |
+
<li><strong>Image Search</strong>: Added support for searching individual photos by Unsplash ID - searching <pre>id:{photo_id}</pre> will return a single result.<br/>e.g. <pre>id:YiUi00uqKk8</pre></li>
|
32 |
</ul>
|
33 |
</div>
|
34 |
</section>
|
35 |
+
|
36 |
+
<?php
|
37 |
$plugin_array = array(
|
38 |
array(
|
39 |
'slug' => 'ajax-load-more',
|
48 |
'slug' => 'velocity',
|
49 |
)
|
50 |
);
|
51 |
+
?>
|
52 |
<section class="cta ii-plugins">
|
53 |
<h2><?php _e('Our Plugins', 'instant-images'); ?></h2>
|
54 |
<p><strong>Instant Images</strong> is made with <span style="color: #e25555;">♥</span> by <a target="blank" href="https://connekthq.com/?utm_source=WPAdmin&utm_medium=InstantImages&utm_campaign=OurPlugins">Connekt</a></p>
|
55 |
<div class="cta-wrap">
|
56 |
+
<?php
|
57 |
if(class_exists('Connekt_Plugin_Installer')){
|
58 |
Connekt_Plugin_Installer::init($plugin_array);
|
59 |
}
|
60 |
?>
|
61 |
</div>
|
62 |
</section>
|
63 |
+
|
64 |
</div>
|
65 |
|
66 |
+
</section>
|
admin/views/unsplash.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
?>
|
4 |
-
|
5 |
-
<?php if($show_settings){ ?>
|
6 |
<header class="header-wrap">
|
7 |
<h1>
|
8 |
-
<?php echo INSTANT_IMG_TITLE; ?>
|
9 |
<span>
|
10 |
-
<?php
|
11 |
$tagline = __('One click photo uploads from %s', 'instant-images');
|
12 |
echo sprintf($tagline, '<a href="https://unsplash.com/" target="_blank">unsplash.com</a>');
|
13 |
?>
|
@@ -15,14 +15,14 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
15 |
<button type="button" class="button button-secondary button-large">
|
16 |
<i class="fa fa-cog" aria-hidden="true"></i> <?php _e('Settings', 'instant-images'); ?>
|
17 |
</button>
|
18 |
-
</header>
|
19 |
<?php } ?>
|
20 |
<?php include( INSTANT_IMG_PATH . 'admin/includes/cta/permissions.php'); ?>
|
21 |
-
<?php
|
22 |
if($show_settings){
|
23 |
-
include( INSTANT_IMG_PATH . 'admin/includes/unsplash-settings.php');
|
24 |
}
|
25 |
-
?>
|
26 |
-
<section class="instant-images-wrapper">
|
27 |
<div id="app"></div>
|
28 |
-
</section>
|
1 |
<?php
|
2 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
3 |
?>
|
4 |
+
|
5 |
+
<?php if($show_settings){ ?>
|
6 |
<header class="header-wrap">
|
7 |
<h1>
|
8 |
+
<?php echo INSTANT_IMG_TITLE; ?> <em><?php echo INSTANT_IMAGES_VERSION; ?></em>
|
9 |
<span>
|
10 |
+
<?php
|
11 |
$tagline = __('One click photo uploads from %s', 'instant-images');
|
12 |
echo sprintf($tagline, '<a href="https://unsplash.com/" target="_blank">unsplash.com</a>');
|
13 |
?>
|
15 |
<button type="button" class="button button-secondary button-large">
|
16 |
<i class="fa fa-cog" aria-hidden="true"></i> <?php _e('Settings', 'instant-images'); ?>
|
17 |
</button>
|
18 |
+
</header>
|
19 |
<?php } ?>
|
20 |
<?php include( INSTANT_IMG_PATH . 'admin/includes/cta/permissions.php'); ?>
|
21 |
+
<?php
|
22 |
if($show_settings){
|
23 |
+
include( INSTANT_IMG_PATH . 'admin/includes/unsplash-settings.php');
|
24 |
}
|
25 |
+
?>
|
26 |
+
<section class="instant-images-wrapper">
|
27 |
<div id="app"></div>
|
28 |
+
</section>
|
api/download.php
CHANGED
@@ -1,146 +1,169 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*/
|
9 |
|
10 |
add_action( 'rest_api_init', function () {
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
});
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
|
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
* @param $request $_POST
|
28 |
-
* @return $response json
|
29 |
-
* @since 3.0
|
30 |
-
*/
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
}
|
145 |
|
146 |
|
@@ -149,6 +172,9 @@ function instant_images_download( WP_REST_Request $request ) {
|
|
149 |
*
|
150 |
* @param string $url The url to the remote image.
|
151 |
* @return bool Whether the remote image exists.
|
|
|
|
|
|
|
152 |
*/
|
153 |
function instant_images_remote_file_exists( $url ) {
|
154 |
$response = wp_remote_head( $url );
|
@@ -158,26 +184,26 @@ function instant_images_remote_file_exists( $url ) {
|
|
158 |
|
159 |
|
160 |
/**
|
161 |
-
* instant_images_resize_download
|
162 |
* Resize original image to max size (set in Instant Images settings)
|
163 |
*
|
|
|
|
|
|
|
|
|
164 |
*/
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
//
|
169 |
-
$
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
$original_image->save( $uploads_dir['path']. '/'. $filename );
|
181 |
-
}
|
182 |
-
|
183 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Custom download API route
|
4 |
+
*
|
5 |
+
* @since 3.0
|
6 |
+
* @author dcooney
|
7 |
+
* @package instant-images
|
8 |
+
*/
|
9 |
|
10 |
add_action( 'rest_api_init', function () {
|
11 |
+
$my_namespace = 'instant-images';
|
12 |
+
$my_endpoint = '/download';
|
13 |
+
register_rest_route(
|
14 |
+
$my_namespace,
|
15 |
+
$my_endpoint,
|
16 |
+
array(
|
17 |
+
'methods' => 'POST',
|
18 |
+
'callback' => 'instant_images_download',
|
19 |
+
'permission_callback' => function () {
|
20 |
+
return InstantImages::instant_img_has_access();
|
21 |
+
},
|
22 |
+
)
|
23 |
+
);
|
24 |
});
|
25 |
|
26 |
+
/**
|
27 |
+
* Resize Image and run through media uploader process.
|
28 |
+
*
|
29 |
+
* @param WP_REST_Request $request Rest request object.
|
30 |
+
* @return $response
|
31 |
+
* @since 3.0
|
32 |
+
* @author dcooney
|
33 |
+
* @package instant-images
|
34 |
+
*/
|
35 |
+
function instant_images_download( WP_REST_Request $request ) {
|
36 |
+
|
37 |
+
if ( ! InstantImages::instant_img_has_access() ) {
|
38 |
+
// Exit if not allowed.
|
39 |
+
$response = array(
|
40 |
+
'success' => false,
|
41 |
+
'msg' => __( 'You do not have sufficient access to upload images with Instant Images.', 'instant-images' ),
|
42 |
+
'id' => '',
|
43 |
+
'attachment' => '',
|
44 |
+
'url' => '',
|
45 |
+
);
|
46 |
+
wp_send_json( $response );
|
47 |
|
48 |
+
}
|
49 |
|
50 |
+
// Global settings.
|
51 |
+
$options = get_option( 'instant_img_settings' );
|
52 |
+
$max_width = isset( $options['unsplash_download_w'] ) ? $options['unsplash_download_w'] : 1600; // width.
|
53 |
+
$max_height = isset( $options['unsplash_download_h'] ) ? $options['unsplash_download_h'] : 1200; // height.
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
// Core WP includes.
|
56 |
+
require_once ABSPATH . 'wp-admin/includes/file.php';
|
57 |
+
require_once ABSPATH . 'wp-admin/includes/image.php';
|
58 |
+
|
59 |
+
// Get JSON Data.
|
60 |
+
$data = json_decode( $request->get_body(), true ); // Get contents of request body.
|
61 |
+
|
62 |
+
if ( $data ) {
|
63 |
+
|
64 |
+
$id = $data['id']; // Image ID.
|
65 |
+
$image_url = $data['image_url'] . '&fit=clip&w=' . $max_width . '&h=' . $max_height; // Image URL.
|
66 |
+
$filename = sanitize_text_field( $data['filename'] ); // The filename.
|
67 |
+
$title = sanitize_text_field( $data['title'] ); // Title.
|
68 |
+
$alt = sanitize_text_field( $data['alt'] ); // Alt text.
|
69 |
+
$caption = sanitize_text_field( $data['caption'] ); // Caption text.
|
70 |
+
$cfilename = sanitize_title( $data['custom_filename'] ); // Custom filename.
|
71 |
+
$parent_id = ( $data['parent_id'] ) ? sanitize_title( $data['parent_id'] ) : 0; // Parent post ID.
|
72 |
+
$name = ( ! empty( $cfilename ) ) ? $cfilename . '.jpg' : $filename; // Actual filename.
|
73 |
+
|
74 |
+
// Check if remote file exists.
|
75 |
+
if ( ! instant_images_remote_file_exists( $image_url ) ) {
|
76 |
+
// Errorhandling.
|
77 |
+
$response = array(
|
78 |
+
'success' => false,
|
79 |
+
'msg' => __( 'Image does not exist or there was an error accessing the remote file.', 'instant-images' ),
|
80 |
+
'id' => $id,
|
81 |
+
'attachment' => '',
|
82 |
+
'admin_url' => admin_url(),
|
83 |
+
);
|
84 |
+
wp_send_json( $response );
|
85 |
+
}
|
86 |
+
|
87 |
+
// Send request to `wp_remote_get`.
|
88 |
+
$response = wp_remote_get( $image_url );
|
89 |
+
if ( is_wp_error( $response ) ) {
|
90 |
+
return new WP_Error( 100, __( 'Image download failed, please try again. Errors:', 'instant-images' ) . PHP_EOL . $response->get_error_message() );
|
91 |
+
}
|
92 |
+
|
93 |
+
// Get Headers.
|
94 |
+
$type = wp_remote_retrieve_header( $response, 'content-type' );
|
95 |
+
if ( ! $type ) {
|
96 |
+
return new WP_Error( 100, __( 'Image type could not be determined', 'instant-images' ) );
|
97 |
+
}
|
98 |
+
|
99 |
+
// Upload remote file.
|
100 |
+
$mirror = wp_upload_bits( $name, null, wp_remote_retrieve_body( $response ) );
|
101 |
+
|
102 |
+
// Build Attachment Data Array.
|
103 |
+
$attachment = array(
|
104 |
+
'post_title' => $title,
|
105 |
+
'post_excerpt' => $caption,
|
106 |
+
'post_content' => '',
|
107 |
+
'post_status' => 'inherit',
|
108 |
+
'post_mime_type' => $type,
|
109 |
+
);
|
110 |
+
|
111 |
+
// Insert as attachment.
|
112 |
+
$image_id = wp_insert_attachment( $attachment, $mirror['file'], $parent_id );
|
113 |
+
|
114 |
+
// Add Alt Text as Post Meta.
|
115 |
+
update_post_meta( $image_id, '_wp_attachment_image_alt', $alt );
|
116 |
+
|
117 |
+
// Generate Metadata.
|
118 |
+
$attach_data = wp_generate_attachment_metadata( $image_id, $mirror['file'] );
|
119 |
+
wp_update_attachment_metadata( $image_id, $attach_data );
|
120 |
+
|
121 |
+
/**
|
122 |
+
* Instant Images Core Hook
|
123 |
+
* Fired after a successful image upload to media library.
|
124 |
+
*
|
125 |
+
* @since 4.4.0
|
126 |
+
*/
|
127 |
+
do_action( 'instant_images_after_upload', array(
|
128 |
+
'filename' => $name,
|
129 |
+
'unsplash_id' => $id,
|
130 |
+
'attachment_id' => $image_id,
|
131 |
+
'attachment_url' => wp_get_attachment_url( $image_id ),
|
132 |
+
) );
|
133 |
+
|
134 |
+
// Resize original image to max size (set in Instant Images settings).
|
135 |
+
// @deprecated in .
|
136 |
+
// instant_images_resize_download( $name ); .
|
137 |
+
|
138 |
+
// Success.
|
139 |
+
$response = array(
|
140 |
+
'success' => true,
|
141 |
+
'msg' => __( 'Image successfully uploaded to the media library!', 'instant-images' ),
|
142 |
+
'id' => $id,
|
143 |
+
'admin_url' => admin_url(),
|
144 |
+
'attachment' => array(
|
145 |
+
'id' => $image_id,
|
146 |
+
'url' => wp_get_attachment_url( $image_id ),
|
147 |
+
'alt' => $alt,
|
148 |
+
'caption' => $caption,
|
149 |
+
),
|
150 |
+
);
|
151 |
+
|
152 |
+
wp_send_json( $response );
|
153 |
+
|
154 |
+
} else {
|
155 |
+
|
156 |
+
$response = array(
|
157 |
+
'success' => false,
|
158 |
+
'msg' => __( 'There was an error getting image details from the request, please try again.', 'instant-images' ),
|
159 |
+
'id' => '',
|
160 |
+
'attachment' => '',
|
161 |
+
'url' => '',
|
162 |
+
);
|
163 |
+
|
164 |
+
wp_send_json( $response );
|
165 |
+
|
166 |
+
}
|
167 |
}
|
168 |
|
169 |
|
172 |
*
|
173 |
* @param string $url The url to the remote image.
|
174 |
* @return bool Whether the remote image exists.
|
175 |
+
* @since 3.0
|
176 |
+
* @author dcooney
|
177 |
+
* @package instant-images
|
178 |
*/
|
179 |
function instant_images_remote_file_exists( $url ) {
|
180 |
$response = wp_remote_head( $url );
|
184 |
|
185 |
|
186 |
/**
|
|
|
187 |
* Resize original image to max size (set in Instant Images settings)
|
188 |
*
|
189 |
+
* @param string $filename the image filename.
|
190 |
+
* @since 3.0
|
191 |
+
* @author dcooney
|
192 |
+
* @package instant-images
|
193 |
*/
|
194 |
+
function instant_images_resize_download( $filename ) {
|
195 |
+
|
196 |
+
$options = get_option( 'instant_img_settings' );
|
197 |
+
$download_w = isset( $options['unsplash_download_w'] ) ? $options['unsplash_download_w'] : 1600; // width.
|
198 |
+
$download_h = isset( $options['unsplash_download_h'] ) ? $options['unsplash_download_h'] : 1200; // height.
|
199 |
+
|
200 |
+
require_once ABSPATH . 'wp-admin/includes/file.php';
|
201 |
+
require_once ABSPATH . 'wp-admin/includes/image.php';
|
202 |
+
|
203 |
+
$uploads_dir = wp_upload_dir();
|
204 |
+
$original_image = wp_get_image_editor( $uploads_dir['path'] . '/' . $filename );
|
205 |
+
if ( ! is_wp_error( $original_image ) ) {
|
206 |
+
$original_image->resize( $download_w, $download_h, false );
|
207 |
+
$original_image->save( $uploads_dir['path'] . '/' . $filename );
|
208 |
+
}
|
|
|
|
|
|
|
209 |
}
|
api/test.php
CHANGED
@@ -1,48 +1,44 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*/
|
9 |
|
10 |
add_action( 'rest_api_init', function () {
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
});
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
|
|
22 |
|
23 |
-
|
24 |
-
|
25 |
-
* Test REST API access
|
26 |
-
*
|
27 |
-
* @param $request $_PUT
|
28 |
-
* @return $response json
|
29 |
-
* @since 3.2
|
30 |
-
|
31 |
-
*/
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
error_reporting(E_ALL|E_STRICT);
|
38 |
-
|
39 |
-
// Access is enable, send the response
|
40 |
-
$response = array(
|
41 |
-
'success' => true
|
42 |
-
);
|
43 |
-
|
44 |
-
// Send response as JSON
|
45 |
-
wp_send_json($response);
|
46 |
-
|
47 |
-
}
|
48 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Custom /resize route
|
4 |
+
*
|
5 |
+
* @since 3.0
|
6 |
+
* @author dcooney
|
7 |
+
* @package instant-images
|
8 |
+
*/
|
9 |
|
10 |
add_action( 'rest_api_init', function () {
|
11 |
+
$my_namespace = 'instant-images';
|
12 |
+
$my_endpoint = '/test';
|
13 |
+
register_rest_route(
|
14 |
+
$my_namespace,
|
15 |
+
$my_endpoint,
|
16 |
+
array(
|
17 |
+
'methods' => 'POST',
|
18 |
+
'callback' => 'instant_images_test',
|
19 |
+
'permission_callback' => function () {
|
20 |
+
return InstantImages::instant_img_has_access();
|
21 |
+
},
|
22 |
+
)
|
23 |
+
);
|
24 |
});
|
25 |
|
26 |
+
/**
|
27 |
+
* Test REST API access
|
28 |
+
*
|
29 |
+
* @param WP_REST_Request $request API request.
|
30 |
+
* @since 3.2
|
31 |
+
* @author dcooney
|
32 |
+
* @package instant-images
|
33 |
+
*/
|
34 |
+
function instant_images_test( WP_REST_Request $request ) {
|
35 |
|
36 |
+
if ( InstantImages::instant_img_has_access() ) {
|
37 |
|
38 |
+
// Access is enable, send the response.
|
39 |
+
$response = array( 'success' => true );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
// Send response as JSON.
|
42 |
+
wp_send_json( $response );
|
43 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
dist/css/instant-images.css
CHANGED
@@ -46,7 +46,7 @@ body.media_page_instant-images #wpfooter p {
|
|
46 |
font-size: 14px;
|
47 |
color: #666;
|
48 |
position: relative;
|
49 |
-
/*
|
50 |
Admin Screens - Setting page
|
51 |
wp-admin/upload.php?page=instant-images
|
52 |
*/
|
@@ -117,8 +117,8 @@ body.media_page_instant-images #wpfooter p {
|
|
117 |
}
|
118 |
|
119 |
.instant-img-container .error-messaging.active:before {
|
120 |
-
font-family:
|
121 |
-
content:
|
122 |
display: block;
|
123 |
left: 17px;
|
124 |
top: 50%;
|
@@ -163,9 +163,26 @@ body.media_page_instant-images #wpfooter p {
|
|
163 |
}
|
164 |
}
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
.instant-img-container .header-wrap h1 span {
|
167 |
display: block;
|
168 |
-
padding:
|
169 |
color: #888;
|
170 |
font-size: 15px;
|
171 |
font-weight: 400;
|
@@ -281,8 +298,8 @@ body.media_page_instant-images #wpfooter p {
|
|
281 |
margin-top: 0;
|
282 |
}
|
283 |
|
284 |
-
/*
|
285 |
-
* Settings
|
286 |
*/
|
287 |
.instant-img-container .save-settings p.submit {
|
288 |
float: left;
|
@@ -298,7 +315,7 @@ body.media_page_instant-images #wpfooter p {
|
|
298 |
background: #fff url(../img/ajax-loader.gif) no-repeat center center;
|
299 |
}
|
300 |
|
301 |
-
/*
|
302 |
* Thickbox styles
|
303 |
*/
|
304 |
#TB_ajaxContent {
|
@@ -342,7 +359,7 @@ body.media_page_instant-images #wpfooter p {
|
|
342 |
|
343 |
.instant-img-container .form-table td {
|
344 |
border-top: 0;
|
345 |
-
padding:
|
346 |
float: left;
|
347 |
width: 100%;
|
348 |
margin: 0;
|
@@ -411,8 +428,8 @@ body.media_page_instant-images #wpfooter p {
|
|
411 |
display: none;
|
412 |
}
|
413 |
|
414 |
-
.instant-img-container input[type=text],
|
415 |
-
.instant-img-container input[type=number],
|
416 |
.instant-img-container textarea {
|
417 |
padding: 10px;
|
418 |
line-height: 1;
|
@@ -424,7 +441,7 @@ body.media_page_instant-images #wpfooter p {
|
|
424 |
height: auto;
|
425 |
}
|
426 |
|
427 |
-
.instant-img-container input[type=text]:focus,
|
428 |
.instant-img-container textarea:focus {
|
429 |
border-color: #999;
|
430 |
-webkit-box-shadow: 0 0 3px #ccc;
|
@@ -433,7 +450,7 @@ body.media_page_instant-images #wpfooter p {
|
|
433 |
}
|
434 |
|
435 |
/* Helpers */
|
436 |
-
.spacer {
|
437 |
display: block;
|
438 |
height: 40px;
|
439 |
overflow: hidden;
|
@@ -441,11 +458,11 @@ body.media_page_instant-images #wpfooter p {
|
|
441 |
width: 100%;
|
442 |
}
|
443 |
|
444 |
-
.spacer.sm {
|
445 |
height: 20px;
|
446 |
}
|
447 |
|
448 |
-
input:-webkit-autofill {
|
449 |
-webkit-box-shadow: 0 0 0px 1000px white inset;
|
450 |
}
|
451 |
|
@@ -573,7 +590,8 @@ input:-webkit-autofill {
|
|
573 |
cursor: help;
|
574 |
}
|
575 |
|
576 |
-
.instant-img-container .control-nav li.search-field .searchResults span,
|
|
|
577 |
line-height: 34px;
|
578 |
}
|
579 |
|
@@ -608,7 +626,7 @@ input:-webkit-autofill {
|
|
608 |
}
|
609 |
|
610 |
.instant-img-container .control-nav li.search-field .searchResults:before {
|
611 |
-
border-color:
|
612 |
border-left-color: #ebebae;
|
613 |
border-width: 7px;
|
614 |
margin-top: -7px;
|
@@ -690,28 +708,28 @@ input:-webkit-autofill {
|
|
690 |
color: #5d72c3;
|
691 |
}
|
692 |
|
693 |
-
.instant-img-container .control-nav li.search-field input[type=search]::-webkit-input-placeholder {
|
694 |
color: #ccc;
|
695 |
font-weight: 300;
|
696 |
font-style: normal;
|
697 |
font-size: 14px;
|
698 |
}
|
699 |
|
700 |
-
.instant-img-container .control-nav li.search-field input[type=search]:-moz-placeholder {
|
701 |
color: #ccc;
|
702 |
font-weight: 300;
|
703 |
font-style: normal;
|
704 |
font-size: 14px;
|
705 |
}
|
706 |
|
707 |
-
.instant-img-container .control-nav li.search-field input[type=search]::-moz-placeholder {
|
708 |
color: #ccc;
|
709 |
font-weight: 300;
|
710 |
font-style: normal;
|
711 |
font-size: 14px;
|
712 |
}
|
713 |
|
714 |
-
.instant-img-container .control-nav li.search-field input[type=search]:-ms-input-placeholder {
|
715 |
color: #ccc;
|
716 |
font-weight: 300;
|
717 |
font-style: normal;
|
@@ -858,7 +876,7 @@ input:-webkit-autofill {
|
|
858 |
}
|
859 |
|
860 |
#photos .photo a.upload .status:before {
|
861 |
-
font-family:
|
862 |
display: block;
|
863 |
color: #fff;
|
864 |
font-size: 24px;
|
@@ -907,7 +925,7 @@ input:-webkit-autofill {
|
|
907 |
}
|
908 |
|
909 |
#photos .photo a.upload.success .status:before {
|
910 |
-
content:
|
911 |
color: #fff;
|
912 |
}
|
913 |
|
@@ -928,7 +946,7 @@ input:-webkit-autofill {
|
|
928 |
}
|
929 |
|
930 |
#photos .photo a.upload.errors .status:before {
|
931 |
-
content:
|
932 |
color: #fff;
|
933 |
opacity: 0.8;
|
934 |
}
|
@@ -937,8 +955,10 @@ input:-webkit-autofill {
|
|
937 |
opacity: 0.25 !important;
|
938 |
}
|
939 |
|
940 |
-
#photos .photo.uploaded .user-controls
|
941 |
-
|
|
|
|
|
942 |
}
|
943 |
|
944 |
#photos .photo:hover a.upload img, #photos .photo.in-progress a.upload img {
|
@@ -1012,7 +1032,8 @@ input:-webkit-autofill {
|
|
1012 |
opacity: 0.9;
|
1013 |
}
|
1014 |
|
1015 |
-
#photos .photo .options a,
|
|
|
1016 |
display: inline-block;
|
1017 |
vertical-align: top;
|
1018 |
line-height: 30px;
|
@@ -1592,7 +1613,7 @@ input:-webkit-autofill {
|
|
1592 |
display: block;
|
1593 |
}
|
1594 |
|
1595 |
-
#tooltip {
|
1596 |
display: inline-block;
|
1597 |
padding: 8px 10px;
|
1598 |
background: #fff;
|
@@ -1617,7 +1638,7 @@ input:-webkit-autofill {
|
|
1617 |
transition: all 0.15s ease;
|
1618 |
}
|
1619 |
|
1620 |
-
#tooltip:after {
|
1621 |
top: 100%;
|
1622 |
right: 17px;
|
1623 |
border: solid transparent;
|
@@ -1632,16 +1653,16 @@ input:-webkit-autofill {
|
|
1632 |
margin-left: -5px;
|
1633 |
}
|
1634 |
|
1635 |
-
#tooltip.over {
|
1636 |
opacity: 0.9;
|
1637 |
visibility: visible;
|
1638 |
}
|
1639 |
|
1640 |
-
#tooltip.above {
|
1641 |
margin-top: 37px;
|
1642 |
}
|
1643 |
|
1644 |
-
#tooltip.above:after {
|
1645 |
top: -5px;
|
1646 |
border-top: none;
|
1647 |
border-bottom-color: #ffffff;
|
46 |
font-size: 14px;
|
47 |
color: #666;
|
48 |
position: relative;
|
49 |
+
/*
|
50 |
Admin Screens - Setting page
|
51 |
wp-admin/upload.php?page=instant-images
|
52 |
*/
|
117 |
}
|
118 |
|
119 |
.instant-img-container .error-messaging.active:before {
|
120 |
+
font-family: "FontAwesome";
|
121 |
+
content: "\F06A";
|
122 |
display: block;
|
123 |
left: 17px;
|
124 |
top: 50%;
|
163 |
}
|
164 |
}
|
165 |
|
166 |
+
.instant-img-container .header-wrap h1 em {
|
167 |
+
font-weight: 400;
|
168 |
+
font-size: 14px;
|
169 |
+
background-color: rgba(0, 0, 0, 0.055);
|
170 |
+
color: rgba(0, 0, 0, 0.5);
|
171 |
+
display: inline-block;
|
172 |
+
-webkit-border-radius: 2px;
|
173 |
+
border-radius: 2px;
|
174 |
+
padding: 3px 3px;
|
175 |
+
position: relative;
|
176 |
+
top: -2px;
|
177 |
+
left: 2px;
|
178 |
+
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.4);
|
179 |
+
font-style: normal;
|
180 |
+
line-height: 1;
|
181 |
+
}
|
182 |
+
|
183 |
.instant-img-container .header-wrap h1 span {
|
184 |
display: block;
|
185 |
+
padding: 3px 0 0;
|
186 |
color: #888;
|
187 |
font-size: 15px;
|
188 |
font-weight: 400;
|
298 |
margin-top: 0;
|
299 |
}
|
300 |
|
301 |
+
/*
|
302 |
+
* Settings
|
303 |
*/
|
304 |
.instant-img-container .save-settings p.submit {
|
305 |
float: left;
|
315 |
background: #fff url(../img/ajax-loader.gif) no-repeat center center;
|
316 |
}
|
317 |
|
318 |
+
/*
|
319 |
* Thickbox styles
|
320 |
*/
|
321 |
#TB_ajaxContent {
|
359 |
|
360 |
.instant-img-container .form-table td {
|
361 |
border-top: 0;
|
362 |
+
padding: 0 0 15px;
|
363 |
float: left;
|
364 |
width: 100%;
|
365 |
margin: 0;
|
428 |
display: none;
|
429 |
}
|
430 |
|
431 |
+
.instant-img-container input[type="text"],
|
432 |
+
.instant-img-container input[type="number"],
|
433 |
.instant-img-container textarea {
|
434 |
padding: 10px;
|
435 |
line-height: 1;
|
441 |
height: auto;
|
442 |
}
|
443 |
|
444 |
+
.instant-img-container input[type="text"]:focus,
|
445 |
.instant-img-container textarea:focus {
|
446 |
border-color: #999;
|
447 |
-webkit-box-shadow: 0 0 3px #ccc;
|
450 |
}
|
451 |
|
452 |
/* Helpers */
|
453 |
+
.instant-img-container .spacer {
|
454 |
display: block;
|
455 |
height: 40px;
|
456 |
overflow: hidden;
|
458 |
width: 100%;
|
459 |
}
|
460 |
|
461 |
+
.instant-img-container .spacer.sm {
|
462 |
height: 20px;
|
463 |
}
|
464 |
|
465 |
+
.instant-img-container input:-webkit-autofill {
|
466 |
-webkit-box-shadow: 0 0 0px 1000px white inset;
|
467 |
}
|
468 |
|
590 |
cursor: help;
|
591 |
}
|
592 |
|
593 |
+
.instant-img-container .control-nav li.search-field .searchResults span,
|
594 |
+
.instant-img-container .control-nav li.search-field .searchResults a {
|
595 |
line-height: 34px;
|
596 |
}
|
597 |
|
626 |
}
|
627 |
|
628 |
.instant-img-container .control-nav li.search-field .searchResults:before {
|
629 |
+
border-color: rgba(0, 0, 0, 0);
|
630 |
border-left-color: #ebebae;
|
631 |
border-width: 7px;
|
632 |
margin-top: -7px;
|
708 |
color: #5d72c3;
|
709 |
}
|
710 |
|
711 |
+
.instant-img-container .control-nav li.search-field input[type="search"]::-webkit-input-placeholder {
|
712 |
color: #ccc;
|
713 |
font-weight: 300;
|
714 |
font-style: normal;
|
715 |
font-size: 14px;
|
716 |
}
|
717 |
|
718 |
+
.instant-img-container .control-nav li.search-field input[type="search"]:-moz-placeholder {
|
719 |
color: #ccc;
|
720 |
font-weight: 300;
|
721 |
font-style: normal;
|
722 |
font-size: 14px;
|
723 |
}
|
724 |
|
725 |
+
.instant-img-container .control-nav li.search-field input[type="search"]::-moz-placeholder {
|
726 |
color: #ccc;
|
727 |
font-weight: 300;
|
728 |
font-style: normal;
|
729 |
font-size: 14px;
|
730 |
}
|
731 |
|
732 |
+
.instant-img-container .control-nav li.search-field input[type="search"]:-ms-input-placeholder {
|
733 |
color: #ccc;
|
734 |
font-weight: 300;
|
735 |
font-style: normal;
|
876 |
}
|
877 |
|
878 |
#photos .photo a.upload .status:before {
|
879 |
+
font-family: "FontAwesome";
|
880 |
display: block;
|
881 |
color: #fff;
|
882 |
font-size: 24px;
|
925 |
}
|
926 |
|
927 |
#photos .photo a.upload.success .status:before {
|
928 |
+
content: "\F00C";
|
929 |
color: #fff;
|
930 |
}
|
931 |
|
946 |
}
|
947 |
|
948 |
#photos .photo a.upload.errors .status:before {
|
949 |
+
content: "\F12A";
|
950 |
color: #fff;
|
951 |
opacity: 0.8;
|
952 |
}
|
955 |
opacity: 0.25 !important;
|
956 |
}
|
957 |
|
958 |
+
#photos .photo.uploaded .user-controls,
|
959 |
+
#photos .photo.uploaded .options {
|
960 |
+
opacity: 0 !important;
|
961 |
+
visibility: hidden !important;
|
962 |
}
|
963 |
|
964 |
#photos .photo:hover a.upload img, #photos .photo.in-progress a.upload img {
|
1032 |
opacity: 0.9;
|
1033 |
}
|
1034 |
|
1035 |
+
#photos .photo .options a,
|
1036 |
+
#photos .photo .options span {
|
1037 |
display: inline-block;
|
1038 |
vertical-align: top;
|
1039 |
line-height: 30px;
|
1613 |
display: block;
|
1614 |
}
|
1615 |
|
1616 |
+
.instant-img-container #tooltip {
|
1617 |
display: inline-block;
|
1618 |
padding: 8px 10px;
|
1619 |
background: #fff;
|
1638 |
transition: all 0.15s ease;
|
1639 |
}
|
1640 |
|
1641 |
+
.instant-img-container #tooltip:after {
|
1642 |
top: 100%;
|
1643 |
right: 17px;
|
1644 |
border: solid transparent;
|
1653 |
margin-left: -5px;
|
1654 |
}
|
1655 |
|
1656 |
+
.instant-img-container #tooltip.over {
|
1657 |
opacity: 0.9;
|
1658 |
visibility: visible;
|
1659 |
}
|
1660 |
|
1661 |
+
.instant-img-container #tooltip.above {
|
1662 |
margin-top: 37px;
|
1663 |
}
|
1664 |
|
1665 |
+
.instant-img-container #tooltip.above:after {
|
1666 |
top: -5px;
|
1667 |
border-top: none;
|
1668 |
border-bottom-color: #ffffff;
|
dist/css/instant-images.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);html{overflow-y:scroll}body.media_page_instant-images{background:#fff}body.media_page_instant-images #wpcontent{padding-left:0;padding-bottom:40px}@media screen and (max-width:800px){body.media_page_instant-images #wpcontent{padding-bottom:0}}body.media_page_instant-images #wpbody-content{padding-bottom:0}body.media_page_instant-images #wpfooter{padding-top:0;padding-bottom:0;line-height:40px;background:#f7f7f7;border-top:1px solid #efefef;position:fixed;bottom:0;z-index:1100}body.media_page_instant-images #wpfooter p{line-height:40px}@media screen and (max-width:800px){body.media_page_instant-images #wpfooter{display:none}}.instant-img-container{font-size:14px;color:#666;position:relative}.instant-img-container .offscreen{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.instant-img-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.instant-img-container a{color:#5d72c3;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}.instant-img-container a:hover{color:#5568ae;text-decoration:none}.instant-img-container img{max-width:100%}.instant-img-container p{color:#666;width:100%;display:block;clear:both;text-transform:none;padding:0;margin:0 0 15px;font-size:14px}.instant-img-container.loading .loading-block{display:block}.instant-img-container .error-messaging{display:none}.instant-img-container .error-messaging.active{padding:17px 17px 17px 57px;-webkit-border-radius:3px;border-radius:3px;background:#df3333;color:#fff;font-size:13px;margin-bottom:25px;display:block;position:relative}.instant-img-container .error-messaging.active:before{font-family:FontAwesome;content:"\F06A";display:block;left:17px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;font-size:30px;opacity:.75}.instant-img-container .header-wrap{background:#f7f7f7 url(../img/logo-48x48.png) no-repeat 25px 20px;padding:20px 25px 20px 83px;min-height:88px;overflow:hidden;border-bottom:1px solid #efefef;position:relative}@media screen and (max-width:800px){.instant-img-container .header-wrap{background-position:center 20px;padding:80px 25px 20px;text-align:center}}.instant-img-container .header-wrap h1{padding:0;margin:4px 0 0;font-weight:700;font-size:26px;max-width:70%}@media screen and (max-width:800px){.instant-img-container .header-wrap h1{max-width:100%;width:100%;text-align:center}}.instant-img-container .header-wrap h1 span{display:block;padding:8px 0 0;color:#888;font-size:15px;font-weight:400}.instant-img-container .header-wrap button{position:absolute;right:25px;bottom:26px}@media screen and (max-width:800px){.instant-img-container .header-wrap button{position:static;margin-top:20px;display:inline-block}}.instant-img-container .header-wrap button i{margin-right:2px}.instant-img-container .instant-images-wrapper{padding:0 25px;display:block;overflow:hidden;min-height:400px;background:url(../img/ajax-loader-lg.gif) no-repeat 50%}.instant-img-container .instant-images-wrapper.loaded{background:none}.instant-img-container .permissions-warning{padding:0 25px}.instant-img-container .permissions-warning .inner{border-bottom:1px solid #efefef;padding:32px 0}.instant-img-container .permissions-warning input{max-width:500px}.instant-img-container .permissions-warning h3{font-size:22px;margin:0 0 15px}.instant-img-container .permissions-warning h3 i{margin:0 2px 0 0;position:relative}.instant-img-container .permissions-warning p:first-of-type{font-size:18px;margin:0 0 2px}.instant-img-container .loading-block{display:none;padding:50px;background:url(../img/ajax-loader-lg.gif) no-repeat 50%}.instant-img-container .load-more-wrap{margin:1% 0 0;padding:25px 0;text-align:center;display:none;border-top:1px solid #efefef}.instant-img-container .load-more-wrap button{display:inline-block;margin:0;padding:12px 15px;font-size:15px;font-weight:600;-webkit-transition:all .1s ease;-o-transition:all .1s ease;transition:all .1s ease;height:auto;line-height:1;cursor:pointer;background-image:none;background-repeat:no-repeat!important;background-position:15px!important}.instant-img-container .load-more-wrap button.disabled{opacity:.3;cursor:default}.instant-img-container .cnkt-main{width:100%;float:none;background:none!important;position:relative}.instant-img-container h2,.instant-img-container h3,.instant-img-container h4{margin-top:0}.instant-img-container .save-settings p.submit{float:left;margin:0 2px 0 0;width:auto}.instant-img-container .save-settings .loading{width:46px;height:28px;display:none;float:left;background:#fff url(../img/ajax-loader.gif) no-repeat 50%}#TB_ajaxContent{clear:both;line-height:1.4em;overflow:auto;text-align:left;width:100%!important;-webkit-box-sizing:border-box;box-sizing:border-box;padding:15px!important}.cnkt-sidebar .form-table{margin:0;border:none}.cnkt-sidebar .form-table label,.cnkt-sidebar .form-table p,.cnkt-sidebar .form-table td{font-size:13px}.cnkt-sidebar .form-table label{display:block;clear:both;float:none}.cnkt-sidebar .form-table label span{opacity:.8;font-size:13px;font-style:italic}.cnkt-sidebar .form-table th{display:none}.instant-img-container .form-table td{border-top:0;padding:5px 0 20px;float:left;width:100%;margin:0}.instant-img-container .form-table tr:first-of-type td{padding:10px 0}.cnkt-main .form-msg,.cnkt-sidebar .form-table .form-msg{display:block;line-height:18px;padding:12px 12px 12px 15px;margin:15px 0 0;color:#666;background-color:#fff9ea;border-left:5px solid #dfd8c2;-webkit-border-radius:2px;border-radius:2px}.cnkt-main .form-msg span,.cnkt-sidebar .form-table .form-msg span{display:block;padding:6px 0 3px}.instant-img-container h1,.instant-img-container h3,.instant-img-container h4{color:#222;margin-top:0}.instant-img-container h4+p{margin-top:-6px}.instant-img-container p.small{font-size:12px;margin-top:-10px;opacity:.7}.instant-img-container ul{padding:0;margin:0;list-style:none}.instant-img-container input,.instant-img-container label,.instant-img-container select,.instant-img-container textarea{-webkit-box-shadow:none;box-shadow:none}.instant-img-container label{padding:5px 0}#unsplash-form-options h2,#unsplash-form-options p.desc{display:none}.instant-img-container input[type=number],.instant-img-container input[type=text],.instant-img-container textarea{padding:10px;line-height:1;border:1px solid #ccc;background:#f7f7f7;width:100%;-webkit-border-radius:2px;border-radius:2px;height:auto}.instant-img-container input[type=text]:focus,.instant-img-container textarea:focus{border-color:#999;-webkit-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;background:#efefef}.spacer{display:block;height:40px;overflow:hidden;clear:both;width:100%}.spacer.sm{height:20px}input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset}.instant-img-container .control-nav{display:block;margin:0;padding:25px 0;list-style:none}.instant-img-container .control-nav:after{content:"";display:table;clear:both}.instant-img-container .control-nav li{padding:0;margin:0 3px 0 0;float:left;background:none;font-size:18px;position:relative}.instant-img-container .control-nav li button{padding:0 24px 0 2px;height:48px;line-height:48px;display:block;color:#999;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;background-color:transparent;background-position:96%;background-repeat:no-repeat;border:none;cursor:pointer}.instant-img-container .control-nav li button:focus,.instant-img-container .control-nav li button:hover{color:#111;outline:none;-webkit-box-shadow:none;box-shadow:none}.instant-img-container .control-nav li button:focus{text-decoration:underline}.instant-img-container .control-nav li button.active{color:#333;cursor:default;font-weight:600}.instant-img-container .control-nav li button.loading{background-image:url(../img/ajax-loader.gif)}@media screen and (max-width:800px){.instant-img-container .control-nav li{font-size:16px;margin:0}.instant-img-container .control-nav li button{padding-left:3px}}@media screen and (max-width:600px){.instant-img-container .control-nav li{width:33.333%;text-align:center;margin:0;padding-bottom:15px}}.instant-img-container .control-nav li.search-field{float:right;width:49%;margin:0;max-width:500px}@media screen and (max-width:600px){.instant-img-container .control-nav li.search-field{width:100%;display:block;position:static;padding-bottom:15px;text-align:left;max-width:100%}}.instant-img-container .control-nav li.search-field .searchResults{position:absolute;right:100.5%;top:7px;width:auto;height:34px;line-height:34px;padding:0 30px 0 10px;background:#ffffbf;border:1px solid #ebebae;-webkit-border-radius:3px;border-radius:3px;z-index:99;font-size:13px;font-weight:600;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;color:#444;text-shadow:0 1px 1px hsla(0,0%,100%,.3);-webkit-box-shadow:0 2px 3px rgba(0,0,0,.05);box-shadow:0 2px 3px rgba(0,0,0,.05)}.instant-img-container .control-nav li.search-field .searchResults span{cursor:help}.instant-img-container .control-nav li.search-field .searchResults a,.instant-img-container .control-nav li.search-field .searchResults span{line-height:34px}.instant-img-container .control-nav li.search-field .searchResults button{padding:0 10px;height:32px;line-height:32px;width:30px;position:absolute;left:auto;right:0;top:0}.instant-img-container .control-nav li.search-field .searchResults:after,.instant-img-container .control-nav li.search-field .searchResults:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;z-index:100}.instant-img-container .control-nav li.search-field .searchResults:after{border-color:hsla(62,46%,78%,0);border-left-color:#ffffbf;border-width:6px;margin-top:-6px}.instant-img-container .control-nav li.search-field .searchResults:before{border-color:transparent;border-left-color:#ebebae;border-width:7px;margin-top:-7px}.instant-img-container .control-nav li.search-field .searchResults.hide{opacity:0;visibility:hidden}.instant-img-container .control-nav li.search-field form{padding:0 1px 0 0;margin:0;position:relative;height:48px;display:block}.instant-img-container .control-nav li.search-field form:hover button{opacity:1}.instant-img-container .control-nav li.search-field input{width:100%;padding:0 10px 0 42px;border:1px solid #e1e1e1;background-color:#f7f7f7!important;height:46px;line-height:46px;-webkit-border-radius:3px;border-radius:3px;font-size:16px;-webkit-transition:padding .15s ease;-o-transition:padding .15s ease;transition:padding .15s ease}.instant-img-container .control-nav li.search-field input:focus{border-color:#999;-webkit-box-shadow:0 0 0 4px rgba(0,0,0,.075);box-shadow:0 0 0 4px rgba(0,0,0,.075)}.instant-img-container .control-nav li.search-field input.searching{padding-left:62px;background-image:url(../img/ajax-loader.gif);background-position:37px;background-repeat:no-repeat}.instant-img-container .control-nav li.search-field button{position:absolute;left:-2px;top:-1px;width:48px;height:48px;z-index:1;border:none!important;background:transparent!important;cursor:pointer;color:#666;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;opacity:.5;margin:0;padding:0}.instant-img-container .control-nav li.search-field button:focus,.instant-img-container .control-nav li.search-field button:hover{outline:none;color:#5d72c3}.instant-img-container .control-nav li.search-field input[type=search]::-webkit-input-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}.instant-img-container .control-nav li.search-field input[type=search]:-moz-placeholder,.instant-img-container .control-nav li.search-field input[type=search]::-moz-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}.instant-img-container .control-nav li.search-field input[type=search]:-ms-input-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}#photos{width:100%;width:-webkit-calc(100% + 10px);width:calc(100% + 10px);margin:0 0 0 -5px;padding:0;position:relative}#photos .photo{width:20%;margin:0;padding:0 5px 10px;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}#photos .photo--wrap{position:relative}#photos .photo.in-view{opacity:1}#photos .photo.in-progress .fade{opacity:0!important;visibility:hidden!important}#photos .photo .img-wrap{display:block;overflow:hidden;position:relative}@media screen and (min-width:2000px){#photos .photo{width:20%}}@media screen and (max-width:1570px){#photos .photo{width:25%}}@media screen and (max-width:1270px){#photos .photo{width:33.333333%}}@media screen and (max-width:800px){#photos .photo{width:50%}}@media screen and (max-width:600px){#photos .photo{width:100%;margin:0 0 2%}}#photos .photo:focus a.upload img{opacity:.6}#photos .photo:focus .fade{opacity:1;visibility:visible}#photos .photo:focus .fade.user{opacity:.7}#photos .photo:focus-within .user-controls{opacity:1}#photos .photo a.upload{display:block;position:relative;background-color:#222;background-position:50%;background-repeat:no-repeat;background-image:url(../img/ajax-loader.gif);overflow:hidden}#photos .photo a.upload.loaded{background-image:none}#photos .photo a.upload:active,#photos .photo a.upload:focus{outline:none;border:none}#photos .photo a.upload img{-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease;width:100%;height:auto!important;padding:0;vertical-align:top}#photos .photo a.upload .status{visibility:hidden;opacity:0;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:60px;height:60px;line-height:60px;-webkit-border-radius:4px;border-radius:4px;position:absolute;left:50%;top:50%;z-index:5;-webkit-transform:translate(-50%,-50%) scale(1.2);-ms-transform:translate(-50%,-50%) scale(1.2);transform:translate(-50%,-50%) scale(1.2);-webkit-box-shadow:0 2px 3px rgba(0,0,0,.25);box-shadow:0 2px 3px rgba(0,0,0,.25);background-position:50%;background-repeat:no-repeat}#photos .photo a.upload .status:before{font-family:FontAwesome;display:block;color:#fff;font-size:24px;opacity:.8}#photos .photo a.upload .status a{color:#fff}#photos .photo a.upload.errors .status,#photos .photo a.upload.success .status,#photos .photo a.upload.uploading .status{text-align:center;left:50%;top:50%;-webkit-transform:translate(-50%,-50%) scale(1);-ms-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}#photos .photo a.upload.uploading{cursor:default!important}#photos .photo a.upload.uploading .status{visibility:visible;opacity:1;background:hsla(0,0%,100%,.95) url(../img/ajax-loader-lg.gif) no-repeat 50%;-webkit-background-size:24px 24px;background-size:24px 24px}#photos .photo a.upload.uploading .status:before{display:none}#photos .photo a.upload.success{cursor:default!important}#photos .photo a.upload.success .status{visibility:visible;opacity:1;background-color:#63d875}#photos .photo a.upload.success .status:before{content:"\F00C";color:#fff}#photos .photo a.upload.success img{-webkit-transform:scale(1)!important;-ms-transform:scale(1)!important;transform:scale(1)!important}#photos .photo a.upload.errors{cursor:help!important}#photos .photo a.upload.errors .status{visibility:visible;opacity:1;background-color:#df3333}#photos .photo a.upload.errors .status:before{content:"\F12A";color:#fff;opacity:.8}#photos .photo.uploaded a.upload img{opacity:.25!important}#photos .photo.uploaded .user-controls{opacity:.5}#photos .photo.in-progress a.upload img,#photos .photo:hover a.upload img{opacity:.7;-webkit-transform:scale(1.075);-ms-transform:scale(1.075);transform:scale(1.075)}#photos .photo.in-progress .options,#photos .photo:hover .options{opacity:1;visibility:visible}#photos .photo.in-progress .options i.heart-like,#photos .photo:hover .options i.heart-like{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}#photos .photo.in-progress .user-controls,#photos .photo:hover .user-controls{opacity:1}#photos .photo.in-progress .notice-msg{top:0;opacity:1}#photos .photo.in-progress .options,#photos .photo.in-progress .user-controls{opacity:0!important}#photos .photo .options{position:absolute;top:5px;right:5px;z-index:6;display:inline-block;width:auto;cursor:default!important;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;opacity:0;visibility:hidden;font-size:13px}#photos .photo .options i{font-size:14px}#photos .photo .options i.heart-like{color:#d13714;-webkit-transition:all .25s ease .05s;-o-transition:all .25s ease .05s;transition:all .25s ease .05s;-webkit-transform:scale(.55);-ms-transform:scale(.55);transform:scale(.55);margin-right:2px;position:relative;top:0;font-size:14px;opacity:.9}#photos .photo .options a,#photos .photo .options span{display:inline-block;vertical-align:top;line-height:30px;padding:0 10px;padding-top:1px;background:hsla(0,0%,100%,.5);margin:0;-webkit-border-radius:2px;border-radius:2px;color:#23282d;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}#photos .photo .options span{cursor:default}#photos .photo .options span:focus,#photos .photo .options span:hover{background-color:#fff}#photos .photo .options a{margin-left:2px}#photos .photo .options a:focus,#photos .photo .options a:hover{background-color:#fff}#photos .photo .options a i{position:relative;top:1px;left:1px}#photos .photo .user-controls{position:absolute;z-index:6;bottom:0;left:0;width:100%;background:rgba(0,0,0,.4);padding:0;opacity:.35;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}#photos .photo .photo-options{float:right;text-align:right;max-width:50%}#photos .photo .fade{-webkit-transition:all .35s ease;-o-transition:all .35s ease;transition:all .35s ease;color:#fff;background:hsla(0,0%,100%,.75);background:transparent;-webkit-border-radius:2px;border-radius:2px;height:34px;line-height:34px;font-size:17px;z-index:6;float:left;margin:1px 1px 1px 0;padding:0;color:hsla(0,0%,100%,.75);border:none!important;outline:none;cursor:pointer}#photos .photo .fade.edit-photo,#photos .photo .fade.edit-photo-admin,#photos .photo .fade.insert,#photos .photo .fade.set-featured{display:inline-block;width:34px;text-align:center;position:relative}#photos .photo .fade.edit-photo-admin i,#photos .photo .fade.edit-photo i,#photos .photo .fade.insert i,#photos .photo .fade.set-featured i{line-height:27px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#photos .photo .fade.edit-photo-admin:focus,#photos .photo .fade.edit-photo-admin:hover,#photos .photo .fade.edit-photo:focus,#photos .photo .fade.edit-photo:hover,#photos .photo .fade.insert:focus,#photos .photo .fade.insert:hover,#photos .photo .fade.set-featured:focus,#photos .photo .fade.set-featured:hover{color:#222;background:hsla(0,0%,100%,.95)}#photos .photo .fade.edit-photo-admin{display:none}#photos .photo .fade.user{background:none;font-size:13px;max-width:48%;cursor:pointer;text-decoration:none;border:none;line-height:35px;height:36px;margin:0}#photos .photo .fade.user:focus,#photos .photo .fade.user:hover{text-decoration:underline}#photos .photo .fade.user .user-wrap{position:relative;padding-left:35px;display:block;width:100%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}#photos .photo .fade.user img{width:20px;max-width:20px;-webkit-border-radius:100%;border-radius:100%;position:absolute;left:8px;top:8px}#photos .photo .notice-msg{position:absolute;z-index:999;top:-40px;left:0;height:40px;line-height:40px;width:100%;background:rgba(0,0,0,.6);text-align:center;color:hsla(0,0%,100%,.9);font-size:12px;margin:0;padding:0;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out;opacity:0;z-index:9999}#photos .photo .notice-msg.has-error{top:-40px;opacity:0}#photos .edit-screen{position:absolute;left:0;top:0;width:100%;height:100%;z-index:999;background:hsla(0,0%,100%,.9);opacity:0;visibility:hidden;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;padding:8px;overflow-y:auto;-webkit-overflow-scrolling:touch;border:1px solid #e1e1e1;-webkit-transform:scale(1.025);-ms-transform:scale(1.025);transform:scale(1.025)}#photos .edit-screen.editing{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}#photos .edit-screen--controls,#photos .edit-screen--title{display:block;background:#f7f7f7;border:1px solid #e1e1e1;padding:15px;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0}#photos .edit-screen--controls .button-primary,#photos .edit-screen--title .button-primary{float:right}#photos .edit-screen--controls{-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px}#photos .edit-screen--title{border-bottom:none}#photos .edit-screen--title p{font-size:12px;line-height:1.25;margin:0;color:#999}#photos .edit-screen--title p.heading{color:#222;margin:0 0 5px;font-weight:600;text-transform:uppercase}#photos .edit-screen label{margin:0;padding:15px;display:block;background:#fff;border:1px solid #e1e1e1;border-bottom:none;-webkit-border-radius:2px;border-radius:2px;position:relative}#photos .edit-screen span{display:block;font-size:11px;text-transform:uppercase;font-weight:600;margin:0 0 5px;color:#222;line-height:1}#photos .edit-screen textarea{resize:none}#photos .edit-screen input{font-size:12px;padding:0 5px;margin:0;height:30px;line-height:30px}#photos .edit-screen em{position:absolute;bottom:15px;right:15px;height:30px;line-height:30px;background:#777;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;color:#e1e1e1;font-style:normal;font-size:11px;padding:0 10px}.instant-images-settings{display:none;background-color:#efefef;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar{padding:20px 25px;overflow:hidden}.instant-images-settings .cnkt-sidebar .cta{float:left;width:50%}@media screen and (max-width:800px){.instant-images-settings .cnkt-sidebar .cta{float:none!important;width:100%!important}}.instant-images-settings .cnkt-sidebar .cta.ii-settings{width:31.333%}.instant-images-settings .cnkt-sidebar .cta.ii-plugins{width:68.666%;width:-webkit-calc(68.666% - 25px);width:calc(68.666% - 25px);float:right}.instant-images-settings .cnkt-sidebar .cta h2{border:none;padding:17px 20px 3px;font-size:16px}.instant-images-settings .cnkt-sidebar .cta h2.w-border{border-top:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta h2+p{padding:0 20px 15px;margin:0!important;border-bottom:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta h2,.instant-images-settings .cnkt-sidebar .cta h2+p{background:#f7f7f7;margin:0}.instant-images-settings .cnkt-sidebar .cta ul.whats-new{list-style:disc;padding:0 0 10px 20px}.instant-images-settings .cnkt-sidebar .cta ul.whats-new li{margin:10px 0 0}.instant-images-settings .cnkt-sidebar .cta ul.whats-new li pre{display:inline-block;margin:0;padding:3px;background:#f7f7f7;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 0 1px #efefef;box-shadow:0 0 0 1px #efefef}.instant-images-settings .cnkt-sidebar .cta{background:#fff;padding:0 0 20px;margin:0 0 20px;overflow:hidden;position:relative;border:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta.padding-bottom{padding-bottom:66px}.instant-images-settings .cnkt-sidebar .cnkt-sidebar h3,.instant-images-settings .cnkt-sidebar .cnkt-sidebar h4{margin-top:0}.instant-images-settings .cnkt-sidebar .cta-wrap{display:block;padding:10px 20px}.instant-images-settings .cnkt-sidebar .cta-wrap h4{padding:10px 0 7px;margin:0}.instant-images-settings .cnkt-sidebar .cta-wrap h4 span{display:inline-block;line-height:1;padding:8px 10px;-webkit-border-radius:2px;border-radius:2px;background:#ffc;color:#666}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin{width:48%;margin:2% 1% 0}@media screen and (max-width:1170px){.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin{width:100%;margin:2% 0 0}}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2{border:none;padding:0;font-size:16px}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2+p{padding:0;margin:0!important;border-bottom:none}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2,.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2+p{background:none;margin:0}.instant-images-settings table{margin-top:5px}.instant-img-container[data-media-popup=true]{background:#fff}.instant-img-container[data-media-popup=true] .header-wrap{display:none}.instant-img-container[data-media-popup=true] .instant-images-wrapper{padding:0 16px}.instant-images-sidebar-icon,.instant-images-sidebar-icon svg{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.instant-images-sidebar-icon svg{height:20px;width:20px}.instant-images-sidebar-icon svg,.instant-images-sidebar-icon svg *{stroke:#5d72c3!important;fill:#5d72c3!important}.components-panel .instant-img-container .load-more-wrap{display:block}.components-panel .no-results{padding:40px}.components-panel .no-results h3{font-size:18px}.components-panel .no-results p{font-size:13px}.components-panel #photos{width:100%;margin:0;padding:5px}.components-panel #photos .photo{width:100%;display:block;opacity:1!important;margin:0 0 5px;padding:0}.components-panel .control-nav{padding:0 16px 8px;border-bottom:1px solid #e2e4e7}.components-panel .control-nav li{font-size:13px}.components-panel .control-nav li a{padding:16px 24px 16px 0;height:auto;line-height:1.2}.components-panel .control-nav li.search-field{float:none;width:100%;padding:0;clear:both}.components-panel .control-nav li.search-field form{height:auto;width:-webkit-calc(100% + 16px);width:calc(100% + 16px);margin-left:-8px}.components-panel .control-nav li.search-field:before{content:"";display:table;clear:both}.components-panel .control-nav li.search-field input{line-height:36px;height:36px;padding-right:8px;padding-left:30px;-webkit-border-radius:0;border-radius:0;border-color:#e2e4e7;font-size:13px;-webkit-border-radius:3px!important;border-radius:3px!important}.components-panel .control-nav li.search-field input.searching{padding-left:30px;background-position:95%}.components-panel .control-nav li.search-field button{position:absolute;right:auto;top:0;width:40px;height:36px;line-height:36px;padding:0;margin:0}.components-panel .control-nav li.search-field .searchResults{right:1px;left:auto;top:1px}.components-panel .control-nav li.search-field .searchResults:after,.components-panel .control-nav li.search-field .searchResults:before{display:none}.media-frame-content .instant-img-container .load-more-wrap{display:block}#tooltip{display:inline-block;padding:8px 10px;background:#fff;position:fixed;left:auto;top:auto;z-index:999;display:block;opacity:0;visibility:hidden;margin-top:-37px;font-size:12px;color:#999;text-align:center;line-height:1;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 2px 3px rgba(0,0,0,.1);box-shadow:0 2px 3px rgba(0,0,0,.1);-webkit-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}#tooltip:after{top:100%;right:17px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:hsla(0,0%,100%,0);border-top-color:#fff;border-width:5px;margin-left:-5px}#tooltip.over{opacity:.9;visibility:visible}#tooltip.above{margin-top:37px}#tooltip.above:after{top:-5px;border-top:none;border-bottom-color:#fff}.no-results{display:none;padding:150px 100px;text-align:center}.no-results.show{display:block}.no-results h3{font-size:24px;line-height:29px;margin:0 0 10px}.no-results p{font-size:16px;margin:0}@media screen and (max-width:800px){.no-results{padding:50px}}.orientation-list{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;width:100%;padding:7px 0;margin:0 0 10px;border-top:1px solid #efefef;border-bottom:1px solid #efefef;position:relative;top:-7px}.orientation-list span{opacity:.5;margin:0 10px 0 0;font-size:13px}.orientation-list ul{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.orientation-list ul li{margin:0 1px 0 0;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;padding:4px 6px;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;border:1px solid transparent;color:#999;font-size:13px}.orientation-list ul li:hover{color:#111}.orientation-list ul li:focus{border-color:#5d72c3;color:#111;outline:none}.orientation-list ul li.active{background-color:#5d72c3;border-color:#5d72c3;color:#fff;outline:none}.components-panel .orientation-list{position:static;text-align:center;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;border-top:none;background:#f7f7f7;margin-bottom:10px}.components-panel .orientation-list span{display:none}.components-panel .orientation-list ul{padding:0;width:100%;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}
|
1 |
+
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);html{overflow-y:scroll}body.media_page_instant-images{background:#fff}body.media_page_instant-images #wpcontent{padding-left:0;padding-bottom:40px}@media screen and (max-width:800px){body.media_page_instant-images #wpcontent{padding-bottom:0}}body.media_page_instant-images #wpbody-content{padding-bottom:0}body.media_page_instant-images #wpfooter{padding-top:0;padding-bottom:0;line-height:40px;background:#f7f7f7;border-top:1px solid #efefef;position:fixed;bottom:0;z-index:1100}body.media_page_instant-images #wpfooter p{line-height:40px}@media screen and (max-width:800px){body.media_page_instant-images #wpfooter{display:none}}.instant-img-container{font-size:14px;color:#666;position:relative}.instant-img-container .offscreen{position:absolute;overflow:hidden;clip:rect(0 0 0 0);height:1px;width:1px;margin:-1px;padding:0;border:0}.instant-img-container *{-webkit-box-sizing:border-box;box-sizing:border-box}.instant-img-container a{color:#5d72c3;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease}.instant-img-container a:hover{color:#5568ae;text-decoration:none}.instant-img-container img{max-width:100%}.instant-img-container p{color:#666;width:100%;display:block;clear:both;text-transform:none;padding:0;margin:0 0 15px;font-size:14px}.instant-img-container.loading .loading-block{display:block}.instant-img-container .error-messaging{display:none}.instant-img-container .error-messaging.active{padding:17px 17px 17px 57px;-webkit-border-radius:3px;border-radius:3px;background:#df3333;color:#fff;font-size:13px;margin-bottom:25px;display:block;position:relative}.instant-img-container .error-messaging.active:before{font-family:FontAwesome;content:"\F06A";display:block;left:17px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;font-size:30px;opacity:.75}.instant-img-container .header-wrap{background:#f7f7f7 url(../img/logo-48x48.png) no-repeat 25px 20px;padding:20px 25px 20px 83px;min-height:88px;overflow:hidden;border-bottom:1px solid #efefef;position:relative}@media screen and (max-width:800px){.instant-img-container .header-wrap{background-position:center 20px;padding:80px 25px 20px;text-align:center}}.instant-img-container .header-wrap h1{padding:0;margin:4px 0 0;font-weight:700;font-size:26px;max-width:70%}@media screen and (max-width:800px){.instant-img-container .header-wrap h1{max-width:100%;width:100%;text-align:center}}.instant-img-container .header-wrap h1 em{font-weight:400;font-size:14px;background-color:rgba(0,0,0,.055);color:rgba(0,0,0,.5);display:inline-block;-webkit-border-radius:2px;border-radius:2px;padding:3px;position:relative;top:-2px;left:2px;text-shadow:1px 1px 1px hsla(0,0%,100%,.4);font-style:normal;line-height:1}.instant-img-container .header-wrap h1 span{display:block;padding:3px 0 0;color:#888;font-size:15px;font-weight:400}.instant-img-container .header-wrap button{position:absolute;right:25px;bottom:26px}@media screen and (max-width:800px){.instant-img-container .header-wrap button{position:static;margin-top:20px;display:inline-block}}.instant-img-container .header-wrap button i{margin-right:2px}.instant-img-container .instant-images-wrapper{padding:0 25px;display:block;overflow:hidden;min-height:400px;background:url(../img/ajax-loader-lg.gif) no-repeat 50%}.instant-img-container .instant-images-wrapper.loaded{background:none}.instant-img-container .permissions-warning{padding:0 25px}.instant-img-container .permissions-warning .inner{border-bottom:1px solid #efefef;padding:32px 0}.instant-img-container .permissions-warning input{max-width:500px}.instant-img-container .permissions-warning h3{font-size:22px;margin:0 0 15px}.instant-img-container .permissions-warning h3 i{margin:0 2px 0 0;position:relative}.instant-img-container .permissions-warning p:first-of-type{font-size:18px;margin:0 0 2px}.instant-img-container .loading-block{display:none;padding:50px;background:url(../img/ajax-loader-lg.gif) no-repeat 50%}.instant-img-container .load-more-wrap{margin:1% 0 0;padding:25px 0;text-align:center;display:none;border-top:1px solid #efefef}.instant-img-container .load-more-wrap button{display:inline-block;margin:0;padding:12px 15px;font-size:15px;font-weight:600;-webkit-transition:all .1s ease;-o-transition:all .1s ease;transition:all .1s ease;height:auto;line-height:1;cursor:pointer;background-image:none;background-repeat:no-repeat!important;background-position:15px!important}.instant-img-container .load-more-wrap button.disabled{opacity:.3;cursor:default}.instant-img-container .cnkt-main{width:100%;float:none;background:none!important;position:relative}.instant-img-container h2,.instant-img-container h3,.instant-img-container h4{margin-top:0}.instant-img-container .save-settings p.submit{float:left;margin:0 2px 0 0;width:auto}.instant-img-container .save-settings .loading{width:46px;height:28px;display:none;float:left;background:#fff url(../img/ajax-loader.gif) no-repeat 50%}#TB_ajaxContent{clear:both;line-height:1.4em;overflow:auto;text-align:left;width:100%!important;-webkit-box-sizing:border-box;box-sizing:border-box;padding:15px!important}.cnkt-sidebar .form-table{margin:0;border:none}.cnkt-sidebar .form-table label,.cnkt-sidebar .form-table p,.cnkt-sidebar .form-table td{font-size:13px}.cnkt-sidebar .form-table label{display:block;clear:both;float:none}.cnkt-sidebar .form-table label span{opacity:.8;font-size:13px;font-style:italic}.cnkt-sidebar .form-table th{display:none}.instant-img-container .form-table td{border-top:0;padding:0 0 15px;float:left;width:100%;margin:0}.instant-img-container .form-table tr:first-of-type td{padding:10px 0}.cnkt-main .form-msg,.cnkt-sidebar .form-table .form-msg{display:block;line-height:18px;padding:12px 12px 12px 15px;margin:15px 0 0;color:#666;background-color:#fff9ea;border-left:5px solid #dfd8c2;-webkit-border-radius:2px;border-radius:2px}.cnkt-main .form-msg span,.cnkt-sidebar .form-table .form-msg span{display:block;padding:6px 0 3px}.instant-img-container h1,.instant-img-container h3,.instant-img-container h4{color:#222;margin-top:0}.instant-img-container h4+p{margin-top:-6px}.instant-img-container p.small{font-size:12px;margin-top:-10px;opacity:.7}.instant-img-container ul{padding:0;margin:0;list-style:none}.instant-img-container input,.instant-img-container label,.instant-img-container select,.instant-img-container textarea{-webkit-box-shadow:none;box-shadow:none}.instant-img-container label{padding:5px 0}#unsplash-form-options h2,#unsplash-form-options p.desc{display:none}.instant-img-container input[type=number],.instant-img-container input[type=text],.instant-img-container textarea{padding:10px;line-height:1;border:1px solid #ccc;background:#f7f7f7;width:100%;-webkit-border-radius:2px;border-radius:2px;height:auto}.instant-img-container input[type=text]:focus,.instant-img-container textarea:focus{border-color:#999;-webkit-box-shadow:0 0 3px #ccc;box-shadow:0 0 3px #ccc;background:#efefef}.instant-img-container .spacer{display:block;height:40px;overflow:hidden;clear:both;width:100%}.instant-img-container .spacer.sm{height:20px}.instant-img-container input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset}.instant-img-container .control-nav{display:block;margin:0;padding:25px 0;list-style:none}.instant-img-container .control-nav:after{content:"";display:table;clear:both}.instant-img-container .control-nav li{padding:0;margin:0 3px 0 0;float:left;background:none;font-size:18px;position:relative}.instant-img-container .control-nav li button{padding:0 24px 0 2px;height:48px;line-height:48px;display:block;color:#999;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;background-color:transparent;background-position:96%;background-repeat:no-repeat;border:none;cursor:pointer}.instant-img-container .control-nav li button:focus,.instant-img-container .control-nav li button:hover{color:#111;outline:none;-webkit-box-shadow:none;box-shadow:none}.instant-img-container .control-nav li button:focus{text-decoration:underline}.instant-img-container .control-nav li button.active{color:#333;cursor:default;font-weight:600}.instant-img-container .control-nav li button.loading{background-image:url(../img/ajax-loader.gif)}@media screen and (max-width:800px){.instant-img-container .control-nav li{font-size:16px;margin:0}.instant-img-container .control-nav li button{padding-left:3px}}@media screen and (max-width:600px){.instant-img-container .control-nav li{width:33.333%;text-align:center;margin:0;padding-bottom:15px}}.instant-img-container .control-nav li.search-field{float:right;width:49%;margin:0;max-width:500px}@media screen and (max-width:600px){.instant-img-container .control-nav li.search-field{width:100%;display:block;position:static;padding-bottom:15px;text-align:left;max-width:100%}}.instant-img-container .control-nav li.search-field .searchResults{position:absolute;right:100.5%;top:7px;width:auto;height:34px;line-height:34px;padding:0 30px 0 10px;background:#ffffbf;border:1px solid #ebebae;-webkit-border-radius:3px;border-radius:3px;z-index:99;font-size:13px;font-weight:600;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;color:#444;text-shadow:0 1px 1px hsla(0,0%,100%,.3);-webkit-box-shadow:0 2px 3px rgba(0,0,0,.05);box-shadow:0 2px 3px rgba(0,0,0,.05)}.instant-img-container .control-nav li.search-field .searchResults span{cursor:help}.instant-img-container .control-nav li.search-field .searchResults a,.instant-img-container .control-nav li.search-field .searchResults span{line-height:34px}.instant-img-container .control-nav li.search-field .searchResults button{padding:0 10px;height:32px;line-height:32px;width:30px;position:absolute;left:auto;right:0;top:0}.instant-img-container .control-nav li.search-field .searchResults:after,.instant-img-container .control-nav li.search-field .searchResults:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;z-index:100}.instant-img-container .control-nav li.search-field .searchResults:after{border-color:hsla(62,46%,78%,0);border-left-color:#ffffbf;border-width:6px;margin-top:-6px}.instant-img-container .control-nav li.search-field .searchResults:before{border-color:transparent;border-left-color:#ebebae;border-width:7px;margin-top:-7px}.instant-img-container .control-nav li.search-field .searchResults.hide{opacity:0;visibility:hidden}.instant-img-container .control-nav li.search-field form{padding:0 1px 0 0;margin:0;position:relative;height:48px;display:block}.instant-img-container .control-nav li.search-field form:hover button{opacity:1}.instant-img-container .control-nav li.search-field input{width:100%;padding:0 10px 0 42px;border:1px solid #e1e1e1;background-color:#f7f7f7!important;height:46px;line-height:46px;-webkit-border-radius:3px;border-radius:3px;font-size:16px;-webkit-transition:padding .15s ease;-o-transition:padding .15s ease;transition:padding .15s ease}.instant-img-container .control-nav li.search-field input:focus{border-color:#999;-webkit-box-shadow:0 0 0 4px rgba(0,0,0,.075);box-shadow:0 0 0 4px rgba(0,0,0,.075)}.instant-img-container .control-nav li.search-field input.searching{padding-left:62px;background-image:url(../img/ajax-loader.gif);background-position:37px;background-repeat:no-repeat}.instant-img-container .control-nav li.search-field button{position:absolute;left:-2px;top:-1px;width:48px;height:48px;z-index:1;border:none!important;background:transparent!important;cursor:pointer;color:#666;-webkit-box-shadow:none!important;box-shadow:none!important;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;opacity:.5;margin:0;padding:0}.instant-img-container .control-nav li.search-field button:focus,.instant-img-container .control-nav li.search-field button:hover{outline:none;color:#5d72c3}.instant-img-container .control-nav li.search-field input[type=search]::-webkit-input-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}.instant-img-container .control-nav li.search-field input[type=search]:-moz-placeholder,.instant-img-container .control-nav li.search-field input[type=search]::-moz-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}.instant-img-container .control-nav li.search-field input[type=search]:-ms-input-placeholder{color:#ccc;font-weight:300;font-style:normal;font-size:14px}#photos{width:100%;width:calc(100% + 10px);margin:0 0 0 -5px;padding:0;position:relative}#photos .photo{width:20%;margin:0;padding:0 5px 10px;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}#photos .photo--wrap{position:relative}#photos .photo.in-view{opacity:1}#photos .photo.in-progress .fade{opacity:0!important;visibility:hidden!important}#photos .photo .img-wrap{display:block;overflow:hidden;position:relative}@media screen and (min-width:2000px){#photos .photo{width:20%}}@media screen and (max-width:1570px){#photos .photo{width:25%}}@media screen and (max-width:1270px){#photos .photo{width:33.333333%}}@media screen and (max-width:800px){#photos .photo{width:50%}}@media screen and (max-width:600px){#photos .photo{width:100%;margin:0 0 2%}}#photos .photo:focus a.upload img{opacity:.6}#photos .photo:focus .fade{opacity:1;visibility:visible}#photos .photo:focus .fade.user{opacity:.7}#photos .photo:focus-within .user-controls{opacity:1}#photos .photo a.upload{display:block;position:relative;background-color:#222;background-position:50%;background-repeat:no-repeat;background-image:url(../img/ajax-loader.gif);overflow:hidden}#photos .photo a.upload.loaded{background-image:none}#photos .photo a.upload:active,#photos .photo a.upload:focus{outline:none;border:none}#photos .photo a.upload img{-webkit-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease;width:100%;height:auto!important;padding:0;vertical-align:top}#photos .photo a.upload .status{visibility:hidden;opacity:0;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out;width:60px;height:60px;line-height:60px;-webkit-border-radius:4px;border-radius:4px;position:absolute;left:50%;top:50%;z-index:5;-webkit-transform:translate(-50%,-50%) scale(1.2);-ms-transform:translate(-50%,-50%) scale(1.2);transform:translate(-50%,-50%) scale(1.2);-webkit-box-shadow:0 2px 3px rgba(0,0,0,.25);box-shadow:0 2px 3px rgba(0,0,0,.25);background-position:50%;background-repeat:no-repeat}#photos .photo a.upload .status:before{font-family:FontAwesome;display:block;color:#fff;font-size:24px;opacity:.8}#photos .photo a.upload .status a{color:#fff}#photos .photo a.upload.errors .status,#photos .photo a.upload.success .status,#photos .photo a.upload.uploading .status{text-align:center;left:50%;top:50%;-webkit-transform:translate(-50%,-50%) scale(1);-ms-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}#photos .photo a.upload.uploading{cursor:default!important}#photos .photo a.upload.uploading .status{visibility:visible;opacity:1;background:hsla(0,0%,100%,.95) url(../img/ajax-loader-lg.gif) no-repeat 50%;-webkit-background-size:24px 24px;background-size:24px 24px}#photos .photo a.upload.uploading .status:before{display:none}#photos .photo a.upload.success{cursor:default!important}#photos .photo a.upload.success .status{visibility:visible;opacity:1;background-color:#63d875}#photos .photo a.upload.success .status:before{content:"\F00C";color:#fff}#photos .photo a.upload.success img{-webkit-transform:scale(1)!important;-ms-transform:scale(1)!important;transform:scale(1)!important}#photos .photo a.upload.errors{cursor:help!important}#photos .photo a.upload.errors .status{visibility:visible;opacity:1;background-color:#df3333}#photos .photo a.upload.errors .status:before{content:"\F12A";color:#fff;opacity:.8}#photos .photo.uploaded a.upload img{opacity:.25!important}#photos .photo.uploaded .options,#photos .photo.uploaded .user-controls{opacity:0!important;visibility:hidden!important}#photos .photo.in-progress a.upload img,#photos .photo:hover a.upload img{opacity:.7;-webkit-transform:scale(1.075);-ms-transform:scale(1.075);transform:scale(1.075)}#photos .photo.in-progress .options,#photos .photo:hover .options{opacity:1;visibility:visible}#photos .photo.in-progress .options i.heart-like,#photos .photo:hover .options i.heart-like{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}#photos .photo.in-progress .user-controls,#photos .photo:hover .user-controls{opacity:1}#photos .photo.in-progress .notice-msg{top:0;opacity:1}#photos .photo.in-progress .options,#photos .photo.in-progress .user-controls{opacity:0!important}#photos .photo .options{position:absolute;top:5px;right:5px;z-index:6;display:inline-block;width:auto;cursor:default!important;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;opacity:0;visibility:hidden;font-size:13px}#photos .photo .options i{font-size:14px}#photos .photo .options i.heart-like{color:#d13714;-webkit-transition:all .25s ease .05s;-o-transition:all .25s ease .05s;transition:all .25s ease .05s;-webkit-transform:scale(.55);-ms-transform:scale(.55);transform:scale(.55);margin-right:2px;position:relative;top:0;font-size:14px;opacity:.9}#photos .photo .options a,#photos .photo .options span{display:inline-block;vertical-align:top;line-height:30px;padding:0 10px;padding-top:1px;background:hsla(0,0%,100%,.5);margin:0;-webkit-border-radius:2px;border-radius:2px;color:#23282d;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}#photos .photo .options span{cursor:default}#photos .photo .options span:focus,#photos .photo .options span:hover{background-color:#fff}#photos .photo .options a{margin-left:2px}#photos .photo .options a:focus,#photos .photo .options a:hover{background-color:#fff}#photos .photo .options a i{position:relative;top:1px;left:1px}#photos .photo .user-controls{position:absolute;z-index:6;bottom:0;left:0;width:100%;background:rgba(0,0,0,.4);padding:0;opacity:.35;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}#photos .photo .photo-options{float:right;text-align:right;max-width:50%}#photos .photo .fade{-webkit-transition:all .35s ease;-o-transition:all .35s ease;transition:all .35s ease;color:#fff;background:hsla(0,0%,100%,.75);background:transparent;-webkit-border-radius:2px;border-radius:2px;height:34px;line-height:34px;font-size:17px;z-index:6;float:left;margin:1px 1px 1px 0;padding:0;color:hsla(0,0%,100%,.75);border:none!important;outline:none;cursor:pointer}#photos .photo .fade.edit-photo,#photos .photo .fade.edit-photo-admin,#photos .photo .fade.insert,#photos .photo .fade.set-featured{display:inline-block;width:34px;text-align:center;position:relative}#photos .photo .fade.edit-photo-admin i,#photos .photo .fade.edit-photo i,#photos .photo .fade.insert i,#photos .photo .fade.set-featured i{line-height:27px;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#photos .photo .fade.edit-photo-admin:focus,#photos .photo .fade.edit-photo-admin:hover,#photos .photo .fade.edit-photo:focus,#photos .photo .fade.edit-photo:hover,#photos .photo .fade.insert:focus,#photos .photo .fade.insert:hover,#photos .photo .fade.set-featured:focus,#photos .photo .fade.set-featured:hover{color:#222;background:hsla(0,0%,100%,.95)}#photos .photo .fade.edit-photo-admin{display:none}#photos .photo .fade.user{background:none;font-size:13px;max-width:48%;cursor:pointer;text-decoration:none;border:none;line-height:35px;height:36px;margin:0}#photos .photo .fade.user:focus,#photos .photo .fade.user:hover{text-decoration:underline}#photos .photo .fade.user .user-wrap{position:relative;padding-left:35px;display:block;width:100%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}#photos .photo .fade.user img{width:20px;max-width:20px;-webkit-border-radius:100%;border-radius:100%;position:absolute;left:8px;top:8px}#photos .photo .notice-msg{position:absolute;z-index:999;top:-40px;left:0;height:40px;line-height:40px;width:100%;background:rgba(0,0,0,.6);text-align:center;color:hsla(0,0%,100%,.9);font-size:12px;margin:0;padding:0;-webkit-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;transition:all .25s ease-in-out;opacity:0;z-index:9999}#photos .photo .notice-msg.has-error{top:-40px;opacity:0}#photos .edit-screen{position:absolute;left:0;top:0;width:100%;height:100%;z-index:999;background:hsla(0,0%,100%,.9);opacity:0;visibility:hidden;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;padding:8px;overflow-y:auto;-webkit-overflow-scrolling:touch;border:1px solid #e1e1e1;-webkit-transform:scale(1.025);-ms-transform:scale(1.025);transform:scale(1.025)}#photos .edit-screen.editing{visibility:visible;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}#photos .edit-screen--controls,#photos .edit-screen--title{display:block;background:#f7f7f7;border:1px solid #e1e1e1;padding:15px;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0}#photos .edit-screen--controls .button-primary,#photos .edit-screen--title .button-primary{float:right}#photos .edit-screen--controls{-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px}#photos .edit-screen--title{border-bottom:none}#photos .edit-screen--title p{font-size:12px;line-height:1.25;margin:0;color:#999}#photos .edit-screen--title p.heading{color:#222;margin:0 0 5px;font-weight:600;text-transform:uppercase}#photos .edit-screen label{margin:0;padding:15px;display:block;background:#fff;border:1px solid #e1e1e1;border-bottom:none;-webkit-border-radius:2px;border-radius:2px;position:relative}#photos .edit-screen span{display:block;font-size:11px;text-transform:uppercase;font-weight:600;margin:0 0 5px;color:#222;line-height:1}#photos .edit-screen textarea{resize:none}#photos .edit-screen input{font-size:12px;padding:0 5px;margin:0;height:30px;line-height:30px}#photos .edit-screen em{position:absolute;bottom:15px;right:15px;height:30px;line-height:30px;background:#777;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;color:#e1e1e1;font-style:normal;font-size:11px;padding:0 10px}.instant-images-settings{display:none;background-color:#efefef;border-top:1px solid #e7e7e7;border-bottom:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar{padding:20px 25px;overflow:hidden}.instant-images-settings .cnkt-sidebar .cta{float:left;width:50%}@media screen and (max-width:800px){.instant-images-settings .cnkt-sidebar .cta{float:none!important;width:100%!important}}.instant-images-settings .cnkt-sidebar .cta.ii-settings{width:31.333%}.instant-images-settings .cnkt-sidebar .cta.ii-plugins{width:68.666%;width:calc(68.666% - 25px);float:right}.instant-images-settings .cnkt-sidebar .cta h2{border:none;padding:17px 20px 3px;font-size:16px}.instant-images-settings .cnkt-sidebar .cta h2.w-border{border-top:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta h2+p{padding:0 20px 15px;margin:0!important;border-bottom:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta h2,.instant-images-settings .cnkt-sidebar .cta h2+p{background:#f7f7f7;margin:0}.instant-images-settings .cnkt-sidebar .cta ul.whats-new{list-style:disc;padding:0 0 10px 20px}.instant-images-settings .cnkt-sidebar .cta ul.whats-new li{margin:10px 0 0}.instant-images-settings .cnkt-sidebar .cta ul.whats-new li pre{display:inline-block;margin:0;padding:3px;background:#f7f7f7;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 0 1px #efefef;box-shadow:0 0 0 1px #efefef}.instant-images-settings .cnkt-sidebar .cta{background:#fff;padding:0 0 20px;margin:0 0 20px;overflow:hidden;position:relative;border:1px solid #e7e7e7}.instant-images-settings .cnkt-sidebar .cta.padding-bottom{padding-bottom:66px}.instant-images-settings .cnkt-sidebar .cnkt-sidebar h3,.instant-images-settings .cnkt-sidebar .cnkt-sidebar h4{margin-top:0}.instant-images-settings .cnkt-sidebar .cta-wrap{display:block;padding:10px 20px}.instant-images-settings .cnkt-sidebar .cta-wrap h4{padding:10px 0 7px;margin:0}.instant-images-settings .cnkt-sidebar .cta-wrap h4 span{display:inline-block;line-height:1;padding:8px 10px;-webkit-border-radius:2px;border-radius:2px;background:#ffc;color:#666}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin{width:48%;margin:2% 1% 0}@media screen and (max-width:1170px){.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin{width:100%;margin:2% 0 0}}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2{border:none;padding:0;font-size:16px}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2+p{padding:0;margin:0!important;border-bottom:none}.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2,.instant-images-settings .cnkt-sidebar .cnkt-plugin-installer .plugin h2+p{background:none;margin:0}.instant-images-settings table{margin-top:5px}.instant-img-container[data-media-popup=true]{background:#fff}.instant-img-container[data-media-popup=true] .header-wrap{display:none}.instant-img-container[data-media-popup=true] .instant-images-wrapper{padding:0 16px}.instant-images-sidebar-icon,.instant-images-sidebar-icon svg{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.instant-images-sidebar-icon svg{height:20px;width:20px}.instant-images-sidebar-icon svg,.instant-images-sidebar-icon svg *{stroke:#5d72c3!important;fill:#5d72c3!important}.components-panel .instant-img-container .load-more-wrap{display:block}.components-panel .no-results{padding:40px}.components-panel .no-results h3{font-size:18px}.components-panel .no-results p{font-size:13px}.components-panel #photos{width:100%;margin:0;padding:5px}.components-panel #photos .photo{width:100%;display:block;opacity:1!important;margin:0 0 5px;padding:0}.components-panel .control-nav{padding:0 16px 8px;border-bottom:1px solid #e2e4e7}.components-panel .control-nav li{font-size:13px}.components-panel .control-nav li a{padding:16px 24px 16px 0;height:auto;line-height:1.2}.components-panel .control-nav li.search-field{float:none;width:100%;padding:0;clear:both}.components-panel .control-nav li.search-field form{height:auto;width:calc(100% + 16px);margin-left:-8px}.components-panel .control-nav li.search-field:before{content:"";display:table;clear:both}.components-panel .control-nav li.search-field input{line-height:36px;height:36px;padding-right:8px;padding-left:30px;-webkit-border-radius:0;border-radius:0;border-color:#e2e4e7;font-size:13px;-webkit-border-radius:3px!important;border-radius:3px!important}.components-panel .control-nav li.search-field input.searching{padding-left:30px;background-position:95%}.components-panel .control-nav li.search-field button{position:absolute;right:auto;top:0;width:40px;height:36px;line-height:36px;padding:0;margin:0}.components-panel .control-nav li.search-field .searchResults{right:1px;left:auto;top:1px}.components-panel .control-nav li.search-field .searchResults:after,.components-panel .control-nav li.search-field .searchResults:before{display:none}.media-frame-content .instant-img-container .load-more-wrap{display:block}.instant-img-container #tooltip{display:inline-block;padding:8px 10px;background:#fff;position:fixed;left:auto;top:auto;z-index:999;display:block;opacity:0;visibility:hidden;margin-top:-37px;font-size:12px;color:#999;text-align:center;line-height:1;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 2px 3px rgba(0,0,0,.1);box-shadow:0 2px 3px rgba(0,0,0,.1);-webkit-transition:all .15s ease;-o-transition:all .15s ease;transition:all .15s ease}.instant-img-container #tooltip:after{top:100%;right:17px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:hsla(0,0%,100%,0);border-top-color:#fff;border-width:5px;margin-left:-5px}.instant-img-container #tooltip.over{opacity:.9;visibility:visible}.instant-img-container #tooltip.above{margin-top:37px}.instant-img-container #tooltip.above:after{top:-5px;border-top:none;border-bottom-color:#fff}.no-results{display:none;padding:150px 100px;text-align:center}.no-results.show{display:block}.no-results h3{font-size:24px;line-height:29px;margin:0 0 10px}.no-results p{font-size:16px;margin:0}@media screen and (max-width:800px){.no-results{padding:50px}}.orientation-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:7px 0;margin:0 0 10px;border-top:1px solid #efefef;border-bottom:1px solid #efefef;position:relative;top:-7px}.orientation-list span{opacity:.5;margin:0 10px 0 0;font-size:13px}.orientation-list ul{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex}.orientation-list ul li{margin:0 1px 0 0;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;padding:4px 6px;-webkit-transition:all .25s ease;-o-transition:all .25s ease;transition:all .25s ease;border:1px solid transparent;color:#999;font-size:13px}.orientation-list ul li:hover{color:#111}.orientation-list ul li:focus{border-color:#5d72c3;color:#111;outline:none}.orientation-list ul li.active{background-color:#5d72c3;border-color:#5d72c3;color:#fff;outline:none}.components-panel .orientation-list{position:static;text-align:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-top:none;background:#f7f7f7;margin-bottom:10px}.components-panel .orientation-list span{display:none}.components-panel .orientation-list ul{padding:0;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
|
dist/img/ajax-loader-lg.gif
CHANGED
File without changes
|
dist/img/ajax-loader.gif
CHANGED
File without changes
|
dist/img/logo-48x48.png
CHANGED
Binary file
|
dist/js/instant-images-block.js
CHANGED
@@ -109,11 +109,12 @@ module.exports = __webpack_require__(/*! ./lib/axios */ "./node_modules/axios/li
|
|
109 |
|
110 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
111 |
var settle = __webpack_require__(/*! ./../core/settle */ "./node_modules/axios/lib/core/settle.js");
|
|
|
112 |
var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
|
|
113 |
var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./node_modules/axios/lib/helpers/parseHeaders.js");
|
114 |
var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
115 |
var createError = __webpack_require__(/*! ../core/createError */ "./node_modules/axios/lib/core/createError.js");
|
116 |
-
var btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || __webpack_require__(/*! ./../helpers/btoa */ "./node_modules/axios/lib/helpers/btoa.js");
|
117 |
|
118 |
module.exports = function xhrAdapter(config) {
|
119 |
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
@@ -125,38 +126,23 @@ module.exports = function xhrAdapter(config) {
|
|
125 |
}
|
126 |
|
127 |
var request = new XMLHttpRequest();
|
128 |
-
var loadEvent = 'onreadystatechange';
|
129 |
-
var xDomain = false;
|
130 |
-
|
131 |
-
// For IE 8/9 CORS support
|
132 |
-
// Only supports POST and GET calls and doesn't returns the response headers.
|
133 |
-
// DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.
|
134 |
-
if ( true &&
|
135 |
-
typeof window !== 'undefined' &&
|
136 |
-
window.XDomainRequest && !('withCredentials' in request) &&
|
137 |
-
!isURLSameOrigin(config.url)) {
|
138 |
-
request = new window.XDomainRequest();
|
139 |
-
loadEvent = 'onload';
|
140 |
-
xDomain = true;
|
141 |
-
request.onprogress = function handleProgress() {};
|
142 |
-
request.ontimeout = function handleTimeout() {};
|
143 |
-
}
|
144 |
|
145 |
// HTTP basic authentication
|
146 |
if (config.auth) {
|
147 |
var username = config.auth.username || '';
|
148 |
-
var password = config.auth.password
|
149 |
requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
|
150 |
}
|
151 |
|
152 |
-
|
|
|
153 |
|
154 |
// Set the request timeout in MS
|
155 |
request.timeout = config.timeout;
|
156 |
|
157 |
// Listen for ready state
|
158 |
-
request
|
159 |
-
if (!request ||
|
160 |
return;
|
161 |
}
|
162 |
|
@@ -173,9 +159,8 @@ module.exports = function xhrAdapter(config) {
|
|
173 |
var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;
|
174 |
var response = {
|
175 |
data: responseData,
|
176 |
-
|
177 |
-
|
178 |
-
statusText: request.status === 1223 ? 'No Content' : request.statusText,
|
179 |
headers: responseHeaders,
|
180 |
config: config,
|
181 |
request: request
|
@@ -187,6 +172,18 @@ module.exports = function xhrAdapter(config) {
|
|
187 |
request = null;
|
188 |
};
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
// Handle low level network errors
|
191 |
request.onerror = function handleError() {
|
192 |
// Real errors are hidden from us by the browser
|
@@ -199,7 +196,11 @@ module.exports = function xhrAdapter(config) {
|
|
199 |
|
200 |
// Handle timeout
|
201 |
request.ontimeout = function handleTimeout() {
|
202 |
-
|
|
|
|
|
|
|
|
|
203 |
request));
|
204 |
|
205 |
// Clean up request
|
@@ -210,12 +211,10 @@ module.exports = function xhrAdapter(config) {
|
|
210 |
// This is only done if running in a standard browser environment.
|
211 |
// Specifically not if we're in a web worker, or react-native.
|
212 |
if (utils.isStandardBrowserEnv()) {
|
213 |
-
var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./node_modules/axios/lib/helpers/cookies.js");
|
214 |
-
|
215 |
// Add xsrf header
|
216 |
-
var xsrfValue = (config.withCredentials || isURLSameOrigin(
|
217 |
-
|
218 |
-
|
219 |
|
220 |
if (xsrfValue) {
|
221 |
requestHeaders[config.xsrfHeaderName] = xsrfValue;
|
@@ -236,8 +235,8 @@ module.exports = function xhrAdapter(config) {
|
|
236 |
}
|
237 |
|
238 |
// Add withCredentials to request if needed
|
239 |
-
if (config.withCredentials) {
|
240 |
-
request.withCredentials =
|
241 |
}
|
242 |
|
243 |
// Add responseType to request if needed
|
@@ -277,7 +276,7 @@ module.exports = function xhrAdapter(config) {
|
|
277 |
});
|
278 |
}
|
279 |
|
280 |
-
if (requestData
|
281 |
requestData = null;
|
282 |
}
|
283 |
|
@@ -302,6 +301,7 @@ module.exports = function xhrAdapter(config) {
|
|
302 |
var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js");
|
303 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
304 |
var Axios = __webpack_require__(/*! ./core/Axios */ "./node_modules/axios/lib/core/Axios.js");
|
|
|
305 |
var defaults = __webpack_require__(/*! ./defaults */ "./node_modules/axios/lib/defaults.js");
|
306 |
|
307 |
/**
|
@@ -331,7 +331,7 @@ axios.Axios = Axios;
|
|
331 |
|
332 |
// Factory for creating new instances
|
333 |
axios.create = function create(instanceConfig) {
|
334 |
-
return createInstance(
|
335 |
};
|
336 |
|
337 |
// Expose Cancel & CancelToken
|
@@ -345,6 +345,9 @@ axios.all = function all(promises) {
|
|
345 |
};
|
346 |
axios.spread = __webpack_require__(/*! ./helpers/spread */ "./node_modules/axios/lib/helpers/spread.js");
|
347 |
|
|
|
|
|
|
|
348 |
module.exports = axios;
|
349 |
|
350 |
// Allow use of default import syntax in TypeScript
|
@@ -480,10 +483,11 @@ module.exports = function isCancel(value) {
|
|
480 |
"use strict";
|
481 |
|
482 |
|
483 |
-
var defaults = __webpack_require__(/*! ./../defaults */ "./node_modules/axios/lib/defaults.js");
|
484 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
|
|
485 |
var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./node_modules/axios/lib/core/InterceptorManager.js");
|
486 |
var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./node_modules/axios/lib/core/dispatchRequest.js");
|
|
|
487 |
|
488 |
/**
|
489 |
* Create a new instance of Axios
|
@@ -507,13 +511,22 @@ Axios.prototype.request = function request(config) {
|
|
507 |
/*eslint no-param-reassign:0*/
|
508 |
// Allow for axios('example/url'[, config]) a la fetch API
|
509 |
if (typeof config === 'string') {
|
510 |
-
config =
|
511 |
-
|
512 |
-
|
|
|
513 |
}
|
514 |
|
515 |
-
config =
|
516 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
|
518 |
// Hook up interceptors middleware
|
519 |
var chain = [dispatchRequest, undefined];
|
@@ -534,13 +547,19 @@ Axios.prototype.request = function request(config) {
|
|
534 |
return promise;
|
535 |
};
|
536 |
|
|
|
|
|
|
|
|
|
|
|
537 |
// Provide aliases for supported request methods
|
538 |
utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
539 |
/*eslint func-names:0*/
|
540 |
Axios.prototype[method] = function(url, config) {
|
541 |
-
return this.request(
|
542 |
method: method,
|
543 |
-
url: url
|
|
|
544 |
}));
|
545 |
};
|
546 |
});
|
@@ -548,7 +567,7 @@ utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData
|
|
548 |
utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
549 |
/*eslint func-names:0*/
|
550 |
Axios.prototype[method] = function(url, data, config) {
|
551 |
-
return this.request(
|
552 |
method: method,
|
553 |
url: url,
|
554 |
data: data
|
@@ -623,6 +642,38 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
623 |
module.exports = InterceptorManager;
|
624 |
|
625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
/***/ }),
|
627 |
|
628 |
/***/ "./node_modules/axios/lib/core/createError.js":
|
@@ -669,8 +720,6 @@ var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/util
|
|
669 |
var transformData = __webpack_require__(/*! ./transformData */ "./node_modules/axios/lib/core/transformData.js");
|
670 |
var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js");
|
671 |
var defaults = __webpack_require__(/*! ../defaults */ "./node_modules/axios/lib/defaults.js");
|
672 |
-
var isAbsoluteURL = __webpack_require__(/*! ./../helpers/isAbsoluteURL */ "./node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
673 |
-
var combineURLs = __webpack_require__(/*! ./../helpers/combineURLs */ "./node_modules/axios/lib/helpers/combineURLs.js");
|
674 |
|
675 |
/**
|
676 |
* Throws a `Cancel` if cancellation has been requested.
|
@@ -690,11 +739,6 @@ function throwIfCancellationRequested(config) {
|
|
690 |
module.exports = function dispatchRequest(config) {
|
691 |
throwIfCancellationRequested(config);
|
692 |
|
693 |
-
// Support baseURL config
|
694 |
-
if (config.baseURL && !isAbsoluteURL(config.url)) {
|
695 |
-
config.url = combineURLs(config.baseURL, config.url);
|
696 |
-
}
|
697 |
-
|
698 |
// Ensure headers exist
|
699 |
config.headers = config.headers || {};
|
700 |
|
@@ -709,7 +753,7 @@ module.exports = function dispatchRequest(config) {
|
|
709 |
config.headers = utils.merge(
|
710 |
config.headers.common || {},
|
711 |
config.headers[config.method] || {},
|
712 |
-
config.headers
|
713 |
);
|
714 |
|
715 |
utils.forEach(
|
@@ -778,12 +822,132 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
778 |
if (code) {
|
779 |
error.code = code;
|
780 |
}
|
|
|
781 |
error.request = request;
|
782 |
error.response = response;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
return error;
|
784 |
};
|
785 |
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
/***/ }),
|
788 |
|
789 |
/***/ "./node_modules/axios/lib/core/settle.js":
|
@@ -807,7 +971,6 @@ var createError = __webpack_require__(/*! ./createError */ "./node_modules/axios
|
|
807 |
*/
|
808 |
module.exports = function settle(resolve, reject, response) {
|
809 |
var validateStatus = response.config.validateStatus;
|
810 |
-
// Note: status is not exposed by XDomainRequest
|
811 |
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
812 |
resolve(response);
|
813 |
} else {
|
@@ -884,7 +1047,7 @@ function getDefaultAdapter() {
|
|
884 |
if (typeof XMLHttpRequest !== 'undefined') {
|
885 |
// For browsers use XHR adapter
|
886 |
adapter = __webpack_require__(/*! ./adapters/xhr */ "./node_modules/axios/lib/adapters/xhr.js");
|
887 |
-
} else if (typeof process !== 'undefined') {
|
888 |
// For node use HTTP adapter
|
889 |
adapter = __webpack_require__(/*! ./adapters/http */ "./node_modules/axios/lib/adapters/xhr.js");
|
890 |
}
|
@@ -895,6 +1058,7 @@ var defaults = {
|
|
895 |
adapter: getDefaultAdapter(),
|
896 |
|
897 |
transformRequest: [function transformRequest(data, headers) {
|
|
|
898 |
normalizeHeaderName(headers, 'Content-Type');
|
899 |
if (utils.isFormData(data) ||
|
900 |
utils.isArrayBuffer(data) ||
|
@@ -939,6 +1103,7 @@ var defaults = {
|
|
939 |
xsrfHeaderName: 'X-XSRF-TOKEN',
|
940 |
|
941 |
maxContentLength: -1,
|
|
|
942 |
|
943 |
validateStatus: function validateStatus(status) {
|
944 |
return status >= 200 && status < 300;
|
@@ -986,54 +1151,6 @@ module.exports = function bind(fn, thisArg) {
|
|
986 |
};
|
987 |
|
988 |
|
989 |
-
/***/ }),
|
990 |
-
|
991 |
-
/***/ "./node_modules/axios/lib/helpers/btoa.js":
|
992 |
-
/*!************************************************!*\
|
993 |
-
!*** ./node_modules/axios/lib/helpers/btoa.js ***!
|
994 |
-
\************************************************/
|
995 |
-
/*! no static exports found */
|
996 |
-
/***/ (function(module, exports, __webpack_require__) {
|
997 |
-
|
998 |
-
"use strict";
|
999 |
-
|
1000 |
-
|
1001 |
-
// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js
|
1002 |
-
|
1003 |
-
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
1004 |
-
|
1005 |
-
function E() {
|
1006 |
-
this.message = 'String contains an invalid character';
|
1007 |
-
}
|
1008 |
-
E.prototype = new Error;
|
1009 |
-
E.prototype.code = 5;
|
1010 |
-
E.prototype.name = 'InvalidCharacterError';
|
1011 |
-
|
1012 |
-
function btoa(input) {
|
1013 |
-
var str = String(input);
|
1014 |
-
var output = '';
|
1015 |
-
for (
|
1016 |
-
// initialize result and counter
|
1017 |
-
var block, charCode, idx = 0, map = chars;
|
1018 |
-
// if the next str index does not exist:
|
1019 |
-
// change the mapping table to "="
|
1020 |
-
// check if d has no fractional digits
|
1021 |
-
str.charAt(idx | 0) || (map = '=', idx % 1);
|
1022 |
-
// "8 - idx % 1 * 8" generates the sequence 2, 4, 6, 8
|
1023 |
-
output += map.charAt(63 & block >> 8 - idx % 1 * 8)
|
1024 |
-
) {
|
1025 |
-
charCode = str.charCodeAt(idx += 3 / 4);
|
1026 |
-
if (charCode > 0xFF) {
|
1027 |
-
throw new E();
|
1028 |
-
}
|
1029 |
-
block = block << 8 | charCode;
|
1030 |
-
}
|
1031 |
-
return output;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
module.exports = btoa;
|
1035 |
-
|
1036 |
-
|
1037 |
/***/ }),
|
1038 |
|
1039 |
/***/ "./node_modules/axios/lib/helpers/buildURL.js":
|
@@ -1050,7 +1167,6 @@ var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/util
|
|
1050 |
|
1051 |
function encode(val) {
|
1052 |
return encodeURIComponent(val).
|
1053 |
-
replace(/%40/gi, '@').
|
1054 |
replace(/%3A/gi, ':').
|
1055 |
replace(/%24/g, '$').
|
1056 |
replace(/%2C/gi, ',').
|
@@ -1105,6 +1221,11 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
1105 |
}
|
1106 |
|
1107 |
if (serializedParams) {
|
|
|
|
|
|
|
|
|
|
|
1108 |
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
|
1109 |
}
|
1110 |
|
@@ -1156,50 +1277,50 @@ module.exports = (
|
|
1156 |
utils.isStandardBrowserEnv() ?
|
1157 |
|
1158 |
// Standard browser envs support document.cookie
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
|
1181 |
-
|
1182 |
-
|
1183 |
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
|
1195 |
// Non standard browser env (web workers, react-native) lack needed support.
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
);
|
1204 |
|
1205 |
|
@@ -1229,6 +1350,29 @@ module.exports = function isAbsoluteURL(url) {
|
|
1229 |
};
|
1230 |
|
1231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1232 |
/***/ }),
|
1233 |
|
1234 |
/***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
@@ -1248,64 +1392,64 @@ module.exports = (
|
|
1248 |
|
1249 |
// Standard browser envs have full support of the APIs needed to test
|
1250 |
// whether the request URL is of the same origin as current location.
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
|
1256 |
-
|
1257 |
* Parse a URL to discover it's components
|
1258 |
*
|
1259 |
* @param {String} url The URL to be parsed
|
1260 |
* @returns {Object}
|
1261 |
*/
|
1262 |
-
|
1263 |
-
|
1264 |
|
1265 |
-
|
1266 |
// IE needs attribute set twice to normalize properties
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
|
1271 |
-
|
1272 |
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
|
1288 |
-
|
1289 |
|
1290 |
-
|
1291 |
* Determine if a URL shares the same origin as the current location
|
1292 |
*
|
1293 |
* @param {String} requestURL The URL to test
|
1294 |
* @returns {boolean} True if URL shares the same origin, otherwise false
|
1295 |
*/
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
parsed.host === originURL.host);
|
1300 |
-
|
1301 |
-
|
1302 |
|
1303 |
// Non standard browser envs (web workers, react-native) lack needed support.
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
);
|
1310 |
|
1311 |
|
@@ -1450,7 +1594,6 @@ module.exports = function spread(callback) {
|
|
1450 |
|
1451 |
|
1452 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
1453 |
-
var isBuffer = __webpack_require__(/*! is-buffer */ "./node_modules/is-buffer/index.js");
|
1454 |
|
1455 |
/*global toString:true*/
|
1456 |
|
@@ -1468,6 +1611,27 @@ function isArray(val) {
|
|
1468 |
return toString.call(val) === '[object Array]';
|
1469 |
}
|
1470 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1471 |
/**
|
1472 |
* Determine if a value is an ArrayBuffer
|
1473 |
*
|
@@ -1525,23 +1689,28 @@ function isNumber(val) {
|
|
1525 |
}
|
1526 |
|
1527 |
/**
|
1528 |
-
* Determine if a value is
|
1529 |
*
|
1530 |
* @param {Object} val The value to test
|
1531 |
-
* @returns {boolean} True if
|
1532 |
*/
|
1533 |
-
function
|
1534 |
-
return typeof val === '
|
1535 |
}
|
1536 |
|
1537 |
/**
|
1538 |
-
* Determine if a value is
|
1539 |
*
|
1540 |
* @param {Object} val The value to test
|
1541 |
-
* @
|
1542 |
*/
|
1543 |
-
function
|
1544 |
-
|
|
|
|
|
|
|
|
|
|
|
1545 |
}
|
1546 |
|
1547 |
/**
|
@@ -1626,9 +1795,13 @@ function trim(str) {
|
|
1626 |
*
|
1627 |
* react-native:
|
1628 |
* navigator.product -> 'ReactNative'
|
|
|
|
|
1629 |
*/
|
1630 |
function isStandardBrowserEnv() {
|
1631 |
-
if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative'
|
|
|
|
|
1632 |
return false;
|
1633 |
}
|
1634 |
return (
|
@@ -1696,8 +1869,12 @@ function forEach(obj, fn) {
|
|
1696 |
function merge(/* obj1, obj2, obj3, ... */) {
|
1697 |
var result = {};
|
1698 |
function assignValue(val, key) {
|
1699 |
-
if (
|
1700 |
result[key] = merge(result[key], val);
|
|
|
|
|
|
|
|
|
1701 |
} else {
|
1702 |
result[key] = val;
|
1703 |
}
|
@@ -1728,6 +1905,19 @@ function extend(a, b, thisArg) {
|
|
1728 |
return a;
|
1729 |
}
|
1730 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1731 |
module.exports = {
|
1732 |
isArray: isArray,
|
1733 |
isArrayBuffer: isArrayBuffer,
|
@@ -1737,6 +1927,7 @@ module.exports = {
|
|
1737 |
isString: isString,
|
1738 |
isNumber: isNumber,
|
1739 |
isObject: isObject,
|
|
|
1740 |
isUndefined: isUndefined,
|
1741 |
isDate: isDate,
|
1742 |
isFile: isFile,
|
@@ -1748,7 +1939,8 @@ module.exports = {
|
|
1748 |
forEach: forEach,
|
1749 |
merge: merge,
|
1750 |
extend: extend,
|
1751 |
-
trim: trim
|
|
|
1752 |
};
|
1753 |
|
1754 |
|
@@ -4981,38 +5173,6 @@ return ImagesLoaded;
|
|
4981 |
});
|
4982 |
|
4983 |
|
4984 |
-
/***/ }),
|
4985 |
-
|
4986 |
-
/***/ "./node_modules/is-buffer/index.js":
|
4987 |
-
/*!*****************************************!*\
|
4988 |
-
!*** ./node_modules/is-buffer/index.js ***!
|
4989 |
-
\*****************************************/
|
4990 |
-
/*! no static exports found */
|
4991 |
-
/***/ (function(module, exports) {
|
4992 |
-
|
4993 |
-
/*!
|
4994 |
-
* Determine if an object is a Buffer
|
4995 |
-
*
|
4996 |
-
* @author Feross Aboukhadijeh <https://feross.org>
|
4997 |
-
* @license MIT
|
4998 |
-
*/
|
4999 |
-
|
5000 |
-
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
5001 |
-
// Object.prototype.constructor. Remove this eventually
|
5002 |
-
module.exports = function (obj) {
|
5003 |
-
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
5004 |
-
}
|
5005 |
-
|
5006 |
-
function isBuffer (obj) {
|
5007 |
-
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
5008 |
-
}
|
5009 |
-
|
5010 |
-
// For Node v0.10 support. Remove this eventually.
|
5011 |
-
function isSlowBuffer (obj) {
|
5012 |
-
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
5013 |
-
}
|
5014 |
-
|
5015 |
-
|
5016 |
/***/ }),
|
5017 |
|
5018 |
/***/ "./node_modules/masonry-layout/masonry.js":
|
@@ -27681,10 +27841,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
27681 |
value: true
|
27682 |
});
|
27683 |
|
27684 |
-
var _classnames = __webpack_require__(/*! classnames */ "./node_modules/classnames/index.js");
|
27685 |
-
|
27686 |
-
var _classnames2 = _interopRequireDefault(_classnames);
|
27687 |
-
|
27688 |
var _icon = __webpack_require__(/*! ../icon */ "./src/js/block/components/icon.js");
|
27689 |
|
27690 |
var _icon2 = _interopRequireDefault(_icon);
|
@@ -27703,10 +27859,7 @@ var _PhotoList2 = _interopRequireDefault(_PhotoList);
|
|
27703 |
|
27704 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27705 |
|
27706 |
-
var
|
27707 |
-
var _wp$editPost = wp.editPost,
|
27708 |
-
PluginSidebar = _wp$editPost.PluginSidebar,
|
27709 |
-
PluginSidebarMoreMenuItem = _wp$editPost.PluginSidebarMoreMenuItem;
|
27710 |
|
27711 |
|
27712 |
var Unsplash = function Unsplash() {
|
@@ -27720,7 +27873,14 @@ var Unsplash = function Unsplash() {
|
|
27720 |
React.createElement(
|
27721 |
"div",
|
27722 |
{ className: "instant-img-container" },
|
27723 |
-
React.createElement(_PhotoList2.default, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27724 |
)
|
27725 |
);
|
27726 |
};
|
@@ -27739,7 +27899,7 @@ exports.default = Unsplash;
|
|
27739 |
|
27740 |
|
27741 |
Object.defineProperty(exports, "__esModule", {
|
27742 |
-
|
27743 |
});
|
27744 |
|
27745 |
var _classnames = __webpack_require__(/*! classnames */ "./node_modules/classnames/index.js");
|
@@ -27752,21 +27912,19 @@ var _icon2 = _interopRequireDefault(_icon);
|
|
27752 |
|
27753 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27754 |
|
27755 |
-
var
|
27756 |
-
var _wp$editPost = wp.editPost,
|
27757 |
-
PluginSidebar = _wp$editPost.PluginSidebar,
|
27758 |
-
PluginSidebarMoreMenuItem = _wp$editPost.PluginSidebarMoreMenuItem;
|
27759 |
|
27760 |
|
27761 |
var UnsplashMenu = function UnsplashMenu() {
|
27762 |
-
|
27763 |
-
|
27764 |
-
|
27765 |
-
|
27766 |
-
|
27767 |
-
|
27768 |
-
|
27769 |
-
|
|
|
27770 |
};
|
27771 |
exports.default = UnsplashMenu;
|
27772 |
|
@@ -27782,10 +27940,6 @@ exports.default = UnsplashMenu;
|
|
27782 |
"use strict";
|
27783 |
|
27784 |
|
27785 |
-
var _icon = __webpack_require__(/*! ./components/icon */ "./src/js/block/components/icon.js");
|
27786 |
-
|
27787 |
-
var _icon2 = _interopRequireDefault(_icon);
|
27788 |
-
|
27789 |
var _index = __webpack_require__(/*! ./components/unsplash/index */ "./src/js/block/components/unsplash/index.js");
|
27790 |
|
27791 |
var _index2 = _interopRequireDefault(_index);
|
@@ -27797,24 +27951,21 @@ var _menu2 = _interopRequireDefault(_menu);
|
|
27797 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27798 |
|
27799 |
var Fragment = wp.element.Fragment;
|
27800 |
-
var _wp$editPost = wp.editPost,
|
27801 |
-
PluginSidebar = _wp$editPost.PluginSidebar,
|
27802 |
-
PluginSidebarMoreMenuItem = _wp$editPost.PluginSidebarMoreMenuItem;
|
27803 |
var registerPlugin = wp.plugins.registerPlugin;
|
27804 |
|
27805 |
|
27806 |
var InstantImages = function InstantImages() {
|
27807 |
-
|
27808 |
-
|
27809 |
-
|
27810 |
-
|
27811 |
-
|
27812 |
-
|
27813 |
};
|
27814 |
|
27815 |
// Register the sidebar plugin
|
27816 |
-
registerPlugin(
|
27817 |
-
|
27818 |
});
|
27819 |
|
27820 |
/***/ }),
|
@@ -27830,10 +27981,11 @@ registerPlugin('instant-images', {
|
|
27830 |
|
27831 |
|
27832 |
module.exports = {
|
27833 |
-
photo_api:
|
27834 |
-
|
27835 |
-
|
27836 |
-
|
|
|
27837 |
};
|
27838 |
|
27839 |
/***/ }),
|
@@ -27849,7 +28001,7 @@ module.exports = {
|
|
27849 |
|
27850 |
|
27851 |
Object.defineProperty(exports, "__esModule", {
|
27852 |
-
|
27853 |
});
|
27854 |
|
27855 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -27875,821 +28027,864 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
27875 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
27876 |
|
27877 |
var Photo = function (_React$Component) {
|
27878 |
-
|
27879 |
-
|
27880 |
-
|
27881 |
-
|
27882 |
-
|
27883 |
-
|
27884 |
-
|
27885 |
-
|
27886 |
-
|
27887 |
-
|
27888 |
-
|
27889 |
-
|
27890 |
-
|
27891 |
-
|
27892 |
-
|
27893 |
-
|
27894 |
-
|
27895 |
-
|
27896 |
-
|
27897 |
-
|
27898 |
-
|
27899 |
-
|
27900 |
-
|
27901 |
-
|
27902 |
-
|
27903 |
-
|
27904 |
-
|
27905 |
-
|
27906 |
-
|
27907 |
-
|
27908 |
-
|
27909 |
-
|
27910 |
-
|
27911 |
-
|
27912 |
-
|
27913 |
-
|
27914 |
-
|
27915 |
-
|
27916 |
-
|
27917 |
-
|
27918 |
-
|
27919 |
-
|
27920 |
-
|
27921 |
-
|
27922 |
-
|
27923 |
-
|
27924 |
-
|
27925 |
-
|
27926 |
|
27927 |
-
|
27928 |
-
|
|
|
|
|
|
|
27929 |
|
27930 |
-
/*
|
27931 |
-
* download
|
27932 |
-
* Function to trigger the image download
|
27933 |
-
*
|
27934 |
-
* @since 4.3
|
27935 |
-
*/
|
27936 |
|
|
|
|
|
|
|
|
|
|
|
27937 |
|
27938 |
-
|
27939 |
-
|
27940 |
-
|
27941 |
-
|
27942 |
-
e.preventDefault();
|
27943 |
-
var self = this;
|
27944 |
-
|
27945 |
-
var target = e.currentTarget; // get current <a/>
|
27946 |
-
var photo = target.parentElement.parentElement.parentElement; // Get parent .photo el
|
27947 |
-
var notice = photo.querySelector('.notice-msg'); // Locate .notice-msg div
|
27948 |
-
|
27949 |
-
if (!target.classList.contains('upload')) {
|
27950 |
-
// If target is .download-photo, switch target definition
|
27951 |
-
target = photo.querySelector('a.upload');
|
27952 |
-
}
|
27953 |
-
|
27954 |
-
if (target.classList.contains('success') || this.inProgress) {
|
27955 |
-
return false; // Exit if already uploaded or in progress.
|
27956 |
-
}
|
27957 |
-
this.inProgress = true;
|
27958 |
-
|
27959 |
-
target.classList.add('uploading');
|
27960 |
-
photo.classList.add('in-progress');
|
27961 |
-
|
27962 |
-
// Status messaging
|
27963 |
-
notice.innerHTML = instant_img_localize.saving;
|
27964 |
-
setTimeout(function () {
|
27965 |
-
// Change notice after 3 seconds
|
27966 |
-
notice.innerHTML = instant_img_localize.resizing;
|
27967 |
-
setTimeout(function () {
|
27968 |
-
// Change notice again after 5 seconds (Still resizing...)
|
27969 |
-
notice.innerHTML = instant_img_localize.resizing_still;
|
27970 |
-
}, 5000);
|
27971 |
-
}, 3000);
|
27972 |
-
|
27973 |
-
// API URL
|
27974 |
-
var api = instant_img_localize.root + 'instant-images/download/';
|
27975 |
-
|
27976 |
-
// Data Params
|
27977 |
-
var data = {
|
27978 |
-
id: target.getAttribute('data-id'),
|
27979 |
-
image_url: target.getAttribute('data-url'),
|
27980 |
-
filename: target.getAttribute('data-id') + '.jpg',
|
27981 |
-
custom_filename: target.getAttribute('data-filename'),
|
27982 |
-
title: target.getAttribute('data-title'),
|
27983 |
-
alt: target.getAttribute('data-alt'),
|
27984 |
-
caption: target.getAttribute('data-caption'),
|
27985 |
-
parent_id: instant_img_localize.parent_id
|
27986 |
-
|
27987 |
-
// Config Params
|
27988 |
-
};var config = {
|
27989 |
-
headers: {
|
27990 |
-
'X-WP-Nonce': instant_img_localize.nonce,
|
27991 |
-
'Content-Type': 'application/json'
|
27992 |
-
}
|
27993 |
-
};
|
27994 |
-
|
27995 |
-
_axios2.default.post(api, JSON.stringify(data), config).then(function (res) {
|
27996 |
-
|
27997 |
-
var response = res.data;
|
27998 |
-
|
27999 |
-
if (response) {
|
28000 |
-
|
28001 |
-
// Successful response from server
|
28002 |
-
var success = response.success;
|
28003 |
-
var id = response.id;
|
28004 |
-
var attachment = response.attachment;
|
28005 |
-
var admin_url = response.admin_url;
|
28006 |
-
var msg = response.msg;
|
28007 |
-
|
28008 |
-
if (success) {
|
28009 |
-
|
28010 |
-
// Edit URL
|
28011 |
-
var edit_url = admin_url + 'post.php?post=' + attachment.id + '&action=edit';
|
28012 |
-
|
28013 |
-
// Success/Upload Complete
|
28014 |
-
self.uploadComplete(target, photo, msg, edit_url, attachment.id);
|
28015 |
-
|
28016 |
-
// Trigger Download Counter at Unsplash
|
28017 |
-
self.triggerUnsplashDownload(id);
|
28018 |
-
|
28019 |
-
// Set Featured Image [Gutenberg Sidebar]
|
28020 |
-
if (self.displayGutenbergControl && self.setAsFeaturedImage) {
|
28021 |
-
self.SetFeaturedImage(attachment.id);
|
28022 |
-
self.setAsFeaturedImage = false;
|
28023 |
-
self.closeMediaModal();
|
28024 |
-
}
|
28025 |
-
|
28026 |
-
// Insert Image [Gutenberg Sidebar]
|
28027 |
-
if (self.displayGutenbergControl && self.insertIntoPost) {
|
28028 |
-
if (attachment.url) {
|
28029 |
-
self.InsertImage(attachment.url, attachment.caption, attachment.alt);
|
28030 |
-
self.closeMediaModal();
|
28031 |
-
}
|
28032 |
-
self.insertIntoPost = false;
|
28033 |
-
}
|
28034 |
-
|
28035 |
-
// If is media popup, redirect user to media-upload settings
|
28036 |
-
if (self.container.dataset.mediaPopup === 'true' && !self.is_block_editor) {
|
28037 |
-
window.location = 'media-upload.php?type=image&tab=library&attachment_id=' + attachment.id;
|
28038 |
-
}
|
28039 |
-
} else {
|
28040 |
-
// Error
|
28041 |
-
self.uploadError(target, photo, notice, msg);
|
28042 |
-
}
|
28043 |
-
} else {
|
28044 |
-
// Error
|
28045 |
-
self.uploadError(target, photo, notice, instant_img_localize.error_upload);
|
28046 |
-
}
|
28047 |
-
}).catch(function (error) {
|
28048 |
-
console.log(error);
|
28049 |
-
});
|
28050 |
-
}
|
28051 |
-
|
28052 |
-
/*
|
28053 |
-
* triggerUnsplashDownload
|
28054 |
-
* Function to trigger download action at unsplash.com
|
28055 |
-
* This is used to give authors download credits and nothing more
|
28056 |
-
*
|
28057 |
-
* @param id string The ID of the image
|
28058 |
-
* @since 3.1
|
28059 |
-
*/
|
28060 |
-
|
28061 |
-
}, {
|
28062 |
-
key: 'triggerUnsplashDownload',
|
28063 |
-
value: function triggerUnsplashDownload(id) {
|
28064 |
-
|
28065 |
-
var url = _API2.default.photo_api + '/' + id + '/download/' + _API2.default.app_id;
|
28066 |
-
|
28067 |
-
fetch(url).then(function (data) {
|
28068 |
-
return data.json();
|
28069 |
-
}).then(function (data) {
|
28070 |
-
// Success, nothing else happens here
|
28071 |
-
}).catch(function (error) {
|
28072 |
-
console.log(error);
|
28073 |
-
});
|
28074 |
-
}
|
28075 |
-
|
28076 |
-
/*
|
28077 |
-
* setFeaturedImageClick
|
28078 |
-
* Function used to trigger a download and then set as featured image
|
28079 |
-
*
|
28080 |
-
* @since 4.0
|
28081 |
-
*/
|
28082 |
-
|
28083 |
-
}, {
|
28084 |
-
key: 'setFeaturedImageClick',
|
28085 |
-
value: function setFeaturedImageClick(e) {
|
28086 |
-
var target = e.currentTarget;
|
28087 |
-
if (!target) {
|
28088 |
-
return false;
|
28089 |
-
}
|
28090 |
-
|
28091 |
-
this.hideTooltip(e);
|
28092 |
-
var parent = target.parentNode.parentNode.parentNode;
|
28093 |
-
var photo = parent.querySelector('a.upload');
|
28094 |
-
if (photo) {
|
28095 |
-
this.setAsFeaturedImage = true;
|
28096 |
-
photo.click();
|
28097 |
-
}
|
28098 |
-
}
|
28099 |
-
|
28100 |
-
/*
|
28101 |
-
* insertImageIntoPost
|
28102 |
-
* Function used to insert an image directly into the block (Gutenberg) editor.
|
28103 |
-
*
|
28104 |
-
* @since 4.0
|
28105 |
-
*/
|
28106 |
-
|
28107 |
-
}, {
|
28108 |
-
key: 'insertImageIntoPost',
|
28109 |
-
value: function insertImageIntoPost(e) {
|
28110 |
-
var target = e.currentTarget;
|
28111 |
-
if (!target) {
|
28112 |
-
return false;
|
28113 |
-
}
|
28114 |
-
|
28115 |
-
this.hideTooltip(e);
|
28116 |
-
var parent = target.parentNode.parentNode.parentNode;
|
28117 |
-
var photo = parent.querySelector('a.upload');
|
28118 |
-
if (photo) {
|
28119 |
-
this.insertIntoPost = true;
|
28120 |
-
photo.click();
|
28121 |
-
}
|
28122 |
-
}
|
28123 |
-
|
28124 |
-
/*
|
28125 |
-
* uploadComplete
|
28126 |
-
* Function runs when upload has completed
|
28127 |
-
*
|
28128 |
-
* @param target element clicked item
|
28129 |
-
* @param photo element Nearest parent .photo
|
28130 |
-
* @param msg string Success Msg
|
28131 |
-
* @param url string The attachment edit link
|
28132 |
-
* @param id string The attachment id
|
28133 |
-
* @since 3.0
|
28134 |
-
*/
|
28135 |
-
|
28136 |
-
}, {
|
28137 |
-
key: 'uploadComplete',
|
28138 |
-
value: function uploadComplete(target, photo, msg, url, id) {
|
28139 |
-
|
28140 |
-
this.setImageTitle(target, msg);
|
28141 |
-
|
28142 |
-
photo.classList.remove('in-progress');
|
28143 |
-
photo.classList.add('uploaded');
|
28144 |
-
|
28145 |
-
photo.querySelector('.edit-photo').style.display = 'none'; // Hide edit-photo button
|
28146 |
-
photo.querySelector('.edit-photo-admin').style.display = 'inline-block'; // Show edit-photo-admin button
|
28147 |
-
photo.querySelector('.edit-photo-admin').href = url; // Add admin edit link
|
28148 |
-
photo.querySelector('.edit-photo-admin').target = '_balnk'; // Add new window
|
28149 |
-
|
28150 |
-
target.classList.remove('uploading');
|
28151 |
-
target.classList.remove('resizing');
|
28152 |
-
target.classList.add('success');
|
28153 |
-
this.inProgress = false;
|
28154 |
-
|
28155 |
-
// Gutenberg Sidebar
|
28156 |
-
if (this.is_block_editor) {
|
28157 |
-
photo.querySelector('.insert').style.display = 'none'; // Hide insert button
|
28158 |
-
photo.querySelector('.set-featured').style.display = 'none'; // Hide set-featured button
|
28159 |
-
}
|
28160 |
-
|
28161 |
-
// Media Router
|
28162 |
-
this.mediaRouter(id);
|
28163 |
-
|
28164 |
-
// Deprecated in 4.3
|
28165 |
-
// Was previously used in the Media Popup Context.
|
28166 |
-
// Refresh Media Library contents on edit pages
|
28167 |
-
if (this.container.classList.contains('editor')) {
|
28168 |
-
if (typeof wp.media != 'undefined') {
|
28169 |
-
if (wp.media.frame.content.get() !== null) {
|
28170 |
-
wp.media.frame.content.get().collection.props.set({ ignore: +new Date() });
|
28171 |
-
wp.media.frame.content.get().options.selection.reset();
|
28172 |
-
} else {
|
28173 |
-
wp.media.frame.library.props.set({ ignore: +new Date() });
|
28174 |
-
}
|
28175 |
-
}
|
28176 |
-
}
|
28177 |
-
}
|
28178 |
|
28179 |
-
|
28180 |
-
|
28181 |
-
|
28182 |
-
|
28183 |
-
* @since 4.3
|
28184 |
-
*/
|
28185 |
-
|
28186 |
-
}, {
|
28187 |
-
key: 'mediaRouter',
|
28188 |
-
value: function mediaRouter(id) {
|
28189 |
-
|
28190 |
-
if (this.is_media_router && wp.media && wp.media.frame && wp.media.frame.el) {
|
28191 |
-
|
28192 |
-
var mediaModal = wp.media.frame.el;
|
28193 |
-
var mediaTab = mediaModal.querySelector('#menu-item-browse');
|
28194 |
-
if (mediaTab) {
|
28195 |
-
// Open the 'Media Library' tab
|
28196 |
-
mediaTab.click();
|
28197 |
-
}
|
28198 |
|
28199 |
-
|
28200 |
-
|
28201 |
-
|
28202 |
-
|
28203 |
-
wp.media.frame.content.get().collection._requery(true);
|
28204 |
-
|
28205 |
-
//optional: reset selection
|
28206 |
-
//wp.media.frame.content.get().options.selection.reset();
|
28207 |
-
}
|
28208 |
-
|
28209 |
-
// Select the attached that was just uploaded.
|
28210 |
-
var selection = wp.media.frame.state().get('selection');
|
28211 |
-
var selected = parseInt(id);
|
28212 |
-
selection.reset(selected ? [wp.media.attachment(selected)] : []);
|
28213 |
-
}, 150);
|
28214 |
-
}
|
28215 |
-
}
|
28216 |
-
|
28217 |
-
/*
|
28218 |
-
* uploadError
|
28219 |
-
* Function runs when error occurs on upload or resize
|
28220 |
-
*
|
28221 |
-
* @param target element Current clicked item
|
28222 |
-
* @param photo element Nearest parent .photo
|
28223 |
-
* @param notice element The message area
|
28224 |
-
* @param msg string Error Msg
|
28225 |
-
* @since 3.0
|
28226 |
-
*/
|
28227 |
-
|
28228 |
-
}, {
|
28229 |
-
key: 'uploadError',
|
28230 |
-
value: function uploadError(target, photo, notice, msg) {
|
28231 |
-
target.classList.remove('uploading');
|
28232 |
-
target.classList.remove('resizing');
|
28233 |
-
target.classList.add('errors');
|
28234 |
-
this.setImageTitle(target, msg);
|
28235 |
-
this.inProgress = false;
|
28236 |
-
notice.classList.add('has-error');
|
28237 |
-
console.warn(msg);
|
28238 |
-
}
|
28239 |
-
|
28240 |
-
/*
|
28241 |
-
* setImageTitle
|
28242 |
-
* Set the title attribute of target
|
28243 |
-
*
|
28244 |
-
* @param target element Current clicked item
|
28245 |
-
* @param msg string Title Msg from JSON
|
28246 |
-
* @since 3.0
|
28247 |
-
*/
|
28248 |
-
|
28249 |
-
}, {
|
28250 |
-
key: 'setImageTitle',
|
28251 |
-
value: function setImageTitle(target, msg) {
|
28252 |
-
target.setAttribute("title", msg); // Remove 'Click to upload...', set new value
|
28253 |
-
}
|
28254 |
-
|
28255 |
-
/*
|
28256 |
-
* showEditScreen
|
28257 |
-
* Displays the edit screen
|
28258 |
-
*
|
28259 |
-
* @since 3.2
|
28260 |
-
*/
|
28261 |
-
|
28262 |
-
}, {
|
28263 |
-
key: 'showEditScreen',
|
28264 |
-
value: function showEditScreen(e) {
|
28265 |
-
e.preventDefault();
|
28266 |
-
var el = e.currentTarget;
|
28267 |
-
this.hideTooltip(e);
|
28268 |
-
var photo = el.closest('.photo');
|
28269 |
-
var filename = photo.querySelector('input[name="filename"]');
|
28270 |
-
var editScreen = photo.querySelector('.edit-screen');
|
28271 |
-
|
28272 |
-
editScreen.classList.add('editing'); // Show edit screen
|
28273 |
-
|
28274 |
-
// Set focus on edit screen
|
28275 |
-
setTimeout(function () {
|
28276 |
-
editScreen.focus();
|
28277 |
-
}, 150);
|
28278 |
-
}
|
28279 |
-
|
28280 |
-
/*
|
28281 |
-
* handleEditChange
|
28282 |
-
* Handles the change event for the edit screen
|
28283 |
-
*
|
28284 |
-
* @since 3.2
|
28285 |
-
*/
|
28286 |
-
|
28287 |
-
}, {
|
28288 |
-
key: 'handleEditChange',
|
28289 |
-
value: function handleEditChange(e) {
|
28290 |
-
var target = e.target.name;
|
28291 |
-
|
28292 |
-
if (target === 'filename') {
|
28293 |
-
this.setState({
|
28294 |
-
filename: e.target.value
|
28295 |
-
});
|
28296 |
-
}
|
28297 |
-
if (target === 'title') {
|
28298 |
-
this.setState({
|
28299 |
-
title: e.target.value
|
28300 |
-
});
|
28301 |
-
}
|
28302 |
-
if (target === 'alt') {
|
28303 |
-
this.setState({
|
28304 |
-
alt: e.target.value
|
28305 |
-
});
|
28306 |
-
}
|
28307 |
-
if (target === 'caption') {
|
28308 |
-
this.setState({
|
28309 |
-
caption: e.target.value
|
28310 |
-
});
|
28311 |
-
}
|
28312 |
-
}
|
28313 |
|
28314 |
-
|
28315 |
-
|
28316 |
-
* Handles the save event for the edit screen
|
28317 |
-
*
|
28318 |
-
* @since 3.2
|
28319 |
-
*/
|
28320 |
|
28321 |
-
|
28322 |
-
|
28323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28324 |
|
28325 |
-
|
28326 |
-
|
|
|
|
|
|
|
|
|
|
|
28327 |
|
28328 |
-
|
28329 |
-
|
28330 |
-
this.filename = filename.value;
|
28331 |
|
28332 |
-
|
28333 |
-
|
28334 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28335 |
|
28336 |
-
|
28337 |
-
|
28338 |
-
|
|
|
|
|
|
|
|
|
28339 |
|
28340 |
-
|
28341 |
-
|
28342 |
-
|
|
|
28343 |
|
28344 |
-
|
28345 |
-
|
28346 |
-
|
|
|
|
|
|
|
|
|
|
|
28347 |
|
28348 |
-
|
28349 |
-
|
28350 |
-
|
28351 |
-
|
28352 |
-
|
28353 |
-
|
28354 |
|
28355 |
-
|
28356 |
-
|
28357 |
-
|
|
|
|
|
|
|
|
|
28358 |
|
28359 |
-
|
28360 |
-
|
28361 |
-
|
28362 |
-
|
|
|
|
|
|
|
|
|
28363 |
|
28364 |
-
|
28365 |
-
|
28366 |
-
|
28367 |
-
|
28368 |
-
|
28369 |
-
|
28370 |
|
28371 |
-
|
28372 |
-
|
28373 |
-
|
28374 |
-
|
28375 |
-
|
28376 |
-
|
|
|
28377 |
|
28378 |
-
|
28379 |
-
|
28380 |
-
|
28381 |
-
|
28382 |
-
|
28383 |
-
|
|
|
|
|
28384 |
|
28385 |
-
|
28386 |
-
|
28387 |
-
|
28388 |
-
|
28389 |
-
|
28390 |
-
|
|
|
|
|
|
|
|
|
|
|
28391 |
|
28392 |
-
|
28393 |
-
|
28394 |
-
|
28395 |
-
|
28396 |
-
|
28397 |
-
|
28398 |
-
|
28399 |
-
|
28400 |
-
|
28401 |
-
|
28402 |
-
|
28403 |
-
|
28404 |
-
|
28405 |
-
|
28406 |
-
|
28407 |
-
|
28408 |
-
|
28409 |
-
|
28410 |
-
|
28411 |
-
|
28412 |
-
|
28413 |
-
|
28414 |
-
|
28415 |
-
|
28416 |
-
|
28417 |
-
|
28418 |
-
|
28419 |
-
|
28420 |
-
|
28421 |
-
|
28422 |
-
|
28423 |
-
|
28424 |
-
|
28425 |
-
|
28426 |
-
|
28427 |
-
|
28428 |
-
|
28429 |
-
|
28430 |
-
|
28431 |
-
|
28432 |
-
|
28433 |
-
|
28434 |
-
|
28435 |
-
|
28436 |
-
|
28437 |
-
|
28438 |
-
|
28439 |
-
|
28440 |
-
|
28441 |
-
|
28442 |
-
|
28443 |
-
|
28444 |
-
|
28445 |
-
|
28446 |
-
|
28447 |
-
|
28448 |
-
|
28449 |
-
|
28450 |
-
|
28451 |
-
|
28452 |
-
|
28453 |
-
|
28454 |
-
|
28455 |
-
|
28456 |
-
|
28457 |
-
|
28458 |
-
|
28459 |
-
|
28460 |
-
|
28461 |
-
|
28462 |
-
|
28463 |
-
|
28464 |
-
|
28465 |
-
|
28466 |
-
|
28467 |
-
|
28468 |
-
|
28469 |
-
|
28470 |
-
|
28471 |
-
|
28472 |
-
|
28473 |
-
|
28474 |
-
|
28475 |
-
|
28476 |
-
|
28477 |
-
|
28478 |
-
|
28479 |
-
|
28480 |
-
|
28481 |
-
|
28482 |
-
|
28483 |
-
|
28484 |
-
|
28485 |
-
|
28486 |
-
|
28487 |
-
|
28488 |
-
|
28489 |
-
|
28490 |
-
|
28491 |
-
|
28492 |
-
|
28493 |
-
|
28494 |
-
|
28495 |
-
|
28496 |
-
|
28497 |
-
|
28498 |
-
|
28499 |
-
|
28500 |
-
|
28501 |
-
|
28502 |
-
|
28503 |
-
|
28504 |
-
|
28505 |
-
|
28506 |
-
|
28507 |
-
|
28508 |
-
|
28509 |
-
|
28510 |
-
|
28511 |
-
|
28512 |
-
|
28513 |
-
|
28514 |
-
|
28515 |
-
|
28516 |
-
|
28517 |
-
|
28518 |
-
|
28519 |
-
|
28520 |
-
|
28521 |
-
|
28522 |
-
|
28523 |
-
|
28524 |
-
|
28525 |
-
|
28526 |
-
|
28527 |
-
|
28528 |
-
|
28529 |
-
|
28530 |
-
|
28531 |
-
|
28532 |
-
|
28533 |
-
|
28534 |
-
|
28535 |
-
|
28536 |
-
|
28537 |
-
|
28538 |
-
|
28539 |
-
|
28540 |
-
|
28541 |
-
|
28542 |
-
|
28543 |
-
|
28544 |
-
|
28545 |
-
|
28546 |
-
|
28547 |
-
|
28548 |
-
|
28549 |
-
|
28550 |
-
|
28551 |
-
|
28552 |
-
|
28553 |
-
|
28554 |
-
|
28555 |
-
|
28556 |
-
|
28557 |
-
|
28558 |
-
|
28559 |
-
|
28560 |
-
|
28561 |
-
|
28562 |
-
|
28563 |
-
|
28564 |
-
|
28565 |
-
|
28566 |
-
|
28567 |
-
|
28568 |
-
|
28569 |
-
|
28570 |
-
|
28571 |
-
|
28572 |
-
|
28573 |
-
|
28574 |
-
|
28575 |
-
|
28576 |
-
|
28577 |
-
|
28578 |
-
|
28579 |
-
|
28580 |
-
|
28581 |
-
|
28582 |
-
|
28583 |
-
|
28584 |
-
|
28585 |
-
|
28586 |
-
|
28587 |
-
|
28588 |
-
|
28589 |
-
|
28590 |
-
|
28591 |
-
|
28592 |
-
|
28593 |
-
|
28594 |
-
|
28595 |
-
|
28596 |
-
|
28597 |
-
|
28598 |
-
|
28599 |
-
|
28600 |
-
|
28601 |
-
|
28602 |
-
|
28603 |
-
|
28604 |
-
|
28605 |
-
|
28606 |
-
|
28607 |
-
|
28608 |
-
|
28609 |
-
|
28610 |
-
|
28611 |
-
|
28612 |
-
|
28613 |
-
|
28614 |
-
|
28615 |
-
|
28616 |
-
|
28617 |
-
|
28618 |
-
|
28619 |
-
|
28620 |
-
|
28621 |
-
|
28622 |
-
|
28623 |
-
|
28624 |
-
|
28625 |
-
|
28626 |
-
|
28627 |
-
|
28628 |
-
|
28629 |
-
|
28630 |
-
|
28631 |
-
|
28632 |
-
|
28633 |
-
|
28634 |
-
|
28635 |
-
|
28636 |
-
|
28637 |
-
|
28638 |
-
|
28639 |
-
|
28640 |
-
|
28641 |
-
|
28642 |
-
|
28643 |
-
|
28644 |
-
|
28645 |
-
|
28646 |
-
|
28647 |
-
|
28648 |
-
|
28649 |
-
|
28650 |
-
|
28651 |
-
|
28652 |
-
|
28653 |
-
|
28654 |
-
|
28655 |
-
|
28656 |
-
|
28657 |
-
|
28658 |
-
|
28659 |
-
|
28660 |
-
|
28661 |
-
|
28662 |
-
|
28663 |
-
|
28664 |
-
|
28665 |
-
|
28666 |
-
|
28667 |
-
|
28668 |
-
|
28669 |
-
|
28670 |
-
|
28671 |
-
|
28672 |
-
|
28673 |
-
|
28674 |
-
|
28675 |
-
|
28676 |
-
|
28677 |
-
|
28678 |
-
|
28679 |
-
|
28680 |
-
|
28681 |
-
|
28682 |
-
|
28683 |
-
|
28684 |
-
|
28685 |
-
|
28686 |
-
|
28687 |
-
|
28688 |
-
|
28689 |
-
|
28690 |
-
|
28691 |
-
|
28692 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28693 |
}(_react2.default.Component);
|
28694 |
|
28695 |
exports.default = Photo;
|
@@ -28768,59 +28963,56 @@ var PhotoList = function (_React$Component) {
|
|
28768 |
_this.page = _this.props.page; // Page
|
28769 |
|
28770 |
_this.is_search = false;
|
28771 |
-
_this.search_term =
|
28772 |
_this.total_results = 0;
|
28773 |
-
_this.orientation =
|
28774 |
|
28775 |
_this.isLoading = false; // loading flag
|
28776 |
_this.isDone = false; // Done flag - no photos remain
|
28777 |
|
28778 |
-
_this.errorMsg =
|
28779 |
-
_this.msnry =
|
28780 |
-
_this.tooltipInterval =
|
28781 |
|
28782 |
-
_this.editor = _this.props.editor ? _this.props.editor :
|
28783 |
-
_this.is_block_editor = _this.props.editor ===
|
28784 |
-
_this.is_media_router = _this.props.editor ===
|
28785 |
-
_this.SetFeaturedImage = _this.props.SetFeaturedImage ? _this.props.SetFeaturedImage.bind(_this) :
|
28786 |
-
_this.InsertImage = _this.props.InsertImage ? _this.props.InsertImage.bind(_this) :
|
28787 |
|
28788 |
if (_this.is_block_editor) {
|
28789 |
// Gutenberg Sidebar Only
|
28790 |
-
_this.container = document.querySelector(
|
28791 |
-
_this.container.classList.add(
|
28792 |
-
_this.wrapper = document.querySelector(
|
28793 |
} else {
|
28794 |
// Post Edit Screens and Plugin Screen
|
28795 |
-
_this.container = _this.props.container.closest(
|
28796 |
-
_this.wrapper = _this.props.container.closest(
|
28797 |
-
_this.container.classList.add(
|
28798 |
}
|
28799 |
-
|
28800 |
return _this;
|
28801 |
}
|
28802 |
|
28803 |
/**
|
28804 |
-
|
28805 |
-
|
28806 |
-
|
28807 |
-
|
28808 |
-
*/
|
28809 |
|
28810 |
|
28811 |
_createClass(PhotoList, [{
|
28812 |
-
key:
|
28813 |
value: function test() {
|
28814 |
-
|
28815 |
var self = this;
|
28816 |
|
28817 |
-
var target = this.container.querySelector(
|
28818 |
|
28819 |
-
var testURL = instant_img_localize.root +
|
28820 |
var restAPITest = new XMLHttpRequest();
|
28821 |
-
restAPITest.open(
|
28822 |
-
restAPITest.setRequestHeader(
|
28823 |
-
restAPITest.setRequestHeader(
|
28824 |
restAPITest.send();
|
28825 |
|
28826 |
restAPITest.onload = function () {
|
@@ -28845,31 +29037,29 @@ var PhotoList = function (_React$Component) {
|
|
28845 |
};
|
28846 |
}
|
28847 |
}, {
|
28848 |
-
key:
|
28849 |
value: function renderTestError(target) {
|
28850 |
-
target.classList.add(
|
28851 |
target.innerHTML = instant_img_localize.error_restapi + instant_img_localize.error_restapi_desc;
|
28852 |
}
|
28853 |
|
28854 |
/**
|
28855 |
-
|
28856 |
-
|
28857 |
-
|
28858 |
-
|
28859 |
-
|
28860 |
-
*/
|
28861 |
|
28862 |
}, {
|
28863 |
-
key:
|
28864 |
value: function search(e) {
|
28865 |
-
|
28866 |
e.preventDefault();
|
28867 |
-
var input = this.container.querySelector(
|
28868 |
var term = input.value;
|
28869 |
|
28870 |
if (term.length > 2) {
|
28871 |
-
input.classList.add(
|
28872 |
-
this.container.classList.add(
|
28873 |
this.search_term = term;
|
28874 |
this.is_search = true;
|
28875 |
this.doSearch(this.search_term);
|
@@ -28879,113 +29069,105 @@ var PhotoList = function (_React$Component) {
|
|
28879 |
}
|
28880 |
|
28881 |
/**
|
28882 |
-
|
28883 |
-
|
28884 |
-
|
28885 |
-
|
28886 |
-
*/
|
28887 |
|
28888 |
}, {
|
28889 |
-
key:
|
28890 |
value: function setOrientation(orientation, e) {
|
28891 |
-
|
28892 |
if (e && e.target) {
|
28893 |
var target = e.target;
|
28894 |
|
28895 |
-
if (target.classList.contains(
|
28896 |
// Clear orientation
|
28897 |
-
target.classList.remove(
|
28898 |
-
this.orientation =
|
28899 |
} else {
|
28900 |
-
// Set orientation
|
28901 |
-
var siblings = target.parentNode.querySelectorAll(
|
28902 |
[].concat(_toConsumableArray(siblings)).forEach(function (el) {
|
28903 |
-
return el.classList.remove(
|
28904 |
}); // remove active classes
|
28905 |
|
28906 |
-
target.classList.add(
|
28907 |
this.orientation = orientation;
|
28908 |
}
|
28909 |
|
28910 |
-
if (this.search_term !==
|
28911 |
this.doSearch(this.search_term);
|
28912 |
}
|
28913 |
}
|
28914 |
}
|
28915 |
|
28916 |
/**
|
28917 |
-
|
28918 |
-
|
28919 |
-
|
28920 |
-
|
28921 |
-
*/
|
28922 |
|
28923 |
}, {
|
28924 |
-
key:
|
28925 |
value: function hasOrientation() {
|
28926 |
-
return this.orientation ===
|
28927 |
}
|
28928 |
|
28929 |
/**
|
28930 |
-
|
28931 |
-
|
28932 |
-
|
28933 |
-
|
28934 |
-
*/
|
28935 |
|
28936 |
}, {
|
28937 |
-
key:
|
28938 |
value: function clearOrientation() {
|
28939 |
-
var items = this.container.querySelectorAll(
|
28940 |
[].concat(_toConsumableArray(items)).forEach(function (el) {
|
28941 |
-
return el.classList.remove(
|
28942 |
}); // remove active classes
|
28943 |
-
this.orientation =
|
28944 |
}
|
28945 |
|
28946 |
/**
|
28947 |
-
|
28948 |
-
|
28949 |
-
|
28950 |
-
|
28951 |
-
|
28952 |
-
|
28953 |
-
|
28954 |
-
*/
|
28955 |
|
28956 |
}, {
|
28957 |
-
key:
|
28958 |
value: function doSearch(term) {
|
28959 |
-
|
28960 |
var self = this;
|
28961 |
-
var type =
|
28962 |
this.page = 1; // reset page num
|
28963 |
|
28964 |
-
var url =
|
28965 |
|
28966 |
if (this.hasOrientation()) {
|
28967 |
// Set orientation
|
28968 |
-
url = url +
|
28969 |
}
|
28970 |
|
28971 |
// Search by ID
|
28972 |
// allow users to search by photo by prepending id:{photo_id} to search terms
|
28973 |
var search_type = term.substring(0, 3);
|
28974 |
-
if (search_type ===
|
28975 |
-
type =
|
28976 |
-
term = term.replace(
|
28977 |
-
url = _API2.default.photo_api +
|
28978 |
}
|
28979 |
|
28980 |
-
var input = this.container.querySelector(
|
28981 |
|
28982 |
fetch(url).then(function (data) {
|
28983 |
return data.json();
|
28984 |
}).then(function (data) {
|
28985 |
-
|
28986 |
// Term Search
|
28987 |
-
if (type ===
|
28988 |
-
|
28989 |
self.total_results = data.total;
|
28990 |
|
28991 |
// Check for returned data
|
@@ -28997,30 +29179,29 @@ var PhotoList = function (_React$Component) {
|
|
28997 |
}
|
28998 |
|
28999 |
// Search by photo ID
|
29000 |
-
if (type ===
|
29001 |
-
|
29002 |
-
// Convert return data to array
|
29003 |
var photoArray = [];
|
29004 |
|
29005 |
if (data.errors) {
|
29006 |
// If error was returned
|
29007 |
|
29008 |
self.total_results = 0;
|
29009 |
-
self.checkTotalResults(
|
29010 |
} else {
|
29011 |
// No errors, display results
|
29012 |
|
29013 |
photoArray.push(data);
|
29014 |
|
29015 |
self.total_results = 1;
|
29016 |
-
self.checkTotalResults(
|
29017 |
}
|
29018 |
|
29019 |
self.results = photoArray;
|
29020 |
self.setState({ results: self.results });
|
29021 |
}
|
29022 |
|
29023 |
-
input.classList.remove(
|
29024 |
}).catch(function (error) {
|
29025 |
console.log(error);
|
29026 |
self.isLoading = false;
|
@@ -29028,53 +29209,49 @@ var PhotoList = function (_React$Component) {
|
|
29028 |
}
|
29029 |
|
29030 |
/**
|
29031 |
-
|
29032 |
-
|
29033 |
-
|
29034 |
-
|
29035 |
-
*/
|
29036 |
|
29037 |
}, {
|
29038 |
-
key:
|
29039 |
value: function clearSearch() {
|
29040 |
-
var input = this.container.querySelector(
|
29041 |
-
input.value =
|
29042 |
this.total_results = 0;
|
29043 |
this.is_search = false;
|
29044 |
-
this.search_term =
|
29045 |
this.clearOrientation();
|
29046 |
}
|
29047 |
|
29048 |
/**
|
29049 |
-
|
29050 |
-
|
29051 |
-
|
29052 |
-
|
29053 |
-
*/
|
29054 |
|
29055 |
}, {
|
29056 |
-
key:
|
29057 |
value: function getPhotos() {
|
29058 |
-
|
29059 |
var self = this;
|
29060 |
this.page = parseInt(this.page) + 1;
|
29061 |
-
this.container.classList.add(
|
29062 |
this.isLoading = true;
|
29063 |
|
29064 |
-
var url =
|
29065 |
|
29066 |
if (this.is_search) {
|
29067 |
-
url =
|
29068 |
if (this.hasOrientation()) {
|
29069 |
// Set orientation
|
29070 |
-
url = url +
|
29071 |
}
|
29072 |
}
|
29073 |
|
29074 |
fetch(url).then(function (data) {
|
29075 |
return data.json();
|
29076 |
}).then(function (data) {
|
29077 |
-
|
29078 |
if (self.is_search) {
|
29079 |
data = data.results; // Search results are recieved in different JSON format
|
29080 |
}
|
@@ -29096,22 +29273,20 @@ var PhotoList = function (_React$Component) {
|
|
29096 |
}
|
29097 |
|
29098 |
/**
|
29099 |
-
|
29100 |
-
|
29101 |
-
|
29102 |
-
|
29103 |
-
|
29104 |
-
|
29105 |
-
*/
|
29106 |
|
29107 |
}, {
|
29108 |
-
key:
|
29109 |
value: function togglePhotoList(view, e) {
|
29110 |
-
|
29111 |
var el = e.target;
|
29112 |
-
if (el.classList.contains(
|
29113 |
|
29114 |
-
el.classList.add(
|
29115 |
this.isLoading = true;
|
29116 |
var self = this;
|
29117 |
this.page = 1;
|
@@ -29119,11 +29294,10 @@ var PhotoList = function (_React$Component) {
|
|
29119 |
this.results = [];
|
29120 |
this.clearSearch();
|
29121 |
|
29122 |
-
var url =
|
29123 |
fetch(url).then(function (data) {
|
29124 |
return data.json();
|
29125 |
}).then(function (data) {
|
29126 |
-
|
29127 |
// Check for returned data
|
29128 |
self.checkTotalResults(data.length);
|
29129 |
|
@@ -29131,7 +29305,7 @@ var PhotoList = function (_React$Component) {
|
|
29131 |
self.results = data;
|
29132 |
self.setState({ results: data });
|
29133 |
|
29134 |
-
el.classList.remove(
|
29135 |
}).catch(function (error) {
|
29136 |
console.log(error);
|
29137 |
self.isLoading = false;
|
@@ -29139,39 +29313,37 @@ var PhotoList = function (_React$Component) {
|
|
29139 |
}
|
29140 |
|
29141 |
/**
|
29142 |
-
|
29143 |
-
|
29144 |
-
|
29145 |
-
|
29146 |
-
*/
|
29147 |
|
29148 |
}, {
|
29149 |
-
key:
|
29150 |
value: function renderLayout() {
|
29151 |
if (this.is_block_editor) {
|
29152 |
return false;
|
29153 |
}
|
29154 |
var self = this;
|
29155 |
-
var photoListWrapper = self.container.querySelector(
|
29156 |
imagesLoaded(photoListWrapper, function () {
|
29157 |
self.msnry = new _masonryLayout2.default(photoListWrapper, {
|
29158 |
-
itemSelector:
|
29159 |
});
|
29160 |
-
[].concat(_toConsumableArray(self.container.querySelectorAll(
|
29161 |
-
return el.classList.add(
|
29162 |
});
|
29163 |
});
|
29164 |
}
|
29165 |
|
29166 |
/**
|
29167 |
-
|
29168 |
-
|
29169 |
-
|
29170 |
-
|
29171 |
-
*/
|
29172 |
|
29173 |
}, {
|
29174 |
-
key:
|
29175 |
value: function onScroll() {
|
29176 |
var wHeight = window.innerHeight;
|
29177 |
var scrollTop = window.pageYOffset;
|
@@ -29182,68 +29354,65 @@ var PhotoList = function (_React$Component) {
|
|
29182 |
}
|
29183 |
|
29184 |
/**
|
29185 |
-
|
29186 |
-
|
29187 |
-
|
29188 |
-
|
29189 |
-
|
29190 |
-
*/
|
29191 |
|
29192 |
}, {
|
29193 |
-
key:
|
29194 |
value: function checkTotalResults(num) {
|
29195 |
this.isDone = num == 0 ? true : false;
|
29196 |
}
|
29197 |
|
29198 |
/**
|
29199 |
-
|
29200 |
-
|
29201 |
-
|
29202 |
-
|
29203 |
-
*/
|
29204 |
|
29205 |
}, {
|
29206 |
-
key:
|
29207 |
value: function setActiveState() {
|
29208 |
var self = this;
|
29209 |
// Remove .active class
|
29210 |
-
[].concat(_toConsumableArray(this.container.querySelectorAll(
|
29211 |
-
return el.classList.remove(
|
29212 |
});
|
29213 |
|
29214 |
// Set active item, if not search
|
29215 |
if (!this.is_search) {
|
29216 |
-
var active = this.container.querySelector(
|
29217 |
-
active.classList.add(
|
29218 |
}
|
29219 |
setTimeout(function () {
|
29220 |
self.isLoading = false;
|
29221 |
-
self.container.classList.remove(
|
29222 |
}, 1000);
|
29223 |
}
|
29224 |
|
29225 |
/**
|
29226 |
-
|
29227 |
-
|
29228 |
-
|
29229 |
-
|
29230 |
-
*/
|
29231 |
|
29232 |
}, {
|
29233 |
-
key:
|
29234 |
value: function showTooltip(e) {
|
29235 |
var self = this;
|
29236 |
var target = e.currentTarget;
|
29237 |
var rect = target.getBoundingClientRect();
|
29238 |
var left = Math.round(rect.left);
|
29239 |
var top = Math.round(rect.top);
|
29240 |
-
var tooltip = this.container.querySelector(
|
29241 |
-
tooltip.classList.remove(
|
29242 |
|
29243 |
-
if (target.classList.contains(
|
29244 |
-
tooltip.classList.add(
|
29245 |
} else {
|
29246 |
-
tooltip.classList.remove(
|
29247 |
}
|
29248 |
|
29249 |
// Get Content
|
@@ -29251,217 +29420,265 @@ var PhotoList = function (_React$Component) {
|
|
29251 |
|
29252 |
// Delay reveal
|
29253 |
this.tooltipInterval = setInterval(function () {
|
29254 |
-
|
29255 |
clearInterval(self.tooltipInterval);
|
29256 |
tooltip.innerHTML = title;
|
29257 |
|
29258 |
// Position Tooltip
|
29259 |
left = left - tooltip.offsetWidth + target.offsetWidth + 5;
|
29260 |
-
tooltip.style.left = left +
|
29261 |
-
tooltip.style.top = top +
|
29262 |
|
29263 |
setTimeout(function () {
|
29264 |
-
tooltip.classList.add(
|
29265 |
}, 150);
|
29266 |
}, 500);
|
29267 |
}
|
29268 |
|
29269 |
/**
|
29270 |
-
|
29271 |
-
|
29272 |
-
|
29273 |
-
|
29274 |
-
*/
|
29275 |
|
29276 |
}, {
|
29277 |
-
key:
|
29278 |
value: function hideTooltip(e) {
|
29279 |
clearInterval(this.tooltipInterval);
|
29280 |
-
var tooltip = this.container.querySelector(
|
29281 |
-
tooltip.classList.remove(
|
29282 |
}
|
29283 |
|
29284 |
-
// Component Updated
|
29285 |
|
29286 |
}, {
|
29287 |
-
key:
|
29288 |
value: function componentDidUpdate() {
|
29289 |
this.renderLayout();
|
29290 |
this.setActiveState();
|
29291 |
}
|
29292 |
|
29293 |
-
// Component Init
|
29294 |
|
29295 |
}, {
|
29296 |
-
key:
|
29297 |
value: function componentDidMount() {
|
29298 |
var _this2 = this;
|
29299 |
|
29300 |
this.renderLayout();
|
29301 |
this.setActiveState();
|
29302 |
this.test();
|
29303 |
-
this.container.classList.remove(
|
29304 |
-
this.wrapper.classList.add(
|
29305 |
|
29306 |
if (this.is_block_editor || this.is_media_router) {
|
29307 |
// Gutenberg || Media Popup
|
29308 |
this.page = 0;
|
29309 |
this.getPhotos();
|
29310 |
} else {
|
29311 |
-
// Add scroll event
|
29312 |
-
window.addEventListener(
|
29313 |
return _this2.onScroll();
|
29314 |
});
|
29315 |
}
|
29316 |
}
|
29317 |
}, {
|
29318 |
-
key:
|
29319 |
value: function render() {
|
29320 |
var _this3 = this;
|
29321 |
|
29322 |
// Show/Hide orientation listing
|
29323 |
-
var orientationStyle = this.is_search ? { display:
|
29324 |
|
29325 |
return _react2.default.createElement(
|
29326 |
-
|
29327 |
-
{ id:
|
29328 |
_react2.default.createElement(
|
29329 |
-
|
29330 |
-
{ className:
|
29331 |
_react2.default.createElement(
|
29332 |
-
|
29333 |
null,
|
29334 |
_react2.default.createElement(
|
29335 |
-
|
29336 |
-
{
|
29337 |
-
|
29338 |
-
|
|
|
|
|
|
|
|
|
29339 |
instant_img_localize.latest
|
29340 |
)
|
29341 |
),
|
29342 |
_react2.default.createElement(
|
29343 |
-
|
29344 |
-
{ id:
|
29345 |
_react2.default.createElement(
|
29346 |
-
|
29347 |
-
{
|
29348 |
-
|
29349 |
-
|
|
|
|
|
|
|
|
|
29350 |
instant_img_localize.popular
|
29351 |
)
|
29352 |
),
|
29353 |
_react2.default.createElement(
|
29354 |
-
|
29355 |
null,
|
29356 |
_react2.default.createElement(
|
29357 |
-
|
29358 |
-
{
|
29359 |
-
|
29360 |
-
|
|
|
|
|
|
|
|
|
29361 |
instant_img_localize.oldest
|
29362 |
)
|
29363 |
),
|
29364 |
_react2.default.createElement(
|
29365 |
-
|
29366 |
-
{ className:
|
29367 |
_react2.default.createElement(
|
29368 |
-
|
29369 |
{ onSubmit: function onSubmit(e) {
|
29370 |
return _this3.search(e);
|
29371 |
-
}, autoComplete:
|
29372 |
-
_react2.default.createElement(
|
|
|
|
|
|
|
|
|
29373 |
_react2.default.createElement(
|
29374 |
-
|
29375 |
-
{ type:
|
29376 |
-
_react2.default.createElement(
|
29377 |
),
|
29378 |
-
_react2.default.createElement(_ResultsToolTip2.default, {
|
|
|
|
|
|
|
|
|
|
|
29379 |
)
|
29380 |
)
|
29381 |
),
|
29382 |
-
_react2.default.createElement(
|
29383 |
_react2.default.createElement(
|
29384 |
-
|
29385 |
-
{ className:
|
29386 |
_react2.default.createElement(
|
29387 |
-
|
29388 |
null,
|
29389 |
-
_react2.default.createElement(
|
29390 |
-
|
29391 |
instant_img_localize.orientation,
|
29392 |
-
|
29393 |
),
|
29394 |
_react2.default.createElement(
|
29395 |
-
|
29396 |
null,
|
29397 |
_react2.default.createElement(
|
29398 |
-
|
29399 |
-
{
|
29400 |
-
|
29401 |
-
|
29402 |
-
return _this3.setOrientation(
|
29403 |
-
}
|
|
|
|
|
|
|
|
|
29404 |
instant_img_localize.landscape
|
29405 |
),
|
29406 |
_react2.default.createElement(
|
29407 |
-
|
29408 |
-
{
|
29409 |
-
|
29410 |
-
|
29411 |
-
return _this3.setOrientation(
|
29412 |
-
}
|
|
|
|
|
|
|
|
|
29413 |
instant_img_localize.portrait
|
29414 |
),
|
29415 |
_react2.default.createElement(
|
29416 |
-
|
29417 |
-
{
|
29418 |
-
|
29419 |
-
|
29420 |
-
return _this3.setOrientation(
|
29421 |
-
}
|
|
|
|
|
|
|
|
|
29422 |
instant_img_localize.squarish
|
29423 |
)
|
29424 |
)
|
29425 |
),
|
29426 |
_react2.default.createElement(
|
29427 |
-
|
29428 |
-
{ id:
|
29429 |
this.state.results.map(function (result, iterator) {
|
29430 |
-
return _react2.default.createElement(_Photo2.default, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29431 |
})
|
29432 |
),
|
29433 |
_react2.default.createElement(
|
29434 |
-
|
29435 |
-
{
|
|
|
|
|
|
|
29436 |
_react2.default.createElement(
|
29437 |
-
|
29438 |
null,
|
29439 |
instant_img_localize.no_results,
|
29440 |
-
|
29441 |
),
|
29442 |
_react2.default.createElement(
|
29443 |
-
|
29444 |
null,
|
29445 |
instant_img_localize.no_results_desc,
|
29446 |
-
|
29447 |
)
|
29448 |
),
|
29449 |
-
_react2.default.createElement(
|
29450 |
_react2.default.createElement(
|
29451 |
-
|
29452 |
-
{ className:
|
29453 |
_react2.default.createElement(
|
29454 |
-
|
29455 |
-
{
|
|
|
|
|
|
|
29456 |
return _this3.getPhotos();
|
29457 |
-
}
|
|
|
29458 |
instant_img_localize.load_more
|
29459 |
)
|
29460 |
),
|
29461 |
_react2.default.createElement(
|
29462 |
-
|
29463 |
-
{ id:
|
29464 |
-
|
29465 |
)
|
29466 |
);
|
29467 |
}
|
@@ -29485,7 +29702,7 @@ exports.default = PhotoList;
|
|
29485 |
|
29486 |
|
29487 |
Object.defineProperty(exports, "__esModule", {
|
29488 |
-
|
29489 |
});
|
29490 |
|
29491 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -29503,51 +29720,57 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
29503 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
29504 |
|
29505 |
var ResultsToolTip = function (_React$Component) {
|
29506 |
-
|
29507 |
|
29508 |
-
|
29509 |
-
|
29510 |
|
29511 |
-
|
29512 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29513 |
|
29514 |
-
|
29515 |
-
key: 'resetSearch',
|
29516 |
-
value: function resetSearch() {
|
29517 |
-
var nav = this.props.container.querySelector('.control-nav');
|
29518 |
-
var navItem = nav.querySelector('li button.latest');
|
29519 |
-
navItem.click();
|
29520 |
-
}
|
29521 |
-
}, {
|
29522 |
-
key: 'render',
|
29523 |
-
value: function render() {
|
29524 |
-
var _this2 = this;
|
29525 |
-
|
29526 |
-
return _react2.default.createElement(
|
29527 |
-
'div',
|
29528 |
-
{ className: this.props.isSearch ? 'searchResults' : 'searchResults hide' },
|
29529 |
-
_react2.default.createElement(
|
29530 |
-
'span',
|
29531 |
-
{ title: this.props.title },
|
29532 |
-
this.props.total
|
29533 |
-
),
|
29534 |
-
_react2.default.createElement(
|
29535 |
-
'button',
|
29536 |
-
{ type: 'button', title: instant_img_localize.clear_search, onClick: function onClick(e) {
|
29537 |
-
return _this2.resetSearch();
|
29538 |
-
} },
|
29539 |
-
'x',
|
29540 |
-
_react2.default.createElement(
|
29541 |
-
'span',
|
29542 |
-
{ className: 'offscreen' },
|
29543 |
-
instant_img_localize.clear_search
|
29544 |
-
)
|
29545 |
-
)
|
29546 |
-
);
|
29547 |
-
}
|
29548 |
-
}]);
|
29549 |
-
|
29550 |
-
return ResultsToolTip;
|
29551 |
}(_react2.default.Component);
|
29552 |
|
29553 |
exports.default = ResultsToolTip;
|
109 |
|
110 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
111 |
var settle = __webpack_require__(/*! ./../core/settle */ "./node_modules/axios/lib/core/settle.js");
|
112 |
+
var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./node_modules/axios/lib/helpers/cookies.js");
|
113 |
var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
114 |
+
var buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ "./node_modules/axios/lib/core/buildFullPath.js");
|
115 |
var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./node_modules/axios/lib/helpers/parseHeaders.js");
|
116 |
var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
117 |
var createError = __webpack_require__(/*! ../core/createError */ "./node_modules/axios/lib/core/createError.js");
|
|
|
118 |
|
119 |
module.exports = function xhrAdapter(config) {
|
120 |
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
126 |
}
|
127 |
|
128 |
var request = new XMLHttpRequest();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
// HTTP basic authentication
|
131 |
if (config.auth) {
|
132 |
var username = config.auth.username || '';
|
133 |
+
var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
|
134 |
requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
|
135 |
}
|
136 |
|
137 |
+
var fullPath = buildFullPath(config.baseURL, config.url);
|
138 |
+
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
139 |
|
140 |
// Set the request timeout in MS
|
141 |
request.timeout = config.timeout;
|
142 |
|
143 |
// Listen for ready state
|
144 |
+
request.onreadystatechange = function handleLoad() {
|
145 |
+
if (!request || request.readyState !== 4) {
|
146 |
return;
|
147 |
}
|
148 |
|
159 |
var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;
|
160 |
var response = {
|
161 |
data: responseData,
|
162 |
+
status: request.status,
|
163 |
+
statusText: request.statusText,
|
|
|
164 |
headers: responseHeaders,
|
165 |
config: config,
|
166 |
request: request
|
172 |
request = null;
|
173 |
};
|
174 |
|
175 |
+
// Handle browser request cancellation (as opposed to a manual cancellation)
|
176 |
+
request.onabort = function handleAbort() {
|
177 |
+
if (!request) {
|
178 |
+
return;
|
179 |
+
}
|
180 |
+
|
181 |
+
reject(createError('Request aborted', config, 'ECONNABORTED', request));
|
182 |
+
|
183 |
+
// Clean up request
|
184 |
+
request = null;
|
185 |
+
};
|
186 |
+
|
187 |
// Handle low level network errors
|
188 |
request.onerror = function handleError() {
|
189 |
// Real errors are hidden from us by the browser
|
196 |
|
197 |
// Handle timeout
|
198 |
request.ontimeout = function handleTimeout() {
|
199 |
+
var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';
|
200 |
+
if (config.timeoutErrorMessage) {
|
201 |
+
timeoutErrorMessage = config.timeoutErrorMessage;
|
202 |
+
}
|
203 |
+
reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',
|
204 |
request));
|
205 |
|
206 |
// Clean up request
|
211 |
// This is only done if running in a standard browser environment.
|
212 |
// Specifically not if we're in a web worker, or react-native.
|
213 |
if (utils.isStandardBrowserEnv()) {
|
|
|
|
|
214 |
// Add xsrf header
|
215 |
+
var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?
|
216 |
+
cookies.read(config.xsrfCookieName) :
|
217 |
+
undefined;
|
218 |
|
219 |
if (xsrfValue) {
|
220 |
requestHeaders[config.xsrfHeaderName] = xsrfValue;
|
235 |
}
|
236 |
|
237 |
// Add withCredentials to request if needed
|
238 |
+
if (!utils.isUndefined(config.withCredentials)) {
|
239 |
+
request.withCredentials = !!config.withCredentials;
|
240 |
}
|
241 |
|
242 |
// Add responseType to request if needed
|
276 |
});
|
277 |
}
|
278 |
|
279 |
+
if (!requestData) {
|
280 |
requestData = null;
|
281 |
}
|
282 |
|
301 |
var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js");
|
302 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
303 |
var Axios = __webpack_require__(/*! ./core/Axios */ "./node_modules/axios/lib/core/Axios.js");
|
304 |
+
var mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js");
|
305 |
var defaults = __webpack_require__(/*! ./defaults */ "./node_modules/axios/lib/defaults.js");
|
306 |
|
307 |
/**
|
331 |
|
332 |
// Factory for creating new instances
|
333 |
axios.create = function create(instanceConfig) {
|
334 |
+
return createInstance(mergeConfig(axios.defaults, instanceConfig));
|
335 |
};
|
336 |
|
337 |
// Expose Cancel & CancelToken
|
345 |
};
|
346 |
axios.spread = __webpack_require__(/*! ./helpers/spread */ "./node_modules/axios/lib/helpers/spread.js");
|
347 |
|
348 |
+
// Expose isAxiosError
|
349 |
+
axios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ "./node_modules/axios/lib/helpers/isAxiosError.js");
|
350 |
+
|
351 |
module.exports = axios;
|
352 |
|
353 |
// Allow use of default import syntax in TypeScript
|
483 |
"use strict";
|
484 |
|
485 |
|
|
|
486 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
487 |
+
var buildURL = __webpack_require__(/*! ../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
488 |
var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./node_modules/axios/lib/core/InterceptorManager.js");
|
489 |
var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./node_modules/axios/lib/core/dispatchRequest.js");
|
490 |
+
var mergeConfig = __webpack_require__(/*! ./mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js");
|
491 |
|
492 |
/**
|
493 |
* Create a new instance of Axios
|
511 |
/*eslint no-param-reassign:0*/
|
512 |
// Allow for axios('example/url'[, config]) a la fetch API
|
513 |
if (typeof config === 'string') {
|
514 |
+
config = arguments[1] || {};
|
515 |
+
config.url = arguments[0];
|
516 |
+
} else {
|
517 |
+
config = config || {};
|
518 |
}
|
519 |
|
520 |
+
config = mergeConfig(this.defaults, config);
|
521 |
+
|
522 |
+
// Set config.method
|
523 |
+
if (config.method) {
|
524 |
+
config.method = config.method.toLowerCase();
|
525 |
+
} else if (this.defaults.method) {
|
526 |
+
config.method = this.defaults.method.toLowerCase();
|
527 |
+
} else {
|
528 |
+
config.method = 'get';
|
529 |
+
}
|
530 |
|
531 |
// Hook up interceptors middleware
|
532 |
var chain = [dispatchRequest, undefined];
|
547 |
return promise;
|
548 |
};
|
549 |
|
550 |
+
Axios.prototype.getUri = function getUri(config) {
|
551 |
+
config = mergeConfig(this.defaults, config);
|
552 |
+
return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\?/, '');
|
553 |
+
};
|
554 |
+
|
555 |
// Provide aliases for supported request methods
|
556 |
utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
557 |
/*eslint func-names:0*/
|
558 |
Axios.prototype[method] = function(url, config) {
|
559 |
+
return this.request(mergeConfig(config || {}, {
|
560 |
method: method,
|
561 |
+
url: url,
|
562 |
+
data: (config || {}).data
|
563 |
}));
|
564 |
};
|
565 |
});
|
567 |
utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
568 |
/*eslint func-names:0*/
|
569 |
Axios.prototype[method] = function(url, data, config) {
|
570 |
+
return this.request(mergeConfig(config || {}, {
|
571 |
method: method,
|
572 |
url: url,
|
573 |
data: data
|
642 |
module.exports = InterceptorManager;
|
643 |
|
644 |
|
645 |
+
/***/ }),
|
646 |
+
|
647 |
+
/***/ "./node_modules/axios/lib/core/buildFullPath.js":
|
648 |
+
/*!******************************************************!*\
|
649 |
+
!*** ./node_modules/axios/lib/core/buildFullPath.js ***!
|
650 |
+
\******************************************************/
|
651 |
+
/*! no static exports found */
|
652 |
+
/***/ (function(module, exports, __webpack_require__) {
|
653 |
+
|
654 |
+
"use strict";
|
655 |
+
|
656 |
+
|
657 |
+
var isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ "./node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
658 |
+
var combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ "./node_modules/axios/lib/helpers/combineURLs.js");
|
659 |
+
|
660 |
+
/**
|
661 |
+
* Creates a new URL by combining the baseURL with the requestedURL,
|
662 |
+
* only when the requestedURL is not already an absolute URL.
|
663 |
+
* If the requestURL is absolute, this function returns the requestedURL untouched.
|
664 |
+
*
|
665 |
+
* @param {string} baseURL The base URL
|
666 |
+
* @param {string} requestedURL Absolute or relative URL to combine
|
667 |
+
* @returns {string} The combined full path
|
668 |
+
*/
|
669 |
+
module.exports = function buildFullPath(baseURL, requestedURL) {
|
670 |
+
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
671 |
+
return combineURLs(baseURL, requestedURL);
|
672 |
+
}
|
673 |
+
return requestedURL;
|
674 |
+
};
|
675 |
+
|
676 |
+
|
677 |
/***/ }),
|
678 |
|
679 |
/***/ "./node_modules/axios/lib/core/createError.js":
|
720 |
var transformData = __webpack_require__(/*! ./transformData */ "./node_modules/axios/lib/core/transformData.js");
|
721 |
var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js");
|
722 |
var defaults = __webpack_require__(/*! ../defaults */ "./node_modules/axios/lib/defaults.js");
|
|
|
|
|
723 |
|
724 |
/**
|
725 |
* Throws a `Cancel` if cancellation has been requested.
|
739 |
module.exports = function dispatchRequest(config) {
|
740 |
throwIfCancellationRequested(config);
|
741 |
|
|
|
|
|
|
|
|
|
|
|
742 |
// Ensure headers exist
|
743 |
config.headers = config.headers || {};
|
744 |
|
753 |
config.headers = utils.merge(
|
754 |
config.headers.common || {},
|
755 |
config.headers[config.method] || {},
|
756 |
+
config.headers
|
757 |
);
|
758 |
|
759 |
utils.forEach(
|
822 |
if (code) {
|
823 |
error.code = code;
|
824 |
}
|
825 |
+
|
826 |
error.request = request;
|
827 |
error.response = response;
|
828 |
+
error.isAxiosError = true;
|
829 |
+
|
830 |
+
error.toJSON = function toJSON() {
|
831 |
+
return {
|
832 |
+
// Standard
|
833 |
+
message: this.message,
|
834 |
+
name: this.name,
|
835 |
+
// Microsoft
|
836 |
+
description: this.description,
|
837 |
+
number: this.number,
|
838 |
+
// Mozilla
|
839 |
+
fileName: this.fileName,
|
840 |
+
lineNumber: this.lineNumber,
|
841 |
+
columnNumber: this.columnNumber,
|
842 |
+
stack: this.stack,
|
843 |
+
// Axios
|
844 |
+
config: this.config,
|
845 |
+
code: this.code
|
846 |
+
};
|
847 |
+
};
|
848 |
return error;
|
849 |
};
|
850 |
|
851 |
|
852 |
+
/***/ }),
|
853 |
+
|
854 |
+
/***/ "./node_modules/axios/lib/core/mergeConfig.js":
|
855 |
+
/*!****************************************************!*\
|
856 |
+
!*** ./node_modules/axios/lib/core/mergeConfig.js ***!
|
857 |
+
\****************************************************/
|
858 |
+
/*! no static exports found */
|
859 |
+
/***/ (function(module, exports, __webpack_require__) {
|
860 |
+
|
861 |
+
"use strict";
|
862 |
+
|
863 |
+
|
864 |
+
var utils = __webpack_require__(/*! ../utils */ "./node_modules/axios/lib/utils.js");
|
865 |
+
|
866 |
+
/**
|
867 |
+
* Config-specific merge-function which creates a new config-object
|
868 |
+
* by merging two configuration objects together.
|
869 |
+
*
|
870 |
+
* @param {Object} config1
|
871 |
+
* @param {Object} config2
|
872 |
+
* @returns {Object} New object resulting from merging config2 to config1
|
873 |
+
*/
|
874 |
+
module.exports = function mergeConfig(config1, config2) {
|
875 |
+
// eslint-disable-next-line no-param-reassign
|
876 |
+
config2 = config2 || {};
|
877 |
+
var config = {};
|
878 |
+
|
879 |
+
var valueFromConfig2Keys = ['url', 'method', 'data'];
|
880 |
+
var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];
|
881 |
+
var defaultToConfig2Keys = [
|
882 |
+
'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',
|
883 |
+
'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',
|
884 |
+
'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress',
|
885 |
+
'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent',
|
886 |
+
'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'
|
887 |
+
];
|
888 |
+
var directMergeKeys = ['validateStatus'];
|
889 |
+
|
890 |
+
function getMergedValue(target, source) {
|
891 |
+
if (utils.isPlainObject(target) && utils.isPlainObject(source)) {
|
892 |
+
return utils.merge(target, source);
|
893 |
+
} else if (utils.isPlainObject(source)) {
|
894 |
+
return utils.merge({}, source);
|
895 |
+
} else if (utils.isArray(source)) {
|
896 |
+
return source.slice();
|
897 |
+
}
|
898 |
+
return source;
|
899 |
+
}
|
900 |
+
|
901 |
+
function mergeDeepProperties(prop) {
|
902 |
+
if (!utils.isUndefined(config2[prop])) {
|
903 |
+
config[prop] = getMergedValue(config1[prop], config2[prop]);
|
904 |
+
} else if (!utils.isUndefined(config1[prop])) {
|
905 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
906 |
+
}
|
907 |
+
}
|
908 |
+
|
909 |
+
utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {
|
910 |
+
if (!utils.isUndefined(config2[prop])) {
|
911 |
+
config[prop] = getMergedValue(undefined, config2[prop]);
|
912 |
+
}
|
913 |
+
});
|
914 |
+
|
915 |
+
utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);
|
916 |
+
|
917 |
+
utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {
|
918 |
+
if (!utils.isUndefined(config2[prop])) {
|
919 |
+
config[prop] = getMergedValue(undefined, config2[prop]);
|
920 |
+
} else if (!utils.isUndefined(config1[prop])) {
|
921 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
922 |
+
}
|
923 |
+
});
|
924 |
+
|
925 |
+
utils.forEach(directMergeKeys, function merge(prop) {
|
926 |
+
if (prop in config2) {
|
927 |
+
config[prop] = getMergedValue(config1[prop], config2[prop]);
|
928 |
+
} else if (prop in config1) {
|
929 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
930 |
+
}
|
931 |
+
});
|
932 |
+
|
933 |
+
var axiosKeys = valueFromConfig2Keys
|
934 |
+
.concat(mergeDeepPropertiesKeys)
|
935 |
+
.concat(defaultToConfig2Keys)
|
936 |
+
.concat(directMergeKeys);
|
937 |
+
|
938 |
+
var otherKeys = Object
|
939 |
+
.keys(config1)
|
940 |
+
.concat(Object.keys(config2))
|
941 |
+
.filter(function filterAxiosKeys(key) {
|
942 |
+
return axiosKeys.indexOf(key) === -1;
|
943 |
+
});
|
944 |
+
|
945 |
+
utils.forEach(otherKeys, mergeDeepProperties);
|
946 |
+
|
947 |
+
return config;
|
948 |
+
};
|
949 |
+
|
950 |
+
|
951 |
/***/ }),
|
952 |
|
953 |
/***/ "./node_modules/axios/lib/core/settle.js":
|
971 |
*/
|
972 |
module.exports = function settle(resolve, reject, response) {
|
973 |
var validateStatus = response.config.validateStatus;
|
|
|
974 |
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
975 |
resolve(response);
|
976 |
} else {
|
1047 |
if (typeof XMLHttpRequest !== 'undefined') {
|
1048 |
// For browsers use XHR adapter
|
1049 |
adapter = __webpack_require__(/*! ./adapters/xhr */ "./node_modules/axios/lib/adapters/xhr.js");
|
1050 |
+
} else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
|
1051 |
// For node use HTTP adapter
|
1052 |
adapter = __webpack_require__(/*! ./adapters/http */ "./node_modules/axios/lib/adapters/xhr.js");
|
1053 |
}
|
1058 |
adapter: getDefaultAdapter(),
|
1059 |
|
1060 |
transformRequest: [function transformRequest(data, headers) {
|
1061 |
+
normalizeHeaderName(headers, 'Accept');
|
1062 |
normalizeHeaderName(headers, 'Content-Type');
|
1063 |
if (utils.isFormData(data) ||
|
1064 |
utils.isArrayBuffer(data) ||
|
1103 |
xsrfHeaderName: 'X-XSRF-TOKEN',
|
1104 |
|
1105 |
maxContentLength: -1,
|
1106 |
+
maxBodyLength: -1,
|
1107 |
|
1108 |
validateStatus: function validateStatus(status) {
|
1109 |
return status >= 200 && status < 300;
|
1151 |
};
|
1152 |
|
1153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1154 |
/***/ }),
|
1155 |
|
1156 |
/***/ "./node_modules/axios/lib/helpers/buildURL.js":
|
1167 |
|
1168 |
function encode(val) {
|
1169 |
return encodeURIComponent(val).
|
|
|
1170 |
replace(/%3A/gi, ':').
|
1171 |
replace(/%24/g, '$').
|
1172 |
replace(/%2C/gi, ',').
|
1221 |
}
|
1222 |
|
1223 |
if (serializedParams) {
|
1224 |
+
var hashmarkIndex = url.indexOf('#');
|
1225 |
+
if (hashmarkIndex !== -1) {
|
1226 |
+
url = url.slice(0, hashmarkIndex);
|
1227 |
+
}
|
1228 |
+
|
1229 |
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
|
1230 |
}
|
1231 |
|
1277 |
utils.isStandardBrowserEnv() ?
|
1278 |
|
1279 |
// Standard browser envs support document.cookie
|
1280 |
+
(function standardBrowserEnv() {
|
1281 |
+
return {
|
1282 |
+
write: function write(name, value, expires, path, domain, secure) {
|
1283 |
+
var cookie = [];
|
1284 |
+
cookie.push(name + '=' + encodeURIComponent(value));
|
1285 |
|
1286 |
+
if (utils.isNumber(expires)) {
|
1287 |
+
cookie.push('expires=' + new Date(expires).toGMTString());
|
1288 |
+
}
|
1289 |
|
1290 |
+
if (utils.isString(path)) {
|
1291 |
+
cookie.push('path=' + path);
|
1292 |
+
}
|
1293 |
|
1294 |
+
if (utils.isString(domain)) {
|
1295 |
+
cookie.push('domain=' + domain);
|
1296 |
+
}
|
1297 |
|
1298 |
+
if (secure === true) {
|
1299 |
+
cookie.push('secure');
|
1300 |
+
}
|
1301 |
|
1302 |
+
document.cookie = cookie.join('; ');
|
1303 |
+
},
|
1304 |
|
1305 |
+
read: function read(name) {
|
1306 |
+
var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
1307 |
+
return (match ? decodeURIComponent(match[3]) : null);
|
1308 |
+
},
|
1309 |
|
1310 |
+
remove: function remove(name) {
|
1311 |
+
this.write(name, '', Date.now() - 86400000);
|
1312 |
+
}
|
1313 |
+
};
|
1314 |
+
})() :
|
1315 |
|
1316 |
// Non standard browser env (web workers, react-native) lack needed support.
|
1317 |
+
(function nonStandardBrowserEnv() {
|
1318 |
+
return {
|
1319 |
+
write: function write() {},
|
1320 |
+
read: function read() { return null; },
|
1321 |
+
remove: function remove() {}
|
1322 |
+
};
|
1323 |
+
})()
|
1324 |
);
|
1325 |
|
1326 |
|
1350 |
};
|
1351 |
|
1352 |
|
1353 |
+
/***/ }),
|
1354 |
+
|
1355 |
+
/***/ "./node_modules/axios/lib/helpers/isAxiosError.js":
|
1356 |
+
/*!********************************************************!*\
|
1357 |
+
!*** ./node_modules/axios/lib/helpers/isAxiosError.js ***!
|
1358 |
+
\********************************************************/
|
1359 |
+
/*! no static exports found */
|
1360 |
+
/***/ (function(module, exports, __webpack_require__) {
|
1361 |
+
|
1362 |
+
"use strict";
|
1363 |
+
|
1364 |
+
|
1365 |
+
/**
|
1366 |
+
* Determines whether the payload is an error thrown by Axios
|
1367 |
+
*
|
1368 |
+
* @param {*} payload The value to test
|
1369 |
+
* @returns {boolean} True if the payload is an error thrown by Axios, otherwise false
|
1370 |
+
*/
|
1371 |
+
module.exports = function isAxiosError(payload) {
|
1372 |
+
return (typeof payload === 'object') && (payload.isAxiosError === true);
|
1373 |
+
};
|
1374 |
+
|
1375 |
+
|
1376 |
/***/ }),
|
1377 |
|
1378 |
/***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
1392 |
|
1393 |
// Standard browser envs have full support of the APIs needed to test
|
1394 |
// whether the request URL is of the same origin as current location.
|
1395 |
+
(function standardBrowserEnv() {
|
1396 |
+
var msie = /(msie|trident)/i.test(navigator.userAgent);
|
1397 |
+
var urlParsingNode = document.createElement('a');
|
1398 |
+
var originURL;
|
1399 |
|
1400 |
+
/**
|
1401 |
* Parse a URL to discover it's components
|
1402 |
*
|
1403 |
* @param {String} url The URL to be parsed
|
1404 |
* @returns {Object}
|
1405 |
*/
|
1406 |
+
function resolveURL(url) {
|
1407 |
+
var href = url;
|
1408 |
|
1409 |
+
if (msie) {
|
1410 |
// IE needs attribute set twice to normalize properties
|
1411 |
+
urlParsingNode.setAttribute('href', href);
|
1412 |
+
href = urlParsingNode.href;
|
1413 |
+
}
|
1414 |
|
1415 |
+
urlParsingNode.setAttribute('href', href);
|
1416 |
|
1417 |
+
// urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
|
1418 |
+
return {
|
1419 |
+
href: urlParsingNode.href,
|
1420 |
+
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
|
1421 |
+
host: urlParsingNode.host,
|
1422 |
+
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
|
1423 |
+
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
|
1424 |
+
hostname: urlParsingNode.hostname,
|
1425 |
+
port: urlParsingNode.port,
|
1426 |
+
pathname: (urlParsingNode.pathname.charAt(0) === '/') ?
|
1427 |
+
urlParsingNode.pathname :
|
1428 |
+
'/' + urlParsingNode.pathname
|
1429 |
+
};
|
1430 |
+
}
|
1431 |
|
1432 |
+
originURL = resolveURL(window.location.href);
|
1433 |
|
1434 |
+
/**
|
1435 |
* Determine if a URL shares the same origin as the current location
|
1436 |
*
|
1437 |
* @param {String} requestURL The URL to test
|
1438 |
* @returns {boolean} True if URL shares the same origin, otherwise false
|
1439 |
*/
|
1440 |
+
return function isURLSameOrigin(requestURL) {
|
1441 |
+
var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;
|
1442 |
+
return (parsed.protocol === originURL.protocol &&
|
1443 |
parsed.host === originURL.host);
|
1444 |
+
};
|
1445 |
+
})() :
|
1446 |
|
1447 |
// Non standard browser envs (web workers, react-native) lack needed support.
|
1448 |
+
(function nonStandardBrowserEnv() {
|
1449 |
+
return function isURLSameOrigin() {
|
1450 |
+
return true;
|
1451 |
+
};
|
1452 |
+
})()
|
1453 |
);
|
1454 |
|
1455 |
|
1594 |
|
1595 |
|
1596 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
|
|
1597 |
|
1598 |
/*global toString:true*/
|
1599 |
|
1611 |
return toString.call(val) === '[object Array]';
|
1612 |
}
|
1613 |
|
1614 |
+
/**
|
1615 |
+
* Determine if a value is undefined
|
1616 |
+
*
|
1617 |
+
* @param {Object} val The value to test
|
1618 |
+
* @returns {boolean} True if the value is undefined, otherwise false
|
1619 |
+
*/
|
1620 |
+
function isUndefined(val) {
|
1621 |
+
return typeof val === 'undefined';
|
1622 |
+
}
|
1623 |
+
|
1624 |
+
/**
|
1625 |
+
* Determine if a value is a Buffer
|
1626 |
+
*
|
1627 |
+
* @param {Object} val The value to test
|
1628 |
+
* @returns {boolean} True if value is a Buffer, otherwise false
|
1629 |
+
*/
|
1630 |
+
function isBuffer(val) {
|
1631 |
+
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
|
1632 |
+
&& typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);
|
1633 |
+
}
|
1634 |
+
|
1635 |
/**
|
1636 |
* Determine if a value is an ArrayBuffer
|
1637 |
*
|
1689 |
}
|
1690 |
|
1691 |
/**
|
1692 |
+
* Determine if a value is an Object
|
1693 |
*
|
1694 |
* @param {Object} val The value to test
|
1695 |
+
* @returns {boolean} True if value is an Object, otherwise false
|
1696 |
*/
|
1697 |
+
function isObject(val) {
|
1698 |
+
return val !== null && typeof val === 'object';
|
1699 |
}
|
1700 |
|
1701 |
/**
|
1702 |
+
* Determine if a value is a plain Object
|
1703 |
*
|
1704 |
* @param {Object} val The value to test
|
1705 |
+
* @return {boolean} True if value is a plain Object, otherwise false
|
1706 |
*/
|
1707 |
+
function isPlainObject(val) {
|
1708 |
+
if (toString.call(val) !== '[object Object]') {
|
1709 |
+
return false;
|
1710 |
+
}
|
1711 |
+
|
1712 |
+
var prototype = Object.getPrototypeOf(val);
|
1713 |
+
return prototype === null || prototype === Object.prototype;
|
1714 |
}
|
1715 |
|
1716 |
/**
|
1795 |
*
|
1796 |
* react-native:
|
1797 |
* navigator.product -> 'ReactNative'
|
1798 |
+
* nativescript
|
1799 |
+
* navigator.product -> 'NativeScript' or 'NS'
|
1800 |
*/
|
1801 |
function isStandardBrowserEnv() {
|
1802 |
+
if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||
|
1803 |
+
navigator.product === 'NativeScript' ||
|
1804 |
+
navigator.product === 'NS')) {
|
1805 |
return false;
|
1806 |
}
|
1807 |
return (
|
1869 |
function merge(/* obj1, obj2, obj3, ... */) {
|
1870 |
var result = {};
|
1871 |
function assignValue(val, key) {
|
1872 |
+
if (isPlainObject(result[key]) && isPlainObject(val)) {
|
1873 |
result[key] = merge(result[key], val);
|
1874 |
+
} else if (isPlainObject(val)) {
|
1875 |
+
result[key] = merge({}, val);
|
1876 |
+
} else if (isArray(val)) {
|
1877 |
+
result[key] = val.slice();
|
1878 |
} else {
|
1879 |
result[key] = val;
|
1880 |
}
|
1905 |
return a;
|
1906 |
}
|
1907 |
|
1908 |
+
/**
|
1909 |
+
* Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
1910 |
+
*
|
1911 |
+
* @param {string} content with BOM
|
1912 |
+
* @return {string} content value without BOM
|
1913 |
+
*/
|
1914 |
+
function stripBOM(content) {
|
1915 |
+
if (content.charCodeAt(0) === 0xFEFF) {
|
1916 |
+
content = content.slice(1);
|
1917 |
+
}
|
1918 |
+
return content;
|
1919 |
+
}
|
1920 |
+
|
1921 |
module.exports = {
|
1922 |
isArray: isArray,
|
1923 |
isArrayBuffer: isArrayBuffer,
|
1927 |
isString: isString,
|
1928 |
isNumber: isNumber,
|
1929 |
isObject: isObject,
|
1930 |
+
isPlainObject: isPlainObject,
|
1931 |
isUndefined: isUndefined,
|
1932 |
isDate: isDate,
|
1933 |
isFile: isFile,
|
1939 |
forEach: forEach,
|
1940 |
merge: merge,
|
1941 |
extend: extend,
|
1942 |
+
trim: trim,
|
1943 |
+
stripBOM: stripBOM
|
1944 |
};
|
1945 |
|
1946 |
|
5173 |
});
|
5174 |
|
5175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5176 |
/***/ }),
|
5177 |
|
5178 |
/***/ "./node_modules/masonry-layout/masonry.js":
|
27841 |
value: true
|
27842 |
});
|
27843 |
|
|
|
|
|
|
|
|
|
27844 |
var _icon = __webpack_require__(/*! ../icon */ "./src/js/block/components/icon.js");
|
27845 |
|
27846 |
var _icon2 = _interopRequireDefault(_icon);
|
27859 |
|
27860 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27861 |
|
27862 |
+
var PluginSidebar = wp.editPost.PluginSidebar;
|
|
|
|
|
|
|
27863 |
|
27864 |
|
27865 |
var Unsplash = function Unsplash() {
|
27873 |
React.createElement(
|
27874 |
"div",
|
27875 |
{ className: "instant-img-container" },
|
27876 |
+
React.createElement(_PhotoList2.default, {
|
27877 |
+
editor: "gutenberg",
|
27878 |
+
page: "1",
|
27879 |
+
orderby: "latest",
|
27880 |
+
service: "unsplash",
|
27881 |
+
SetFeaturedImage: _setFeaturedImage2.default,
|
27882 |
+
InsertImage: _insertImage2.default
|
27883 |
+
})
|
27884 |
)
|
27885 |
);
|
27886 |
};
|
27899 |
|
27900 |
|
27901 |
Object.defineProperty(exports, "__esModule", {
|
27902 |
+
value: true
|
27903 |
});
|
27904 |
|
27905 |
var _classnames = __webpack_require__(/*! classnames */ "./node_modules/classnames/index.js");
|
27912 |
|
27913 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27914 |
|
27915 |
+
var PluginSidebarMoreMenuItem = wp.editPost.PluginSidebarMoreMenuItem;
|
|
|
|
|
|
|
27916 |
|
27917 |
|
27918 |
var UnsplashMenu = function UnsplashMenu() {
|
27919 |
+
return React.createElement(
|
27920 |
+
PluginSidebarMoreMenuItem,
|
27921 |
+
{
|
27922 |
+
icon: React.createElement(_icon2.default, { color: "unsplash" }),
|
27923 |
+
target: "instant-images-sidebar",
|
27924 |
+
className: "instant-images-menu-item"
|
27925 |
+
},
|
27926 |
+
"Instant Images"
|
27927 |
+
);
|
27928 |
};
|
27929 |
exports.default = UnsplashMenu;
|
27930 |
|
27940 |
"use strict";
|
27941 |
|
27942 |
|
|
|
|
|
|
|
|
|
27943 |
var _index = __webpack_require__(/*! ./components/unsplash/index */ "./src/js/block/components/unsplash/index.js");
|
27944 |
|
27945 |
var _index2 = _interopRequireDefault(_index);
|
27951 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
27952 |
|
27953 |
var Fragment = wp.element.Fragment;
|
|
|
|
|
|
|
27954 |
var registerPlugin = wp.plugins.registerPlugin;
|
27955 |
|
27956 |
|
27957 |
var InstantImages = function InstantImages() {
|
27958 |
+
return React.createElement(
|
27959 |
+
Fragment,
|
27960 |
+
null,
|
27961 |
+
React.createElement(_menu2.default, null),
|
27962 |
+
React.createElement(_index2.default, null)
|
27963 |
+
);
|
27964 |
};
|
27965 |
|
27966 |
// Register the sidebar plugin
|
27967 |
+
registerPlugin("instant-images", {
|
27968 |
+
render: InstantImages
|
27969 |
});
|
27970 |
|
27971 |
/***/ }),
|
27981 |
|
27982 |
|
27983 |
module.exports = {
|
27984 |
+
photo_api: "https://api.unsplash.com/photos",
|
27985 |
+
collections_api: "https://api.unsplash.com/collections",
|
27986 |
+
search_api: "https://api.unsplash.com/search/photos",
|
27987 |
+
app_id: "/?client_id=" + instant_img_localize.unsplash_app_id,
|
27988 |
+
posts_per_page: "&per_page=20"
|
27989 |
};
|
27990 |
|
27991 |
/***/ }),
|
28001 |
|
28002 |
|
28003 |
Object.defineProperty(exports, "__esModule", {
|
28004 |
+
value: true
|
28005 |
});
|
28006 |
|
28007 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
28027 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
28028 |
|
28029 |
var Photo = function (_React$Component) {
|
28030 |
+
_inherits(Photo, _React$Component);
|
28031 |
+
|
28032 |
+
function Photo(props) {
|
28033 |
+
_classCallCheck(this, Photo);
|
28034 |
+
|
28035 |
+
var _this = _possibleConstructorReturn(this, (Photo.__proto__ || Object.getPrototypeOf(Photo)).call(this, props));
|
28036 |
+
|
28037 |
+
_this.id = _this.props.result.id;
|
28038 |
+
_this.thumb = _this.props.result.urls.thumb;
|
28039 |
+
_this.img = _this.props.result.urls.small;
|
28040 |
+
//this.full_size = this.props.result.urls.raw;
|
28041 |
+
_this.full_size = _this.props.result.urls.full;
|
28042 |
+
_this.author = _this.props.result.user.name;
|
28043 |
+
_this.img_title = instant_img_localize.photo_by + " " + _this.author;
|
28044 |
+
_this.filename = _this.props.result.id;
|
28045 |
+
_this.title = _this.img_title;
|
28046 |
+
_this.alt = _this.props.result.alt_description;
|
28047 |
+
_this.caption = "";
|
28048 |
+
_this.user = _this.props.result.user.username;
|
28049 |
+
_this.user_photo = _this.props.result.user.profile_image.small;
|
28050 |
+
_this.link = _this.props.result.links.html;
|
28051 |
+
_this.likes = _this.props.result.likes;
|
28052 |
+
_this.view_all = instant_img_localize.view_all;
|
28053 |
+
_this.inProgress = false;
|
28054 |
+
_this.container = document.querySelector(".instant-img-container");
|
28055 |
+
_this.showTooltip = _this.props.showTooltip;
|
28056 |
+
_this.hideTooltip = _this.props.hideTooltip;
|
28057 |
+
|
28058 |
+
// Gutenberg Sidebar
|
28059 |
+
_this.setAsFeaturedImage = false;
|
28060 |
+
_this.insertIntoPost = false;
|
28061 |
+
_this.is_media_router = _this.props.mediaRouter;
|
28062 |
+
_this.is_block_editor = _this.props.blockEditor;
|
28063 |
+
_this.SetFeaturedImage = _this.props.SetFeaturedImage;
|
28064 |
+
_this.InsertImage = _this.props.InsertImage;
|
28065 |
+
|
28066 |
+
// Display controls in Gutenberg Sidebar Only
|
28067 |
+
_this.displayGutenbergControl = _this.is_block_editor ? true : false;
|
28068 |
+
|
28069 |
+
// Photo state
|
28070 |
+
_this.state = {
|
28071 |
+
filename: _this.filename,
|
28072 |
+
title: _this.title,
|
28073 |
+
alt: _this.alt,
|
28074 |
+
caption: _this.caption
|
28075 |
+
};
|
28076 |
+
return _this;
|
28077 |
+
}
|
28078 |
|
28079 |
+
/**
|
28080 |
+
* Function to trigger the image download
|
28081 |
+
*
|
28082 |
+
* @since 4.3
|
28083 |
+
*/
|
28084 |
|
|
|
|
|
|
|
|
|
|
|
|
|
28085 |
|
28086 |
+
_createClass(Photo, [{
|
28087 |
+
key: "download",
|
28088 |
+
value: function download(e) {
|
28089 |
+
e.preventDefault();
|
28090 |
+
var self = this;
|
28091 |
|
28092 |
+
var target = e.currentTarget; // get current <a/>
|
28093 |
+
var photo = target.parentElement.parentElement.parentElement; // Get parent .photo el
|
28094 |
+
var notice = photo.querySelector(".notice-msg"); // Locate .notice-msg div
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28095 |
|
28096 |
+
if (!target.classList.contains("upload")) {
|
28097 |
+
// If target is .download-photo, switch target definition
|
28098 |
+
target = photo.querySelector("a.upload");
|
28099 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28100 |
|
28101 |
+
if (target.classList.contains("success") || this.inProgress) {
|
28102 |
+
return false; // Exit if already uploaded or in progress.
|
28103 |
+
}
|
28104 |
+
this.inProgress = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28105 |
|
28106 |
+
target.classList.add("uploading");
|
28107 |
+
photo.classList.add("in-progress");
|
|
|
|
|
|
|
|
|
28108 |
|
28109 |
+
// Status messaging
|
28110 |
+
notice.innerHTML = instant_img_localize.saving;
|
28111 |
+
setTimeout(function () {
|
28112 |
+
// Change notice after 3 seconds
|
28113 |
+
notice.innerHTML = instant_img_localize.resizing;
|
28114 |
+
setTimeout(function () {
|
28115 |
+
// Change notice again after 5 seconds (Still resizing...)
|
28116 |
+
notice.innerHTML = instant_img_localize.resizing_still;
|
28117 |
+
}, 5000);
|
28118 |
+
}, 3000);
|
28119 |
+
|
28120 |
+
// API URL
|
28121 |
+
var api = instant_img_localize.root + "instant-images/download/";
|
28122 |
+
|
28123 |
+
// Data Params
|
28124 |
+
var data = {
|
28125 |
+
id: target.getAttribute("data-id"),
|
28126 |
+
image_url: target.getAttribute("data-url"),
|
28127 |
+
filename: target.getAttribute("data-id") + ".jpg",
|
28128 |
+
custom_filename: target.getAttribute("data-filename"),
|
28129 |
+
title: target.getAttribute("data-title"),
|
28130 |
+
alt: target.getAttribute("data-alt"),
|
28131 |
+
caption: target.getAttribute("data-caption"),
|
28132 |
+
parent_id: instant_img_localize.parent_id
|
28133 |
+
};
|
28134 |
|
28135 |
+
// Config Params
|
28136 |
+
var config = {
|
28137 |
+
headers: {
|
28138 |
+
"X-WP-Nonce": instant_img_localize.nonce,
|
28139 |
+
"Content-Type": "application/json"
|
28140 |
+
}
|
28141 |
+
};
|
28142 |
|
28143 |
+
_axios2.default.post(api, JSON.stringify(data), config).then(function (res) {
|
28144 |
+
var response = res.data;
|
|
|
28145 |
|
28146 |
+
if (response) {
|
28147 |
+
// Successful response from server
|
28148 |
+
var success = response.success;
|
28149 |
+
var id = response.id;
|
28150 |
+
var attachment = response.attachment;
|
28151 |
+
var admin_url = response.admin_url;
|
28152 |
+
var msg = response.msg;
|
28153 |
+
|
28154 |
+
if (success) {
|
28155 |
+
// Edit URL
|
28156 |
+
var edit_url = admin_url + "post.php?post=" + attachment.id + "&action=edit";
|
28157 |
+
|
28158 |
+
// Success/Upload Complete
|
28159 |
+
self.uploadComplete(target, photo, msg, edit_url, attachment.id);
|
28160 |
+
|
28161 |
+
// Trigger Download Counter at Unsplash
|
28162 |
+
self.triggerUnsplashDownload(id);
|
28163 |
+
|
28164 |
+
// Set Featured Image [Gutenberg Sidebar]
|
28165 |
+
if (self.displayGutenbergControl && self.setAsFeaturedImage) {
|
28166 |
+
self.SetFeaturedImage(attachment.id);
|
28167 |
+
self.setAsFeaturedImage = false;
|
28168 |
+
self.closeMediaModal();
|
28169 |
+
}
|
28170 |
+
|
28171 |
+
// Insert Image [Gutenberg Sidebar]
|
28172 |
+
if (self.displayGutenbergControl && self.insertIntoPost) {
|
28173 |
+
if (attachment.url) {
|
28174 |
+
self.InsertImage(attachment.url, attachment.caption, attachment.alt);
|
28175 |
+
self.closeMediaModal();
|
28176 |
+
}
|
28177 |
+
self.insertIntoPost = false;
|
28178 |
+
}
|
28179 |
+
|
28180 |
+
// If is media popup, redirect user to media-upload settings
|
28181 |
+
if (self.container.dataset.mediaPopup === "true" && !self.is_block_editor) {
|
28182 |
+
window.location = "media-upload.php?type=image&tab=library&attachment_id=" + attachment.id;
|
28183 |
+
}
|
28184 |
+
} else {
|
28185 |
+
// Error
|
28186 |
+
self.uploadError(target, photo, notice, msg);
|
28187 |
+
}
|
28188 |
+
} else {
|
28189 |
+
// Error
|
28190 |
+
self.uploadError(target, photo, notice, instant_img_localize.error_upload);
|
28191 |
+
}
|
28192 |
+
}).catch(function (error) {
|
28193 |
+
console.log(error);
|
28194 |
+
});
|
28195 |
+
}
|
28196 |
|
28197 |
+
/**
|
28198 |
+
* Function to trigger download action at unsplash.com
|
28199 |
+
* This is used to give authors download credits and nothing more
|
28200 |
+
*
|
28201 |
+
* @param id string The ID of the image
|
28202 |
+
* @since 3.1
|
28203 |
+
*/
|
28204 |
|
28205 |
+
}, {
|
28206 |
+
key: "triggerUnsplashDownload",
|
28207 |
+
value: function triggerUnsplashDownload(id) {
|
28208 |
+
var url = _API2.default.photo_api + "/" + id + "/download/" + _API2.default.app_id;
|
28209 |
|
28210 |
+
fetch(url).then(function (data) {
|
28211 |
+
return data.json();
|
28212 |
+
}).then(function (data) {
|
28213 |
+
// Success, nothing else happens here
|
28214 |
+
}).catch(function (error) {
|
28215 |
+
console.log(error);
|
28216 |
+
});
|
28217 |
+
}
|
28218 |
|
28219 |
+
/*
|
28220 |
+
* setFeaturedImageClick
|
28221 |
+
* Function used to trigger a download and then set as featured image
|
28222 |
+
*
|
28223 |
+
* @since 4.0
|
28224 |
+
*/
|
28225 |
|
28226 |
+
}, {
|
28227 |
+
key: "setFeaturedImageClick",
|
28228 |
+
value: function setFeaturedImageClick(e) {
|
28229 |
+
var target = e.currentTarget;
|
28230 |
+
if (!target) {
|
28231 |
+
return false;
|
28232 |
+
}
|
28233 |
|
28234 |
+
this.hideTooltip(e);
|
28235 |
+
var parent = target.parentNode.parentNode.parentNode;
|
28236 |
+
var photo = parent.querySelector("a.upload");
|
28237 |
+
if (photo) {
|
28238 |
+
this.setAsFeaturedImage = true;
|
28239 |
+
photo.click();
|
28240 |
+
}
|
28241 |
+
}
|
28242 |
|
28243 |
+
/*
|
28244 |
+
* insertImageIntoPost
|
28245 |
+
* Function used to insert an image directly into the block (Gutenberg) editor.
|
28246 |
+
*
|
28247 |
+
* @since 4.0
|
28248 |
+
*/
|
28249 |
|
28250 |
+
}, {
|
28251 |
+
key: "insertImageIntoPost",
|
28252 |
+
value: function insertImageIntoPost(e) {
|
28253 |
+
var target = e.currentTarget;
|
28254 |
+
if (!target) {
|
28255 |
+
return false;
|
28256 |
+
}
|
28257 |
|
28258 |
+
this.hideTooltip(e);
|
28259 |
+
var parent = target.parentNode.parentNode.parentNode;
|
28260 |
+
var photo = parent.querySelector("a.upload");
|
28261 |
+
if (photo) {
|
28262 |
+
this.insertIntoPost = true;
|
28263 |
+
photo.click();
|
28264 |
+
}
|
28265 |
+
}
|
28266 |
|
28267 |
+
/*
|
28268 |
+
* uploadComplete
|
28269 |
+
* Function runs when upload has completed
|
28270 |
+
*
|
28271 |
+
* @param target element clicked item
|
28272 |
+
* @param photo element Nearest parent .photo
|
28273 |
+
* @param msg string Success Msg
|
28274 |
+
* @param url string The attachment edit link
|
28275 |
+
* @param id string The attachment id
|
28276 |
+
* @since 3.0
|
28277 |
+
*/
|
28278 |
|
28279 |
+
}, {
|
28280 |
+
key: "uploadComplete",
|
28281 |
+
value: function uploadComplete(target, photo, msg, url, id) {
|
28282 |
+
this.setImageTitle(target, msg);
|
28283 |
+
|
28284 |
+
photo.classList.remove("in-progress");
|
28285 |
+
photo.classList.add("uploaded");
|
28286 |
+
|
28287 |
+
photo.querySelector(".edit-photo").style.display = "none"; // Hide edit-photo button
|
28288 |
+
photo.querySelector(".edit-photo-admin").style.display = "inline-block"; // Show edit-photo-admin button
|
28289 |
+
photo.querySelector(".edit-photo-admin").href = url; // Add admin edit link
|
28290 |
+
photo.querySelector(".edit-photo-admin").target = "_balnk"; // Add new window
|
28291 |
+
|
28292 |
+
target.classList.remove("uploading");
|
28293 |
+
target.classList.remove("resizing");
|
28294 |
+
target.classList.add("success");
|
28295 |
+
this.inProgress = false;
|
28296 |
+
|
28297 |
+
// Remove uploaded and success states after 7.5 seconds.
|
28298 |
+
setTimeout(function () {
|
28299 |
+
photo.classList.remove("uploaded");
|
28300 |
+
target.classList.remove("success");
|
28301 |
+
}, 7500);
|
28302 |
+
|
28303 |
+
// Gutenberg Sidebar
|
28304 |
+
if (this.is_block_editor) {
|
28305 |
+
photo.querySelector(".insert").style.display = "none"; // Hide insert button
|
28306 |
+
photo.querySelector(".set-featured").style.display = "none"; // Hide set-featured button
|
28307 |
+
}
|
28308 |
+
|
28309 |
+
// Media Router
|
28310 |
+
this.mediaRouter(id);
|
28311 |
+
|
28312 |
+
// Deprecated in 4.3
|
28313 |
+
// Was previously used in the Media Popup Context.
|
28314 |
+
// Refresh Media Library contents on edit pages
|
28315 |
+
if (this.container.classList.contains("editor")) {
|
28316 |
+
if (typeof wp.media != "undefined") {
|
28317 |
+
if (wp.media.frame.content.get() !== null) {
|
28318 |
+
wp.media.frame.content.get().collection.props.set({ ignore: +new Date() });
|
28319 |
+
wp.media.frame.content.get().options.selection.reset();
|
28320 |
+
} else {
|
28321 |
+
wp.media.frame.library.props.set({ ignore: +new Date() });
|
28322 |
+
}
|
28323 |
+
}
|
28324 |
+
}
|
28325 |
+
}
|
28326 |
+
|
28327 |
+
/**
|
28328 |
+
* mediaRouter
|
28329 |
+
* Refresh Media Modal and select item after it's been uploaded
|
28330 |
+
*
|
28331 |
+
* @since 4.3
|
28332 |
+
*/
|
28333 |
+
|
28334 |
+
}, {
|
28335 |
+
key: "mediaRouter",
|
28336 |
+
value: function mediaRouter(id) {
|
28337 |
+
if (this.is_media_router && wp.media && wp.media.frame && wp.media.frame.el) {
|
28338 |
+
var mediaModal = wp.media.frame.el;
|
28339 |
+
var mediaTab = mediaModal.querySelector("#menu-item-browse");
|
28340 |
+
if (mediaTab) {
|
28341 |
+
// Open the 'Media Library' tab
|
28342 |
+
mediaTab.click();
|
28343 |
+
}
|
28344 |
+
|
28345 |
+
// Delay to allow for tab switching
|
28346 |
+
setTimeout(function () {
|
28347 |
+
if (wp.media.frame.content.get() !== null) {
|
28348 |
+
//this forces a refresh of the content
|
28349 |
+
wp.media.frame.content.get().collection._requery(true);
|
28350 |
+
|
28351 |
+
//optional: reset selection
|
28352 |
+
//wp.media.frame.content.get().options.selection.reset();
|
28353 |
+
}
|
28354 |
+
|
28355 |
+
// Select the attached that was just uploaded.
|
28356 |
+
var selection = wp.media.frame.state().get("selection");
|
28357 |
+
var selected = parseInt(id);
|
28358 |
+
selection.reset(selected ? [wp.media.attachment(selected)] : []);
|
28359 |
+
}, 150);
|
28360 |
+
}
|
28361 |
+
}
|
28362 |
+
|
28363 |
+
/*
|
28364 |
+
* Function runs when error occurs on upload or resize.
|
28365 |
+
*
|
28366 |
+
* @param target element Current clicked item
|
28367 |
+
* @param photo element Nearest parent .photo
|
28368 |
+
* @param notice element The message area
|
28369 |
+
* @param msg string Error Msg
|
28370 |
+
* @since 3.0
|
28371 |
+
*/
|
28372 |
+
|
28373 |
+
}, {
|
28374 |
+
key: "uploadError",
|
28375 |
+
value: function uploadError(target, photo, notice, msg) {
|
28376 |
+
target.classList.remove("uploading");
|
28377 |
+
target.classList.remove("resizing");
|
28378 |
+
target.classList.add("errors");
|
28379 |
+
this.setImageTitle(target, msg);
|
28380 |
+
this.inProgress = false;
|
28381 |
+
notice.classList.add("has-error");
|
28382 |
+
console.warn(msg);
|
28383 |
+
}
|
28384 |
+
|
28385 |
+
/*
|
28386 |
+
* Set the title attribute of target.
|
28387 |
+
*
|
28388 |
+
* @param target element Current clicked item
|
28389 |
+
* @param msg string Title Msg from JSON
|
28390 |
+
* @since 3.0
|
28391 |
+
*/
|
28392 |
+
|
28393 |
+
}, {
|
28394 |
+
key: "setImageTitle",
|
28395 |
+
value: function setImageTitle(target, msg) {
|
28396 |
+
target.setAttribute("title", msg); // Remove 'Click to upload...', set new value
|
28397 |
+
}
|
28398 |
+
|
28399 |
+
/*
|
28400 |
+
* Displays the edit screen
|
28401 |
+
*
|
28402 |
+
* @since 3.2
|
28403 |
+
*/
|
28404 |
+
|
28405 |
+
}, {
|
28406 |
+
key: "showEditScreen",
|
28407 |
+
value: function showEditScreen(e) {
|
28408 |
+
e.preventDefault();
|
28409 |
+
var el = e.currentTarget;
|
28410 |
+
this.hideTooltip(e);
|
28411 |
+
var photo = el.closest(".photo");
|
28412 |
+
var filename = photo.querySelector('input[name="filename"]');
|
28413 |
+
var editScreen = photo.querySelector(".edit-screen");
|
28414 |
+
|
28415 |
+
editScreen.classList.add("editing"); // Show edit screen
|
28416 |
+
|
28417 |
+
// Set focus on edit screen
|
28418 |
+
setTimeout(function () {
|
28419 |
+
editScreen.focus();
|
28420 |
+
}, 150);
|
28421 |
+
}
|
28422 |
+
|
28423 |
+
/*
|
28424 |
+
* Handles the change event for the edit screen
|
28425 |
+
*
|
28426 |
+
* @since 3.2
|
28427 |
+
*/
|
28428 |
+
|
28429 |
+
}, {
|
28430 |
+
key: "handleEditChange",
|
28431 |
+
value: function handleEditChange(e) {
|
28432 |
+
var target = e.target.name;
|
28433 |
+
|
28434 |
+
if (target === "filename") {
|
28435 |
+
this.setState({
|
28436 |
+
filename: e.target.value
|
28437 |
+
});
|
28438 |
+
}
|
28439 |
+
if (target === "title") {
|
28440 |
+
this.setState({
|
28441 |
+
title: e.target.value
|
28442 |
+
});
|
28443 |
+
}
|
28444 |
+
if (target === "alt") {
|
28445 |
+
this.setState({
|
28446 |
+
alt: e.target.value
|
28447 |
+
});
|
28448 |
+
}
|
28449 |
+
if (target === "caption") {
|
28450 |
+
this.setState({
|
28451 |
+
caption: e.target.value
|
28452 |
+
});
|
28453 |
+
}
|
28454 |
+
}
|
28455 |
+
|
28456 |
+
/**
|
28457 |
+
* Handles the save event for the edit screen
|
28458 |
+
*
|
28459 |
+
* @since 3.2
|
28460 |
+
*/
|
28461 |
+
|
28462 |
+
}, {
|
28463 |
+
key: "saveEditChange",
|
28464 |
+
value: function saveEditChange(e) {
|
28465 |
+
var el = e.currentTarget;
|
28466 |
+
var photo = el.closest(".photo");
|
28467 |
+
|
28468 |
+
// Filename
|
28469 |
+
var filename = photo.querySelector('input[name="filename"]');
|
28470 |
+
this.filename = filename.value;
|
28471 |
+
|
28472 |
+
// Title
|
28473 |
+
var title = photo.querySelector('input[name="title"]');
|
28474 |
+
this.title = title.value;
|
28475 |
+
|
28476 |
+
// Alt
|
28477 |
+
var alt = photo.querySelector('input[name="alt"]');
|
28478 |
+
this.alt = alt.value;
|
28479 |
+
|
28480 |
+
// Caption
|
28481 |
+
var caption = photo.querySelector('textarea[name="caption"]');
|
28482 |
+
this.caption = caption.value;
|
28483 |
+
|
28484 |
+
photo.querySelector(".edit-screen").classList.remove("editing"); // Hide edit screen
|
28485 |
+
photo.querySelector("a.upload").click();
|
28486 |
+
}
|
28487 |
+
|
28488 |
+
/**
|
28489 |
+
* Handles the cancel event for the edit screen.
|
28490 |
+
*
|
28491 |
+
* @since 3.2
|
28492 |
+
*/
|
28493 |
+
|
28494 |
+
}, {
|
28495 |
+
key: "cancelEditChange",
|
28496 |
+
value: function cancelEditChange(e) {
|
28497 |
+
var el = e.currentTarget;
|
28498 |
+
var photo = el.closest(".photo");
|
28499 |
+
if (photo) {
|
28500 |
+
var target = photo.querySelector("a.upload");
|
28501 |
+
|
28502 |
+
// Filename
|
28503 |
+
var filename = photo.querySelector('input[name="filename"]');
|
28504 |
+
filename.value = filename.dataset.original;
|
28505 |
+
this.setState({
|
28506 |
+
filename: filename.value
|
28507 |
+
});
|
28508 |
+
|
28509 |
+
// Title
|
28510 |
+
var title = photo.querySelector('input[name="title"]');
|
28511 |
+
title.value = title.dataset.original;
|
28512 |
+
this.setState({
|
28513 |
+
title: title.value
|
28514 |
+
});
|
28515 |
+
|
28516 |
+
// Alt
|
28517 |
+
var alt = photo.querySelector('input[name="alt"]');
|
28518 |
+
alt.value = alt.dataset.original;
|
28519 |
+
this.setState({
|
28520 |
+
alt: alt.value
|
28521 |
+
});
|
28522 |
+
|
28523 |
+
// Caption
|
28524 |
+
var caption = photo.querySelector('textarea[name="caption"]');
|
28525 |
+
caption.value = caption.dataset.original;
|
28526 |
+
this.setState({
|
28527 |
+
caption: caption.value
|
28528 |
+
});
|
28529 |
+
|
28530 |
+
photo.querySelector(".edit-screen").classList.remove("editing"); // Hide edit screen
|
28531 |
+
target.focus();
|
28532 |
+
}
|
28533 |
+
}
|
28534 |
+
|
28535 |
+
/**
|
28536 |
+
* Close the media modal after an action
|
28537 |
+
*
|
28538 |
+
* @since 4.3
|
28539 |
+
*/
|
28540 |
+
|
28541 |
+
}, {
|
28542 |
+
key: "closeMediaModal",
|
28543 |
+
value: function closeMediaModal() {
|
28544 |
+
var mediaModal = document.querySelector(".media-modal");
|
28545 |
+
if (mediaModal) {
|
28546 |
+
var closeBtn = mediaModal.querySelector("button.media-modal-close");
|
28547 |
+
if (!closeBtn) {
|
28548 |
+
return false;
|
28549 |
+
}
|
28550 |
+
closeBtn.click();
|
28551 |
+
}
|
28552 |
+
}
|
28553 |
+
}, {
|
28554 |
+
key: "render",
|
28555 |
+
value: function render() {
|
28556 |
+
var _this2 = this;
|
28557 |
+
|
28558 |
+
var likeTxt = parseInt(this.likes) > 1 ? instant_img_localize.likes_plural : instant_img_localize.likes;
|
28559 |
+
|
28560 |
+
return _react2.default.createElement(
|
28561 |
+
"article",
|
28562 |
+
{ className: "photo" },
|
28563 |
+
_react2.default.createElement(
|
28564 |
+
"div",
|
28565 |
+
{ className: "photo--wrap" },
|
28566 |
+
_react2.default.createElement(
|
28567 |
+
"div",
|
28568 |
+
{ className: "img-wrap" },
|
28569 |
+
_react2.default.createElement(
|
28570 |
+
"a",
|
28571 |
+
{
|
28572 |
+
className: "upload loaded",
|
28573 |
+
href: this.full_size,
|
28574 |
+
"data-id": this.id,
|
28575 |
+
"data-url": this.full_size,
|
28576 |
+
"data-filename": this.state.filename,
|
28577 |
+
"data-title": this.state.title,
|
28578 |
+
"data-alt": this.state.alt,
|
28579 |
+
"data-caption": this.state.caption,
|
28580 |
+
title: instant_img_localize.upload,
|
28581 |
+
onClick: function onClick(e) {
|
28582 |
+
return _this2.download(e);
|
28583 |
+
}
|
28584 |
+
},
|
28585 |
+
_react2.default.createElement("img", { src: this.img, alt: "" }),
|
28586 |
+
_react2.default.createElement("div", { className: "status" })
|
28587 |
+
),
|
28588 |
+
_react2.default.createElement("div", { className: "notice-msg" }),
|
28589 |
+
_react2.default.createElement(
|
28590 |
+
"div",
|
28591 |
+
{ className: "user-controls" },
|
28592 |
+
_react2.default.createElement(
|
28593 |
+
"a",
|
28594 |
+
{
|
28595 |
+
className: "user fade",
|
28596 |
+
href: "https://unsplash.com/@" + this.user + "?utm_source=wordpress-instant-images&utm_medium=referral",
|
28597 |
+
target: "_blank",
|
28598 |
+
title: this.view_all + " @" + this.user
|
28599 |
+
},
|
28600 |
+
_react2.default.createElement(
|
28601 |
+
"div",
|
28602 |
+
{ className: "user-wrap" },
|
28603 |
+
this.user_photo.length > 0 && _react2.default.createElement("img", { src: this.user_photo }),
|
28604 |
+
this.user
|
28605 |
+
)
|
28606 |
+
),
|
28607 |
+
_react2.default.createElement(
|
28608 |
+
"div",
|
28609 |
+
{ className: "photo-options" },
|
28610 |
+
this.displayGutenbergControl && _react2.default.createElement(
|
28611 |
+
"button",
|
28612 |
+
{
|
28613 |
+
type: "button",
|
28614 |
+
className: "set-featured fade",
|
28615 |
+
"data-title": instant_img_localize.set_as_featured,
|
28616 |
+
onMouseEnter: function onMouseEnter(e) {
|
28617 |
+
return _this2.showTooltip(e);
|
28618 |
+
},
|
28619 |
+
onMouseLeave: function onMouseLeave(e) {
|
28620 |
+
return _this2.hideTooltip(e);
|
28621 |
+
},
|
28622 |
+
onClick: function onClick(e) {
|
28623 |
+
return _this2.setFeaturedImageClick(e);
|
28624 |
+
}
|
28625 |
+
},
|
28626 |
+
_react2.default.createElement("i", {
|
28627 |
+
className: "fa fa-picture-o",
|
28628 |
+
"aria-hidden": "true"
|
28629 |
+
}),
|
28630 |
+
_react2.default.createElement(
|
28631 |
+
"span",
|
28632 |
+
{ className: "offscreen" },
|
28633 |
+
instant_img_localize.set_as_featured
|
28634 |
+
)
|
28635 |
+
),
|
28636 |
+
this.displayGutenbergControl && _react2.default.createElement(
|
28637 |
+
"button",
|
28638 |
+
{
|
28639 |
+
type: "button",
|
28640 |
+
className: "insert fade",
|
28641 |
+
"data-title": instant_img_localize.insert_into_post,
|
28642 |
+
onMouseEnter: function onMouseEnter(e) {
|
28643 |
+
return _this2.showTooltip(e);
|
28644 |
+
},
|
28645 |
+
onMouseLeave: function onMouseLeave(e) {
|
28646 |
+
return _this2.hideTooltip(e);
|
28647 |
+
},
|
28648 |
+
onClick: function onClick(e) {
|
28649 |
+
return _this2.insertImageIntoPost(e);
|
28650 |
+
}
|
28651 |
+
},
|
28652 |
+
_react2.default.createElement("i", { className: "fa fa-plus", "aria-hidden": "true" }),
|
28653 |
+
_react2.default.createElement(
|
28654 |
+
"span",
|
28655 |
+
{ className: "offscreen" },
|
28656 |
+
instant_img_localize.insert_into_post
|
28657 |
+
)
|
28658 |
+
),
|
28659 |
+
_react2.default.createElement(
|
28660 |
+
"a",
|
28661 |
+
{
|
28662 |
+
href: "#",
|
28663 |
+
className: "edit-photo-admin fade",
|
28664 |
+
"data-title": instant_img_localize.edit_upload,
|
28665 |
+
onMouseEnter: function onMouseEnter(e) {
|
28666 |
+
return _this2.showTooltip(e);
|
28667 |
+
},
|
28668 |
+
onMouseLeave: function onMouseLeave(e) {
|
28669 |
+
return _this2.hideTooltip(e);
|
28670 |
+
}
|
28671 |
+
},
|
28672 |
+
_react2.default.createElement("i", { className: "fa fa-pencil", "aria-hidden": "true" }),
|
28673 |
+
_react2.default.createElement(
|
28674 |
+
"span",
|
28675 |
+
{ className: "offscreen" },
|
28676 |
+
instant_img_localize.edit_upload
|
28677 |
+
)
|
28678 |
+
),
|
28679 |
+
_react2.default.createElement(
|
28680 |
+
"button",
|
28681 |
+
{
|
28682 |
+
type: "button",
|
28683 |
+
className: "edit-photo fade",
|
28684 |
+
"data-title": instant_img_localize.edit_details,
|
28685 |
+
onMouseEnter: function onMouseEnter(e) {
|
28686 |
+
return _this2.showTooltip(e);
|
28687 |
+
},
|
28688 |
+
onMouseLeave: function onMouseLeave(e) {
|
28689 |
+
return _this2.hideTooltip(e);
|
28690 |
+
},
|
28691 |
+
onClick: function onClick(e) {
|
28692 |
+
return _this2.showEditScreen(e);
|
28693 |
+
}
|
28694 |
+
},
|
28695 |
+
_react2.default.createElement("i", { className: "fa fa-cog", "aria-hidden": "true" }),
|
28696 |
+
_react2.default.createElement(
|
28697 |
+
"span",
|
28698 |
+
{ className: "offscreen" },
|
28699 |
+
instant_img_localize.edit_details
|
28700 |
+
)
|
28701 |
+
)
|
28702 |
+
)
|
28703 |
+
),
|
28704 |
+
_react2.default.createElement(
|
28705 |
+
"div",
|
28706 |
+
{ className: "options" },
|
28707 |
+
_react2.default.createElement(
|
28708 |
+
"span",
|
28709 |
+
{
|
28710 |
+
className: "likes tooltip--above",
|
28711 |
+
"data-title": this.likes + " " + likeTxt,
|
28712 |
+
onMouseEnter: function onMouseEnter(e) {
|
28713 |
+
return _this2.showTooltip(e);
|
28714 |
+
},
|
28715 |
+
onMouseLeave: function onMouseLeave(e) {
|
28716 |
+
return _this2.hideTooltip(e);
|
28717 |
+
}
|
28718 |
+
},
|
28719 |
+
_react2.default.createElement("i", {
|
28720 |
+
className: "fa fa-heart heart-like",
|
28721 |
+
"aria-hidden": "true"
|
28722 |
+
}),
|
28723 |
+
" ",
|
28724 |
+
this.likes
|
28725 |
+
),
|
28726 |
+
_react2.default.createElement(
|
28727 |
+
"a",
|
28728 |
+
{
|
28729 |
+
className: "tooltip--above",
|
28730 |
+
href: this.link,
|
28731 |
+
"data-title": instant_img_localize.view_on_unsplash,
|
28732 |
+
onMouseEnter: function onMouseEnter(e) {
|
28733 |
+
return _this2.showTooltip(e);
|
28734 |
+
},
|
28735 |
+
onMouseLeave: function onMouseLeave(e) {
|
28736 |
+
return _this2.hideTooltip(e);
|
28737 |
+
},
|
28738 |
+
target: "_blank"
|
28739 |
+
},
|
28740 |
+
_react2.default.createElement("i", {
|
28741 |
+
className: "fa fa-external-link",
|
28742 |
+
"aria-hidden": "true"
|
28743 |
+
}),
|
28744 |
+
_react2.default.createElement(
|
28745 |
+
"span",
|
28746 |
+
{ className: "offscreen" },
|
28747 |
+
instant_img_localize.view_on_unsplash
|
28748 |
+
)
|
28749 |
+
)
|
28750 |
+
)
|
28751 |
+
),
|
28752 |
+
_react2.default.createElement(
|
28753 |
+
"div",
|
28754 |
+
{ className: "edit-screen", tabIndex: "0" },
|
28755 |
+
_react2.default.createElement(
|
28756 |
+
"div",
|
28757 |
+
{ className: "edit-screen--title" },
|
28758 |
+
_react2.default.createElement(
|
28759 |
+
"p",
|
28760 |
+
{ className: "heading" },
|
28761 |
+
instant_img_localize.edit_details
|
28762 |
+
),
|
28763 |
+
_react2.default.createElement(
|
28764 |
+
"p",
|
28765 |
+
null,
|
28766 |
+
instant_img_localize.edit_details_intro,
|
28767 |
+
"."
|
28768 |
+
)
|
28769 |
+
),
|
28770 |
+
_react2.default.createElement(
|
28771 |
+
"label",
|
28772 |
+
null,
|
28773 |
+
_react2.default.createElement(
|
28774 |
+
"span",
|
28775 |
+
null,
|
28776 |
+
instant_img_localize.edit_filename,
|
28777 |
+
":"
|
28778 |
+
),
|
28779 |
+
_react2.default.createElement("input", {
|
28780 |
+
type: "text",
|
28781 |
+
name: "filename",
|
28782 |
+
"data-original": this.filename,
|
28783 |
+
placeholder: this.filename,
|
28784 |
+
value: this.state.filename,
|
28785 |
+
onChange: function onChange(e) {
|
28786 |
+
return _this2.handleEditChange(e);
|
28787 |
+
}
|
28788 |
+
}),
|
28789 |
+
_react2.default.createElement(
|
28790 |
+
"em",
|
28791 |
+
null,
|
28792 |
+
".jpg"
|
28793 |
+
)
|
28794 |
+
),
|
28795 |
+
_react2.default.createElement(
|
28796 |
+
"label",
|
28797 |
+
null,
|
28798 |
+
_react2.default.createElement(
|
28799 |
+
"span",
|
28800 |
+
null,
|
28801 |
+
instant_img_localize.edit_title,
|
28802 |
+
":"
|
28803 |
+
),
|
28804 |
+
_react2.default.createElement("input", {
|
28805 |
+
type: "text",
|
28806 |
+
name: "title",
|
28807 |
+
"data-original": this.title,
|
28808 |
+
placeholder: this.title,
|
28809 |
+
value: this.state.title || "",
|
28810 |
+
onChange: function onChange(e) {
|
28811 |
+
return _this2.handleEditChange(e);
|
28812 |
+
}
|
28813 |
+
})
|
28814 |
+
),
|
28815 |
+
_react2.default.createElement(
|
28816 |
+
"label",
|
28817 |
+
null,
|
28818 |
+
_react2.default.createElement(
|
28819 |
+
"span",
|
28820 |
+
null,
|
28821 |
+
instant_img_localize.edit_alt,
|
28822 |
+
":"
|
28823 |
+
),
|
28824 |
+
_react2.default.createElement("input", {
|
28825 |
+
type: "text",
|
28826 |
+
name: "alt",
|
28827 |
+
"data-original": this.alt,
|
28828 |
+
value: this.state.alt || "",
|
28829 |
+
onChange: function onChange(e) {
|
28830 |
+
return _this2.handleEditChange(e);
|
28831 |
+
}
|
28832 |
+
})
|
28833 |
+
),
|
28834 |
+
_react2.default.createElement(
|
28835 |
+
"label",
|
28836 |
+
null,
|
28837 |
+
_react2.default.createElement(
|
28838 |
+
"span",
|
28839 |
+
null,
|
28840 |
+
instant_img_localize.edit_caption,
|
28841 |
+
":"
|
28842 |
+
),
|
28843 |
+
_react2.default.createElement("textarea", {
|
28844 |
+
rows: "3",
|
28845 |
+
name: "caption",
|
28846 |
+
"data-original": "",
|
28847 |
+
onChange: function onChange(e) {
|
28848 |
+
return _this2.handleEditChange(e);
|
28849 |
+
},
|
28850 |
+
value: this.state.caption || ""
|
28851 |
+
})
|
28852 |
+
),
|
28853 |
+
_react2.default.createElement(
|
28854 |
+
"div",
|
28855 |
+
{ className: "edit-screen--controls" },
|
28856 |
+
_react2.default.createElement(
|
28857 |
+
"button",
|
28858 |
+
{
|
28859 |
+
type: "button",
|
28860 |
+
className: "button",
|
28861 |
+
onClick: function onClick(e) {
|
28862 |
+
return _this2.cancelEditChange(e);
|
28863 |
+
}
|
28864 |
+
},
|
28865 |
+
instant_img_localize.cancel
|
28866 |
+
),
|
28867 |
+
" ",
|
28868 |
+
"\xA0",
|
28869 |
+
_react2.default.createElement(
|
28870 |
+
"button",
|
28871 |
+
{
|
28872 |
+
type: "button",
|
28873 |
+
className: "button button-primary",
|
28874 |
+
onClick: function onClick(e) {
|
28875 |
+
return _this2.saveEditChange(e);
|
28876 |
+
}
|
28877 |
+
},
|
28878 |
+
instant_img_localize.upload_now
|
28879 |
+
)
|
28880 |
+
)
|
28881 |
+
)
|
28882 |
+
)
|
28883 |
+
);
|
28884 |
+
}
|
28885 |
+
}]);
|
28886 |
+
|
28887 |
+
return Photo;
|
28888 |
}(_react2.default.Component);
|
28889 |
|
28890 |
exports.default = Photo;
|
28963 |
_this.page = _this.props.page; // Page
|
28964 |
|
28965 |
_this.is_search = false;
|
28966 |
+
_this.search_term = "";
|
28967 |
_this.total_results = 0;
|
28968 |
+
_this.orientation = "";
|
28969 |
|
28970 |
_this.isLoading = false; // loading flag
|
28971 |
_this.isDone = false; // Done flag - no photos remain
|
28972 |
|
28973 |
+
_this.errorMsg = "";
|
28974 |
+
_this.msnry = "";
|
28975 |
+
_this.tooltipInterval = "";
|
28976 |
|
28977 |
+
_this.editor = _this.props.editor ? _this.props.editor : "classic";
|
28978 |
+
_this.is_block_editor = _this.props.editor === "gutenberg" ? true : false;
|
28979 |
+
_this.is_media_router = _this.props.editor === "media-router" ? true : false;
|
28980 |
+
_this.SetFeaturedImage = _this.props.SetFeaturedImage ? _this.props.SetFeaturedImage.bind(_this) : "";
|
28981 |
+
_this.InsertImage = _this.props.InsertImage ? _this.props.InsertImage.bind(_this) : "";
|
28982 |
|
28983 |
if (_this.is_block_editor) {
|
28984 |
// Gutenberg Sidebar Only
|
28985 |
+
_this.container = document.querySelector("body");
|
28986 |
+
_this.container.classList.add("loading");
|
28987 |
+
_this.wrapper = document.querySelector("body");
|
28988 |
} else {
|
28989 |
// Post Edit Screens and Plugin Screen
|
28990 |
+
_this.container = _this.props.container.closest(".instant-img-container");
|
28991 |
+
_this.wrapper = _this.props.container.closest(".instant-images-wrapper");
|
28992 |
+
_this.container.classList.add("loading");
|
28993 |
}
|
|
|
28994 |
return _this;
|
28995 |
}
|
28996 |
|
28997 |
/**
|
28998 |
+
* Test access to the REST API.
|
28999 |
+
*
|
29000 |
+
* @since 3.2
|
29001 |
+
*/
|
|
|
29002 |
|
29003 |
|
29004 |
_createClass(PhotoList, [{
|
29005 |
+
key: "test",
|
29006 |
value: function test() {
|
|
|
29007 |
var self = this;
|
29008 |
|
29009 |
+
var target = this.container.querySelector(".error-messaging"); // Target element
|
29010 |
|
29011 |
+
var testURL = instant_img_localize.root + "instant-images/test/"; // REST Route
|
29012 |
var restAPITest = new XMLHttpRequest();
|
29013 |
+
restAPITest.open("POST", testURL, true);
|
29014 |
+
restAPITest.setRequestHeader("X-WP-Nonce", instant_img_localize.nonce);
|
29015 |
+
restAPITest.setRequestHeader("Content-Type", "application/json");
|
29016 |
restAPITest.send();
|
29017 |
|
29018 |
restAPITest.onload = function () {
|
29037 |
};
|
29038 |
}
|
29039 |
}, {
|
29040 |
+
key: "renderTestError",
|
29041 |
value: function renderTestError(target) {
|
29042 |
+
target.classList.add("active");
|
29043 |
target.innerHTML = instant_img_localize.error_restapi + instant_img_localize.error_restapi_desc;
|
29044 |
}
|
29045 |
|
29046 |
/**
|
29047 |
+
* Trigger Unsplash Search.
|
29048 |
+
*
|
29049 |
+
* @param e element the search form
|
29050 |
+
* @since 3.0
|
29051 |
+
*/
|
|
|
29052 |
|
29053 |
}, {
|
29054 |
+
key: "search",
|
29055 |
value: function search(e) {
|
|
|
29056 |
e.preventDefault();
|
29057 |
+
var input = this.container.querySelector("#photo-search");
|
29058 |
var term = input.value;
|
29059 |
|
29060 |
if (term.length > 2) {
|
29061 |
+
input.classList.add("searching");
|
29062 |
+
this.container.classList.add("loading");
|
29063 |
this.search_term = term;
|
29064 |
this.is_search = true;
|
29065 |
this.doSearch(this.search_term);
|
29069 |
}
|
29070 |
|
29071 |
/**
|
29072 |
+
* Orientation filter. Availlable during a search only.
|
29073 |
+
*
|
29074 |
+
* @since 4.2
|
29075 |
+
*/
|
|
|
29076 |
|
29077 |
}, {
|
29078 |
+
key: "setOrientation",
|
29079 |
value: function setOrientation(orientation, e) {
|
|
|
29080 |
if (e && e.target) {
|
29081 |
var target = e.target;
|
29082 |
|
29083 |
+
if (target.classList.contains("active")) {
|
29084 |
// Clear orientation
|
29085 |
+
target.classList.remove("active");
|
29086 |
+
this.orientation = "";
|
29087 |
} else {
|
29088 |
+
// Set orientation
|
29089 |
+
var siblings = target.parentNode.querySelectorAll("li");
|
29090 |
[].concat(_toConsumableArray(siblings)).forEach(function (el) {
|
29091 |
+
return el.classList.remove("active");
|
29092 |
}); // remove active classes
|
29093 |
|
29094 |
+
target.classList.add("active");
|
29095 |
this.orientation = orientation;
|
29096 |
}
|
29097 |
|
29098 |
+
if (this.search_term !== "") {
|
29099 |
this.doSearch(this.search_term);
|
29100 |
}
|
29101 |
}
|
29102 |
}
|
29103 |
|
29104 |
/**
|
29105 |
+
* Is their an orientation set.
|
29106 |
+
*
|
29107 |
+
* @since 4.2
|
29108 |
+
*/
|
|
|
29109 |
|
29110 |
}, {
|
29111 |
+
key: "hasOrientation",
|
29112 |
value: function hasOrientation() {
|
29113 |
+
return this.orientation === "" ? false : true;
|
29114 |
}
|
29115 |
|
29116 |
/**
|
29117 |
+
* Clear the orientation.
|
29118 |
+
*
|
29119 |
+
* @since 4.2
|
29120 |
+
*/
|
|
|
29121 |
|
29122 |
}, {
|
29123 |
+
key: "clearOrientation",
|
29124 |
value: function clearOrientation() {
|
29125 |
+
var items = this.container.querySelectorAll(".orientation-list li");
|
29126 |
[].concat(_toConsumableArray(items)).forEach(function (el) {
|
29127 |
+
return el.classList.remove("active");
|
29128 |
}); // remove active classes
|
29129 |
+
this.orientation = "";
|
29130 |
}
|
29131 |
|
29132 |
/**
|
29133 |
+
* Run the search.
|
29134 |
+
*
|
29135 |
+
* @param term string the search term
|
29136 |
+
* @param type string the type of search, standard or by ID
|
29137 |
+
* @since 3.0
|
29138 |
+
* @updated 3.1
|
29139 |
+
*/
|
|
|
29140 |
|
29141 |
}, {
|
29142 |
+
key: "doSearch",
|
29143 |
value: function doSearch(term) {
|
|
|
29144 |
var self = this;
|
29145 |
+
var type = "term";
|
29146 |
this.page = 1; // reset page num
|
29147 |
|
29148 |
+
var url = "" + _API2.default.search_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&query=" + this.search_term;
|
29149 |
|
29150 |
if (this.hasOrientation()) {
|
29151 |
// Set orientation
|
29152 |
+
url = url + "&orientation=" + this.orientation;
|
29153 |
}
|
29154 |
|
29155 |
// Search by ID
|
29156 |
// allow users to search by photo by prepending id:{photo_id} to search terms
|
29157 |
var search_type = term.substring(0, 3);
|
29158 |
+
if (search_type === "id:") {
|
29159 |
+
type = "id";
|
29160 |
+
term = term.replace("id:", "");
|
29161 |
+
url = _API2.default.photo_api + "/" + term + _API2.default.app_id;
|
29162 |
}
|
29163 |
|
29164 |
+
var input = this.container.querySelector("#photo-search");
|
29165 |
|
29166 |
fetch(url).then(function (data) {
|
29167 |
return data.json();
|
29168 |
}).then(function (data) {
|
|
|
29169 |
// Term Search
|
29170 |
+
if (type === "term") {
|
|
|
29171 |
self.total_results = data.total;
|
29172 |
|
29173 |
// Check for returned data
|
29179 |
}
|
29180 |
|
29181 |
// Search by photo ID
|
29182 |
+
if (type === "id" && data) {
|
29183 |
+
// Convert return data to array
|
|
|
29184 |
var photoArray = [];
|
29185 |
|
29186 |
if (data.errors) {
|
29187 |
// If error was returned
|
29188 |
|
29189 |
self.total_results = 0;
|
29190 |
+
self.checkTotalResults("0");
|
29191 |
} else {
|
29192 |
// No errors, display results
|
29193 |
|
29194 |
photoArray.push(data);
|
29195 |
|
29196 |
self.total_results = 1;
|
29197 |
+
self.checkTotalResults("1");
|
29198 |
}
|
29199 |
|
29200 |
self.results = photoArray;
|
29201 |
self.setState({ results: self.results });
|
29202 |
}
|
29203 |
|
29204 |
+
input.classList.remove("searching");
|
29205 |
}).catch(function (error) {
|
29206 |
console.log(error);
|
29207 |
self.isLoading = false;
|
29209 |
}
|
29210 |
|
29211 |
/**
|
29212 |
+
* Reset search results and results view.
|
29213 |
+
*
|
29214 |
+
* @since 3.0
|
29215 |
+
*/
|
|
|
29216 |
|
29217 |
}, {
|
29218 |
+
key: "clearSearch",
|
29219 |
value: function clearSearch() {
|
29220 |
+
var input = this.container.querySelector("#photo-search");
|
29221 |
+
input.value = "";
|
29222 |
this.total_results = 0;
|
29223 |
this.is_search = false;
|
29224 |
+
this.search_term = "";
|
29225 |
this.clearOrientation();
|
29226 |
}
|
29227 |
|
29228 |
/**
|
29229 |
+
* Load next set of photos, infinite scroll style.
|
29230 |
+
*
|
29231 |
+
* @since 3.0
|
29232 |
+
*/
|
|
|
29233 |
|
29234 |
}, {
|
29235 |
+
key: "getPhotos",
|
29236 |
value: function getPhotos() {
|
|
|
29237 |
var self = this;
|
29238 |
this.page = parseInt(this.page) + 1;
|
29239 |
+
this.container.classList.add("loading");
|
29240 |
this.isLoading = true;
|
29241 |
|
29242 |
+
var url = "" + _API2.default.photo_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&order_by=" + this.orderby;
|
29243 |
|
29244 |
if (this.is_search) {
|
29245 |
+
url = "" + _API2.default.search_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&query=" + this.search_term;
|
29246 |
if (this.hasOrientation()) {
|
29247 |
// Set orientation
|
29248 |
+
url = url + "&orientation=" + this.orientation;
|
29249 |
}
|
29250 |
}
|
29251 |
|
29252 |
fetch(url).then(function (data) {
|
29253 |
return data.json();
|
29254 |
}).then(function (data) {
|
|
|
29255 |
if (self.is_search) {
|
29256 |
data = data.results; // Search results are recieved in different JSON format
|
29257 |
}
|
29273 |
}
|
29274 |
|
29275 |
/**
|
29276 |
+
* Toogles the photo view (New/Popular/Old).
|
29277 |
+
*
|
29278 |
+
* @param view string Current view
|
29279 |
+
* @param e element Clicked element
|
29280 |
+
* @since 3.0
|
29281 |
+
*/
|
|
|
29282 |
|
29283 |
}, {
|
29284 |
+
key: "togglePhotoList",
|
29285 |
value: function togglePhotoList(view, e) {
|
|
|
29286 |
var el = e.target;
|
29287 |
+
if (el.classList.contains("active")) return false; // exit if active
|
29288 |
|
29289 |
+
el.classList.add("loading"); // Add class to nav btn
|
29290 |
this.isLoading = true;
|
29291 |
var self = this;
|
29292 |
this.page = 1;
|
29294 |
this.results = [];
|
29295 |
this.clearSearch();
|
29296 |
|
29297 |
+
var url = "" + _API2.default.photo_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&order_by=" + this.orderby;
|
29298 |
fetch(url).then(function (data) {
|
29299 |
return data.json();
|
29300 |
}).then(function (data) {
|
|
|
29301 |
// Check for returned data
|
29302 |
self.checkTotalResults(data.length);
|
29303 |
|
29305 |
self.results = data;
|
29306 |
self.setState({ results: data });
|
29307 |
|
29308 |
+
el.classList.remove("loading"); // Remove class from nav btn
|
29309 |
}).catch(function (error) {
|
29310 |
console.log(error);
|
29311 |
self.isLoading = false;
|
29313 |
}
|
29314 |
|
29315 |
/**
|
29316 |
+
* Renders the Masonry layout.
|
29317 |
+
*
|
29318 |
+
* @since 3.0
|
29319 |
+
*/
|
|
|
29320 |
|
29321 |
}, {
|
29322 |
+
key: "renderLayout",
|
29323 |
value: function renderLayout() {
|
29324 |
if (this.is_block_editor) {
|
29325 |
return false;
|
29326 |
}
|
29327 |
var self = this;
|
29328 |
+
var photoListWrapper = self.container.querySelector(".photo-target");
|
29329 |
imagesLoaded(photoListWrapper, function () {
|
29330 |
self.msnry = new _masonryLayout2.default(photoListWrapper, {
|
29331 |
+
itemSelector: ".photo"
|
29332 |
});
|
29333 |
+
[].concat(_toConsumableArray(self.container.querySelectorAll(".photo-target .photo"))).forEach(function (el) {
|
29334 |
+
return el.classList.add("in-view");
|
29335 |
});
|
29336 |
});
|
29337 |
}
|
29338 |
|
29339 |
/**
|
29340 |
+
* Scrolling function.
|
29341 |
+
*
|
29342 |
+
* @since 3.0
|
29343 |
+
*/
|
|
|
29344 |
|
29345 |
}, {
|
29346 |
+
key: "onScroll",
|
29347 |
value: function onScroll() {
|
29348 |
var wHeight = window.innerHeight;
|
29349 |
var scrollTop = window.pageYOffset;
|
29354 |
}
|
29355 |
|
29356 |
/**
|
29357 |
+
* A checker to determine is there are remaining search results.
|
29358 |
+
*
|
29359 |
+
* @param num int Total search results
|
29360 |
+
* @since 3.0
|
29361 |
+
*/
|
|
|
29362 |
|
29363 |
}, {
|
29364 |
+
key: "checkTotalResults",
|
29365 |
value: function checkTotalResults(num) {
|
29366 |
this.isDone = num == 0 ? true : false;
|
29367 |
}
|
29368 |
|
29369 |
/**
|
29370 |
+
* Sets the main navigation active state.
|
29371 |
+
*
|
29372 |
+
* @since 3.0
|
29373 |
+
*/
|
|
|
29374 |
|
29375 |
}, {
|
29376 |
+
key: "setActiveState",
|
29377 |
value: function setActiveState() {
|
29378 |
var self = this;
|
29379 |
// Remove .active class
|
29380 |
+
[].concat(_toConsumableArray(this.container.querySelectorAll(".control-nav button"))).forEach(function (el) {
|
29381 |
+
return el.classList.remove("active");
|
29382 |
});
|
29383 |
|
29384 |
// Set active item, if not search
|
29385 |
if (!this.is_search) {
|
29386 |
+
var active = this.container.querySelector(".control-nav li button." + this.orderby);
|
29387 |
+
active.classList.add("active");
|
29388 |
}
|
29389 |
setTimeout(function () {
|
29390 |
self.isLoading = false;
|
29391 |
+
self.container.classList.remove("loading");
|
29392 |
}, 1000);
|
29393 |
}
|
29394 |
|
29395 |
/**
|
29396 |
+
* Show the tooltip.
|
29397 |
+
*
|
29398 |
+
* @since 4.3.0
|
29399 |
+
*/
|
|
|
29400 |
|
29401 |
}, {
|
29402 |
+
key: "showTooltip",
|
29403 |
value: function showTooltip(e) {
|
29404 |
var self = this;
|
29405 |
var target = e.currentTarget;
|
29406 |
var rect = target.getBoundingClientRect();
|
29407 |
var left = Math.round(rect.left);
|
29408 |
var top = Math.round(rect.top);
|
29409 |
+
var tooltip = this.container.querySelector("#tooltip");
|
29410 |
+
tooltip.classList.remove("over");
|
29411 |
|
29412 |
+
if (target.classList.contains("tooltip--above")) {
|
29413 |
+
tooltip.classList.add("above");
|
29414 |
} else {
|
29415 |
+
tooltip.classList.remove("above");
|
29416 |
}
|
29417 |
|
29418 |
// Get Content
|
29420 |
|
29421 |
// Delay reveal
|
29422 |
this.tooltipInterval = setInterval(function () {
|
|
|
29423 |
clearInterval(self.tooltipInterval);
|
29424 |
tooltip.innerHTML = title;
|
29425 |
|
29426 |
// Position Tooltip
|
29427 |
left = left - tooltip.offsetWidth + target.offsetWidth + 5;
|
29428 |
+
tooltip.style.left = left + "px";
|
29429 |
+
tooltip.style.top = top + "px";
|
29430 |
|
29431 |
setTimeout(function () {
|
29432 |
+
tooltip.classList.add("over");
|
29433 |
}, 150);
|
29434 |
}, 500);
|
29435 |
}
|
29436 |
|
29437 |
/**
|
29438 |
+
* Hide the tooltip.
|
29439 |
+
*
|
29440 |
+
* @since 4.3.0
|
29441 |
+
*/
|
|
|
29442 |
|
29443 |
}, {
|
29444 |
+
key: "hideTooltip",
|
29445 |
value: function hideTooltip(e) {
|
29446 |
clearInterval(this.tooltipInterval);
|
29447 |
+
var tooltip = this.container.querySelector("#tooltip");
|
29448 |
+
tooltip.classList.remove("over");
|
29449 |
}
|
29450 |
|
29451 |
+
// Component Updated
|
29452 |
|
29453 |
}, {
|
29454 |
+
key: "componentDidUpdate",
|
29455 |
value: function componentDidUpdate() {
|
29456 |
this.renderLayout();
|
29457 |
this.setActiveState();
|
29458 |
}
|
29459 |
|
29460 |
+
// Component Init
|
29461 |
|
29462 |
}, {
|
29463 |
+
key: "componentDidMount",
|
29464 |
value: function componentDidMount() {
|
29465 |
var _this2 = this;
|
29466 |
|
29467 |
this.renderLayout();
|
29468 |
this.setActiveState();
|
29469 |
this.test();
|
29470 |
+
this.container.classList.remove("loading");
|
29471 |
+
this.wrapper.classList.add("loaded");
|
29472 |
|
29473 |
if (this.is_block_editor || this.is_media_router) {
|
29474 |
// Gutenberg || Media Popup
|
29475 |
this.page = 0;
|
29476 |
this.getPhotos();
|
29477 |
} else {
|
29478 |
+
// Add scroll event
|
29479 |
+
window.addEventListener("scroll", function () {
|
29480 |
return _this2.onScroll();
|
29481 |
});
|
29482 |
}
|
29483 |
}
|
29484 |
}, {
|
29485 |
+
key: "render",
|
29486 |
value: function render() {
|
29487 |
var _this3 = this;
|
29488 |
|
29489 |
// Show/Hide orientation listing
|
29490 |
+
var orientationStyle = this.is_search ? { display: "flex" } : { display: "none" };
|
29491 |
|
29492 |
return _react2.default.createElement(
|
29493 |
+
"div",
|
29494 |
+
{ id: "photo-listing", className: this.service },
|
29495 |
_react2.default.createElement(
|
29496 |
+
"ul",
|
29497 |
+
{ className: "control-nav" },
|
29498 |
_react2.default.createElement(
|
29499 |
+
"li",
|
29500 |
null,
|
29501 |
_react2.default.createElement(
|
29502 |
+
"button",
|
29503 |
+
{
|
29504 |
+
type: "button",
|
29505 |
+
className: "latest",
|
29506 |
+
onClick: function onClick(e) {
|
29507 |
+
return _this3.togglePhotoList("latest", e);
|
29508 |
+
}
|
29509 |
+
},
|
29510 |
instant_img_localize.latest
|
29511 |
)
|
29512 |
),
|
29513 |
_react2.default.createElement(
|
29514 |
+
"li",
|
29515 |
+
{ id: "nav-target" },
|
29516 |
_react2.default.createElement(
|
29517 |
+
"button",
|
29518 |
+
{
|
29519 |
+
type: "button",
|
29520 |
+
className: "popular",
|
29521 |
+
onClick: function onClick(e) {
|
29522 |
+
return _this3.togglePhotoList("popular", e);
|
29523 |
+
}
|
29524 |
+
},
|
29525 |
instant_img_localize.popular
|
29526 |
)
|
29527 |
),
|
29528 |
_react2.default.createElement(
|
29529 |
+
"li",
|
29530 |
null,
|
29531 |
_react2.default.createElement(
|
29532 |
+
"button",
|
29533 |
+
{
|
29534 |
+
type: "button",
|
29535 |
+
className: "oldest",
|
29536 |
+
onClick: function onClick(e) {
|
29537 |
+
return _this3.togglePhotoList("oldest", e);
|
29538 |
+
}
|
29539 |
+
},
|
29540 |
instant_img_localize.oldest
|
29541 |
)
|
29542 |
),
|
29543 |
_react2.default.createElement(
|
29544 |
+
"li",
|
29545 |
+
{ className: "search-field", id: "search-bar" },
|
29546 |
_react2.default.createElement(
|
29547 |
+
"form",
|
29548 |
{ onSubmit: function onSubmit(e) {
|
29549 |
return _this3.search(e);
|
29550 |
+
}, autoComplete: "off" },
|
29551 |
+
_react2.default.createElement("input", {
|
29552 |
+
type: "search",
|
29553 |
+
id: "photo-search",
|
29554 |
+
placeholder: instant_img_localize.search
|
29555 |
+
}),
|
29556 |
_react2.default.createElement(
|
29557 |
+
"button",
|
29558 |
+
{ type: "submit", id: "photo-search-submit" },
|
29559 |
+
_react2.default.createElement("i", { className: "fa fa-search" })
|
29560 |
),
|
29561 |
+
_react2.default.createElement(_ResultsToolTip2.default, {
|
29562 |
+
container: this.container,
|
29563 |
+
isSearch: this.is_search,
|
29564 |
+
total: this.total_results,
|
29565 |
+
title: this.total_results + " " + instant_img_localize.search_results + " " + this.search_term
|
29566 |
+
})
|
29567 |
)
|
29568 |
)
|
29569 |
),
|
29570 |
+
_react2.default.createElement("div", { className: "error-messaging" }),
|
29571 |
_react2.default.createElement(
|
29572 |
+
"div",
|
29573 |
+
{ className: "orientation-list", style: orientationStyle },
|
29574 |
_react2.default.createElement(
|
29575 |
+
"span",
|
29576 |
null,
|
29577 |
+
_react2.default.createElement("i", { className: "fa fa-filter", "aria-hidden": "true" }),
|
29578 |
+
" ",
|
29579 |
instant_img_localize.orientation,
|
29580 |
+
":"
|
29581 |
),
|
29582 |
_react2.default.createElement(
|
29583 |
+
"ul",
|
29584 |
null,
|
29585 |
_react2.default.createElement(
|
29586 |
+
"li",
|
29587 |
+
{
|
29588 |
+
tabIndex: "0",
|
29589 |
+
onClick: function onClick(e) {
|
29590 |
+
return _this3.setOrientation("landscape", e);
|
29591 |
+
},
|
29592 |
+
onKeyPress: function onKeyPress(e) {
|
29593 |
+
return _this3.setOrientation("landscape", e);
|
29594 |
+
}
|
29595 |
+
},
|
29596 |
instant_img_localize.landscape
|
29597 |
),
|
29598 |
_react2.default.createElement(
|
29599 |
+
"li",
|
29600 |
+
{
|
29601 |
+
tabIndex: "0",
|
29602 |
+
onClick: function onClick(e) {
|
29603 |
+
return _this3.setOrientation("portrait", e);
|
29604 |
+
},
|
29605 |
+
onKeyPress: function onKeyPress(e) {
|
29606 |
+
return _this3.setOrientation("portrait", e);
|
29607 |
+
}
|
29608 |
+
},
|
29609 |
instant_img_localize.portrait
|
29610 |
),
|
29611 |
_react2.default.createElement(
|
29612 |
+
"li",
|
29613 |
+
{
|
29614 |
+
tabIndex: "0",
|
29615 |
+
onClick: function onClick(e) {
|
29616 |
+
return _this3.setOrientation("squarish", e);
|
29617 |
+
},
|
29618 |
+
onKeyPress: function onKeyPress(e) {
|
29619 |
+
return _this3.setOrientation("squarish", e);
|
29620 |
+
}
|
29621 |
+
},
|
29622 |
instant_img_localize.squarish
|
29623 |
)
|
29624 |
)
|
29625 |
),
|
29626 |
_react2.default.createElement(
|
29627 |
+
"div",
|
29628 |
+
{ id: "photos", className: "photo-target" },
|
29629 |
this.state.results.map(function (result, iterator) {
|
29630 |
+
return _react2.default.createElement(_Photo2.default, {
|
29631 |
+
result: result,
|
29632 |
+
key: result.id + iterator,
|
29633 |
+
editor: _this3.editor,
|
29634 |
+
mediaRouter: _this3.is_media_router,
|
29635 |
+
blockEditor: _this3.is_block_editor,
|
29636 |
+
SetFeaturedImage: _this3.SetFeaturedImage,
|
29637 |
+
InsertImage: _this3.InsertImage,
|
29638 |
+
showTooltip: _this3.showTooltip,
|
29639 |
+
hideTooltip: _this3.hideTooltip
|
29640 |
+
});
|
29641 |
})
|
29642 |
),
|
29643 |
_react2.default.createElement(
|
29644 |
+
"div",
|
29645 |
+
{
|
29646 |
+
className: this.total_results == 0 && this.is_search === true ? "no-results show" : "no-results",
|
29647 |
+
title: this.props.title
|
29648 |
+
},
|
29649 |
_react2.default.createElement(
|
29650 |
+
"h3",
|
29651 |
null,
|
29652 |
instant_img_localize.no_results,
|
29653 |
+
" "
|
29654 |
),
|
29655 |
_react2.default.createElement(
|
29656 |
+
"p",
|
29657 |
null,
|
29658 |
instant_img_localize.no_results_desc,
|
29659 |
+
" "
|
29660 |
)
|
29661 |
),
|
29662 |
+
_react2.default.createElement("div", { className: "loading-block" }),
|
29663 |
_react2.default.createElement(
|
29664 |
+
"div",
|
29665 |
+
{ className: "load-more-wrap" },
|
29666 |
_react2.default.createElement(
|
29667 |
+
"button",
|
29668 |
+
{
|
29669 |
+
type: "button",
|
29670 |
+
className: "button",
|
29671 |
+
onClick: function onClick() {
|
29672 |
return _this3.getPhotos();
|
29673 |
+
}
|
29674 |
+
},
|
29675 |
instant_img_localize.load_more
|
29676 |
)
|
29677 |
),
|
29678 |
_react2.default.createElement(
|
29679 |
+
"div",
|
29680 |
+
{ id: "tooltip" },
|
29681 |
+
"Meow"
|
29682 |
)
|
29683 |
);
|
29684 |
}
|
29702 |
|
29703 |
|
29704 |
Object.defineProperty(exports, "__esModule", {
|
29705 |
+
value: true
|
29706 |
});
|
29707 |
|
29708 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
29720 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
29721 |
|
29722 |
var ResultsToolTip = function (_React$Component) {
|
29723 |
+
_inherits(ResultsToolTip, _React$Component);
|
29724 |
|
29725 |
+
function ResultsToolTip(props) {
|
29726 |
+
_classCallCheck(this, ResultsToolTip);
|
29727 |
|
29728 |
+
return _possibleConstructorReturn(this, (ResultsToolTip.__proto__ || Object.getPrototypeOf(ResultsToolTip)).call(this, props));
|
29729 |
+
}
|
29730 |
+
|
29731 |
+
_createClass(ResultsToolTip, [{
|
29732 |
+
key: "resetSearch",
|
29733 |
+
value: function resetSearch() {
|
29734 |
+
var nav = this.props.container.querySelector(".control-nav");
|
29735 |
+
var navItem = nav.querySelector("li button.latest");
|
29736 |
+
navItem.click();
|
29737 |
+
}
|
29738 |
+
}, {
|
29739 |
+
key: "render",
|
29740 |
+
value: function render() {
|
29741 |
+
var _this2 = this;
|
29742 |
+
|
29743 |
+
return _react2.default.createElement(
|
29744 |
+
"div",
|
29745 |
+
{
|
29746 |
+
className: this.props.isSearch ? "searchResults" : "searchResults hide"
|
29747 |
+
},
|
29748 |
+
_react2.default.createElement(
|
29749 |
+
"span",
|
29750 |
+
{ title: this.props.title },
|
29751 |
+
this.props.total
|
29752 |
+
),
|
29753 |
+
_react2.default.createElement(
|
29754 |
+
"button",
|
29755 |
+
{
|
29756 |
+
type: "button",
|
29757 |
+
title: instant_img_localize.clear_search,
|
29758 |
+
onClick: function onClick(e) {
|
29759 |
+
return _this2.resetSearch();
|
29760 |
+
}
|
29761 |
+
},
|
29762 |
+
"x",
|
29763 |
+
_react2.default.createElement(
|
29764 |
+
"span",
|
29765 |
+
{ className: "offscreen" },
|
29766 |
+
instant_img_localize.clear_search
|
29767 |
+
)
|
29768 |
+
)
|
29769 |
+
);
|
29770 |
+
}
|
29771 |
+
}]);
|
29772 |
|
29773 |
+
return ResultsToolTip;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29774 |
}(_react2.default.Component);
|
29775 |
|
29776 |
exports.default = ResultsToolTip;
|
dist/js/instant-images-block.min.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=
|
2 |
/*
|
3 |
object-assign
|
4 |
(c) Sindre Sorhus
|
5 |
@license MIT
|
6 |
-
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,a,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),u=1;u<arguments.length;u++){for(var l in n=Object(arguments[u]))o.call(n,l)&&(s[l]=n[l]);if(r){a=r(n);for(var c=0;c<a.length;c++)i.call(n,a[c])&&(s[a[c]]=n[a[c]])}}return s}},function(e,t,n){"use strict";var r=n(1),o=n(16),i=n(58),a=(n(0),o.ID_ATTRIBUTE_NAME),s=i,u="__reactInternalInstance$"+Math.random().toString(36).slice(2);function l(e,t){return 1===e.nodeType&&e.getAttribute(a)===String(t)||8===e.nodeType&&e.nodeValue===" react-text: "+t+" "||8===e.nodeType&&e.nodeValue===" react-empty: "+t+" "}function c(e){for(var t;t=e._renderedComponent;)e=t;return e}function p(e,t){var n=c(e);n._hostNode=t,t[u]=n}function d(e,t){if(!(e._flags&s.hasCachedChildNodes)){var n=e._renderedChildren,o=t.firstChild;e:for(var i in n)if(n.hasOwnProperty(i)){var a=n[i],u=c(a)._domID;if(0!==u){for(;null!==o;o=o.nextSibling)if(l(o,u)){p(a,o);continue e}r("32",u)}}e._flags|=s.hasCachedChildNodes}}function f(e){if(e[u])return e[u];for(var t,n,r=[];!e[u];){if(r.push(e),!e.parentNode)return null;e=e.parentNode}for(;e&&(n=e[u]);e=r.pop())t=n,r.length&&d(n,e);return t}var h={getClosestInstanceFromNode:f,getInstanceFromNode:function(e){var t=f(e);return null!=t&&t._hostNode===e?t:null},getNodeFromInstance:function(e){if(void 0===e._hostNode&&r("33"),e._hostNode)return e._hostNode;for(var t=[];!e._hostNode;)t.push(e),e._hostParent||r("34"),e=e._hostParent;for(;t.length;e=t.pop())d(e,e._hostNode);return e._hostNode},precacheChildNodes:d,precacheNode:p,uncacheNode:function(e){var t=e._hostNode;t&&(delete t[u],e._hostNode=null)}};e.exports=h},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=o},function(e,t,n){"use strict";e.exports={debugTool:null}},function(e,t,n){"use strict";var r=n(88),o=n(192),i=Object.prototype.toString;function a(e){return"[object Array]"===i.call(e)}function s(e){return null!==e&&"object"==typeof e}function u(e){return"[object Function]"===i.call(e)}function l(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),a(e))for(var n=0,r=e.length;n<r;n++)t.call(null,e[n],n,e);else for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.call(null,e[o],o,e)}e.exports={isArray:a,isArrayBuffer:function(e){return"[object ArrayBuffer]"===i.call(e)},isBuffer:o,isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:s,isUndefined:function(e){return void 0===e},isDate:function(e){return"[object Date]"===i.call(e)},isFile:function(e){return"[object File]"===i.call(e)},isBlob:function(e){return"[object Blob]"===i.call(e)},isFunction:u,isStream:function(e){return s(e)&&u(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:l,merge:function e(){var t={};function n(n,r){"object"==typeof t[r]&&"object"==typeof n?t[r]=e(t[r],n):t[r]=n}for(var r=0,o=arguments.length;r<o;r++)l(arguments[r],n);return t},extend:function(e,t,n){return l(t,function(t,o){e[o]=n&&"function"==typeof t?r(t,n):t}),e},trim:function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}}},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(63),a=n(13),s=n(64),u=n(14),l=n(24),c=n(0),p=[],d=0,f=i.getPooled(),h=!1,m=null;function g(){C.ReactReconcileTransaction&&m||r("123")}var v=[{initialize:function(){this.dirtyComponentsLength=p.length},close:function(){this.dirtyComponentsLength!==p.length?(p.splice(0,this.dirtyComponentsLength),E()):p.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function y(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=i.getPooled(),this.reconcileTransaction=C.ReactReconcileTransaction.getPooled(!0)}function _(e,t){return e._mountOrder-t._mountOrder}function b(e){var t=e.dirtyComponentsLength;t!==p.length&&r("124",t,p.length),p.sort(_),d++;for(var n=0;n<t;n++){var o,i=p[n],a=i._pendingCallbacks;if(i._pendingCallbacks=null,s.logTopLevelRenders){var l=i;i._currentElement.type.isReactTopLevelWrapper&&(l=i._renderedComponent),o="React update: "+l.getName(),console.time(o)}if(u.performUpdateIfNecessary(i,e.reconcileTransaction,d),o&&console.timeEnd(o),a)for(var c=0;c<a.length;c++)e.callbackQueue.enqueue(a[c],i.getPublicInstance())}}o(y.prototype,l,{getTransactionWrappers:function(){return v},destructor:function(){this.dirtyComponentsLength=null,i.release(this.callbackQueue),this.callbackQueue=null,C.ReactReconcileTransaction.release(this.reconcileTransaction),this.reconcileTransaction=null},perform:function(e,t,n){return l.perform.call(this,this.reconcileTransaction.perform,this.reconcileTransaction,e,t,n)}}),a.addPoolingTo(y);var E=function(){for(;p.length||h;){if(p.length){var e=y.getPooled();e.perform(b,null,e),y.release(e)}if(h){h=!1;var t=f;f=i.getPooled(),t.notifyAll(),i.release(t)}}};var C={ReactReconcileTransaction:null,batchedUpdates:function(e,t,n,r,o,i){return g(),m.batchedUpdates(e,t,n,r,o,i)},enqueueUpdate:function e(t){g(),m.isBatchingUpdates?(p.push(t),null==t._updateBatchNumber&&(t._updateBatchNumber=d+1)):m.batchedUpdates(e,t)},flushBatchedUpdates:E,injection:{injectReconcileTransaction:function(e){e||r("126"),C.ReactReconcileTransaction=e},injectBatchingStrategy:function(e){e||r("127"),"function"!=typeof e.batchedUpdates&&r("128"),"boolean"!=typeof e.isBatchingUpdates&&r("129"),m=e}},asap:function(e,t){c(m.isBatchingUpdates,"ReactUpdates.asap: Can't enqueue an asap callback in a context whereupdates are not being batched."),f.enqueue(e,t),h=!0}};e.exports=C},function(e,t,n){"use strict";e.exports={current:null}},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(8),a=(n(2),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),s={type:null,target:null,currentTarget:i.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};function u(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n;var o=this.constructor.Interface;for(var a in o)if(o.hasOwnProperty(a)){0;var s=o[a];s?this[a]=s(n):"target"===a?this.target=r:this[a]=n[a]}var u=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue;return this.isDefaultPrevented=u?i.thatReturnsTrue:i.thatReturnsFalse,this.isPropagationStopped=i.thatReturnsFalse,this}r(u.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=i.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=i.thatReturnsTrue)},persist:function(){this.isPersistent=i.thatReturnsTrue},isPersistent:i.thatReturnsFalse,destructor:function(){var e=this.constructor.Interface;for(var t in e)this[t]=null;for(var n=0;n<a.length;n++)this[a[n]]=null}}),u.Interface=s,u.augmentClass=function(e,t){var n=function(){};n.prototype=this.prototype;var i=new n;r(i,e.prototype),e.prototype=i,e.prototype.constructor=e,e.Interface=r({},this.Interface,t),e.augmentClass=this.augmentClass,o.addPoolingTo(e,o.fourArgumentPooler)},o.addPoolingTo(u,o.fourArgumentPooler),e.exports=u},function(e,t,n){"use strict";var r=n(3),o=n(53),i=n(95),a=n(100),s=n(15),u=n(101),l=n(105),c=n(106),p=n(108),d=s.createElement,f=s.createFactory,h=s.cloneElement,m=r,g={Children:{map:i.map,forEach:i.forEach,count:i.count,toArray:i.toArray,only:p},Component:o.Component,PureComponent:o.PureComponent,createElement:d,cloneElement:h,isValidElement:s.isValidElement,PropTypes:u,createClass:c,createFactory:f,createMixin:function(e){return e},DOM:a,version:l,__spread:m};e.exports=g},function(e,t,n){"use strict";var r=n(1),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(116);n(6),n(2);function o(){r.attachRefs(this,this._currentElement)}var i={mountComponent:function(e,t,n,r,i,a){var s=e.mountComponent(t,n,r,i,a);return e._currentElement&&null!=e._currentElement.ref&&t.getReactMountReady().enqueue(o,e),s},getHostNode:function(e){return e.getHostNode()},unmountComponent:function(e,t){r.detachRefs(e,e._currentElement),e.unmountComponent(t)},receiveComponent:function(e,t,n,i){var a=e._currentElement;if(t!==a||i!==e._context){0;var s=r.shouldUpdateRefs(a,t);s&&r.detachRefs(e,a),e.receiveComponent(t,n,i),s&&e._currentElement&&null!=e._currentElement.ref&&n.getReactMountReady().enqueue(o,e)}},performUpdateIfNecessary:function(e,t,n){e._updateBatchNumber===n&&e.performUpdateIfNecessary(t)}};e.exports=i},function(e,t,n){"use strict";var r=n(3),o=n(10),i=(n(2),n(55),Object.prototype.hasOwnProperty),a=n(56),s={key:!0,ref:!0,__self:!0,__source:!0};function u(e){return void 0!==e.ref}function l(e){return void 0!==e.key}var c=function(e,t,n,r,o,i,s){return{$$typeof:a,type:e,key:t,ref:n,props:s,_owner:i}};c.createElement=function(e,t,n){var r,a={},p=null,d=null;if(null!=t)for(r in u(t)&&(d=t.ref),l(t)&&(p=""+t.key),void 0===t.__self?null:t.__self,void 0===t.__source?null:t.__source,t)i.call(t,r)&&!s.hasOwnProperty(r)&&(a[r]=t[r]);var f=arguments.length-2;if(1===f)a.children=n;else if(f>1){for(var h=Array(f),m=0;m<f;m++)h[m]=arguments[m+2];0,a.children=h}if(e&&e.defaultProps){var g=e.defaultProps;for(r in g)void 0===a[r]&&(a[r]=g[r])}return c(e,p,d,0,0,o.current,a)},c.createFactory=function(e){var t=c.createElement.bind(null,e);return t.type=e,t},c.cloneAndReplaceKey=function(e,t){return c(e.type,t,e.ref,e._self,e._source,e._owner,e.props)},c.cloneElement=function(e,t,n){var a,p,d=r({},e.props),f=e.key,h=e.ref,m=(e._self,e._source,e._owner);if(null!=t)for(a in u(t)&&(h=t.ref,m=o.current),l(t)&&(f=""+t.key),e.type&&e.type.defaultProps&&(p=e.type.defaultProps),t)i.call(t,a)&&!s.hasOwnProperty(a)&&(void 0===t[a]&&void 0!==p?d[a]=p[a]:d[a]=t[a]);var g=arguments.length-2;if(1===g)d.children=n;else if(g>1){for(var v=Array(g),y=0;y<g;y++)v[y]=arguments[y+2];d.children=v}return c(e.type,f,h,0,0,m,d)},c.isValidElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},e.exports=c},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){return(e&t)===t}var i={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,injectDOMPropertyConfig:function(e){var t=i,n=e.Properties||{},a=e.DOMAttributeNamespaces||{},u=e.DOMAttributeNames||{},l=e.DOMPropertyNames||{},c=e.DOMMutationMethods||{};for(var p in e.isCustomAttribute&&s._isCustomAttributeFunctions.push(e.isCustomAttribute),n){s.properties.hasOwnProperty(p)&&r("48",p);var d=p.toLowerCase(),f=n[p],h={attributeName:d,attributeNamespace:null,propertyName:p,mutationMethod:null,mustUseProperty:o(f,t.MUST_USE_PROPERTY),hasBooleanValue:o(f,t.HAS_BOOLEAN_VALUE),hasNumericValue:o(f,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:o(f,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:o(f,t.HAS_OVERLOADED_BOOLEAN_VALUE)};if(h.hasBooleanValue+h.hasNumericValue+h.hasOverloadedBooleanValue<=1||r("50",p),u.hasOwnProperty(p)){var m=u[p];h.attributeName=m}a.hasOwnProperty(p)&&(h.attributeNamespace=a[p]),l.hasOwnProperty(p)&&(h.propertyName=l[p]),c.hasOwnProperty(p)&&(h.mutationMethod=c[p]),s.properties[p]=h}}},a=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",s={ID_ATTRIBUTE_NAME:"data-reactid",ROOT_ATTRIBUTE_NAME:"data-reactroot",ATTRIBUTE_NAME_START_CHAR:a,ATTRIBUTE_NAME_CHAR:a+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",properties:{},getPossibleStandardName:null,_isCustomAttributeFunctions:[],isCustomAttribute:function(e){for(var t=0;t<s._isCustomAttributeFunctions.length;t++){if((0,s._isCustomAttributeFunctions[t])(e))return!0}return!1},injection:i};e.exports=s},function(e,t,n){"use strict";var r=n(38),o=n(26),i=n(39),a=n(68),s="undefined"!=typeof document&&"number"==typeof document.documentMode||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&/\bEdge\/\d/.test(navigator.userAgent);function u(e){if(s){var t=e.node,n=e.children;if(n.length)for(var r=0;r<n.length;r++)l(t,n[r],null);else null!=e.html?o(t,e.html):null!=e.text&&a(t,e.text)}}var l=i(function(e,t,n){11===t.node.nodeType||1===t.node.nodeType&&"object"===t.node.nodeName.toLowerCase()&&(null==t.node.namespaceURI||t.node.namespaceURI===r.html)?(u(t),e.insertBefore(t.node,n)):(e.insertBefore(t.node,n),u(t))});function c(){return this.node.nodeName}function p(e){return{node:e,children:[],html:null,text:null,toString:c}}p.insertTreeBefore=l,p.replaceChildWithTree=function(e,t){e.parentNode.replaceChild(t.node,e),u(t)},p.queueChild=function(e,t){s?e.children.push(t):e.node.appendChild(t.node)},p.queueHTML=function(e,t){s?e.html=t:o(e.node,t)},p.queueText=function(e,t){s?e.text=t:a(e.node,t)},e.exports=p},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";e.exports={}},function(e,t,n){"use strict";var r=n(21),o=n(32),i=n(60),a=n(61),s=(n(2),r.getListener);function u(e,t,n){var r=function(e,t,n){var r=t.dispatchConfig.phasedRegistrationNames[n];return s(e,r)}(e,n,t);r&&(n._dispatchListeners=i(n._dispatchListeners,r),n._dispatchInstances=i(n._dispatchInstances,e))}function l(e){e&&e.dispatchConfig.phasedRegistrationNames&&o.traverseTwoPhase(e._targetInst,u,e)}function c(e){if(e&&e.dispatchConfig.phasedRegistrationNames){var t=e._targetInst,n=t?o.getParentInstance(t):null;o.traverseTwoPhase(n,u,e)}}function p(e,t,n){if(n&&n.dispatchConfig.registrationName){var r=n.dispatchConfig.registrationName,o=s(e,r);o&&(n._dispatchListeners=i(n._dispatchListeners,o),n._dispatchInstances=i(n._dispatchInstances,e))}}function d(e){e&&e.dispatchConfig.registrationName&&p(e._targetInst,0,e)}var f={accumulateTwoPhaseDispatches:function(e){a(e,l)},accumulateTwoPhaseDispatchesSkipTarget:function(e){a(e,c)},accumulateDirectDispatches:function(e){a(e,d)},accumulateEnterLeaveDispatches:function(e,t,n,r){o.traverseEnterLeave(n,r,p,e,t)}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=n(31),i=n(32),a=n(33),s=n(60),u=n(61),l=(n(0),{}),c=null,p=function(e,t){e&&(i.executeDispatchesInOrder(e,t),e.isPersistent()||e.constructor.release(e))},d=function(e){return p(e,!0)},f=function(e){return p(e,!1)},h=function(e){return"."+e._rootNodeID};var m={injection:{injectEventPluginOrder:o.injectEventPluginOrder,injectEventPluginsByName:o.injectEventPluginsByName},putListener:function(e,t,n){"function"!=typeof n&&r("94",t,typeof n);var i=h(e);(l[t]||(l[t]={}))[i]=n;var a=o.registrationNameModules[t];a&&a.didPutListener&&a.didPutListener(e,t,n)},getListener:function(e,t){var n=l[t];if(function(e,t,n){switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||(r=t,"button"!==r&&"input"!==r&&"select"!==r&&"textarea"!==r));default:return!1}var r}(t,e._currentElement.type,e._currentElement.props))return null;var r=h(e);return n&&n[r]},deleteListener:function(e,t){var n=o.registrationNameModules[t];n&&n.willDeleteListener&&n.willDeleteListener(e,t);var r=l[t];r&&delete r[h(e)]},deleteAllListeners:function(e){var t=h(e);for(var n in l)if(l.hasOwnProperty(n)&&l[n][t]){var r=o.registrationNameModules[n];r&&r.willDeleteListener&&r.willDeleteListener(e,n),delete l[n][t]}},extractEvents:function(e,t,n,r){for(var i,a=o.plugins,u=0;u<a.length;u++){var l=a[u];if(l){var c=l.extractEvents(e,t,n,r);c&&(i=s(i,c))}}return i},enqueueEvents:function(e){e&&(c=s(c,e))},processEventQueue:function(e){var t=c;c=null,u(t,e?d:f),c&&r("95"),a.rethrowCaughtError()},__purge:function(){l={}},__getListenerBank:function(){return l}};e.exports=m},function(e,t,n){"use strict";var r=n(11),o=n(34),i={view:function(e){if(e.view)return e.view;var t=o(e);if(t.window===t)return t;var n=t.ownerDocument;return n?n.defaultView||n.parentWindow:window},detail:function(e){return e.detail||0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r={remove:function(e){e._reactInternalInstance=void 0},get:function(e){return e._reactInternalInstance},has:function(e){return void 0!==e._reactInternalInstance},set:function(e,t){e._reactInternalInstance=t}};e.exports=r},function(e,t,n){"use strict";var r=n(1),o=(n(0),{}),i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,n,o,i,a,s,u){var l,c;this.isInTransaction()&&r("27");try{this._isInTransaction=!0,l=!0,this.initializeAll(0),c=e.call(t,n,o,i,a,s,u),l=!1}finally{try{if(l)try{this.closeAll(0)}catch(e){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return c},initializeAll:function(e){for(var t=this.transactionWrappers,n=e;n<t.length;n++){var r=t[n];try{this.wrapperInitData[n]=o,this.wrapperInitData[n]=r.initialize?r.initialize.call(this):null}finally{if(this.wrapperInitData[n]===o)try{this.initializeAll(n+1)}catch(e){}}}},closeAll:function(e){this.isInTransaction()||r("28");for(var t=this.transactionWrappers,n=e;n<t.length;n++){var i,a=t[n],s=this.wrapperInitData[n];try{i=!0,s!==o&&a.close&&a.close.call(this,s),i=!1}finally{if(i)try{this.closeAll(n+1)}catch(e){}}}this.wrapperInitData.length=0}};e.exports=i},function(e,t,n){"use strict";var r=n(22),o=n(67),i={screenX:null,screenY:null,clientX:null,clientY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:n(36),button:function(e){var t=e.button;return"which"in e?t:2===t?2:4===t?1:0},buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},pageX:function(e){return"pageX"in e?e.pageX:e.clientX+o.currentScrollLeft},pageY:function(e){return"pageY"in e?e.pageY:e.clientY+o.currentScrollTop}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r,o=n(5),i=n(38),a=/^[ \r\n\t\f]/,s=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,u=n(39)(function(e,t){if(e.namespaceURI!==i.svg||"innerHTML"in e)e.innerHTML=t;else{(r=r||document.createElement("div")).innerHTML="<svg>"+t+"</svg>";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}});if(o.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(u=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),a.test(t)||"<"===t[0]&&s.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),l=null}e.exports=u},function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){return"boolean"==typeof e||"number"==typeof e?""+e:function(e){var t,n=""+e,o=r.exec(n);if(!o)return n;var i="",a=0,s=0;for(a=o.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==a&&(i+=n.substring(s,a)),s=a+1,i+=t}return s!==a?i+n.substring(s,a):i}(e)}},function(e,t,n){"use strict";var r,o=n(3),i=n(31),a=n(137),s=n(67),u=n(138),l=n(35),c={},p=!1,d=0,f={topAbort:"abort",topAnimationEnd:u("animationend")||"animationend",topAnimationIteration:u("animationiteration")||"animationiteration",topAnimationStart:u("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:u("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},h="_reactListenersID"+String(Math.random()).slice(2);var m=o({},a,{ReactEventListener:null,injection:{injectReactEventListener:function(e){e.setHandleTopLevel(m.handleTopLevel),m.ReactEventListener=e}},setEnabled:function(e){m.ReactEventListener&&m.ReactEventListener.setEnabled(e)},isEnabled:function(){return!(!m.ReactEventListener||!m.ReactEventListener.isEnabled())},listenTo:function(e,t){for(var n=t,r=function(e){return Object.prototype.hasOwnProperty.call(e,h)||(e[h]=d++,c[e[h]]={}),c[e[h]]}(n),o=i.registrationNameDependencies[e],a=0;a<o.length;a++){var s=o[a];r.hasOwnProperty(s)&&r[s]||("topWheel"===s?l("wheel")?m.ReactEventListener.trapBubbledEvent("topWheel","wheel",n):l("mousewheel")?m.ReactEventListener.trapBubbledEvent("topWheel","mousewheel",n):m.ReactEventListener.trapBubbledEvent("topWheel","DOMMouseScroll",n):"topScroll"===s?l("scroll",!0)?m.ReactEventListener.trapCapturedEvent("topScroll","scroll",n):m.ReactEventListener.trapBubbledEvent("topScroll","scroll",m.ReactEventListener.WINDOW_HANDLE):"topFocus"===s||"topBlur"===s?(l("focus",!0)?(m.ReactEventListener.trapCapturedEvent("topFocus","focus",n),m.ReactEventListener.trapCapturedEvent("topBlur","blur",n)):l("focusin")&&(m.ReactEventListener.trapBubbledEvent("topFocus","focusin",n),m.ReactEventListener.trapBubbledEvent("topBlur","focusout",n)),r.topBlur=!0,r.topFocus=!0):f.hasOwnProperty(s)&&m.ReactEventListener.trapBubbledEvent(s,f[s],n),r[s]=!0)}},trapBubbledEvent:function(e,t,n){return m.ReactEventListener.trapBubbledEvent(e,t,n)},trapCapturedEvent:function(e,t,n){return m.ReactEventListener.trapCapturedEvent(e,t,n)},supportsEventPageXY:function(){if(!document.createEvent)return!1;var e=document.createEvent("MouseEvent");return null!=e&&"pageX"in e},ensureScrollValueMonitoring:function(){if(void 0===r&&(r=m.supportsEventPageXY()),!r&&!p){var e=s.refreshScrollValues;m.ReactEventListener.monitorScrollValue(e),p=!0}}});e.exports=m},function(e,t,n){"use strict";e.exports=n(12)},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var u,l=[],c=!1,p=-1;function d(){c&&u&&(c=!1,u.length?l=u.concat(l):p=-1,l.length&&f())}function f(){if(!c){var e=s(d);c=!0;for(var t=l.length;t;){for(u=l,l=[];++p<t;)u&&u[p].run();p=-1,t=l.length}u=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new h(e,t)),1!==l.length||c||s(f)},h.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=m,o.addListener=m,o.once=m,o.off=m,o.removeListener=m,o.removeAllListeners=m,o.emit=m,o.prependListener=m,o.prependOnceListener=m,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i={};function a(){if(o)for(var e in i){var t=i[e],n=o.indexOf(e);if(n>-1||r("96",e),!l.plugins[n]){t.extractEvents||r("97",e),l.plugins[n]=t;var a=t.eventTypes;for(var u in a)s(a[u],t,u)||r("98",u,e)}}}function s(e,t,n){l.eventNameDispatchConfigs.hasOwnProperty(n)&&r("99",n),l.eventNameDispatchConfigs[n]=e;var o=e.phasedRegistrationNames;if(o){for(var i in o){if(o.hasOwnProperty(i))u(o[i],t,n)}return!0}return!!e.registrationName&&(u(e.registrationName,t,n),!0)}function u(e,t,n){l.registrationNameModules[e]&&r("100",e),l.registrationNameModules[e]=t,l.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var l={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){o&&r("101"),o=Array.prototype.slice.call(e),a()},injectEventPluginsByName:function(e){var t=!1;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];i.hasOwnProperty(n)&&i[n]===o||(i[n]&&r("102",n),i[n]=o,t=!0)}t&&a()},getPluginModuleForEvent:function(e){var t=e.dispatchConfig;if(t.registrationName)return l.registrationNameModules[t.registrationName]||null;if(void 0!==t.phasedRegistrationNames){var n=t.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var o=l.registrationNameModules[n[r]];if(o)return o}}return null},_resetEventPlugins:function(){for(var e in o=null,i)i.hasOwnProperty(e)&&delete i[e];l.plugins.length=0;var t=l.eventNameDispatchConfigs;for(var n in t)t.hasOwnProperty(n)&&delete t[n];var r=l.registrationNameModules;for(var a in r)r.hasOwnProperty(a)&&delete r[a]}};e.exports=l},function(e,t,n){"use strict";var r,o,i=n(1),a=n(33);n(0),n(2);function s(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=u.getNodeFromInstance(r),t?a.invokeGuardedCallbackWithCatch(o,n,e):a.invokeGuardedCallback(o,n,e),e.currentTarget=null}var u={isEndish:function(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e},isMoveish:function(e){return"topMouseMove"===e||"topTouchMove"===e},isStartish:function(e){return"topMouseDown"===e||"topTouchStart"===e},executeDirectDispatch:function(e){var t=e._dispatchListeners,n=e._dispatchInstances;Array.isArray(t)&&i("103"),e.currentTarget=t?u.getNodeFromInstance(n):null;var r=t?t(e):null;return e.currentTarget=null,e._dispatchListeners=null,e._dispatchInstances=null,r},executeDispatchesInOrder:function(e,t){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var o=0;o<n.length&&!e.isPropagationStopped();o++)s(e,t,n[o],r[o]);else n&&s(e,t,n,r);e._dispatchListeners=null,e._dispatchInstances=null},executeDispatchesInOrderStopAtTrue:function(e){var t=function(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t)){for(var r=0;r<t.length&&!e.isPropagationStopped();r++)if(t[r](e,n[r]))return n[r]}else if(t&&t(e,n))return n;return null}(e);return e._dispatchInstances=null,e._dispatchListeners=null,t},hasDispatches:function(e){return!!e._dispatchListeners},getInstanceFromNode:function(e){return r.getInstanceFromNode(e)},getNodeFromInstance:function(e){return r.getNodeFromInstance(e)},isAncestor:function(e,t){return o.isAncestor(e,t)},getLowestCommonAncestor:function(e,t){return o.getLowestCommonAncestor(e,t)},getParentInstance:function(e){return o.getParentInstance(e)},traverseTwoPhase:function(e,t,n){return o.traverseTwoPhase(e,t,n)},traverseEnterLeave:function(e,t,n,r,i){return o.traverseEnterLeave(e,t,n,r,i)},injection:{injectComponentTree:function(e){r=e},injectTreeTraversal:function(e){o=e}}};e.exports=u},function(e,t,n){"use strict";var r=null;function o(e,t,n){try{t(n)}catch(e){null===r&&(r=e)}}var i={invokeGuardedCallback:o,invokeGuardedCallbackWithCatch:o,rethrowCaughtError:function(){if(r){var e=r;throw r=null,e}}};e.exports=i},function(e,t,n){"use strict";e.exports=function(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}},function(e,t,n){"use strict";var r,o=n(5);o.canUseDOM&&(r=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""))
|
7 |
/**
|
8 |
* Checks if an event is supported in the current execution environment.
|
9 |
*
|
@@ -17,56 +17,39 @@ object-assign
|
|
17 |
* @return {boolean} True if the event is supported.
|
18 |
* @internal
|
19 |
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
20 |
-
*/,e.exports=function(e,t){if(!o.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,i=n in document;if(!i){var a=document.createElement("div");a.setAttribute(n,"return;"),i="function"==typeof a[n]}return!i&&r&&"wheel"===e&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}},function(e,t,n){"use strict";var r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function o(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=r[e];return!!n&&!!t[n]}e.exports=function(e){return o}},function(e,t,n){"use strict";var r=n(17),o=n(
|
21 |
/*!
|
22 |
* getSize v2.0.3
|
23 |
* measure size of elements
|
24 |
* MIT license
|
25 |
-
*/window,void 0===(o="function"==typeof(r=function(){"use strict";function e(e){var t=parseFloat(e),n=-1==e.indexOf("%")&&!isNaN(t);return n&&t}var t="undefined"==typeof console?function(){}:function(e){console.error(e)},n=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],r=n.length;function o(e){var n=getComputedStyle(e);return n||t("Style returned "+n+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),n}var i,a=!1;function s(t){if(function(){if(!a){a=!0;var t=document.createElement("div");t.style.width="200px",t.style.padding="1px 2px 3px 4px",t.style.borderStyle="solid",t.style.borderWidth="1px 2px 3px 4px",t.style.boxSizing="border-box";var n=document.body||document.documentElement;n.appendChild(t);var r=o(t);i=200==Math.round(e(r.width)),s.isBoxSizeOuter=i,n.removeChild(t)}}(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var u=o(t);if("none"==u.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<r;t++){var o=n[t];e[o]=0}return e}();var l={};l.width=t.offsetWidth,l.height=t.offsetHeight;for(var c=l.isBorderBox="border-box"==u.boxSizing,p=0;p<r;p++){var d=n[p],f=u[d],h=parseFloat(f);l[d]=isNaN(h)?0:h}var m=l.paddingLeft+l.paddingRight,g=l.paddingTop+l.paddingBottom,v=l.marginLeft+l.marginRight,y=l.marginTop+l.marginBottom,_=l.borderLeftWidth+l.borderRightWidth,b=l.borderTopWidth+l.borderBottomWidth,E=c&&i,C=e(u.width);!1!==C&&(l.width=C+(E?0:m+_));var w=e(u.height);return!1!==w&&(l.height=w+(E?0:g+b)),l.innerWidth=l.width-(m+_),l.innerHeight=l.height-(g+b),l.outerWidth=l.width+v,l.outerHeight=l.height+y,l}}return s})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){"use strict";(function(t){var r=n(7),o=n(194),i={"Content-Type":"application/x-www-form-urlencoded"};function a(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var s,u={adapter:("undefined"!=typeof XMLHttpRequest?s=n(89):void 0!==t&&(s=n(89)),s),transformRequest:[function(e,t){return o(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e)?e:r.isArrayBufferView(e)?e.buffer:r.isURLSearchParams(e)?(a(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):r.isObject(e)?(a(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],function(e){u.headers[e]={}}),r.forEach(["post","put","patch"],function(e){u.headers[e]=r.merge(i)}),e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";e.exports={photo_api:"https://api.unsplash.com/photos",search_api:"https://api.unsplash.com/search/photos",app_id:"/?client_id="+instant_img_localize.unsplash_app_id,posts_per_page:"&per_page=20"}},function(e,t,n){"use strict";var r=n(18),o=n(3),i=n(54),a=(n(55),n(19));n(0),n(94);function s(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function u(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function l(){}s.prototype.isReactComponent={},s.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e),t&&this.updater.enqueueCallback(this,t,"setState")},s.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this),e&&this.updater.enqueueCallback(this,e,"forceUpdate")},l.prototype=s.prototype,u.prototype=new l,u.prototype.constructor=u,o(u.prototype,s.prototype),u.prototype.isPureReactComponent=!0,e.exports={Component:s,PureComponent:u}},function(e,t,n){"use strict";n(2);var r={isMounted:function(e){return!1},enqueueCallback:function(e,t){},enqueueForceUpdate:function(e){},enqueueReplaceState:function(e,t){},enqueueSetState:function(e,t){}};e.exports=r},function(e,t,n){"use strict";e.exports=!1},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r=n(102);e.exports=function(e){return r(e,!1)}},function(e,t,n){"use strict";e.exports={hasCachedChildNodes:1}},function(e,t,n){"use strict";var r=n(110),o=n(111),i=n(115),a=n(118),s=n(119),u=n(120),l=n(121),c=n(127),p=n(4),d=n(151),f=n(152),h=n(153),m=n(79),g=n(154),v=n(156),y=n(157),_=n(163),b=n(164),E=n(165),C=!1;e.exports={inject:function(){C||(C=!0,v.EventEmitter.injectReactEventListener(g),v.EventPluginHub.injectEventPluginOrder(a),v.EventPluginUtils.injectComponentTree(p),v.EventPluginUtils.injectTreeTraversal(f),v.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:E,EnterLeaveEventPlugin:s,ChangeEventPlugin:i,SelectEventPlugin:b,BeforeInputEventPlugin:o}),v.HostComponent.injectGenericComponentClass(c),v.HostComponent.injectTextComponentClass(h),v.DOMProperty.injectDOMPropertyConfig(r),v.DOMProperty.injectDOMPropertyConfig(u),v.DOMProperty.injectDOMPropertyConfig(_),v.EmptyComponent.injectEmptyComponentFactory(function(e){return new d(e)}),v.Updates.injectReconcileTransaction(y),v.Updates.injectBatchingStrategy(m),v.Component.injectEnvironment(l))}}},function(e,t,n){"use strict";var r=n(1);n(0);e.exports=function(e,t){return null==t&&r("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}},function(e,t,n){"use strict";e.exports=function(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}},function(e,t,n){"use strict";var r=n(5),o=null;e.exports=function(){return!o&&r.canUseDOM&&(o="textContent"in document.documentElement?"textContent":"innerText"),o}},function(e,t,n){"use strict";var r=n(1);var o=n(13),i=(n(0),function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._callbacks=null,this._contexts=null,this._arg=t}return e.prototype.enqueue=function(e,t){this._callbacks=this._callbacks||[],this._callbacks.push(e),this._contexts=this._contexts||[],this._contexts.push(t)},e.prototype.notifyAll=function(){var e=this._callbacks,t=this._contexts,n=this._arg;if(e&&t){e.length!==t.length&&r("24"),this._callbacks=null,this._contexts=null;for(var o=0;o<e.length;o++)e[o].call(t[o],n);e.length=0,t.length=0}},e.prototype.checkpoint=function(){return this._callbacks?this._callbacks.length:0},e.prototype.rollback=function(e){this._callbacks&&this._contexts&&(this._callbacks.length=e,this._contexts.length=e)},e.prototype.reset=function(){this._callbacks=null,this._contexts=null},e.prototype.destructor=function(){this.reset()},e}());e.exports=o.addPoolingTo(i)},function(e,t,n){"use strict";e.exports={logTopLevelRenders:!1}},function(e,t,n){"use strict";var r=n(4);function o(e){var t=e.type,n=e.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===t||"radio"===t)}function i(e){return e._wrapperState.valueTracker}var a={_getTrackerFromNode:function(e){return i(r.getInstanceFromNode(e))},track:function(e){if(!i(e)){var t=r.getNodeFromInstance(e),n=o(t)?"checked":"value",a=Object.getOwnPropertyDescriptor(t.constructor.prototype,n),s=""+t[n];t.hasOwnProperty(n)||"function"!=typeof a.get||"function"!=typeof a.set||(Object.defineProperty(t,n,{enumerable:a.enumerable,configurable:!0,get:function(){return a.get.call(this)},set:function(e){s=""+e,a.set.call(this,e)}}),function(e,t){e._wrapperState.valueTracker=t}(e,{getValue:function(){return s},setValue:function(e){s=""+e},stopTracking:function(){!function(e){e._wrapperState.valueTracker=null}(e),delete t[n]}}))}},updateValueIfChanged:function(e){if(!e)return!1;var t=i(e);if(!t)return a.track(e),!0;var n,s,u=t.getValue(),l=((n=r.getNodeFromInstance(e))&&(s=o(n)?""+n.checked:n.value),s);return l!==u&&(t.setValue(l),!0)},stopTracking:function(e){var t=i(e);t&&t.stopTracking()}};e.exports=a},function(e,t,n){"use strict";var r={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};e.exports=function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!r[e.type]:"textarea"===t}},function(e,t,n){"use strict";var r={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(e){r.currentScrollLeft=e.x,r.currentScrollTop=e.y}};e.exports=r},function(e,t,n){"use strict";var r=n(5),o=n(27),i=n(26),a=function(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t};r.canUseDOM&&("textContent"in document.documentElement||(a=function(e,t){3!==e.nodeType?i(e,o(t)):e.nodeValue=t})),e.exports=a},function(e,t,n){"use strict";e.exports=function(e){try{e.focus()}catch(e){}}},function(e,t,n){"use strict";var r={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};var o=["Webkit","ms","Moz","O"];Object.keys(r).forEach(function(e){o.forEach(function(t){r[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=r[e]})});var i={isUnitlessNumber:r,shorthandPropertyExpansions:{background:{backgroundAttachment:!0,backgroundColor:!0,backgroundImage:!0,backgroundPositionX:!0,backgroundPositionY:!0,backgroundRepeat:!0},backgroundPosition:{backgroundPositionX:!0,backgroundPositionY:!0},border:{borderWidth:!0,borderStyle:!0,borderColor:!0},borderBottom:{borderBottomWidth:!0,borderBottomStyle:!0,borderBottomColor:!0},borderLeft:{borderLeftWidth:!0,borderLeftStyle:!0,borderLeftColor:!0},borderRight:{borderRightWidth:!0,borderRightStyle:!0,borderRightColor:!0},borderTop:{borderTopWidth:!0,borderTopStyle:!0,borderTopColor:!0},font:{fontStyle:!0,fontVariant:!0,fontWeight:!0,fontSize:!0,lineHeight:!0,fontFamily:!0},outline:{outlineWidth:!0,outlineStyle:!0,outlineColor:!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(16),o=(n(4),n(6),n(136)),i=(n(2),new RegExp("^["+r.ATTRIBUTE_NAME_START_CHAR+"]["+r.ATTRIBUTE_NAME_CHAR+"]*$")),a={},s={};function u(e){return!!s.hasOwnProperty(e)||!a.hasOwnProperty(e)&&(i.test(e)?(s[e]=!0,!0):(a[e]=!0,!1))}function l(e,t){return null==t||e.hasBooleanValue&&!t||e.hasNumericValue&&isNaN(t)||e.hasPositiveNumericValue&&t<1||e.hasOverloadedBooleanValue&&!1===t}var c={createMarkupForID:function(e){return r.ID_ATTRIBUTE_NAME+"="+o(e)},setAttributeForID:function(e,t){e.setAttribute(r.ID_ATTRIBUTE_NAME,t)},createMarkupForRoot:function(){return r.ROOT_ATTRIBUTE_NAME+'=""'},setAttributeForRoot:function(e){e.setAttribute(r.ROOT_ATTRIBUTE_NAME,"")},createMarkupForProperty:function(e,t){var n=r.properties.hasOwnProperty(e)?r.properties[e]:null;if(n){if(l(n,t))return"";var i=n.attributeName;return n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===t?i+'=""':i+"="+o(t)}return r.isCustomAttribute(e)?null==t?"":e+"="+o(t):null},createMarkupForCustomAttribute:function(e,t){return u(e)&&null!=t?e+"="+o(t):""},setValueForProperty:function(e,t,n){var o=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(o){var i=o.mutationMethod;if(i)i(e,n);else{if(l(o,n))return void this.deleteValueForProperty(e,t);if(o.mustUseProperty)e[o.propertyName]=n;else{var a=o.attributeName,s=o.attributeNamespace;s?e.setAttributeNS(s,a,""+n):o.hasBooleanValue||o.hasOverloadedBooleanValue&&!0===n?e.setAttribute(a,""):e.setAttribute(a,""+n)}}}else if(r.isCustomAttribute(t))return void c.setValueForAttribute(e,t,n)},setValueForAttribute:function(e,t,n){u(t)&&(null==n?e.removeAttribute(t):e.setAttribute(t,""+n))},deleteValueForAttribute:function(e,t){e.removeAttribute(t)},deleteValueForProperty:function(e,t){var n=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(n){var o=n.mutationMethod;if(o)o(e,void 0);else if(n.mustUseProperty){var i=n.propertyName;n.hasBooleanValue?e[i]=!1:e[i]=""}else e.removeAttribute(n.attributeName)}else r.isCustomAttribute(t)&&e.removeAttribute(t)}};e.exports=c},function(e,t,n){"use strict";var r=n(3),o=n(40),i=n(4),a=n(9),s=(n(2),!1);function u(){if(this._rootNodeID&&this._wrapperState.pendingUpdate){this._wrapperState.pendingUpdate=!1;var e=this._currentElement.props,t=o.getValue(e);null!=t&&l(this,Boolean(e.multiple),t)}}function l(e,t,n){var r,o,a=i.getNodeFromInstance(e).options;if(t){for(r={},o=0;o<n.length;o++)r[""+n[o]]=!0;for(o=0;o<a.length;o++){var s=r.hasOwnProperty(a[o].value);a[o].selected!==s&&(a[o].selected=s)}}else{for(r=""+n,o=0;o<a.length;o++)if(a[o].value===r)return void(a[o].selected=!0);a.length&&(a[0].selected=!0)}}var c={getHostProps:function(e,t){return r({},t,{onChange:e._wrapperState.onChange,value:void 0})},mountWrapper:function(e,t){var n=o.getValue(t);e._wrapperState={pendingUpdate:!1,initialValue:null!=n?n:t.defaultValue,listeners:null,onChange:p.bind(e),wasMultiple:Boolean(t.multiple)},void 0===t.value||void 0===t.defaultValue||s||(s=!0)},getSelectValueContext:function(e){return e._wrapperState.initialValue},postUpdateWrapper:function(e){var t=e._currentElement.props;e._wrapperState.initialValue=void 0;var n=e._wrapperState.wasMultiple;e._wrapperState.wasMultiple=Boolean(t.multiple);var r=o.getValue(t);null!=r?(e._wrapperState.pendingUpdate=!1,l(e,Boolean(t.multiple),r)):n!==Boolean(t.multiple)&&(null!=t.defaultValue?l(e,Boolean(t.multiple),t.defaultValue):l(e,Boolean(t.multiple),t.multiple?[]:""))}};function p(e){var t=this._currentElement.props,n=o.executeOnChange(t,e);return this._rootNodeID&&(this._wrapperState.pendingUpdate=!0),a.asap(u,this),n}e.exports=c},function(e,t,n){"use strict";var r=n(1),o=n(12),i=(n(0),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(e){return null===e||!1===e?i.EMPTY:o.isValidElement(e)?"function"==typeof e.type?i.COMPOSITE:i.HOST:void r("26",e)}});e.exports=i},function(e,t,n){"use strict";var r,o={injectEmptyComponentFactory:function(e){r=e}},i={create:function(e){return r(e)}};i.injection=o,e.exports=i},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i=null;var a={createInternalComponent:function(e){return o||r("111",e.type),new o(e)},createInstanceForText:function(e){return new i(e)},isTextComponent:function(e){return e instanceof i},injection:{injectGenericComponentClass:function(e){o=e},injectTextComponentClass:function(e){i=e}}};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(147)),i=n(148),a=(n(0),n(45)),s=(n(2),"."),u=":";function l(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,c,p){var d,f=typeof t;if("undefined"!==f&&"boolean"!==f||(t=null),null===t||"string"===f||"number"===f||"object"===f&&t.$$typeof===o)return c(p,t,""===n?s+l(t,0):n),1;var h=0,m=""===n?s:n+u;if(Array.isArray(t))for(var g=0;g<t.length;g++)h+=e(d=t[g],m+l(d,g),c,p);else{var v=i(t);if(v){var y,_=v.call(t);if(v!==t.entries)for(var b=0;!(y=_.next()).done;)h+=e(d=y.value,m+l(d,b++),c,p);else for(;!(y=_.next()).done;){var E=y.value;E&&(h+=e(d=E[1],m+a.escape(E[0])+u+l(d,0),c,p))}}else if("object"===f){var C=String(t);r("31","[object Object]"===C?"object with keys {"+Object.keys(t).join(", ")+"}":C,"")}}return h}(e,"",t,n)}},function(e,t,n){"use strict";var r,o,i,a,s,u,l,c=n(18),p=n(10);n(0),n(2);function d(e){var t=Function.prototype.toString,n=Object.prototype.hasOwnProperty,r=RegExp("^"+t.call(n).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");try{var o=t.call(e);return r.test(o)}catch(e){return!1}}if("function"==typeof Array.from&&"function"==typeof Map&&d(Map)&&null!=Map.prototype&&"function"==typeof Map.prototype.keys&&d(Map.prototype.keys)&&"function"==typeof Set&&d(Set)&&null!=Set.prototype&&"function"==typeof Set.prototype.keys&&d(Set.prototype.keys)){var f=new Map,h=new Set;r=function(e,t){f.set(e,t)},o=function(e){return f.get(e)},i=function(e){f.delete(e)},a=function(){return Array.from(f.keys())},s=function(e){h.add(e)},u=function(e){h.delete(e)},l=function(){return Array.from(h.keys())}}else{var m={},g={},v=function(e){return"."+e},y=function(e){return parseInt(e.substr(1),10)};r=function(e,t){var n=v(e);m[n]=t},o=function(e){var t=v(e);return m[t]},i=function(e){var t=v(e);delete m[t]},a=function(){return Object.keys(m).map(y)},s=function(e){var t=v(e);g[t]=!0},u=function(e){var t=v(e);delete g[t]},l=function(){return Object.keys(g).map(y)}}var _=[];function b(e){var t=o(e);if(t){var n=t.childIDs;i(e),n.forEach(b)}}function E(e,t,n){return"\n in "+(e||"Unknown")+(t?" (at "+t.fileName.replace(/^.*[\\\/]/,"")+":"+t.lineNumber+")":n?" (created by "+n+")":"")}function C(e){return null==e?"#empty":"string"==typeof e||"number"==typeof e?"#text":"string"==typeof e.type?e.type:e.type.displayName||e.type.name||"Unknown"}function w(e){var t,n=x.getDisplayName(e),r=x.getElement(e),o=x.getOwnerID(e);return o&&(t=x.getDisplayName(o)),E(n,r&&r._source,t)}var x={onSetChildren:function(e,t){var n=o(e);n||c("144"),n.childIDs=t;for(var r=0;r<t.length;r++){var i=t[r],a=o(i);a||c("140"),null==a.childIDs&&"object"==typeof a.element&&null!=a.element&&c("141"),a.isMounted||c("71"),null==a.parentID&&(a.parentID=e),a.parentID!==e&&c("142",i,a.parentID,e)}},onBeforeMountComponent:function(e,t,n){r(e,{element:t,parentID:n,text:null,childIDs:[],isMounted:!1,updateCount:0})},onBeforeUpdateComponent:function(e,t){var n=o(e);n&&n.isMounted&&(n.element=t)},onMountComponent:function(e){var t=o(e);t||c("144"),t.isMounted=!0,0===t.parentID&&s(e)},onUpdateComponent:function(e){var t=o(e);t&&t.isMounted&&t.updateCount++},onUnmountComponent:function(e){var t=o(e);t&&(t.isMounted=!1,0===t.parentID&&u(e));_.push(e)},purgeUnmountedComponents:function(){if(!x._preventPurging){for(var e=0;e<_.length;e++){b(_[e])}_.length=0}},isMounted:function(e){var t=o(e);return!!t&&t.isMounted},getCurrentStackAddendum:function(e){var t="";if(e){var n=C(e),r=e._owner;t+=E(n,e._source,r&&r.getName())}var o=p.current,i=o&&o._debugID;return t+=x.getStackAddendumByID(i)},getStackAddendumByID:function(e){for(var t="";e;)t+=w(e),e=x.getParentID(e);return t},getChildIDs:function(e){var t=o(e);return t?t.childIDs:[]},getDisplayName:function(e){var t=x.getElement(e);return t?C(t):null},getElement:function(e){var t=o(e);return t?t.element:null},getOwnerID:function(e){var t=x.getElement(e);return t&&t._owner?t._owner._debugID:null},getParentID:function(e){var t=o(e);return t?t.parentID:null},getSource:function(e){var t=o(e),n=t?t.element:null;return null!=n?n._source:null},getText:function(e){var t=x.getElement(e);return"string"==typeof t?t:"number"==typeof t?""+t:null},getUpdateCount:function(e){var t=o(e);return t?t.updateCount:0},getRootIDs:l,getRegisteredIDs:a,pushNonStandardWarningStack:function(e,t){if("function"==typeof console.reactStack){var n=[],r=p.current,o=r&&r._debugID;try{for(e&&n.push({name:o?x.getDisplayName(o):null,fileName:t?t.fileName:null,lineNumber:t?t.lineNumber:null});o;){var i=x.getElement(o),a=x.getParentID(o),s=x.getOwnerID(o),u=s?x.getDisplayName(s):null,l=i&&i._source;n.push({name:u,fileName:l?l.fileName:null,lineNumber:l?l.lineNumber:null}),o=a}}catch(e){}console.reactStack(n)}},popNonStandardWarningStack:function(){"function"==typeof console.reactStackEnd&&console.reactStackEnd()}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(24),a=(n(6),n(150)),s=[];var u={enqueue:function(){}};function l(e){this.reinitializeTransaction(),this.renderToStaticMarkup=e,this.useCreateElement=!1,this.updateQueue=new a(this)}var c={getTransactionWrappers:function(){return s},getReactMountReady:function(){return u},getUpdateQueue:function(){return this.updateQueue},destructor:function(){},checkpoint:function(){},rollback:function(){}};r(l.prototype,i,c),o.addPoolingTo(l),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(9),i=n(24),a=n(8),s={initialize:a,close:function(){p.isBatchingUpdates=!1}},u=[{initialize:a,close:o.flushBatchedUpdates.bind(o)},s];function l(){this.reinitializeTransaction()}r(l.prototype,i,{getTransactionWrappers:function(){return u}});var c=new l,p={isBatchingUpdates:!1,batchedUpdates:function(e,t,n,r,o,i){var a=p.isBatchingUpdates;return p.isBatchingUpdates=!0,a?e(t,n,r,o,i):c.perform(e,null,t,n,r,o,i)}};e.exports=p},function(e,t,n){"use strict";var r=n(8),o={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=o},function(e,t,n){"use strict";var r=n(158),o=n(160),i=n(69),a=n(82);var s={hasSelectionCapabilities:function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&"text"===e.type||"textarea"===t||"true"===e.contentEditable)},getSelectionInformation:function(){var e=a();return{focusedElem:e,selectionRange:s.hasSelectionCapabilities(e)?s.getSelection(e):null}},restoreSelection:function(e){var t,n=a(),r=e.focusedElem,u=e.selectionRange;n!==r&&(t=r,o(document.documentElement,t))&&(s.hasSelectionCapabilities(r)&&s.setSelection(r,u),i(r))},getSelection:function(e){var t;if("selectionStart"in e)t={start:e.selectionStart,end:e.selectionEnd};else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var n=document.selection.createRange();n.parentElement()===e&&(t={start:-n.moveStart("character",-e.value.length),end:-n.moveEnd("character",-e.value.length)})}else t=r.getOffsets(e);return t||{start:0,end:0}},setSelection:function(e,t){var n=t.start,o=t.end;if(void 0===o&&(o=n),"selectionStart"in e)e.selectionStart=n,e.selectionEnd=Math.min(o,e.value.length);else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var i=e.createTextRange();i.collapse(!0),i.moveStart("character",n),i.moveEnd("character",o-n),i.select()}else r.setOffsets(e,t)}};e.exports=s},function(e,t,n){"use strict";e.exports=function(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(16),a=n(12),s=n(28),u=(n(10),n(4)),l=n(84),c=n(175),p=n(64),d=n(23),f=(n(6),n(85)),h=n(14),m=n(46),g=n(9),v=n(19),y=n(42),_=(n(0),n(26)),b=n(44),E=(n(2),i.ID_ATTRIBUTE_NAME),C=i.ROOT_ATTRIBUTE_NAME,w=1,x=9,T=11,k={};function S(e){return e?e.nodeType===x?e.documentElement:e.firstChild:null}function I(e,t,n,r,o){var i;if(p.logTopLevelRenders){var a=e._currentElement.props.child.type;i="React mount: "+("string"==typeof a?a:a.displayName||a.name),console.time(i)}var s=h.mountComponent(e,n,null,l(e,t),o,0);i&&console.timeEnd(i),e._renderedComponent._topLevelWrapper=e,D._mountImageIntoNode(s,t,e,r,n)}function P(e,t,n,r){var o=g.ReactReconcileTransaction.getPooled(!n&&c.useCreateElement);o.perform(I,null,e,t,o,n,r),g.ReactReconcileTransaction.release(o)}function N(e,t,n){for(0,h.unmountComponent(e,n),t.nodeType===x&&(t=t.documentElement);t.lastChild;)t.removeChild(t.lastChild)}function M(e){var t=S(e);if(t){var n=u.getInstanceFromNode(t);return!(!n||!n._hostParent)}}function O(e){return!(!e||e.nodeType!==w&&e.nodeType!==x&&e.nodeType!==T)}function R(e){var t=function(e){var t=S(e),n=t&&u.getInstanceFromNode(t);return n&&!n._hostParent?n:null}(e);return t?t._hostContainerInfo._topLevelWrapper:null}var A=1,L=function(){this.rootID=A++};L.prototype.isReactComponent={},L.prototype.render=function(){return this.props.child},L.isReactTopLevelWrapper=!0;var D={TopLevelWrapper:L,_instancesByReactRootID:k,scrollMonitor:function(e,t){t()},_updateRootComponent:function(e,t,n,r,o){return D.scrollMonitor(r,function(){m.enqueueElementInternal(e,t,n),o&&m.enqueueCallbackInternal(e,o)}),e},_renderNewRootComponent:function(e,t,n,o){O(t)||r("37"),s.ensureScrollValueMonitoring();var i=y(e,!1);g.batchedUpdates(P,i,t,n,o);var a=i._instance.rootID;return k[a]=i,i},renderSubtreeIntoContainer:function(e,t,n,o){return null!=e&&d.has(e)||r("38"),D._renderSubtreeIntoContainer(e,t,n,o)},_renderSubtreeIntoContainer:function(e,t,n,o){m.validateCallback(o,"ReactDOM.render"),a.isValidElement(t)||r("39","string"==typeof t?" Instead of passing a string like 'div', pass React.createElement('div') or <div />.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or <Foo />.":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":"");var i,s=a.createElement(L,{child:t});if(e){var u=d.get(e);i=u._processChildContext(u._context)}else i=v;var l=R(n);if(l){var c=l._currentElement.props.child;if(b(c,t)){var p=l._renderedComponent.getPublicInstance(),f=o&&function(){o.call(p)};return D._updateRootComponent(l,s,i,n,f),p}D.unmountComponentAtNode(n)}var h,g=S(n),y=g&&!(!(h=g).getAttribute||!h.getAttribute(E)),_=M(n),C=y&&!l&&!_,w=D._renderNewRootComponent(s,n,C,i)._renderedComponent.getPublicInstance();return o&&o.call(w),w},render:function(e,t,n){return D._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){O(e)||r("40");var t=R(e);if(!t){M(e),1===e.nodeType&&e.hasAttribute(C);return!1}return delete k[t._instance.rootID],g.batchedUpdates(N,t,e,!1),!0},_mountImageIntoNode:function(e,t,n,i,a){if(O(t)||r("41"),i){var s=S(t);if(f.canReuseMarkup(e,s))return void u.precacheNode(n,s);var l=s.getAttribute(f.CHECKSUM_ATTR_NAME);s.removeAttribute(f.CHECKSUM_ATTR_NAME);var c=s.outerHTML;s.setAttribute(f.CHECKSUM_ATTR_NAME,l);var p=e,d=function(e,t){for(var n=Math.min(e.length,t.length),r=0;r<n;r++)if(e.charAt(r)!==t.charAt(r))return r;return e.length===t.length?-1:n}(p,c),h=" (client) "+p.substring(d-20,d+20)+"\n (server) "+c.substring(d-20,d+20);t.nodeType===x&&r("42",h)}if(t.nodeType===x&&r("43"),a.useCreateElement){for(;t.lastChild;)t.removeChild(t.lastChild);o.insertTreeBefore(t,e,null)}else _(t,e),u.precacheNode(n,t.firstChild)}};e.exports=D},function(e,t,n){"use strict";n(47);var r=9;e.exports=function(e,t){return{_topLevelWrapper:e,_idCounter:1,_ownerDocument:t?t.nodeType===r?t:t.ownerDocument:null,_node:t,_tag:t?t.nodeName.toLowerCase():null,_namespaceURI:t?t.namespaceURI:null}}},function(e,t,n){"use strict";var r=n(176),o=/\/?>/,i=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(e){var t=r(e);return i.test(e)?e:e.replace(o," "+a.CHECKSUM_ATTR_NAME+'="'+t+'"$&')},canReuseMarkup:function(e,t){var n=t.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(e)===n}};e.exports=a},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(73);e.exports=function(e){for(var t;(t=e._renderedNodeType)===r.COMPOSITE;)e=e._renderedComponent;return t===r.HOST?e._renderedComponent:t===r.EMPTY?null:void 0}},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},function(e,t,n){"use strict";var r=n(7),o=n(195),i=n(197),a=n(198),s=n(199),u=n(90),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(200);e.exports=function(e){return new Promise(function(t,c){var p=e.data,d=e.headers;r.isFormData(p)&&delete d["Content-Type"];var f=new XMLHttpRequest,h="onreadystatechange",m=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in f||s(e.url)||(f=new window.XDomainRequest,h="onload",m=!0,f.onprogress=function(){},f.ontimeout=function(){}),e.auth){var g=e.auth.username||"",v=e.auth.password||"";d.Authorization="Basic "+l(g+":"+v)}if(f.open(e.method.toUpperCase(),i(e.url,e.params,e.paramsSerializer),!0),f.timeout=e.timeout,f[h]=function(){if(f&&(4===f.readyState||m)&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in f?a(f.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?f.response:f.responseText,status:1223===f.status?204:f.status,statusText:1223===f.status?"No Content":f.statusText,headers:n,config:e,request:f};o(t,c,r),f=null}},f.onerror=function(){c(u("Network Error",e,null,f)),f=null},f.ontimeout=function(){c(u("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var y=n(201),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in f&&r.forEach(d,function(e,t){void 0===p&&"content-type"===t.toLowerCase()?delete d[t]:f.setRequestHeader(t,e)}),e.withCredentials&&(f.withCredentials=!0),e.responseType)try{f.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&f.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){f&&(f.abort(),c(e),f=null)}),void 0===p&&(p=null),f.send(p)})}},function(e,t,n){"use strict";var r=n(196);e.exports=function(e,t,n,o,i){var a=new Error(e);return r(a,t,n,o,i)}},function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";function r(e){this.message=e}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,e.exports=r},function(e,t,n){"use strict";e.exports=n(109)},function(e,t,n){"use strict";e.exports=function(){}},function(e,t,n){"use strict";var r=n(96),o=n(15),i=n(8),a=n(97),s=r.twoArgumentPooler,u=r.fourArgumentPooler,l=/\/+/g;function c(e){return(""+e).replace(l,"$&/")}function p(e,t){this.func=e,this.context=t,this.count=0}function d(e,t,n){var r=e.func,o=e.context;r.call(o,t,e.count++)}function f(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function h(e,t,n){var r=e.result,a=e.keyPrefix,s=e.func,u=e.context,l=s.call(u,t,e.count++);Array.isArray(l)?m(l,r,n,i.thatReturnsArgument):null!=l&&(o.isValidElement(l)&&(l=o.cloneAndReplaceKey(l,a+(!l.key||t&&t.key===l.key?"":c(l.key)+"/")+n)),r.push(l))}function m(e,t,n,r,o){var i="";null!=n&&(i=c(n)+"/");var s=f.getPooled(t,i,r,o);a(e,h,s),f.release(s)}function g(e,t,n){return null}p.prototype.destructor=function(){this.func=null,this.context=null,this.count=0},r.addPoolingTo(p,s),f.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},r.addPoolingTo(f,u);var v={forEach:function(e,t,n){if(null==e)return e;var r=p.getPooled(t,n);a(e,d,r),p.release(r)},map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},mapIntoWithKeyPrefixInternal:m,count:function(e,t){return a(e,g,null)},toArray:function(e){var t=[];return m(e,t,null,i.thatReturnsArgument),t}};e.exports=v},function(e,t,n){"use strict";var r=n(18),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(18),o=(n(10),n(56)),i=n(98),a=(n(0),n(99)),s=(n(2),"."),u=":";function l(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,c,p){var d,f=typeof t;if("undefined"!==f&&"boolean"!==f||(t=null),null===t||"string"===f||"number"===f||"object"===f&&t.$$typeof===o)return c(p,t,""===n?s+l(t,0):n),1;var h=0,m=""===n?s:n+u;if(Array.isArray(t))for(var g=0;g<t.length;g++)h+=e(d=t[g],m+l(d,g),c,p);else{var v=i(t);if(v){var y,_=v.call(t);if(v!==t.entries)for(var b=0;!(y=_.next()).done;)h+=e(d=y.value,m+l(d,b++),c,p);else for(;!(y=_.next()).done;){var E=y.value;E&&(h+=e(d=E[1],m+a.escape(E[0])+u+l(d,0),c,p))}}else if("object"===f){var C=String(t);r("31","[object Object]"===C?"object with keys {"+Object.keys(t).join(", ")+"}":C,"")}}return h}(e,"",t,n)}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";e.exports=function(e){var t=e&&(r&&e[r]||e[o]);if("function"==typeof t)return t}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,function(e){return t[e]})}};e.exports=r},function(e,t,n){"use strict";var r=n(15).createFactory,o={a:r("a"),abbr:r("abbr"),address:r("address"),area:r("area"),article:r("article"),aside:r("aside"),audio:r("audio"),b:r("b"),base:r("base"),bdi:r("bdi"),bdo:r("bdo"),big:r("big"),blockquote:r("blockquote"),body:r("body"),br:r("br"),button:r("button"),canvas:r("canvas"),caption:r("caption"),cite:r("cite"),code:r("code"),col:r("col"),colgroup:r("colgroup"),data:r("data"),datalist:r("datalist"),dd:r("dd"),del:r("del"),details:r("details"),dfn:r("dfn"),dialog:r("dialog"),div:r("div"),dl:r("dl"),dt:r("dt"),em:r("em"),embed:r("embed"),fieldset:r("fieldset"),figcaption:r("figcaption"),figure:r("figure"),footer:r("footer"),form:r("form"),h1:r("h1"),h2:r("h2"),h3:r("h3"),h4:r("h4"),h5:r("h5"),h6:r("h6"),head:r("head"),header:r("header"),hgroup:r("hgroup"),hr:r("hr"),html:r("html"),i:r("i"),iframe:r("iframe"),img:r("img"),input:r("input"),ins:r("ins"),kbd:r("kbd"),keygen:r("keygen"),label:r("label"),legend:r("legend"),li:r("li"),link:r("link"),main:r("main"),map:r("map"),mark:r("mark"),menu:r("menu"),menuitem:r("menuitem"),meta:r("meta"),meter:r("meter"),nav:r("nav"),noscript:r("noscript"),object:r("object"),ol:r("ol"),optgroup:r("optgroup"),option:r("option"),output:r("output"),p:r("p"),param:r("param"),picture:r("picture"),pre:r("pre"),progress:r("progress"),q:r("q"),rp:r("rp"),rt:r("rt"),ruby:r("ruby"),s:r("s"),samp:r("samp"),script:r("script"),section:r("section"),select:r("select"),small:r("small"),source:r("source"),span:r("span"),strong:r("strong"),style:r("style"),sub:r("sub"),summary:r("summary"),sup:r("sup"),table:r("table"),tbody:r("tbody"),td:r("td"),textarea:r("textarea"),tfoot:r("tfoot"),th:r("th"),thead:r("thead"),time:r("time"),title:r("title"),tr:r("tr"),track:r("track"),u:r("u"),ul:r("ul"),var:r("var"),video:r("video"),wbr:r("wbr"),circle:r("circle"),clipPath:r("clipPath"),defs:r("defs"),ellipse:r("ellipse"),g:r("g"),image:r("image"),line:r("line"),linearGradient:r("linearGradient"),mask:r("mask"),path:r("path"),pattern:r("pattern"),polygon:r("polygon"),polyline:r("polyline"),radialGradient:r("radialGradient"),rect:r("rect"),stop:r("stop"),svg:r("svg"),text:r("text"),tspan:r("tspan")};e.exports=o},function(e,t,n){"use strict";var r=n(15).isValidElement,o=n(57);e.exports=o(r)},function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(2),a=n(3),s=n(103),u=n(104);e.exports=function(e,t){var n="function"==typeof Symbol&&Symbol.iterator,l="@@iterator";var c="<<anonymous>>",p={array:m("array"),bool:m("boolean"),func:m("function"),number:m("number"),object:m("object"),string:m("string"),symbol:m("symbol"),any:h(r.thatReturnsNull),arrayOf:function(e){return h(function(t,n,r,o,i){if("function"!=typeof e)return new f("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var a=t[n];if(!Array.isArray(a)){var u=v(a);return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected an array.")}for(var l=0;l<a.length;l++){var c=e(a,l,r,o,i+"["+l+"]",s);if(c instanceof Error)return c}return null})},element:function(){return h(function(t,n,r,o,i){var a=t[n];if(!e(a)){var s=v(a);return new f("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+r+"`, expected a single ReactElement.")}return null})}(),instanceOf:function(e){return h(function(t,n,r,o,i){if(!(t[n]instanceof e)){var a=e.name||c,s=function(e){if(!e.constructor||!e.constructor.name)return c;return e.constructor.name}(t[n]);return new f("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+r+"`, expected instance of `"+a+"`.")}return null})},node:function(){return h(function(e,t,n,r,o){if(!g(e[t]))return new f("Invalid "+r+" `"+o+"` supplied to `"+n+"`, expected a ReactNode.");return null})}(),objectOf:function(e){return h(function(t,n,r,o,i){if("function"!=typeof e)return new f("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var a=t[n],u=v(a);if("object"!==u)return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected an object.");for(var l in a)if(a.hasOwnProperty(l)){var c=e(a,l,r,o,i+"."+l,s);if(c instanceof Error)return c}return null})},oneOf:function(e){if(!Array.isArray(e))return r.thatReturnsNull;return h(function(t,n,r,o,i){for(var a=t[n],s=0;s<e.length;s++)if(d(a,e[s]))return null;var u=JSON.stringify(e);return new f("Invalid "+o+" `"+i+"` of value `"+a+"` supplied to `"+r+"`, expected one of "+u+".")})},oneOfType:function(e){if(!Array.isArray(e))return r.thatReturnsNull;for(var t=0;t<e.length;t++){var n=e[t];if("function"!=typeof n)return i(!1,"Invalid argument supplied to oneOfType. Expected an array of check functions, but received %s at index %s.",_(n),t),r.thatReturnsNull}return h(function(t,n,r,o,i){for(var a=0;a<e.length;a++){var u=e[a];if(null==u(t,n,r,o,i,s))return null}return new f("Invalid "+o+" `"+i+"` supplied to `"+r+"`.")})},shape:function(e){return h(function(t,n,r,o,i){var a=t[n],u=v(a);if("object"!==u)return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected `object`.");for(var l in e){var c=e[l];if(c){var p=c(a,l,r,o,i+"."+l,s);if(p)return p}}return null})},exact:function(e){return h(function(t,n,r,o,i){var u=t[n],l=v(u);if("object"!==l)return new f("Invalid "+o+" `"+i+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");var c=a({},t[n],e);for(var p in c){var d=e[p];if(!d)return new f("Invalid "+o+" `"+i+"` key `"+p+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=d(u,p,r,o,i+"."+p,s);if(h)return h}return null})}};function d(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function f(e){this.message=e,this.stack=""}function h(e){function n(n,r,i,a,u,l,p){(a=a||c,l=l||i,p!==s)&&(t&&o(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"));return null==r[i]?n?null===r[i]?new f("The "+u+" `"+l+"` is marked as required in `"+a+"`, but its value is `null`."):new f("The "+u+" `"+l+"` is marked as required in `"+a+"`, but its value is `undefined`."):null:e(r,i,a,u,l)}var r=n.bind(null,!1);return r.isRequired=n.bind(null,!0),r}function m(e){return h(function(t,n,r,o,i,a){var s=t[n];return v(s)!==e?new f("Invalid "+o+" `"+i+"` of type `"+y(s)+"` supplied to `"+r+"`, expected `"+e+"`."):null})}function g(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(g);if(null===t||e(t))return!0;var r=function(e){var t=e&&(n&&e[n]||e[l]);if("function"==typeof t)return t}(t);if(!r)return!1;var o,i=r.call(t);if(r!==t.entries){for(;!(o=i.next()).done;)if(!g(o.value))return!1}else for(;!(o=i.next()).done;){var a=o.value;if(a&&!g(a[1]))return!1}return!0;default:return!1}}function v(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||"Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol}(t,e)?"symbol":t}function y(e){if(null==e)return""+e;var t=v(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function _(e){var t=y(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return f.prototype=Error.prototype,p.checkPropTypes=u,p.PropTypes=p,p}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o){}},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(53).Component,o=n(15).isValidElement,i=n(54),a=n(107);e.exports=a(r,o,i)},function(e,t,n){"use strict";var r=n(3),o=n(19),i=n(0),a="mixins";e.exports=function(e,t,n){var s=[],u={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},l={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var n=0;n<t.length;n++)p(e,t[n])},childContextTypes:function(e,t){e.childContextTypes=r({},e.childContextTypes,t)},contextTypes:function(e,t){e.contextTypes=r({},e.contextTypes,t)},getDefaultProps:function(e,t){e.getDefaultProps?e.getDefaultProps=f(e.getDefaultProps,t):e.getDefaultProps=t},propTypes:function(e,t){e.propTypes=r({},e.propTypes,t)},statics:function(e,t){!function(e,t){if(t)for(var n in t){var r=t[n];if(t.hasOwnProperty(n)){var o=n in l;i(!o,'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n);var a=n in e;i(!a,"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),e[n]=r}}}(e,t)},autobind:function(){}};function c(e,t){var n=u.hasOwnProperty(t)?u[t]:null;y.hasOwnProperty(t)&&i("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&i("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function p(e,n){if(n){i("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),i(!t(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var r=e.prototype,o=r.__reactAutoBindPairs;for(var s in n.hasOwnProperty(a)&&l.mixins(e,n.mixins),n)if(n.hasOwnProperty(s)&&s!==a){var p=n[s],d=r.hasOwnProperty(s);if(c(d,s),l.hasOwnProperty(s))l[s](e,p);else{var m=u.hasOwnProperty(s);if("function"!=typeof p||m||d||!1===n.autobind)if(d){var g=u[s];i(m&&("DEFINE_MANY_MERGED"===g||"DEFINE_MANY"===g),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",g,s),"DEFINE_MANY_MERGED"===g?r[s]=f(r[s],p):"DEFINE_MANY"===g&&(r[s]=h(r[s],p))}else r[s]=p;else o.push(s,p),r[s]=p}}}}function d(e,t){for(var n in i(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects."),t)t.hasOwnProperty(n)&&(i(void 0===e[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),e[n]=t[n]);return e}function f(e,t){return function(){var n=e.apply(this,arguments),r=t.apply(this,arguments);if(null==n)return r;if(null==r)return n;var o={};return d(o,n),d(o,r),o}}function h(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function m(e,t){return t.bind(e)}var g={componentDidMount:function(){this.__isMounted=!0}},v={componentWillUnmount:function(){this.__isMounted=!1}},y={replaceState:function(e,t){this.updater.enqueueReplaceState(this,e,t)},isMounted:function(){return!!this.__isMounted}},_=function(){};return r(_.prototype,e.prototype,y),function(e){var t=function(e,r,a){this.__reactAutoBindPairs.length&&function(e){for(var t=e.__reactAutoBindPairs,n=0;n<t.length;n+=2){var r=t[n],o=t[n+1];e[r]=m(e,o)}}(this),this.props=e,this.context=r,this.refs=o,this.updater=a||n,this.state=null;var s=this.getInitialState?this.getInitialState():null;i("object"==typeof s&&!Array.isArray(s),"%s.getInitialState(): must return an object or null",t.displayName||"ReactCompositeComponent"),this.state=s};for(var r in t.prototype=new _,t.prototype.constructor=t,t.prototype.__reactAutoBindPairs=[],s.forEach(p.bind(null,t)),p(t,g),p(t,e),p(t,v),t.getDefaultProps&&(t.defaultProps=t.getDefaultProps()),i(t.prototype.render,"createClass(...): Class specification must implement a `render` method."),u)t.prototype[r]||(t.prototype[r]=null);return t}}},function(e,t,n){"use strict";var r=n(18),o=n(15);n(0);e.exports=function(e){return o.isValidElement(e)||r("143"),e}},function(e,t,n){"use strict";var r=n(4),o=n(59),i=n(83),a=n(14),s=n(9),u=n(86),l=n(177),c=n(87),p=n(178);n(2);o.inject();var d={findDOMNode:l,render:i.render,unmountComponentAtNode:i.unmountComponentAtNode,version:u,unstable_batchedUpdates:s.batchedUpdates,unstable_renderSubtreeIntoContainer:p};"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject&&__REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ComponentTree:{getClosestInstanceFromNode:r.getClosestInstanceFromNode,getNodeFromInstance:function(e){return e._renderedComponent&&(e=c(e)),e?r.getNodeFromInstance(e):null}},Mount:i,Reconciler:a}),e.exports=d},function(e,t,n){"use strict";e.exports={Properties:{"aria-current":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},DOMAttributeNames:{},DOMPropertyNames:{}}},function(e,t,n){"use strict";var r=n(20),o=n(5),i=n(112),a=n(113),s=n(114),u=[9,13,27,32],l=229,c=o.canUseDOM&&"CompositionEvent"in window,p=null;o.canUseDOM&&"documentMode"in document&&(p=document.documentMode);var d,f=o.canUseDOM&&"TextEvent"in window&&!p&&!("object"==typeof(d=window.opera)&&"function"==typeof d.version&&parseInt(d.version(),10)<=12),h=o.canUseDOM&&(!c||p&&p>8&&p<=11);var m=32,g=String.fromCharCode(m),v={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},y=!1;function _(e,t){switch(e){case"topKeyUp":return-1!==u.indexOf(t.keyCode);case"topKeyDown":return t.keyCode!==l;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function b(e){var t=e.detail;return"object"==typeof t&&"data"in t?t.data:null}var E=null;function C(e,t,n,o){var s,u;if(c?s=function(e){switch(e){case"topCompositionStart":return v.compositionStart;case"topCompositionEnd":return v.compositionEnd;case"topCompositionUpdate":return v.compositionUpdate}}(e):E?_(e,n)&&(s=v.compositionEnd):function(e,t){return"topKeyDown"===e&&t.keyCode===l}(e,n)&&(s=v.compositionStart),!s)return null;h&&(E||s!==v.compositionStart?s===v.compositionEnd&&E&&(u=E.getData()):E=i.getPooled(o));var p=a.getPooled(s,t,n,o);if(u)p.data=u;else{var d=b(n);null!==d&&(p.data=d)}return r.accumulateTwoPhaseDispatches(p),p}function w(e,t,n,o){var a;if(!(a=f?function(e,t){switch(e){case"topCompositionEnd":return b(t);case"topKeyPress":return t.which!==m?null:(y=!0,g);case"topTextInput":var n=t.data;return n===g&&y?null:n;default:return null}}(e,n):function(e,t){if(E){if("topCompositionEnd"===e||!c&&_(e,t)){var n=E.getData();return i.release(E),E=null,n}return null}switch(e){case"topPaste":return null;case"topKeyPress":return t.which&&!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&&!(e.ctrlKey&&e.altKey)}(t)?String.fromCharCode(t.which):null;case"topCompositionEnd":return h?null:t.data;default:return null}}(e,n)))return null;var u=s.getPooled(v.beforeInput,t,n,o);return u.data=a,r.accumulateTwoPhaseDispatches(u),u}var x={eventTypes:v,extractEvents:function(e,t,n,r){return[C(e,t,n,r),w(e,t,n,r)]}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(62);function a(e){this._root=e,this._startText=this.getText(),this._fallbackText=null}r(a.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[i()]},getData:function(){if(this._fallbackText)return this._fallbackText;var e,t,n=this._startText,r=n.length,o=this.getText(),i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);var s=t>1?1-t:void 0;return this._fallbackText=o.slice(e,s),this._fallbackText}}),o.addPoolingTo(a),e.exports=a},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(21),o=n(20),i=n(5),a=n(4),s=n(9),u=n(11),l=n(65),c=n(34),p=n(35),d=n(66),f={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}};function h(e,t,n){var r=u.getPooled(f.change,e,t,n);return r.type="change",o.accumulateTwoPhaseDispatches(r),r}var m=null,g=null;var v=!1;function y(e){var t=h(g,e,c(e));s.batchedUpdates(_,t)}function _(e){r.enqueueEvents(e),r.processEventQueue(!1)}function b(){m&&(m.detachEvent("onchange",y),m=null,g=null)}function E(e,t){var n=l.updateValueIfChanged(e),r=!0===t.simulated&&M._allowSimulatedPassThrough;if(n||r)return e}function C(e,t){if("topChange"===e)return t}function w(e,t,n){"topFocus"===e?(b(),function(e,t){g=t,(m=e).attachEvent("onchange",y)}(t,n)):"topBlur"===e&&b()}i.canUseDOM&&(v=p("change")&&(!document.documentMode||document.documentMode>8));var x=!1;function T(){m&&(m.detachEvent("onpropertychange",k),m=null,g=null)}function k(e){"value"===e.propertyName&&E(g,e)&&y(e)}function S(e,t,n){"topFocus"===e?(T(),function(e,t){g=t,(m=e).attachEvent("onpropertychange",k)}(t,n)):"topBlur"===e&&T()}function I(e,t,n){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return E(g,n)}function P(e,t,n){if("topClick"===e)return E(t,n)}function N(e,t,n){if("topInput"===e||"topChange"===e)return E(t,n)}i.canUseDOM&&(x=p("input")&&(!document.documentMode||document.documentMode>9));var M={eventTypes:f,_allowSimulatedPassThrough:!0,_isInputEventSupported:x,extractEvents:function(e,t,n,r){var o,i,s,u,l=t?a.getNodeFromInstance(t):window;if("select"===(u=(s=l).nodeName&&s.nodeName.toLowerCase())||"input"===u&&"file"===s.type?v?o=C:i=w:d(l)?x?o=N:(o=I,i=S):function(e){var t=e.nodeName;return t&&"input"===t.toLowerCase()&&("checkbox"===e.type||"radio"===e.type)}(l)&&(o=P),o){var c=o(e,t,n);if(c)return h(c,n,r)}i&&i(e,l,t),"topBlur"===e&&function(e,t){if(null!=e){var n=e._wrapperState||t._wrapperState;if(n&&n.controlled&&"number"===t.type){var r=""+t.value;t.getAttribute("value")!==r&&t.setAttribute("value",r)}}}(t,l)}};e.exports=M},function(e,t,n){"use strict";var r=n(117),o={};o.attachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(t.getPublicInstance()):r.addComponentAsRefTo(t,e,n)}(n,e,t._owner)}},o.shouldUpdateRefs=function(e,t){var n=null,r=null;null!==e&&"object"==typeof e&&(n=e.ref,r=e._owner);var o=null,i=null;return null!==t&&"object"==typeof t&&(o=t.ref,i=t._owner),n!==o||"string"==typeof o&&i!==r},o.detachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(null):r.removeComponentAsRefFrom(t,e,n)}(n,e,t._owner)}},e.exports=o},function(e,t,n){"use strict";var r=n(1);n(0);function o(e){return!(!e||"function"!=typeof e.attachRef||"function"!=typeof e.detachRef)}var i={addComponentAsRefTo:function(e,t,n){o(n)||r("119"),n.attachRef(t,e)},removeComponentAsRefFrom:function(e,t,n){o(n)||r("120");var i=n.getPublicInstance();i&&i.refs[t]===e.getPublicInstance()&&n.detachRef(t)}};e.exports=i},function(e,t,n){"use strict";e.exports=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"]},function(e,t,n){"use strict";var r=n(20),o=n(4),i=n(25),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},s={eventTypes:a,extractEvents:function(e,t,n,s){if("topMouseOver"===e&&(n.relatedTarget||n.fromElement))return null;if("topMouseOut"!==e&&"topMouseOver"!==e)return null;var u,l,c;if(s.window===s)u=s;else{var p=s.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if("topMouseOut"===e){l=t;var d=n.relatedTarget||n.toElement;c=d?o.getClosestInstanceFromNode(d):null}else l=null,c=t;if(l===c)return null;var f=null==l?u:o.getNodeFromInstance(l),h=null==c?u:o.getNodeFromInstance(c),m=i.getPooled(a.mouseLeave,l,n,s);m.type="mouseleave",m.target=f,m.relatedTarget=h;var g=i.getPooled(a.mouseEnter,c,n,s);return g.type="mouseenter",g.target=h,g.relatedTarget=f,r.accumulateEnterLeaveDispatches(m,g,l,c),[m,g]}};e.exports=s},function(e,t,n){"use strict";var r=n(16),o=r.injection.MUST_USE_PROPERTY,i=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,s=r.injection.HAS_POSITIVE_NUMERIC_VALUE,u=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,l={isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:i,allowTransparency:0,alt:0,as:0,async:i,autoComplete:0,autoPlay:i,capture:i,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:o|i,cite:0,classID:0,className:0,cols:s,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:i,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:i,defer:i,dir:0,disabled:i,download:u,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:i,formTarget:0,frameBorder:0,headers:0,height:0,hidden:i,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:i,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:o|i,muted:o|i,name:0,nonce:0,noValidate:i,open:i,optimum:0,pattern:0,placeholder:0,playsInline:i,poster:0,preload:0,profile:0,radioGroup:0,readOnly:i,referrerPolicy:0,rel:0,required:i,reversed:i,role:0,rows:s,rowSpan:a,sandbox:0,scope:0,scoped:i,scrolling:0,seamless:i,selected:o|i,shape:0,size:s,sizes:0,span:s,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:i,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");"number"!==e.type||!1===e.hasAttribute("value")?e.setAttribute("value",""+t):e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e&&e.setAttribute("value",""+t)}}};e.exports=l},function(e,t,n){"use strict";var r=n(37),o={processChildrenUpdates:n(126).dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(5),a=n(123),s=n(8),u=(n(0),{dangerouslyReplaceNodeWithMarkup:function(e,t){if(i.canUseDOM||r("56"),t||r("57"),"HTML"===e.nodeName&&r("58"),"string"==typeof t){var n=a(t,s)[0];e.parentNode.replaceChild(n,e)}else o.replaceChildWithTree(e,t)}});e.exports=u},function(e,t,n){"use strict";var r=n(5),o=n(124),i=n(125),a=n(0),s=r.canUseDOM?document.createElement("div"):null,u=/^\s*<(\w+)/;e.exports=function(e,t){var n=s;s||a(!1);var r=function(e){var t=e.match(u);return t&&t[1].toLowerCase()}(e),l=r&&i(r);if(l){n.innerHTML=l[1]+e+l[2];for(var c=l[0];c--;)n=n.lastChild}else n.innerHTML=e;var p=n.getElementsByTagName("script");p.length&&(t||a(!1),o(p).forEach(t));for(var d=Array.from(n.childNodes);n.lastChild;)n.removeChild(n.lastChild);return d}},function(e,t,n){"use strict";var r=n(0);e.exports=function(e){return function(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"length"in e&&!("setInterval"in e)&&"number"!=typeof e.nodeType&&(Array.isArray(e)||"callee"in e||"item"in e)}(e)?Array.isArray(e)?e.slice():function(e){var t=e.length;if((Array.isArray(e)||"object"!=typeof e&&"function"!=typeof e)&&r(!1),"number"!=typeof t&&r(!1),0===t||t-1 in e||r(!1),"function"==typeof e.callee&&r(!1),e.hasOwnProperty)try{return Array.prototype.slice.call(e)}catch(e){}for(var n=Array(t),o=0;o<t;o++)n[o]=e[o];return n}(e):[e]}},function(e,t,n){"use strict";var r=n(5),o=n(0),i=r.canUseDOM?document.createElement("div"):null,a={},s=[1,'<select multiple="true">',"</select>"],u=[1,"<table>","</table>"],l=[3,"<table><tbody><tr>","</tr></tbody></table>"],c=[1,'<svg xmlns="http://www.w3.org/2000/svg">',"</svg>"],p={"*":[1,"?<div>","</div>"],area:[1,"<map>","</map>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],legend:[1,"<fieldset>","</fieldset>"],param:[1,"<object>","</object>"],tr:[2,"<table><tbody>","</tbody></table>"],optgroup:s,option:s,caption:u,colgroup:u,tbody:u,tfoot:u,thead:u,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach(function(e){p[e]=c,a[e]=!0}),e.exports=function(e){return i||o(!1),p.hasOwnProperty(e)||(e="*"),a.hasOwnProperty(e)||(i.innerHTML="*"===e?"<link />":"<"+e+"></"+e+">",a[e]=!i.firstChild),a[e]?p[e]:null}},function(e,t,n){"use strict";var r=n(37),o=n(4),i={dangerouslyProcessChildrenUpdates:function(e,t){var n=o.getNodeFromInstance(e);r.processUpdates(n,t)}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(128),a=n(129),s=n(17),u=n(38),l=n(16),c=n(71),p=n(21),d=n(31),f=n(28),h=n(58),m=n(4),g=n(139),v=n(141),y=n(72),_=n(142),b=(n(6),n(143)),E=n(78),C=(n(8),n(27)),w=(n(0),n(35),n(43),n(65)),x=(n(47),n(2),h),T=p.deleteListener,k=m.getNodeFromInstance,S=f.listenTo,I=d.registrationNameModules,P={string:!0,number:!0},N="__html",M={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null},O=11;function R(e,t){t&&(H[e._tag]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&r("137",e._tag,e._currentElement._owner?" Check the render method of "+e._currentElement._owner.getName()+".":""),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&r("60"),"object"==typeof t.dangerouslySetInnerHTML&&N in t.dangerouslySetInnerHTML||r("61")),null!=t.style&&"object"!=typeof t.style&&r("62",function(e){if(e){var t=e._currentElement._owner||null;if(t){var n=t.getName();if(n)return" This DOM node was rendered by `"+n+"`."}}return""}(e)))}function A(e,t,n,r){if(!(r instanceof E)){0;var o=e._hostContainerInfo,i=o._node&&o._node.nodeType===O?o._node:o._ownerDocument;S(t,i),r.getReactMountReady().enqueue(L,{inst:e,registrationName:t,listener:n})}}function L(){p.putListener(this.inst,this.registrationName,this.listener)}function D(){g.postMountWrapper(this)}function U(){_.postMountWrapper(this)}function j(){v.postMountWrapper(this)}var F={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"};function B(){w.track(this)}function W(){this._rootNodeID||r("63");var e=k(this);switch(e||r("64"),this._tag){case"iframe":case"object":this._wrapperState.listeners=[f.trapBubbledEvent("topLoad","load",e)];break;case"video":case"audio":for(var t in this._wrapperState.listeners=[],F)F.hasOwnProperty(t)&&this._wrapperState.listeners.push(f.trapBubbledEvent(t,F[t],e));break;case"source":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e)];break;case"img":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e),f.trapBubbledEvent("topLoad","load",e)];break;case"form":this._wrapperState.listeners=[f.trapBubbledEvent("topReset","reset",e),f.trapBubbledEvent("topSubmit","submit",e)];break;case"input":case"select":case"textarea":this._wrapperState.listeners=[f.trapBubbledEvent("topInvalid","invalid",e)]}}function z(){y.postUpdateWrapper(this)}var q={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},V={listing:!0,pre:!0,textarea:!0},H=o({menuitem:!0},q),Y=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,K={},G={}.hasOwnProperty;function X(e,t){return e.indexOf("-")>=0||null!=t.is}var Q=1;function $(e){var t=e.type;!function(e){G.call(K,e)||(Y.test(e)||r("65",e),K[e]=!0)}(t),this._currentElement=e,this._tag=t.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null,this._flags=0}$.displayName="ReactDOMComponent",$.Mixin={mountComponent:function(e,t,n,r){this._rootNodeID=Q++,this._domID=n._idCounter++,this._hostParent=t,this._hostContainerInfo=n;var o,a,l,p=this._currentElement.props;switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},e.getReactMountReady().enqueue(W,this);break;case"input":g.mountWrapper(this,p,t),p=g.getHostProps(this,p),e.getReactMountReady().enqueue(B,this),e.getReactMountReady().enqueue(W,this);break;case"option":v.mountWrapper(this,p,t),p=v.getHostProps(this,p);break;case"select":y.mountWrapper(this,p,t),p=y.getHostProps(this,p),e.getReactMountReady().enqueue(W,this);break;case"textarea":_.mountWrapper(this,p,t),p=_.getHostProps(this,p),e.getReactMountReady().enqueue(B,this),e.getReactMountReady().enqueue(W,this)}if(R(this,p),null!=t?(o=t._namespaceURI,a=t._tag):n._tag&&(o=n._namespaceURI,a=n._tag),(null==o||o===u.svg&&"foreignobject"===a)&&(o=u.html),o===u.html&&("svg"===this._tag?o=u.svg:"math"===this._tag&&(o=u.mathml)),this._namespaceURI=o,e.useCreateElement){var d,f=n._ownerDocument;if(o===u.html)if("script"===this._tag){var h=f.createElement("div"),b=this._currentElement.type;h.innerHTML="<"+b+"></"+b+">",d=h.removeChild(h.firstChild)}else d=p.is?f.createElement(this._currentElement.type,p.is):f.createElement(this._currentElement.type);else d=f.createElementNS(o,this._currentElement.type);m.precacheNode(this,d),this._flags|=x.hasCachedChildNodes,this._hostParent||c.setAttributeForRoot(d),this._updateDOMProperties(null,p,e);var E=s(d);this._createInitialChildren(e,p,r,E),l=E}else{var C=this._createOpenTagMarkupAndPutListeners(e,p),w=this._createContentMarkup(e,p,r);l=!w&&q[this._tag]?C+"/>":C+">"+w+"</"+this._currentElement.type+">"}switch(this._tag){case"input":e.getReactMountReady().enqueue(D,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"textarea":e.getReactMountReady().enqueue(U,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"select":case"button":p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"option":e.getReactMountReady().enqueue(j,this)}return l},_createOpenTagMarkupAndPutListeners:function(e,t){var n="<"+this._currentElement.type;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];if(null!=i)if(I.hasOwnProperty(r))i&&A(this,r,i,e);else{"style"===r&&(i&&(i=this._previousStyleCopy=o({},t.style)),i=a.createMarkupForStyles(i,this));var s=null;null!=this._tag&&X(this._tag,t)?M.hasOwnProperty(r)||(s=c.createMarkupForCustomAttribute(r,i)):s=c.createMarkupForProperty(r,i),s&&(n+=" "+s)}}return e.renderToStaticMarkup?n:(this._hostParent||(n+=" "+c.createMarkupForRoot()),n+=" "+c.createMarkupForID(this._domID))},_createContentMarkup:function(e,t,n){var r="",o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&(r=o.__html);else{var i=P[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)r=C(i);else if(null!=a){r=this.mountChildren(a,e,n).join("")}}return V[this._tag]&&"\n"===r.charAt(0)?"\n"+r:r},_createInitialChildren:function(e,t,n,r){var o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&s.queueHTML(r,o.__html);else{var i=P[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)""!==i&&s.queueText(r,i);else if(null!=a)for(var u=this.mountChildren(a,e,n),l=0;l<u.length;l++)s.queueChild(r,u[l])}},receiveComponent:function(e,t,n){var r=this._currentElement;this._currentElement=e,this.updateComponent(t,r,e,n)},updateComponent:function(e,t,n,r){var o=t.props,i=this._currentElement.props;switch(this._tag){case"input":o=g.getHostProps(this,o),i=g.getHostProps(this,i);break;case"option":o=v.getHostProps(this,o),i=v.getHostProps(this,i);break;case"select":o=y.getHostProps(this,o),i=y.getHostProps(this,i);break;case"textarea":o=_.getHostProps(this,o),i=_.getHostProps(this,i)}switch(R(this,i),this._updateDOMProperties(o,i,e),this._updateDOMChildren(o,i,e,r),this._tag){case"input":g.updateWrapper(this),w.updateValueIfChanged(this);break;case"textarea":_.updateWrapper(this);break;case"select":e.getReactMountReady().enqueue(z,this)}},_updateDOMProperties:function(e,t,n){var r,i,s;for(r in e)if(!t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&null!=e[r])if("style"===r){var u=this._previousStyleCopy;for(i in u)u.hasOwnProperty(i)&&((s=s||{})[i]="");this._previousStyleCopy=null}else I.hasOwnProperty(r)?e[r]&&T(this,r):X(this._tag,e)?M.hasOwnProperty(r)||c.deleteValueForAttribute(k(this),r):(l.properties[r]||l.isCustomAttribute(r))&&c.deleteValueForProperty(k(this),r);for(r in t){var p=t[r],d="style"===r?this._previousStyleCopy:null!=e?e[r]:void 0;if(t.hasOwnProperty(r)&&p!==d&&(null!=p||null!=d))if("style"===r)if(p?p=this._previousStyleCopy=o({},p):this._previousStyleCopy=null,d){for(i in d)!d.hasOwnProperty(i)||p&&p.hasOwnProperty(i)||((s=s||{})[i]="");for(i in p)p.hasOwnProperty(i)&&d[i]!==p[i]&&((s=s||{})[i]=p[i])}else s=p;else if(I.hasOwnProperty(r))p?A(this,r,p,n):d&&T(this,r);else if(X(this._tag,t))M.hasOwnProperty(r)||c.setValueForAttribute(k(this),r,p);else if(l.properties[r]||l.isCustomAttribute(r)){var f=k(this);null!=p?c.setValueForProperty(f,r,p):c.deleteValueForProperty(f,r)}}s&&a.setValueForStyles(k(this),s,this)},_updateDOMChildren:function(e,t,n,r){var o=P[typeof e.children]?e.children:null,i=P[typeof t.children]?t.children:null,a=e.dangerouslySetInnerHTML&&e.dangerouslySetInnerHTML.__html,s=t.dangerouslySetInnerHTML&&t.dangerouslySetInnerHTML.__html,u=null!=o?null:e.children,l=null!=i?null:t.children,c=null!=o||null!=a,p=null!=i||null!=s;null!=u&&null==l?this.updateChildren(null,n,r):c&&!p&&this.updateTextContent(""),null!=i?o!==i&&this.updateTextContent(""+i):null!=s?a!==s&&this.updateMarkup(""+s):null!=l&&this.updateChildren(l,n,r)},getHostNode:function(){return k(this)},unmountComponent:function(e){switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":var t=this._wrapperState.listeners;if(t)for(var n=0;n<t.length;n++)t[n].remove();break;case"input":case"textarea":w.stopTracking(this);break;case"html":case"head":case"body":r("66",this._tag)}this.unmountChildren(e),m.uncacheNode(this),p.deleteAllListeners(this),this._rootNodeID=0,this._domID=0,this._wrapperState=null},getPublicInstance:function(){return k(this)}},o($.prototype,$.Mixin,b.Mixin),e.exports=$},function(e,t,n){"use strict";var r=n(4),o=n(69),i={focusDOMComponent:function(){o(r.getNodeFromInstance(this))}};e.exports=i},function(e,t,n){"use strict";var r=n(70),o=n(5),i=(n(6),n(130),n(132)),a=n(133),s=n(135),u=(n(2),s(function(e){return a(e)})),l=!1,c="cssFloat";if(o.canUseDOM){var p=document.createElement("div").style;try{p.font=""}catch(e){l=!0}void 0===document.documentElement.style.cssFloat&&(c="styleFloat")}var d={createMarkupForStyles:function(e,t){var n="";for(var r in e)if(e.hasOwnProperty(r)){var o=0===r.indexOf("--"),a=e[r];0,null!=a&&(n+=u(r)+":",n+=i(r,a,t,o)+";")}return n||null},setValueForStyles:function(e,t,n){var o=e.style;for(var a in t)if(t.hasOwnProperty(a)){var s=0===a.indexOf("--");0;var u=i(a,t[a],n,s);if("float"!==a&&"cssFloat"!==a||(a=c),s)o.setProperty(a,u);else if(u)o[a]=u;else{var p=l&&r.shorthandPropertyExpansions[a];if(p)for(var d in p)o[d]="";else o[a]=""}}}};e.exports=d},function(e,t,n){"use strict";var r=n(131),o=/^-ms-/;e.exports=function(e){return r(e.replace(o,"ms-"))}},function(e,t,n){"use strict";var r=/-(.)/g;e.exports=function(e){return e.replace(r,function(e,t){return t.toUpperCase()})}},function(e,t,n){"use strict";var r=n(70),o=(n(2),r.isUnitlessNumber);e.exports=function(e,t,n,r){if(null==t||"boolean"==typeof t||""===t)return"";var i=isNaN(t);return r||i||0===t||o.hasOwnProperty(e)&&o[e]?""+t:("string"==typeof t&&(t=t.trim()),t+"px")}},function(e,t,n){"use strict";var r=n(134),o=/^ms-/;e.exports=function(e){return r(e).replace(o,"-ms-")}},function(e,t,n){"use strict";var r=/([A-Z])/g;e.exports=function(e){return e.replace(r,"-$1").toLowerCase()}},function(e,t,n){"use strict";e.exports=function(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}},function(e,t,n){"use strict";var r=n(27);e.exports=function(e){return'"'+r(e)+'"'}},function(e,t,n){"use strict";var r=n(21);var o={handleTopLevel:function(e,t,n,o){!function(e){r.enqueueEvents(e),r.processEventQueue(!1)}(r.extractEvents(e,t,n,o))}};e.exports=o},function(e,t,n){"use strict";var r=n(5);function o(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}var i={animationend:o("Animation","AnimationEnd"),animationiteration:o("Animation","AnimationIteration"),animationstart:o("Animation","AnimationStart"),transitionend:o("Transition","TransitionEnd")},a={},s={};r.canUseDOM&&(s=document.createElement("div").style,"AnimationEvent"in window||(delete i.animationend.animation,delete i.animationiteration.animation,delete i.animationstart.animation),"TransitionEvent"in window||delete i.transitionend.transition),e.exports=function(e){if(a[e])return a[e];if(!i[e])return e;var t=i[e];for(var n in t)if(t.hasOwnProperty(n)&&n in s)return a[e]=t[n];return""}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(71),a=n(40),s=n(4),u=n(9);n(0),n(2);function l(){this._rootNodeID&&p.updateWrapper(this)}function c(e){return"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}var p={getHostProps:function(e,t){var n=a.getValue(t),r=a.getChecked(t);return o({type:void 0,step:void 0,min:void 0,max:void 0},t,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:e._wrapperState.initialValue,checked:null!=r?r:e._wrapperState.initialChecked,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:null!=t.value?t.value:n,listeners:null,onChange:d.bind(e),controlled:c(t)}},updateWrapper:function(e){var t=e._currentElement.props,n=t.checked;null!=n&&i.setValueForProperty(s.getNodeFromInstance(e),"checked",n||!1);var r=s.getNodeFromInstance(e),o=a.getValue(t);if(null!=o)if(0===o&&""===r.value)r.value="0";else if("number"===t.type){var u=parseFloat(r.value,10)||0;(o!=u||o==u&&r.value!=o)&&(r.value=""+o)}else r.value!==""+o&&(r.value=""+o);else null==t.value&&null!=t.defaultValue&&r.defaultValue!==""+t.defaultValue&&(r.defaultValue=""+t.defaultValue),null==t.checked&&null!=t.defaultChecked&&(r.defaultChecked=!!t.defaultChecked)},postMountWrapper:function(e){var t=e._currentElement.props,n=s.getNodeFromInstance(e);switch(t.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":n.value="",n.value=n.defaultValue;break;default:n.value=n.value}var r=n.name;""!==r&&(n.name=""),n.defaultChecked=!n.defaultChecked,n.defaultChecked=!n.defaultChecked,""!==r&&(n.name=r)}};function d(e){var t=this._currentElement.props,n=a.executeOnChange(t,e);u.asap(l,this);var o=t.name;if("radio"===t.type&&null!=o){for(var i=s.getNodeFromInstance(this),c=i;c.parentNode;)c=c.parentNode;for(var p=c.querySelectorAll("input[name="+JSON.stringify(""+o)+'][type="radio"]'),d=0;d<p.length;d++){var f=p[d];if(f!==i&&f.form===i.form){var h=s.getInstanceFromNode(f);h||r("90"),u.asap(l,h)}}}return n}e.exports=p},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(3),o=n(12),i=n(4),a=n(72),s=(n(2),!1);function u(e){var t="";return o.Children.forEach(e,function(e){null!=e&&("string"==typeof e||"number"==typeof e?t+=e:s||(s=!0))}),t}var l={mountWrapper:function(e,t,n){var r=null;if(null!=n){var o=n;"optgroup"===o._tag&&(o=o._hostParent),null!=o&&"select"===o._tag&&(r=a.getSelectValueContext(o))}var i,s=null;if(null!=r)if(i=null!=t.value?t.value+"":u(t.children),s=!1,Array.isArray(r)){for(var l=0;l<r.length;l++)if(""+r[l]===i){s=!0;break}}else s=""+r===i;e._wrapperState={selected:s}},postMountWrapper:function(e){var t=e._currentElement.props;null!=t.value&&i.getNodeFromInstance(e).setAttribute("value",t.value)},getHostProps:function(e,t){var n=r({selected:void 0,children:void 0},t);null!=e._wrapperState.selected&&(n.selected=e._wrapperState.selected);var o=u(t.children);return o&&(n.children=o),n}};e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(40),a=n(4),s=n(9);n(0),n(2);function u(){this._rootNodeID&&l.updateWrapper(this)}var l={getHostProps:function(e,t){return null!=t.dangerouslySetInnerHTML&&r("91"),o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=i.getValue(t),o=n;if(null==n){var a=t.defaultValue,s=t.children;null!=s&&(null!=a&&r("92"),Array.isArray(s)&&(s.length<=1||r("93"),s=s[0]),a=""+s),null==a&&(a=""),o=a}e._wrapperState={initialValue:""+o,listeners:null,onChange:c.bind(e)}},updateWrapper:function(e){var t=e._currentElement.props,n=a.getNodeFromInstance(e),r=i.getValue(t);if(null!=r){var o=""+r;o!==n.value&&(n.value=o),null==t.defaultValue&&(n.defaultValue=o)}null!=t.defaultValue&&(n.defaultValue=t.defaultValue)},postMountWrapper:function(e){var t=a.getNodeFromInstance(e),n=t.textContent;n===e._wrapperState.initialValue&&(t.value=n)}};function c(e){var t=this._currentElement.props,n=i.executeOnChange(t,e);return s.asap(u,this),n}e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(41),i=(n(23),n(6),n(10),n(14)),a=n(144),s=(n(8),n(149));n(0);function u(e,t){return t&&(e=e||[]).push(t),e}function l(e,t){o.processChildrenUpdates(e,t)}var c={Mixin:{_reconcilerInstantiateChildren:function(e,t,n){return a.instantiateChildren(e,t,n)},_reconcilerUpdateChildren:function(e,t,n,r,o,i){var u;return u=s(t,0),a.updateChildren(e,u,n,r,o,this,this._hostContainerInfo,i,0),u},mountChildren:function(e,t,n){var r=this._reconcilerInstantiateChildren(e,t,n);this._renderedChildren=r;var o=[],a=0;for(var s in r)if(r.hasOwnProperty(s)){var u=r[s];0;var l=i.mountComponent(u,t,this,this._hostContainerInfo,n,0);u._mountIndex=a++,o.push(l)}return o},updateTextContent:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"TEXT_CONTENT",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateMarkup:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"SET_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateChildren:function(e,t,n){this._updateChildren(e,t,n)},_updateChildren:function(e,t,n){var r=this._renderedChildren,o={},a=[],s=this._reconcilerUpdateChildren(r,e,a,o,t,n);if(s||r){var c,p=null,d=0,f=0,h=0,m=null;for(c in s)if(s.hasOwnProperty(c)){var g=r&&r[c],v=s[c];g===v?(p=u(p,this.moveChild(g,m,d,f)),f=Math.max(g._mountIndex,f),g._mountIndex=d):(g&&(f=Math.max(g._mountIndex,f)),p=u(p,this._mountChildAtIndex(v,a[h],m,d,t,n)),h++),d++,m=i.getHostNode(v)}for(c in o)o.hasOwnProperty(c)&&(p=u(p,this._unmountChild(r[c],o[c])));p&&l(this,p),this._renderedChildren=s}},unmountChildren:function(e){var t=this._renderedChildren;a.unmountChildren(t,e),this._renderedChildren=null},moveChild:function(e,t,n,r){if(e._mountIndex<r)return function(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._mountIndex,fromNode:i.getHostNode(e),toIndex:n,afterNode:t}}(e,t,n)},createChild:function(e,t,n){return function(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:n,afterNode:t}}(n,t,e._mountIndex)},removeChild:function(e,t){return function(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._mountIndex,fromNode:t,toIndex:null,afterNode:null}}(e,t)},_mountChildAtIndex:function(e,t,n,r,o,i){return e._mountIndex=r,this.createChild(e,n,t)},_unmountChild:function(e,t){var n=this.removeChild(e,t);return e._mountIndex=null,n}}};e.exports=c},function(e,t,n){"use strict";(function(t){var r=n(14),o=n(42),i=(n(45),n(44)),a=n(76);n(2);function s(e,t,n,r){var i=void 0===e[n];null!=t&&i&&(e[n]=o(t,!0))}void 0!==t&&Object({NODE_ENV:"production"});var u={instantiateChildren:function(e,t,n,r){if(null==e)return null;var o={};return a(e,s,o),o},updateChildren:function(e,t,n,a,s,u,l,c,p){if(t||e){var d,f;for(d in t)if(t.hasOwnProperty(d)){var h=(f=e&&e[d])&&f._currentElement,m=t[d];if(null!=f&&i(h,m))r.receiveComponent(f,m,s,c),t[d]=f;else{f&&(a[d]=r.getHostNode(f),r.unmountComponent(f,!1));var g=o(m,!0);t[d]=g;var v=r.mountComponent(g,s,u,l,c,p);n.push(v)}}for(d in e)!e.hasOwnProperty(d)||t&&t.hasOwnProperty(d)||(f=e[d],a[d]=r.getHostNode(f),r.unmountComponent(f,!1))}},unmountChildren:function(e,t){for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];r.unmountComponent(o,t)}}};e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(12),a=n(41),s=n(10),u=n(33),l=n(23),c=(n(6),n(73)),p=n(14),d=n(19),f=(n(0),n(43)),h=n(44),m=(n(2),0),g=1,v=2;function y(e){}function _(e,t){0}y.prototype.render=function(){var e=l.get(this)._currentElement.type,t=e(this.props,this.context,this.updater);return _(e,t),t};var b=1,E={construct:function(e){this._currentElement=e,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(e,t,n,o){this._context=o,this._mountOrder=b++,this._hostParent=t,this._hostContainerInfo=n;var a,s=this._currentElement.props,u=this._processContext(o),c=this._currentElement.type,p=e.getUpdateQueue(),f=function(e){return!(!e.prototype||!e.prototype.isReactComponent)}(c),h=this._constructComponent(f,s,u,p);f||null!=h&&null!=h.render?!function(e){return!(!e.prototype||!e.prototype.isPureReactComponent)}(c)?this._compositeType=m:this._compositeType=g:(a=h,_(),null===h||!1===h||i.isValidElement(h)||r("105",c.displayName||c.name||"Component"),h=new y(c),this._compositeType=v),h.props=s,h.context=u,h.refs=d,h.updater=p,this._instance=h,l.set(h,this);var E,C=h.state;return void 0===C&&(h.state=C=null),("object"!=typeof C||Array.isArray(C))&&r("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,E=h.unstable_handleError?this.performInitialMountWithErrorHandling(a,t,n,e,o):this.performInitialMount(a,t,n,e,o),h.componentDidMount&&e.getReactMountReady().enqueue(h.componentDidMount,h),E},_constructComponent:function(e,t,n,r){return this._constructComponentWithoutOwner(e,t,n,r)},_constructComponentWithoutOwner:function(e,t,n,r){var o=this._currentElement.type;return e?new o(t,n,r):o(t,n,r)},performInitialMountWithErrorHandling:function(e,t,n,r,o){var i,a=r.checkpoint();try{i=this.performInitialMount(e,t,n,r,o)}catch(s){r.rollback(a),this._instance.unstable_handleError(s),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),i=this.performInitialMount(e,t,n,r,o)}return i},performInitialMount:function(e,t,n,r,o){var i=this._instance;i.componentWillMount&&(i.componentWillMount(),this._pendingStateQueue&&(i.state=this._processPendingState(i.props,i.context))),void 0===e&&(e=this._renderValidatedComponent());var a=c.getType(e);this._renderedNodeType=a;var s=this._instantiateReactComponent(e,a!==c.EMPTY);return this._renderedComponent=s,p.mountComponent(s,r,t,n,this._processChildContext(o),0)},getHostNode:function(){return p.getHostNode(this._renderedComponent)},unmountComponent:function(e){if(this._renderedComponent){var t=this._instance;if(t.componentWillUnmount&&!t._calledComponentWillUnmount)if(t._calledComponentWillUnmount=!0,e){var n=this.getName()+".componentWillUnmount()";u.invokeGuardedCallback(n,t.componentWillUnmount.bind(t))}else t.componentWillUnmount();this._renderedComponent&&(p.unmountComponent(this._renderedComponent,e),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,l.remove(t)}},_maskContext:function(e){var t=this._currentElement.type.contextTypes;if(!t)return d;var n={};for(var r in t)n[r]=e[r];return n},_processContext:function(e){return this._maskContext(e)},_processChildContext:function(e){var t,n=this._currentElement.type,i=this._instance;if(i.getChildContext&&(t=i.getChildContext()),t){for(var a in"object"!=typeof n.childContextTypes&&r("107",this.getName()||"ReactCompositeComponent"),t)a in n.childContextTypes||r("108",this.getName()||"ReactCompositeComponent",a);return o({},e,t)}return e},_checkContextTypes:function(e,t,n){0},receiveComponent:function(e,t,n){var r=this._currentElement,o=this._context;this._pendingElement=null,this.updateComponent(t,r,e,o,n)},performUpdateIfNecessary:function(e){null!=this._pendingElement?p.receiveComponent(this,this._pendingElement,e,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(e,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(e,t,n,o,i){var a=this._instance;null==a&&r("136",this.getName()||"ReactCompositeComponent");var s,u=!1;this._context===i?s=a.context:(s=this._processContext(i),u=!0);var l=t.props,c=n.props;t!==n&&(u=!0),u&&a.componentWillReceiveProps&&a.componentWillReceiveProps(c,s);var p=this._processPendingState(c,s),d=!0;this._pendingForceUpdate||(a.shouldComponentUpdate?d=a.shouldComponentUpdate(c,p,s):this._compositeType===g&&(d=!f(l,c)||!f(a.state,p))),this._updateBatchNumber=null,d?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,c,p,s,e,i)):(this._currentElement=n,this._context=i,a.props=c,a.state=p,a.context=s)},_processPendingState:function(e,t){var n=this._instance,r=this._pendingStateQueue,i=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!r)return n.state;if(i&&1===r.length)return r[0];for(var a=o({},i?r[0]:n.state),s=i?1:0;s<r.length;s++){var u=r[s];o(a,"function"==typeof u?u.call(n,a,e,t):u)}return a},_performComponentUpdate:function(e,t,n,r,o,i){var a,s,u,l=this._instance,c=Boolean(l.componentDidUpdate);c&&(a=l.props,s=l.state,u=l.context),l.componentWillUpdate&&l.componentWillUpdate(t,n,r),this._currentElement=e,this._context=i,l.props=t,l.state=n,l.context=r,this._updateRenderedComponent(o,i),c&&o.getReactMountReady().enqueue(l.componentDidUpdate.bind(l,a,s,u),l)},_updateRenderedComponent:function(e,t){var n=this._renderedComponent,r=n._currentElement,o=this._renderValidatedComponent();if(h(r,o))p.receiveComponent(n,o,e,this._processChildContext(t));else{var i=p.getHostNode(n);p.unmountComponent(n,!1);var a=c.getType(o);this._renderedNodeType=a;var s=this._instantiateReactComponent(o,a!==c.EMPTY);this._renderedComponent=s;var u=p.mountComponent(s,e,this._hostParent,this._hostContainerInfo,this._processChildContext(t),0);this._replaceNodeWithMarkup(i,u,n)}},_replaceNodeWithMarkup:function(e,t,n){a.replaceNodeWithMarkup(e,t,n)},_renderValidatedComponentWithoutOwnerOrContext:function(){return this._instance.render()},_renderValidatedComponent:function(){var e;if(this._compositeType!==v){s.current=this;try{e=this._renderValidatedComponentWithoutOwnerOrContext()}finally{s.current=null}}else e=this._renderValidatedComponentWithoutOwnerOrContext();return null===e||!1===e||i.isValidElement(e)||r("109",this.getName()||"ReactCompositeComponent"),e},attachRef:function(e,t){var n=this.getPublicInstance();null==n&&r("110");var o=t.getPublicInstance();(n.refs===d?n.refs={}:n.refs)[e]=o},detachRef:function(e){delete this.getPublicInstance().refs[e]},getName:function(){var e=this._currentElement.type,t=this._instance&&this._instance.constructor;return e.displayName||t&&t.displayName||e.name||t&&t.name||null},getPublicInstance:function(){var e=this._instance;return this._compositeType===v?null:e},_instantiateReactComponent:null};e.exports=E},function(e,t,n){"use strict";var r=1;e.exports=function(){return r++}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";e.exports=function(e){var t=e&&(r&&e[r]||e[o]);if("function"==typeof t)return t}},function(e,t,n){"use strict";(function(t){n(45);var r=n(76);n(2);function o(e,t,n,r){if(e&&"object"==typeof e){var o=e;0,void 0===o[n]&&null!=t&&(o[n]=t)}}void 0!==t&&Object({NODE_ENV:"production"}),e.exports=function(e,t){if(null==e)return e;var n={};return r(e,o,n),n}}).call(this,n(30))},function(e,t,n){"use strict";var r=n(46);n(2);var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.transaction=t}return e.prototype.isMounted=function(e){return!1},e.prototype.enqueueCallback=function(e,t,n){this.transaction.isInTransaction()&&r.enqueueCallback(e,t,n)},e.prototype.enqueueForceUpdate=function(e){this.transaction.isInTransaction()&&r.enqueueForceUpdate(e)},e.prototype.enqueueReplaceState=function(e,t){this.transaction.isInTransaction()&&r.enqueueReplaceState(e,t)},e.prototype.enqueueSetState=function(e,t){this.transaction.isInTransaction()&&r.enqueueSetState(e,t)},e}();e.exports=o},function(e,t,n){"use strict";var r=n(3),o=n(17),i=n(4),a=function(e){this._currentElement=null,this._hostNode=null,this._hostParent=null,this._hostContainerInfo=null,this._domID=0};r(a.prototype,{mountComponent:function(e,t,n,r){var a=n._idCounter++;this._domID=a,this._hostParent=t,this._hostContainerInfo=n;var s=" react-empty: "+this._domID+" ";if(e.useCreateElement){var u=n._ownerDocument.createComment(s);return i.precacheNode(this,u),o(u)}return e.renderToStaticMarkup?"":"\x3c!--"+s+"--\x3e"},receiveComponent:function(){},getHostNode:function(){return i.getNodeFromInstance(this)},unmountComponent:function(){i.uncacheNode(this)}}),e.exports=a},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){"_hostNode"in e||r("33"),"_hostNode"in t||r("33");for(var n=0,o=e;o;o=o._hostParent)n++;for(var i=0,a=t;a;a=a._hostParent)i++;for(;n-i>0;)e=e._hostParent,n--;for(;i-n>0;)t=t._hostParent,i--;for(var s=n;s--;){if(e===t)return e;e=e._hostParent,t=t._hostParent}return null}e.exports={isAncestor:function(e,t){"_hostNode"in e||r("35"),"_hostNode"in t||r("35");for(;t;){if(t===e)return!0;t=t._hostParent}return!1},getLowestCommonAncestor:o,getParentInstance:function(e){return"_hostNode"in e||r("36"),e._hostParent},traverseTwoPhase:function(e,t,n){for(var r,o=[];e;)o.push(e),e=e._hostParent;for(r=o.length;r-- >0;)t(o[r],"captured",n);for(r=0;r<o.length;r++)t(o[r],"bubbled",n)},traverseEnterLeave:function(e,t,n,r,i){for(var a=e&&t?o(e,t):null,s=[];e&&e!==a;)s.push(e),e=e._hostParent;for(var u,l=[];t&&t!==a;)l.push(t),t=t._hostParent;for(u=0;u<s.length;u++)n(s[u],"bubbled",r);for(u=l.length;u-- >0;)n(l[u],"captured",i)}}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(37),a=n(17),s=n(4),u=n(27),l=(n(0),n(47),function(e){this._currentElement=e,this._stringText=""+e,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});o(l.prototype,{mountComponent:function(e,t,n,r){var o=n._idCounter++,i=" react-text: "+o+" ";if(this._domID=o,this._hostParent=t,e.useCreateElement){var l=n._ownerDocument,c=l.createComment(i),p=l.createComment(" /react-text "),d=a(l.createDocumentFragment());return a.queueChild(d,a(c)),this._stringText&&a.queueChild(d,a(l.createTextNode(this._stringText))),a.queueChild(d,a(p)),s.precacheNode(this,c),this._closingComment=p,d}var f=u(this._stringText);return e.renderToStaticMarkup?f:"\x3c!--"+i+"--\x3e"+f+"\x3c!-- /react-text --\x3e"},receiveComponent:function(e,t){if(e!==this._currentElement){this._currentElement=e;var n=""+e;if(n!==this._stringText){this._stringText=n;var r=this.getHostNode();i.replaceDelimitedText(r[0],r[1],n)}}},getHostNode:function(){var e=this._commentNodes;if(e)return e;if(!this._closingComment)for(var t=s.getNodeFromInstance(this).nextSibling;;){if(null==t&&r("67",this._domID),8===t.nodeType&&" /react-text "===t.nodeValue){this._closingComment=t;break}t=t.nextSibling}return e=[this._hostNode,this._closingComment],this._commentNodes=e,e},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,s.uncacheNode(this)}}),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(80),i=n(5),a=n(13),s=n(4),u=n(9),l=n(34),c=n(155);function p(e){for(;e._hostParent;)e=e._hostParent;var t=s.getNodeFromInstance(e).parentNode;return s.getClosestInstanceFromNode(t)}function d(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]}function f(e){var t=l(e.nativeEvent),n=s.getClosestInstanceFromNode(t),r=n;do{e.ancestors.push(r),r=r&&p(r)}while(r);for(var o=0;o<e.ancestors.length;o++)n=e.ancestors[o],h._handleTopLevel(e.topLevelType,n,e.nativeEvent,l(e.nativeEvent))}r(d.prototype,{destructor:function(){this.topLevelType=null,this.nativeEvent=null,this.ancestors.length=0}}),a.addPoolingTo(d,a.twoArgumentPooler);var h={_enabled:!0,_handleTopLevel:null,WINDOW_HANDLE:i.canUseDOM?window:null,setHandleTopLevel:function(e){h._handleTopLevel=e},setEnabled:function(e){h._enabled=!!e},isEnabled:function(){return h._enabled},trapBubbledEvent:function(e,t,n){return n?o.listen(n,t,h.dispatchEvent.bind(null,e)):null},trapCapturedEvent:function(e,t,n){return n?o.capture(n,t,h.dispatchEvent.bind(null,e)):null},monitorScrollValue:function(e){var t=function(e){e(c(window))}.bind(null,e);o.listen(window,"scroll",t)},dispatchEvent:function(e,t){if(h._enabled){var n=d.getPooled(e,t);try{u.batchedUpdates(f,n)}finally{d.release(n)}}}};e.exports=h},function(e,t,n){"use strict";e.exports=function(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e.document.documentElement.scrollLeft,y:e.pageYOffset||e.document.documentElement.scrollTop}:{x:e.scrollLeft,y:e.scrollTop}}},function(e,t,n){"use strict";var r=n(16),o=n(21),i=n(32),a=n(41),s=n(74),u=n(28),l=n(75),c=n(9),p={Component:a.injection,DOMProperty:r.injection,EmptyComponent:s.injection,EventPluginHub:o.injection,EventPluginUtils:i.injection,EventEmitter:u.injection,HostComponent:l.injection,Updates:c.injection};e.exports=p},function(e,t,n){"use strict";var r=n(3),o=n(63),i=n(13),a=n(28),s=n(81),u=(n(6),n(24)),l=n(46),c=[{initialize:s.getSelectionInformation,close:s.restoreSelection},{initialize:function(){var e=a.isEnabled();return a.setEnabled(!1),e},close:function(e){a.setEnabled(e)}},{initialize:function(){this.reactMountReady.reset()},close:function(){this.reactMountReady.notifyAll()}}];function p(e){this.reinitializeTransaction(),this.renderToStaticMarkup=!1,this.reactMountReady=o.getPooled(null),this.useCreateElement=e}var d={getTransactionWrappers:function(){return c},getReactMountReady:function(){return this.reactMountReady},getUpdateQueue:function(){return l},checkpoint:function(){return this.reactMountReady.checkpoint()},rollback:function(e){this.reactMountReady.rollback(e)},destructor:function(){o.release(this.reactMountReady),this.reactMountReady=null}};r(p.prototype,u,d),i.addPoolingTo(p),e.exports=p},function(e,t,n){"use strict";var r=n(5),o=n(159),i=n(62);function a(e,t,n,r){return e===n&&t===r}var s=r.canUseDOM&&"selection"in document&&!("getSelection"in window),u={getOffsets:s?function(e){var t=document.selection.createRange(),n=t.text.length,r=t.duplicate();r.moveToElementText(e),r.setEndPoint("EndToStart",t);var o=r.text.length;return{start:o,end:o+n}}:function(e){var t=window.getSelection&&window.getSelection();if(!t||0===t.rangeCount)return null;var n=t.anchorNode,r=t.anchorOffset,o=t.focusNode,i=t.focusOffset,s=t.getRangeAt(0);try{s.startContainer.nodeType,s.endContainer.nodeType}catch(e){return null}var u=a(t.anchorNode,t.anchorOffset,t.focusNode,t.focusOffset)?0:s.toString().length,l=s.cloneRange();l.selectNodeContents(e),l.setEnd(s.startContainer,s.startOffset);var c=a(l.startContainer,l.startOffset,l.endContainer,l.endOffset)?0:l.toString().length,p=c+u,d=document.createRange();d.setStart(n,r),d.setEnd(o,i);var f=d.collapsed;return{start:f?p:c,end:f?c:p}},setOffsets:s?function(e,t){var n,r,o=document.selection.createRange().duplicate();void 0===t.end?r=n=t.start:t.start>t.end?(n=t.end,r=t.start):(n=t.start,r=t.end),o.moveToElementText(e),o.moveStart("character",n),o.setEndPoint("EndToStart",o),o.moveEnd("character",r-n),o.select()}:function(e,t){if(window.getSelection){var n=window.getSelection(),r=e[i()].length,a=Math.min(t.start,r),s=void 0===t.end?a:Math.min(t.end,r);if(!n.extend&&a>s){var u=s;s=a,a=u}var l=o(e,a),c=o(e,s);if(l&&c){var p=document.createRange();p.setStart(l.node,l.offset),n.removeAllRanges(),a>s?(n.addRange(p),n.extend(c.node,c.offset)):(p.setEnd(c.node,c.offset),n.addRange(p))}}}};e.exports=u},function(e,t,n){"use strict";function r(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function o(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}e.exports=function(e,t){for(var n=r(e),i=0,a=0;n;){if(3===n.nodeType){if(a=i+n.textContent.length,i<=t&&a>=t)return{node:n,offset:t-i};i=a}n=r(o(n))}}},function(e,t,n){"use strict";var r=n(161);e.exports=function e(t,n){return!(!t||!n)&&(t===n||!r(t)&&(r(n)?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}},function(e,t,n){"use strict";var r=n(162);e.exports=function(e){return r(e)&&3==e.nodeType}},function(e,t,n){"use strict";e.exports=function(e){var t=(e?e.ownerDocument||e:document).defaultView||window;return!(!e||!("function"==typeof t.Node?e instanceof t.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}},function(e,t,n){"use strict";var r="http://www.w3.org/1999/xlink",o="http://www.w3.org/XML/1998/namespace",i={accentHeight:"accent-height",accumulate:0,additive:0,alignmentBaseline:"alignment-baseline",allowReorder:"allowReorder",alphabetic:0,amplitude:0,arabicForm:"arabic-form",ascent:0,attributeName:"attributeName",attributeType:"attributeType",autoReverse:"autoReverse",azimuth:0,baseFrequency:"baseFrequency",baseProfile:"baseProfile",baselineShift:"baseline-shift",bbox:0,begin:0,bias:0,by:0,calcMode:"calcMode",capHeight:"cap-height",clip:0,clipPath:"clip-path",clipRule:"clip-rule",clipPathUnits:"clipPathUnits",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",contentScriptType:"contentScriptType",contentStyleType:"contentStyleType",cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:"diffuseConstant",direction:0,display:0,divisor:0,dominantBaseline:"dominant-baseline",dur:0,dx:0,dy:0,edgeMode:"edgeMode",elevation:0,enableBackground:"enable-background",end:0,exponent:0,externalResourcesRequired:"externalResourcesRequired",fill:0,fillOpacity:"fill-opacity",fillRule:"fill-rule",filter:0,filterRes:"filterRes",filterUnits:"filterUnits",floodColor:"flood-color",floodOpacity:"flood-opacity",focusable:0,fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",glyphRef:"glyphRef",gradientTransform:"gradientTransform",gradientUnits:"gradientUnits",hanging:0,horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",ideographic:0,imageRendering:"image-rendering",in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:"kernelMatrix",kernelUnitLength:"kernelUnitLength",kerning:0,keyPoints:"keyPoints",keySplines:"keySplines",keyTimes:"keyTimes",lengthAdjust:"lengthAdjust",letterSpacing:"letter-spacing",lightingColor:"lighting-color",limitingConeAngle:"limitingConeAngle",local:0,markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",markerHeight:"markerHeight",markerUnits:"markerUnits",markerWidth:"markerWidth",mask:0,maskContentUnits:"maskContentUnits",maskUnits:"maskUnits",mathematical:0,mode:0,numOctaves:"numOctaves",offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pathLength:"pathLength",patternContentUnits:"patternContentUnits",patternTransform:"patternTransform",patternUnits:"patternUnits",pointerEvents:"pointer-events",points:0,pointsAtX:"pointsAtX",pointsAtY:"pointsAtY",pointsAtZ:"pointsAtZ",preserveAlpha:"preserveAlpha",preserveAspectRatio:"preserveAspectRatio",primitiveUnits:"primitiveUnits",r:0,radius:0,refX:"refX",refY:"refY",renderingIntent:"rendering-intent",repeatCount:"repeatCount",repeatDur:"repeatDur",requiredExtensions:"requiredExtensions",requiredFeatures:"requiredFeatures",restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:"shape-rendering",slope:0,spacing:0,specularConstant:"specularConstant",specularExponent:"specularExponent",speed:0,spreadMethod:"spreadMethod",startOffset:"startOffset",stdDeviation:"stdDeviation",stemh:0,stemv:0,stitchTiles:"stitchTiles",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",string:0,stroke:0,strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",surfaceScale:"surfaceScale",systemLanguage:"systemLanguage",tableValues:"tableValues",targetX:"targetX",targetY:"targetY",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",textLength:"textLength",to:0,transform:0,u1:0,u2:0,underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicode:0,unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",values:0,vectorEffect:"vector-effect",version:0,vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",viewBox:"viewBox",viewTarget:"viewTarget",visibility:0,widths:0,wordSpacing:"word-spacing",writingMode:"writing-mode",x:0,xHeight:"x-height",x1:0,x2:0,xChannelSelector:"xChannelSelector",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlns:0,xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space",y:0,y1:0,y2:0,yChannelSelector:"yChannelSelector",z:0,zoomAndPan:"zoomAndPan"},a={Properties:{},DOMAttributeNamespaces:{xlinkActuate:r,xlinkArcrole:r,xlinkHref:r,xlinkRole:r,xlinkShow:r,xlinkTitle:r,xlinkType:r,xmlBase:o,xmlLang:o,xmlSpace:o},DOMAttributeNames:{}};Object.keys(i).forEach(function(e){a.Properties[e]=0,i[e]&&(a.DOMAttributeNames[e]=i[e])}),e.exports=a},function(e,t,n){"use strict";var r=n(20),o=n(5),i=n(4),a=n(81),s=n(11),u=n(82),l=n(66),c=n(43),p=o.canUseDOM&&"documentMode"in document&&document.documentMode<=11,d={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:["topBlur","topContextMenu","topFocus","topKeyDown","topKeyUp","topMouseDown","topMouseUp","topSelectionChange"]}},f=null,h=null,m=null,g=!1,v=!1;function y(e,t){if(g||null==f||f!==u())return null;var n=function(e){if("selectionStart"in e&&a.hasSelectionCapabilities(e))return{start:e.selectionStart,end:e.selectionEnd};if(window.getSelection){var t=window.getSelection();return{anchorNode:t.anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset}}if(document.selection){var n=document.selection.createRange();return{parentElement:n.parentElement(),text:n.text,top:n.boundingTop,left:n.boundingLeft}}}(f);if(!m||!c(m,n)){m=n;var o=s.getPooled(d.select,h,e,t);return o.type="select",o.target=f,r.accumulateTwoPhaseDispatches(o),o}return null}var _={eventTypes:d,extractEvents:function(e,t,n,r){if(!v)return null;var o=t?i.getNodeFromInstance(t):window;switch(e){case"topFocus":(l(o)||"true"===o.contentEditable)&&(f=o,h=t,m=null);break;case"topBlur":f=null,h=null,m=null;break;case"topMouseDown":g=!0;break;case"topContextMenu":case"topMouseUp":return g=!1,y(n,r);case"topSelectionChange":if(p)break;case"topKeyDown":case"topKeyUp":return y(n,r)}return null},didPutListener:function(e,t,n){"onSelect"===t&&(v=!0)}};e.exports=_},function(e,t,n){"use strict";var r=n(1),o=n(80),i=n(20),a=n(4),s=n(166),u=n(167),l=n(11),c=n(168),p=n(169),d=n(25),f=n(171),h=n(172),m=n(173),g=n(22),v=n(174),y=n(8),_=n(48),b=(n(0),{}),E={};["abort","animationEnd","animationIteration","animationStart","blur","canPlay","canPlayThrough","click","contextMenu","copy","cut","doubleClick","drag","dragEnd","dragEnter","dragExit","dragLeave","dragOver","dragStart","drop","durationChange","emptied","encrypted","ended","error","focus","input","invalid","keyDown","keyPress","keyUp","load","loadedData","loadedMetadata","loadStart","mouseDown","mouseMove","mouseOut","mouseOver","mouseUp","paste","pause","play","playing","progress","rateChange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeUpdate","touchCancel","touchEnd","touchMove","touchStart","transitionEnd","volumeChange","waiting","wheel"].forEach(function(e){var t=e[0].toUpperCase()+e.slice(1),n="on"+t,r="top"+t,o={phasedRegistrationNames:{bubbled:n,captured:n+"Capture"},dependencies:[r]};b[e]=o,E[r]=o});var C={};function w(e){return"."+e._rootNodeID}function x(e){return"button"===e||"input"===e||"select"===e||"textarea"===e}var T={eventTypes:b,extractEvents:function(e,t,n,o){var a,y=E[e];if(!y)return null;switch(e){case"topAbort":case"topCanPlay":case"topCanPlayThrough":case"topDurationChange":case"topEmptied":case"topEncrypted":case"topEnded":case"topError":case"topInput":case"topInvalid":case"topLoad":case"topLoadedData":case"topLoadedMetadata":case"topLoadStart":case"topPause":case"topPlay":case"topPlaying":case"topProgress":case"topRateChange":case"topReset":case"topSeeked":case"topSeeking":case"topStalled":case"topSubmit":case"topSuspend":case"topTimeUpdate":case"topVolumeChange":case"topWaiting":a=l;break;case"topKeyPress":if(0===_(n))return null;case"topKeyDown":case"topKeyUp":a=p;break;case"topBlur":case"topFocus":a=c;break;case"topClick":if(2===n.button)return null;case"topDoubleClick":case"topMouseDown":case"topMouseMove":case"topMouseUp":case"topMouseOut":case"topMouseOver":case"topContextMenu":a=d;break;case"topDrag":case"topDragEnd":case"topDragEnter":case"topDragExit":case"topDragLeave":case"topDragOver":case"topDragStart":case"topDrop":a=f;break;case"topTouchCancel":case"topTouchEnd":case"topTouchMove":case"topTouchStart":a=h;break;case"topAnimationEnd":case"topAnimationIteration":case"topAnimationStart":a=s;break;case"topTransitionEnd":a=m;break;case"topScroll":a=g;break;case"topWheel":a=v;break;case"topCopy":case"topCut":case"topPaste":a=u}a||r("86",e);var b=a.getPooled(y,t,n,o);return i.accumulateTwoPhaseDispatches(b),b},didPutListener:function(e,t,n){if("onClick"===t&&!x(e._tag)){var r=w(e),i=a.getNodeFromInstance(e);C[r]||(C[r]=o.listen(i,"click",y))}},willDeleteListener:function(e,t){if("onClick"===t&&!x(e._tag)){var n=w(e);C[n].remove(),delete C[n]}}};e.exports=T},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{animationName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11),o={clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(22);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{relatedTarget:null}),e.exports=o},function(e,t,n){"use strict";var r=n(22),o=n(48),i={key:n(170),location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:n(36),charCode:function(e){return"keypress"===e.type?o(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?o(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r=n(48),o={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},i={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"};e.exports=function(e){if(e.key){var t=o[e.key]||e.key;if("Unidentified"!==t)return t}if("keypress"===e.type){var n=r(e);return 13===n?"Enter":String.fromCharCode(n)}return"keydown"===e.type||"keyup"===e.type?i[e.keyCode]||"Unidentified":""}},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{dataTransfer:null}),e.exports=o},function(e,t,n){"use strict";var r=n(22),o={touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:n(36)};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{propertyName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),e.exports=o},function(e,t,n){"use strict";e.exports={useCreateElement:!0,useFiber:!1}},function(e,t,n){"use strict";var r=65521;e.exports=function(e){for(var t=1,n=0,o=0,i=e.length,a=-4&i;o<a;){for(var s=Math.min(o+4096,a);o<s;o+=4)n+=(t+=e.charCodeAt(o))+(t+=e.charCodeAt(o+1))+(t+=e.charCodeAt(o+2))+(t+=e.charCodeAt(o+3));t%=r,n%=r}for(;o<i;o++)n+=t+=e.charCodeAt(o);return(t%=r)|(n%=r)<<16}},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(4)),i=n(23),a=n(87);n(0),n(2);e.exports=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=i.get(e);if(t)return(t=a(t))?o.getNodeFromInstance(t):null;"function"==typeof e.render?r("44"):r("45",Object.keys(e))}},function(e,t,n){"use strict";var r=n(83);e.exports=r.renderSubtreeIntoContainer},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=l(n(29)),i=(l(n(93)),l(n(180)),l(n(184))),a=l(n(189)),s=l(n(209)),u=l(n(52));function l(e){return e&&e.__esModule?e:{default:e}}function c(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}var p=n(210),d=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.results=n.props.results?n.props.results:[],n.state={results:n.results},n.service=n.props.service,n.orderby=n.props.orderby,n.page=n.props.page,n.is_search=!1,n.search_term="",n.total_results=0,n.orientation="",n.isLoading=!1,n.isDone=!1,n.errorMsg="",n.msnry="",n.tooltipInterval="",n.editor=n.props.editor?n.props.editor:"classic",n.is_block_editor="gutenberg"===n.props.editor,n.is_media_router="media-router"===n.props.editor,n.SetFeaturedImage=n.props.SetFeaturedImage?n.props.SetFeaturedImage.bind(n):"",n.InsertImage=n.props.InsertImage?n.props.InsertImage.bind(n):"",n.is_block_editor?(n.container=document.querySelector("body"),n.container.classList.add("loading"),n.wrapper=document.querySelector("body")):(n.container=n.props.container.closest(".instant-img-container"),n.wrapper=n.props.container.closest(".instant-images-wrapper"),n.container.classList.add("loading")),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,o.default.Component),r(t,[{key:"test",value:function(){var e=this,t=this.container.querySelector(".error-messaging"),n=instant_img_localize.root+"instant-images/test/",r=new XMLHttpRequest;r.open("POST",n,!0),r.setRequestHeader("X-WP-Nonce",instant_img_localize.nonce),r.setRequestHeader("Content-Type","application/json"),r.send(),r.onload=function(){r.status>=200&&r.status<400?JSON.parse(r.response).success||e.renderTestError(t):e.renderTestError(t)},r.onerror=function(t){console.log(t),e.renderTestError(errorTarget)}}},{key:"renderTestError",value:function(e){e.classList.add("active"),e.innerHTML=instant_img_localize.error_restapi+instant_img_localize.error_restapi_desc}},{key:"search",value:function(e){e.preventDefault();var t=this.container.querySelector("#photo-search"),n=t.value;n.length>2?(t.classList.add("searching"),this.container.classList.add("loading"),this.search_term=n,this.is_search=!0,this.doSearch(this.search_term)):t.focus()}},{key:"setOrientation",value:function(e,t){if(t&&t.target){var n=t.target;if(n.classList.contains("active"))n.classList.remove("active"),this.orientation="";else{var r=n.parentNode.querySelectorAll("li");[].concat(c(r)).forEach(function(e){return e.classList.remove("active")}),n.classList.add("active"),this.orientation=e}""!==this.search_term&&this.doSearch(this.search_term)}}},{key:"hasOrientation",value:function(){return""!==this.orientation}},{key:"clearOrientation",value:function(){var e=this.container.querySelectorAll(".orientation-list li");[].concat(c(e)).forEach(function(e){return e.classList.remove("active")}),this.orientation=""}},{key:"doSearch",value:function(e){var t=this,n="term";this.page=1;var r=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term;this.hasOrientation()&&(r=r+"&orientation="+this.orientation),"id:"===e.substring(0,3)&&(n="id",e=e.replace("id:",""),r=u.default.photo_api+"/"+e+u.default.app_id);var o=this.container.querySelector("#photo-search");fetch(r).then(function(e){return e.json()}).then(function(e){if("term"===n&&(t.total_results=e.total,t.checkTotalResults(e.results.length),t.results=e.results,t.setState({results:t.results})),"id"===n&&e){var r=[];e.errors?(t.total_results=0,t.checkTotalResults("0")):(r.push(e),t.total_results=1,t.checkTotalResults("1")),t.results=r,t.setState({results:t.results})}o.classList.remove("searching")}).catch(function(e){console.log(e),t.isLoading=!1})}},{key:"clearSearch",value:function(){this.container.querySelector("#photo-search").value="",this.total_results=0,this.is_search=!1,this.search_term="",this.clearOrientation()}},{key:"getPhotos",value:function(){var e=this;this.page=parseInt(this.page)+1,this.container.classList.add("loading"),this.isLoading=!0;var t=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;this.is_search&&(t=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term,this.hasOrientation()&&(t=t+"&orientation="+this.orientation)),fetch(t).then(function(e){return e.json()}).then(function(t){e.is_search&&(t=t.results),t.map(function(t){e.results.push(t)}),e.checkTotalResults(t.length),e.setState({results:e.results})}).catch(function(t){console.log(t),e.isLoading=!1})}},{key:"togglePhotoList",value:function(e,t){var n=t.target;if(n.classList.contains("active"))return!1;n.classList.add("loading"),this.isLoading=!0;var r=this;this.page=1,this.orderby=e,this.results=[],this.clearSearch();var o=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;fetch(o).then(function(e){return e.json()}).then(function(e){r.checkTotalResults(e.length),r.results=e,r.setState({results:e}),n.classList.remove("loading")}).catch(function(e){console.log(e),r.isLoading=!1})}},{key:"renderLayout",value:function(){if(this.is_block_editor)return!1;var e=this,t=e.container.querySelector(".photo-target");p(t,function(){e.msnry=new i.default(t,{itemSelector:".photo"}),[].concat(c(e.container.querySelectorAll(".photo-target .photo"))).forEach(function(e){return e.classList.add("in-view")})})}},{key:"onScroll",value:function(){window.innerHeight+window.pageYOffset>=document.body.scrollHeight-400&&!this.isLoading&&!this.isDone&&this.getPhotos()}},{key:"checkTotalResults",value:function(e){this.isDone=0==e}},{key:"setActiveState",value:function(){var e=this;([].concat(c(this.container.querySelectorAll(".control-nav button"))).forEach(function(e){return e.classList.remove("active")}),this.is_search)||this.container.querySelector(".control-nav li button."+this.orderby).classList.add("active");setTimeout(function(){e.isLoading=!1,e.container.classList.remove("loading")},1e3)}},{key:"showTooltip",value:function(e){var t=this,n=e.currentTarget,r=n.getBoundingClientRect(),o=Math.round(r.left),i=Math.round(r.top),a=this.container.querySelector("#tooltip");a.classList.remove("over"),n.classList.contains("tooltip--above")?a.classList.add("above"):a.classList.remove("above");var s=n.dataset.title;this.tooltipInterval=setInterval(function(){clearInterval(t.tooltipInterval),a.innerHTML=s,o=o-a.offsetWidth+n.offsetWidth+5,a.style.left=o+"px",a.style.top=i+"px",setTimeout(function(){a.classList.add("over")},150)},500)}},{key:"hideTooltip",value:function(e){clearInterval(this.tooltipInterval),this.container.querySelector("#tooltip").classList.remove("over")}},{key:"componentDidUpdate",value:function(){this.renderLayout(),this.setActiveState()}},{key:"componentDidMount",value:function(){var e=this;this.renderLayout(),this.setActiveState(),this.test(),this.container.classList.remove("loading"),this.wrapper.classList.add("loaded"),this.is_block_editor||this.is_media_router?(this.page=0,this.getPhotos()):window.addEventListener("scroll",function(){return e.onScroll()})}},{key:"render",value:function(){var e=this,t=this.is_search?{display:"flex"}:{display:"none"};return o.default.createElement("div",{id:"photo-listing",className:this.service},o.default.createElement("ul",{className:"control-nav"},o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"latest",onClick:function(t){return e.togglePhotoList("latest",t)}},instant_img_localize.latest)),o.default.createElement("li",{id:"nav-target"},o.default.createElement("button",{type:"button",className:"popular",onClick:function(t){return e.togglePhotoList("popular",t)}},instant_img_localize.popular)),o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"oldest",onClick:function(t){return e.togglePhotoList("oldest",t)}},instant_img_localize.oldest)),o.default.createElement("li",{className:"search-field",id:"search-bar"},o.default.createElement("form",{onSubmit:function(t){return e.search(t)},autoComplete:"off"},o.default.createElement("input",{type:"search",id:"photo-search",placeholder:instant_img_localize.search}),o.default.createElement("button",{type:"submit",id:"photo-search-submit"},o.default.createElement("i",{className:"fa fa-search"})),o.default.createElement(s.default,{container:this.container,isSearch:this.is_search,total:this.total_results,title:this.total_results+" "+instant_img_localize.search_results+" "+this.search_term})))),o.default.createElement("div",{className:"error-messaging"}),o.default.createElement("div",{className:"orientation-list",style:t},o.default.createElement("span",null,o.default.createElement("i",{className:"fa fa-filter","aria-hidden":"true"})," ",instant_img_localize.orientation,":"),o.default.createElement("ul",null,o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("landscape",t)},onKeyPress:function(t){return e.setOrientation("landscape",t)}},instant_img_localize.landscape),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("portrait",t)},onKeyPress:function(t){return e.setOrientation("portrait",t)}},instant_img_localize.portrait),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("squarish",t)},onKeyPress:function(t){return e.setOrientation("squarish",t)}},instant_img_localize.squarish))),o.default.createElement("div",{id:"photos",className:"photo-target"},this.state.results.map(function(t,n){return o.default.createElement(a.default,{result:t,key:t.id+n,editor:e.editor,mediaRouter:e.is_media_router,blockEditor:e.is_block_editor,SetFeaturedImage:e.SetFeaturedImage,InsertImage:e.InsertImage,showTooltip:e.showTooltip,hideTooltip:e.hideTooltip})})),o.default.createElement("div",{className:0==this.total_results&&!0===this.is_search?"no-results show":"no-results",title:this.props.title},o.default.createElement("h3",null,instant_img_localize.no_results," "),o.default.createElement("p",null,instant_img_localize.no_results_desc," ")),o.default.createElement("div",{className:"loading-block"}),o.default.createElement("div",{className:"load-more-wrap"},o.default.createElement("button",{type:"button",className:"button",onClick:function(){return e.getPhotos()}},instant_img_localize.load_more)),o.default.createElement("div",{id:"tooltip"},"Meow"))}}]),t}();t.default=d},function(e,t,n){"use strict";e.exports=n(181)},function(e,t,n){"use strict";var r=n(59),o=n(182),i=n(86);r.inject();var a={renderToString:o.renderToString,renderToStaticMarkup:o.renderToStaticMarkup,version:i};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=n(12),i=n(84),a=n(79),s=(n(6),n(85)),u=n(14),l=n(183),c=n(78),p=n(9),d=n(19),f=n(42),h=(n(0),0);function m(e,t){var n;try{return p.injection.injectBatchingStrategy(l),n=c.getPooled(t),h++,n.perform(function(){var r=f(e,!0),o=u.mountComponent(r,n,null,i(),d,0);return t||(o=s.addChecksumToMarkup(o)),o},null)}finally{h--,c.release(n),h||p.injection.injectBatchingStrategy(a)}}e.exports={renderToString:function(e){return o.isValidElement(e)||r("46"),m(e,!1)},renderToStaticMarkup:function(e){return o.isValidElement(e)||r("47"),m(e,!0)}}},function(e,t,n){"use strict";e.exports={isBatchingUpdates:!1,batchedUpdates:function(e){}}},function(e,t,n){var r,o,i;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
/*!
|
27 |
* Masonry v4.2.2
|
28 |
* Cascading grid layout library
|
29 |
* https://masonry.desandro.com
|
30 |
* MIT License
|
31 |
* by David DeSandro
|
32 |
-
*/window,o=[n(
|
33 |
-
/*!
|
34 |
-
* Outlayer v2.1.1
|
35 |
-
* the brains and guts of a layout library
|
36 |
-
* MIT license
|
37 |
-
*/
|
38 |
/*!
|
39 |
* Outlayer v2.1.1
|
40 |
* the brains and guts of a layout library
|
41 |
* MIT license
|
42 |
-
*/
|
43 |
-
!function(i,a){"use strict";r=[n(49),n(50),n(186),n(188)],void 0===(o=function(e,t,n,r){return function(e,t,n,r,o){var i=e.console,a=e.jQuery,s=function(){},u=0,l={};function c(e,t){var n=r.getQueryElement(e);if(n){this.element=n,a&&(this.$element=a(this.element)),this.options=r.extend({},this.constructor.defaults),this.option(t);var o=++u;this.element.outlayerGUID=o,l[o]=this,this._create();var s=this._getOption("initLayout");s&&this.layout()}else i&&i.error("Bad element for "+this.constructor.namespace+": "+(n||e))}c.namespace="outlayer",c.Item=o,c.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var p=c.prototype;function d(e){function t(){e.apply(this,arguments)}return t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t}r.extend(p,t.prototype),p.option=function(e){r.extend(this.options,e)},p._getOption=function(e){var t=this.constructor.compatOptions[e];return t&&void 0!==this.options[t]?this.options[t]:this.options[e]},c.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},p._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),r.extend(this.element.style,this.options.containerStyle);var e=this._getOption("resize");e&&this.bindResize()},p.reloadItems=function(){this.items=this._itemize(this.element.children)},p._itemize=function(e){for(var t=this._filterFindItemElements(e),n=this.constructor.Item,r=[],o=0;o<t.length;o++){var i=t[o],a=new n(i,this);r.push(a)}return r},p._filterFindItemElements=function(e){return r.filterFindElements(e,this.options.itemSelector)},p.getItemElements=function(){return this.items.map(function(e){return e.element})},p.layout=function(){this._resetLayout(),this._manageStamps();var e=this._getOption("layoutInstant"),t=void 0!==e?e:!this._isLayoutInited;this.layoutItems(this.items,t),this._isLayoutInited=!0},p._init=p.layout,p._resetLayout=function(){this.getSize()},p.getSize=function(){this.size=n(this.element)},p._getMeasurement=function(e,t){var r,o=this.options[e];o?("string"==typeof o?r=this.element.querySelector(o):o instanceof HTMLElement&&(r=o),this[e]=r?n(r)[t]:o):this[e]=0},p.layoutItems=function(e,t){e=this._getItemsForLayout(e),this._layoutItems(e,t),this._postLayout()},p._getItemsForLayout=function(e){return e.filter(function(e){return!e.isIgnored})},p._layoutItems=function(e,t){if(this._emitCompleteOnItems("layout",e),e&&e.length){var n=[];e.forEach(function(e){var r=this._getItemLayoutPosition(e);r.item=e,r.isInstant=t||e.isLayoutInstant,n.push(r)},this),this._processLayoutQueue(n)}},p._getItemLayoutPosition=function(){return{x:0,y:0}},p._processLayoutQueue=function(e){this.updateStagger(),e.forEach(function(e,t){this._positionItem(e.item,e.x,e.y,e.isInstant,t)},this)},p.updateStagger=function(){var e=this.options.stagger;if(null!=e)return this.stagger=function(e){if("number"==typeof e)return e;var t=e.match(/(^\d*\.?\d*)(\w*)/),n=t&&t[1],r=t&&t[2];if(!n.length)return 0;n=parseFloat(n);var o=f[r]||1;return n*o}(e),this.stagger;this.stagger=0},p._positionItem=function(e,t,n,r,o){r?e.goTo(t,n):(e.stagger(o*this.stagger),e.moveTo(t,n))},p._postLayout=function(){this.resizeContainer()},p.resizeContainer=function(){var e=this._getOption("resizeContainer");if(e){var t=this._getContainerSize();t&&(this._setContainerMeasure(t.width,!0),this._setContainerMeasure(t.height,!1))}},p._getContainerSize=s,p._setContainerMeasure=function(e,t){if(void 0!==e){var n=this.size;n.isBorderBox&&(e+=t?n.paddingLeft+n.paddingRight+n.borderLeftWidth+n.borderRightWidth:n.paddingBottom+n.paddingTop+n.borderTopWidth+n.borderBottomWidth),e=Math.max(e,0),this.element.style[t?"width":"height"]=e+"px"}},p._emitCompleteOnItems=function(e,t){var n=this;function r(){n.dispatchEvent(e+"Complete",null,[t])}var o=t.length;if(t&&o){var i=0;t.forEach(function(t){t.once(e,a)})}else r();function a(){++i==o&&r()}},p.dispatchEvent=function(e,t,n){var r=t?[t].concat(n):n;if(this.emitEvent(e,r),a)if(this.$element=this.$element||a(this.element),t){var o=a.Event(t);o.type=e,this.$element.trigger(o,n)}else this.$element.trigger(e,n)},p.ignore=function(e){var t=this.getItem(e);t&&(t.isIgnored=!0)},p.unignore=function(e){var t=this.getItem(e);t&&delete t.isIgnored},p.stamp=function(e){(e=this._find(e))&&(this.stamps=this.stamps.concat(e),e.forEach(this.ignore,this))},p.unstamp=function(e){(e=this._find(e))&&e.forEach(function(e){r.removeFrom(this.stamps,e),this.unignore(e)},this)},p._find=function(e){if(e)return"string"==typeof e&&(e=this.element.querySelectorAll(e)),e=r.makeArray(e)},p._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},p._getBoundingRect=function(){var e=this.element.getBoundingClientRect(),t=this.size;this._boundingRect={left:e.left+t.paddingLeft+t.borderLeftWidth,top:e.top+t.paddingTop+t.borderTopWidth,right:e.right-(t.paddingRight+t.borderRightWidth),bottom:e.bottom-(t.paddingBottom+t.borderBottomWidth)}},p._manageStamp=s,p._getElementOffset=function(e){var t=e.getBoundingClientRect(),r=this._boundingRect,o=n(e),i={left:t.left-r.left-o.marginLeft,top:t.top-r.top-o.marginTop,right:r.right-t.right-o.marginRight,bottom:r.bottom-t.bottom-o.marginBottom};return i},p.handleEvent=r.handleEvent,p.bindResize=function(){e.addEventListener("resize",this),this.isResizeBound=!0},p.unbindResize=function(){e.removeEventListener("resize",this),this.isResizeBound=!1},p.onresize=function(){this.resize()},r.debounceMethod(c,"onresize",100),p.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},p.needsResizeLayout=function(){var e=n(this.element),t=this.size&&e;return t&&e.innerWidth!==this.size.innerWidth},p.addItems=function(e){var t=this._itemize(e);return t.length&&(this.items=this.items.concat(t)),t},p.appended=function(e){var t=this.addItems(e);t.length&&(this.layoutItems(t,!0),this.reveal(t))},p.prepended=function(e){var t=this._itemize(e);if(t.length){var n=this.items.slice(0);this.items=t.concat(n),this._resetLayout(),this._manageStamps(),this.layoutItems(t,!0),this.reveal(t),this.layoutItems(n)}},p.reveal=function(e){if(this._emitCompleteOnItems("reveal",e),e&&e.length){var t=this.updateStagger();e.forEach(function(e,n){e.stagger(n*t),e.reveal()})}},p.hide=function(e){if(this._emitCompleteOnItems("hide",e),e&&e.length){var t=this.updateStagger();e.forEach(function(e,n){e.stagger(n*t),e.hide()})}},p.revealItemElements=function(e){var t=this.getItems(e);this.reveal(t)},p.hideItemElements=function(e){var t=this.getItems(e);this.hide(t)},p.getItem=function(e){for(var t=0;t<this.items.length;t++){var n=this.items[t];if(n.element==e)return n}},p.getItems=function(e){e=r.makeArray(e);var t=[];return e.forEach(function(e){var n=this.getItem(e);n&&t.push(n)},this),t},p.remove=function(e){var t=this.getItems(e);this._emitCompleteOnItems("remove",t),t&&t.length&&t.forEach(function(e){e.remove(),r.removeFrom(this.items,e)},this)},p.destroy=function(){var e=this.element.style;e.height="",e.position="",e.width="",this.items.forEach(function(e){e.destroy()}),this.unbindResize();var t=this.element.outlayerGUID;delete l[t],delete this.element.outlayerGUID,a&&a.removeData(this.element,this.constructor.namespace)},c.data=function(e){var t=(e=r.getQueryElement(e))&&e.outlayerGUID;return t&&l[t]},c.create=function(e,t){var n=d(c);return n.defaults=r.extend({},c.defaults),r.extend(n.defaults,t),n.compatOptions=r.extend({},c.compatOptions),n.namespace=e,n.data=c.data,n.Item=d(o),r.htmlInit(n,e),a&&a.bridget&&a.bridget(e,n),n};var f={ms:1,s:1e3};return c.Item=o,c}(i,e,t,n,r)}.apply(t,r))||(e.exports=o)}(window)},function(e,t,n){var r,o;!function(i,a){r=[n(187)],void 0===(o=function(e){return function(e,t){"use strict";var n={extend:function(e,t){for(var n in t)e[n]=t[n];return e},modulo:function(e,t){return(e%t+t)%t}},r=Array.prototype.slice;n.makeArray=function(e){if(Array.isArray(e))return e;if(null==e)return[];var t="object"==typeof e&&"number"==typeof e.length;return t?r.call(e):[e]},n.removeFrom=function(e,t){var n=e.indexOf(t);-1!=n&&e.splice(n,1)},n.getParent=function(e,n){for(;e.parentNode&&e!=document.body;)if(e=e.parentNode,t(e,n))return e},n.getQueryElement=function(e){return"string"==typeof e?document.querySelector(e):e},n.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},n.filterFindElements=function(e,r){e=n.makeArray(e);var o=[];return e.forEach(function(e){if(e instanceof HTMLElement)if(r){t(e,r)&&o.push(e);for(var n=e.querySelectorAll(r),i=0;i<n.length;i++)o.push(n[i])}else o.push(e)}),o},n.debounceMethod=function(e,t,n){n=n||100;var r=e.prototype[t],o=t+"Timeout";e.prototype[t]=function(){var e=this[o];clearTimeout(e);var t=arguments,i=this;this[o]=setTimeout(function(){r.apply(i,t),delete i[o]},n)}},n.docReady=function(e){var t=document.readyState;"complete"==t||"interactive"==t?setTimeout(e):document.addEventListener("DOMContentLoaded",e)},n.toDashed=function(e){return e.replace(/(.)([A-Z])/g,function(e,t,n){return t+"-"+n}).toLowerCase()};var o=e.console;return n.htmlInit=function(t,r){n.docReady(function(){var i=n.toDashed(r),a="data-"+i,s=document.querySelectorAll("["+a+"]"),u=document.querySelectorAll(".js-"+i),l=n.makeArray(s).concat(n.makeArray(u)),c=a+"-options",p=e.jQuery;l.forEach(function(e){var n,i=e.getAttribute(a)||e.getAttribute(c);try{n=i&&JSON.parse(i)}catch(t){return void(o&&o.error("Error parsing "+a+" on "+e.className+": "+t))}var s=new t(e,n);p&&p.data(e,r,s)})})},n}(i,e)}.apply(t,r))||(e.exports=o)}(window)},function(e,t,n){var r,o;!function(i,a){"use strict";void 0===(o="function"==typeof(r=a)?r.call(t,n,t,e):r)||(e.exports=o)}(window,function(){"use strict";var e=function(){var e=window.Element.prototype;if(e.matches)return"matches";if(e.matchesSelector)return"matchesSelector";for(var t=["webkit","moz","ms","o"],n=0;n<t.length;n++){var r=t[n]+"MatchesSelector";if(e[r])return r}}();return function(t,n){return t[e](n)}})},function(e,t,n){var r,o,i;window,o=[n(49),n(50)],void 0===(i="function"==typeof(r=function(e,t){"use strict";var n=document.documentElement.style,r="string"==typeof n.transition?"transition":"WebkitTransition",o="string"==typeof n.transform?"transform":"WebkitTransform",i={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],a={transform:o,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"};function s(e,t){e&&(this.element=e,this.layout=t,this.position={x:0,y:0},this._create())}var u=s.prototype=Object.create(e.prototype);u.constructor=s,u._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},u.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},u.getSize=function(){this.size=t(this.element)},u.css=function(e){var t=this.element.style;for(var n in e){var r=a[n]||n;t[r]=e[n]}},u.getPosition=function(){var e=getComputedStyle(this.element),t=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop"),r=e[t?"left":"right"],o=e[n?"top":"bottom"],i=parseFloat(r),a=parseFloat(o),s=this.layout.size;-1!=r.indexOf("%")&&(i=i/100*s.width),-1!=o.indexOf("%")&&(a=a/100*s.height),i=isNaN(i)?0:i,a=isNaN(a)?0:a,i-=t?s.paddingLeft:s.paddingRight,a-=n?s.paddingTop:s.paddingBottom,this.position.x=i,this.position.y=a},u.layoutPosition=function(){var e=this.layout.size,t={},n=this.layout._getOption("originLeft"),r=this.layout._getOption("originTop"),o=n?"paddingLeft":"paddingRight",i=n?"left":"right",a=n?"right":"left",s=this.position.x+e[o];t[i]=this.getXValue(s),t[a]="";var u=r?"paddingTop":"paddingBottom",l=r?"top":"bottom",c=r?"bottom":"top",p=this.position.y+e[u];t[l]=this.getYValue(p),t[c]="",this.css(t),this.emitEvent("layout",[this])},u.getXValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!t?e/this.layout.size.width*100+"%":e+"px"},u.getYValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&t?e/this.layout.size.height*100+"%":e+"px"},u._transitionTo=function(e,t){this.getPosition();var n=this.position.x,r=this.position.y,o=e==this.position.x&&t==this.position.y;if(this.setPosition(e,t),!o||this.isTransitioning){var i=e-n,a=t-r,s={};s.transform=this.getTranslate(i,a),this.transition({to:s,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})}else this.layoutPosition()},u.getTranslate=function(e,t){var n=this.layout._getOption("originLeft"),r=this.layout._getOption("originTop");return"translate3d("+(e=n?e:-e)+"px, "+(t=r?t:-t)+"px, 0)"},u.goTo=function(e,t){this.setPosition(e,t),this.layoutPosition()},u.moveTo=u._transitionTo,u.setPosition=function(e,t){this.position.x=parseFloat(e),this.position.y=parseFloat(t)},u._nonTransition=function(e){for(var t in this.css(e.to),e.isCleaning&&this._removeStyles(e.to),e.onTransitionEnd)e.onTransitionEnd[t].call(this)},u.transition=function(e){if(parseFloat(this.layout.options.transitionDuration)){var t=this._transn;for(var n in e.onTransitionEnd)t.onEnd[n]=e.onTransitionEnd[n];for(n in e.to)t.ingProperties[n]=!0,e.isCleaning&&(t.clean[n]=!0);e.from&&(this.css(e.from),this.element.offsetHeight),this.enableTransition(e.to),this.css(e.to),this.isTransitioning=!0}else this._nonTransition(e)};var l="opacity,"+o.replace(/([A-Z])/g,function(e){return"-"+e.toLowerCase()});u.enableTransition=function(){if(!this.isTransitioning){var e=this.layout.options.transitionDuration;e="number"==typeof e?e+"ms":e,this.css({transitionProperty:l,transitionDuration:e,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(i,this,!1)}},u.onwebkitTransitionEnd=function(e){this.ontransitionend(e)},u.onotransitionend=function(e){this.ontransitionend(e)};var c={"-webkit-transform":"transform"};u.ontransitionend=function(e){if(e.target===this.element){var t=this._transn,n=c[e.propertyName]||e.propertyName;if(delete t.ingProperties[n],function(e){for(var t in e)return!1;return!0}(t.ingProperties)&&this.disableTransition(),n in t.clean&&(this.element.style[e.propertyName]="",delete t.clean[n]),n in t.onEnd){var r=t.onEnd[n];r.call(this),delete t.onEnd[n]}this.emitEvent("transitionEnd",[this])}},u.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(i,this,!1),this.isTransitioning=!1},u._removeStyles=function(e){var t={};for(var n in e)t[n]="";this.css(t)};var p={transitionProperty:"",transitionDuration:"",transitionDelay:""};return u.removeTransitionStyles=function(){this.css(p)},u.stagger=function(e){e=isNaN(e)?0:e,this.staggerDelay=e+"ms"},u.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},u.remove=function(){r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),this.hide()):this.removeElem()},u.reveal=function(){delete this.isHidden,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("visibleStyle")]=this.onRevealTransitionEnd,this.transition({from:e.hiddenStyle,to:e.visibleStyle,isCleaning:!0,onTransitionEnd:t})},u.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},u.getHideRevealTransitionEndProperty=function(e){var t=this.layout.options[e];if(t.opacity)return"opacity";for(var n in t)return n},u.hide=function(){this.isHidden=!0,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("hiddenStyle")]=this.onHideTransitionEnd,this.transition({from:e.visibleStyle,to:e.hiddenStyle,isCleaning:!0,onTransitionEnd:t})},u.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},u.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},s})?r.apply(t,o):r)||(e.exports=i)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=s(n(29)),i=s(n(52)),a=s(n(190));function s(e){return e&&e.__esModule?e:{default:e}}var u=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.id=n.props.result.id,n.thumb=n.props.result.urls.thumb,n.img=n.props.result.urls.small,n.full_size=n.props.result.urls.full,n.author=n.props.result.user.name,n.img_title=instant_img_localize.photo_by+" "+n.author,n.filename=n.props.result.id,n.title=n.img_title,n.alt=n.props.result.alt_description,n.caption="",n.user=n.props.result.user.username,n.user_photo=n.props.result.user.profile_image.small,n.link=n.props.result.links.html,n.likes=n.props.result.likes,n.view_all=instant_img_localize.view_all,n.inProgress=!1,n.container=document.querySelector(".instant-img-container"),n.showTooltip=n.props.showTooltip,n.hideTooltip=n.props.hideTooltip,n.setAsFeaturedImage=!1,n.insertIntoPost=!1,n.is_media_router=n.props.mediaRouter,n.is_block_editor=n.props.blockEditor,n.SetFeaturedImage=n.props.SetFeaturedImage,n.InsertImage=n.props.InsertImage,n.displayGutenbergControl=!!n.is_block_editor,n.state={filename:n.filename,title:n.title,alt:n.alt,caption:n.caption},n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,o.default.Component),r(t,[{key:"download",value:function(e){e.preventDefault();var t=this,n=e.currentTarget,r=n.parentElement.parentElement.parentElement,o=r.querySelector(".notice-msg");if(n.classList.contains("upload")||(n=r.querySelector("a.upload")),n.classList.contains("success")||this.inProgress)return!1;this.inProgress=!0,n.classList.add("uploading"),r.classList.add("in-progress"),o.innerHTML=instant_img_localize.saving,setTimeout(function(){o.innerHTML=instant_img_localize.resizing,setTimeout(function(){o.innerHTML=instant_img_localize.resizing_still},5e3)},3e3);var i=instant_img_localize.root+"instant-images/download/",s={id:n.getAttribute("data-id"),image_url:n.getAttribute("data-url"),filename:n.getAttribute("data-id")+".jpg",custom_filename:n.getAttribute("data-filename"),title:n.getAttribute("data-title"),alt:n.getAttribute("data-alt"),caption:n.getAttribute("data-caption"),parent_id:instant_img_localize.parent_id},u={headers:{"X-WP-Nonce":instant_img_localize.nonce,"Content-Type":"application/json"}};a.default.post(i,JSON.stringify(s),u).then(function(e){var i=e.data;if(i){var a=i.success,s=i.id,u=i.attachment,l=i.admin_url,c=i.msg;if(a){var p=l+"post.php?post="+u.id+"&action=edit";t.uploadComplete(n,r,c,p,u.id),t.triggerUnsplashDownload(s),t.displayGutenbergControl&&t.setAsFeaturedImage&&(t.SetFeaturedImage(u.id),t.setAsFeaturedImage=!1,t.closeMediaModal()),t.displayGutenbergControl&&t.insertIntoPost&&(u.url&&(t.InsertImage(u.url,u.caption,u.alt),t.closeMediaModal()),t.insertIntoPost=!1),"true"!==t.container.dataset.mediaPopup||t.is_block_editor||(window.location="media-upload.php?type=image&tab=library&attachment_id="+u.id)}else t.uploadError(n,r,o,c)}else t.uploadError(n,r,o,instant_img_localize.error_upload)}).catch(function(e){console.log(e)})}},{key:"triggerUnsplashDownload",value:function(e){var t=i.default.photo_api+"/"+e+"/download/"+i.default.app_id;fetch(t).then(function(e){return e.json()}).then(function(e){}).catch(function(e){console.log(e)})}},{key:"setFeaturedImageClick",value:function(e){var t=e.currentTarget;if(!t)return!1;this.hideTooltip(e);var n=t.parentNode.parentNode.parentNode.querySelector("a.upload");n&&(this.setAsFeaturedImage=!0,n.click())}},{key:"insertImageIntoPost",value:function(e){var t=e.currentTarget;if(!t)return!1;this.hideTooltip(e);var n=t.parentNode.parentNode.parentNode.querySelector("a.upload");n&&(this.insertIntoPost=!0,n.click())}},{key:"uploadComplete",value:function(e,t,n,r,o){this.setImageTitle(e,n),t.classList.remove("in-progress"),t.classList.add("uploaded"),t.querySelector(".edit-photo").style.display="none",t.querySelector(".edit-photo-admin").style.display="inline-block",t.querySelector(".edit-photo-admin").href=r,t.querySelector(".edit-photo-admin").target="_balnk",e.classList.remove("uploading"),e.classList.remove("resizing"),e.classList.add("success"),this.inProgress=!1,this.is_block_editor&&(t.querySelector(".insert").style.display="none",t.querySelector(".set-featured").style.display="none"),this.mediaRouter(o),this.container.classList.contains("editor")&&void 0!==wp.media&&(null!==wp.media.frame.content.get()?(wp.media.frame.content.get().collection.props.set({ignore:+new Date}),wp.media.frame.content.get().options.selection.reset()):wp.media.frame.library.props.set({ignore:+new Date}))}},{key:"mediaRouter",value:function(e){if(this.is_media_router&&wp.media&&wp.media.frame&&wp.media.frame.el){var t=wp.media.frame.el.querySelector("#menu-item-browse");t&&t.click(),setTimeout(function(){null!==wp.media.frame.content.get()&&wp.media.frame.content.get().collection._requery(!0);var t=wp.media.frame.state().get("selection"),n=parseInt(e);t.reset(n?[wp.media.attachment(n)]:[])},150)}}},{key:"uploadError",value:function(e,t,n,r){e.classList.remove("uploading"),e.classList.remove("resizing"),e.classList.add("errors"),this.setImageTitle(e,r),this.inProgress=!1,n.classList.add("has-error"),console.warn(r)}},{key:"setImageTitle",value:function(e,t){e.setAttribute("title",t)}},{key:"showEditScreen",value:function(e){e.preventDefault();var t=e.currentTarget;this.hideTooltip(e);var n=t.closest(".photo"),r=(n.querySelector('input[name="filename"]'),n.querySelector(".edit-screen"));r.classList.add("editing"),setTimeout(function(){r.focus()},150)}},{key:"handleEditChange",value:function(e){var t=e.target.name;"filename"===t&&this.setState({filename:e.target.value}),"title"===t&&this.setState({title:e.target.value}),"alt"===t&&this.setState({alt:e.target.value}),"caption"===t&&this.setState({caption:e.target.value})}},{key:"saveEditChange",value:function(e){var t=e.currentTarget.closest(".photo"),n=t.querySelector('input[name="filename"]');this.filename=n.value;var r=t.querySelector('input[name="title"]');this.title=r.value;var o=t.querySelector('input[name="alt"]');this.alt=o.value;var i=t.querySelector('textarea[name="caption"]');this.caption=i.value,t.querySelector(".edit-screen").classList.remove("editing"),t.querySelector("a.upload").click()}},{key:"cancelEditChange",value:function(e){var t=e.currentTarget.closest(".photo");if(t){var n=t.querySelector("a.upload"),r=t.querySelector('input[name="filename"]');r.value=r.dataset.original,this.setState({filename:r.value});var o=t.querySelector('input[name="title"]');o.value=o.dataset.original,this.setState({title:o.value});var i=t.querySelector('input[name="alt"]');i.value=i.dataset.original,this.setState({alt:i.value});var a=t.querySelector('textarea[name="caption"]');a.value=a.dataset.original,this.setState({caption:a.value}),t.querySelector(".edit-screen").classList.remove("editing"),n.focus()}}},{key:"closeMediaModal",value:function(){var e=document.querySelector(".media-modal");if(e){var t=e.querySelector("button.media-modal-close");if(!t)return!1;t.click()}}},{key:"render",value:function(){var e=this,t=parseInt(this.likes)>1?instant_img_localize.likes_plural:instant_img_localize.likes;return o.default.createElement("article",{className:"photo"},o.default.createElement("div",{className:"photo--wrap"},o.default.createElement("div",{className:"img-wrap"},o.default.createElement("a",{className:"upload loaded",href:this.full_size,"data-id":this.id,"data-url":this.full_size,"data-filename":this.state.filename,"data-title":this.state.title,"data-alt":this.state.alt,"data-caption":this.state.caption,title:instant_img_localize.upload,onClick:function(t){return e.download(t)}},o.default.createElement("img",{src:this.img,alt:""}),o.default.createElement("div",{className:"status"})),o.default.createElement("div",{className:"notice-msg"}),o.default.createElement("div",{className:"user-controls"},o.default.createElement("a",{className:"user fade",href:"https://unsplash.com/@"+this.user+"?utm_source=wordpress-instant-images&utm_medium=referral",target:"_blank",title:this.view_all+" @"+this.user},o.default.createElement("div",{className:"user-wrap"},this.user_photo.length>0&&o.default.createElement("img",{src:this.user_photo}),this.user)),o.default.createElement("div",{className:"photo-options"},this.displayGutenbergControl&&o.default.createElement("button",{type:"button",className:"set-featured fade","data-title":instant_img_localize.set_as_featured,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.setFeaturedImageClick(t)}},o.default.createElement("i",{className:"fa fa-picture-o","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.set_as_featured)),this.displayGutenbergControl&&o.default.createElement("button",{type:"button",className:"insert fade","data-title":instant_img_localize.insert_into_post,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.insertImageIntoPost(t)}},o.default.createElement("i",{className:"fa fa-plus","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.insert_into_post)),o.default.createElement("a",{href:"#",className:"edit-photo-admin fade","data-title":instant_img_localize.edit_upload,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)}},o.default.createElement("i",{className:"fa fa-pencil","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.edit_upload)),o.default.createElement("button",{type:"button",className:"edit-photo fade","data-title":instant_img_localize.edit_details,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.showEditScreen(t)}},o.default.createElement("i",{className:"fa fa-cog","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.edit_details)))),o.default.createElement("div",{className:"options"},o.default.createElement("span",{className:"likes tooltip--above","data-title":this.likes+" "+t,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)}},o.default.createElement("i",{className:"fa fa-heart heart-like","aria-hidden":"true"})," ",this.likes),o.default.createElement("a",{className:"tooltip--above",href:this.link,"data-title":instant_img_localize.view_on_unsplash,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},target:"_blank"},o.default.createElement("i",{className:"fa fa-external-link","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.view_on_unsplash)))),o.default.createElement("div",{className:"edit-screen",tabIndex:"0"},o.default.createElement("div",{className:"edit-screen--title"},o.default.createElement("p",{className:"heading"},instant_img_localize.edit_details),o.default.createElement("p",null,instant_img_localize.edit_details_intro,".")),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_filename,":"),o.default.createElement("input",{type:"text",name:"filename","data-original":this.filename,placeholder:this.filename,value:this.state.filename,onChange:function(t){return e.handleEditChange(t)}}),o.default.createElement("em",null,".jpg")),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_title,":"),o.default.createElement("input",{type:"text",name:"title","data-original":this.title,placeholder:this.title,value:this.state.title||"",onChange:function(t){return e.handleEditChange(t)}})),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_alt,":"),o.default.createElement("input",{type:"text",name:"alt","data-original":this.alt,value:this.state.alt||"",onChange:function(t){return e.handleEditChange(t)}})),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_caption,":"),o.default.createElement("textarea",{rows:"3",name:"caption","data-original":"",onChange:function(t){return e.handleEditChange(t)},value:this.state.caption||""})),o.default.createElement("div",{className:"edit-screen--controls"},o.default.createElement("button",{type:"button",className:"button",onClick:function(t){return e.cancelEditChange(t)}},instant_img_localize.cancel)," ",o.default.createElement("button",{type:"button",className:"button button-primary",onClick:function(t){return e.saveEditChange(t)}},instant_img_localize.upload_now)))))}}]),t}();t.default=u},function(e,t,n){e.exports=n(191)},function(e,t,n){"use strict";var r=n(7),o=n(88),i=n(193),a=n(51);function s(e){var t=new i(e),n=o(i.prototype.request,t);return r.extend(n,i.prototype,t),r.extend(n,t),n}var u=s(a);u.Axios=i,u.create=function(e){return s(r.merge(a,e))},u.Cancel=n(92),u.CancelToken=n(207),u.isCancel=n(91),u.all=function(e){return Promise.all(e)},u.spread=n(208),e.exports=u,e.exports.default=u},function(e,t){function n(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}
|
44 |
-
/*!
|
45 |
-
* Determine if an object is a Buffer
|
46 |
-
*
|
47 |
-
* @author Feross Aboukhadijeh <https://feross.org>
|
48 |
-
* @license MIT
|
49 |
-
*/
|
50 |
-
e.exports=function(e){return null!=e&&(n(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&n(e.slice(0,0))}(e)||!!e._isBuffer)}},function(e,t,n){"use strict";var r=n(51),o=n(7),i=n(202),a=n(203);function s(e){this.defaults=e,this.interceptors={request:new i,response:new i}}s.prototype.request=function(e){"string"==typeof e&&(e=o.merge({url:arguments[0]},arguments[1])),(e=o.merge(r,{method:"get"},this.defaults,e)).method=e.method.toLowerCase();var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach(function(e){t.unshift(e.fulfilled,e.rejected)}),this.interceptors.response.forEach(function(e){t.push(e.fulfilled,e.rejected)});t.length;)n=n.then(t.shift(),t.shift());return n},o.forEach(["delete","get","head","options"],function(e){s.prototype[e]=function(t,n){return this.request(o.merge(n||{},{method:e,url:t}))}}),o.forEach(["post","put","patch"],function(e){s.prototype[e]=function(t,n,r){return this.request(o.merge(r||{},{method:e,url:t,data:n}))}}),e.exports=s},function(e,t,n){"use strict";var r=n(7);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(90);e.exports=function(e,t,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o){return e.config=t,n&&(e.code=n),e.request=r,e.response=o,e}},function(e,t,n){"use strict";var r=n(7);function o(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var a=[];r.forEach(t,function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(o(t)+"="+o(e))}))}),i=a.join("&")}return i&&(e+=(-1===e.indexOf("?")?"?":"&")+i),e}},function(e,t,n){"use strict";var r=n(7),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,i,a={};return e?(r.forEach(e.split("\n"),function(e){if(i=e.indexOf(":"),t=r.trim(e.substr(0,i)).toLowerCase(),n=r.trim(e.substr(i+1)),t){if(a[t]&&o.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}}),a):a}},function(e,t,n){"use strict";var r=n(7);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=o(window.location.href),function(t){var n=r.isString(t)?o(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},function(e,t,n){"use strict";var r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";function o(){this.message="String contains an invalid character"}o.prototype=new Error,o.prototype.code=5,o.prototype.name="InvalidCharacterError",e.exports=function(e){for(var t,n,i=String(e),a="",s=0,u=r;i.charAt(0|s)||(u="=",s%1);a+=u.charAt(63&t>>8-s%1*8)){if((n=i.charCodeAt(s+=.75))>255)throw new o;t=t<<8|n}return a}},function(e,t,n){"use strict";var r=n(7);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,o,i,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";var r=n(7);function o(){this.handlers=[]}o.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},o.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},o.prototype.forEach=function(e){r.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=o},function(e,t,n){"use strict";var r=n(7),o=n(204),i=n(91),a=n(51),s=n(205),u=n(206);function l(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){return l(e),e.baseURL&&!s(e.url)&&(e.url=u(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),r.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]}),(e.adapter||a.adapter)(e).then(function(t){return l(e),t.data=o(t.data,t.headers,e.transformResponse),t},function(t){return i(t)||(l(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(7);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t,n){"use strict";var r=n(92);function o(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new r(e),t(n.reason))})}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var e;return{token:new o(function(t){e=t}),cancel:e}},e.exports=o},function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(29),a=(r=i)&&r.__esModule?r:{default:r};var s=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,a.default.Component),o(t,[{key:"resetSearch",value:function(){this.props.container.querySelector(".control-nav").querySelector("li button.latest").click()}},{key:"render",value:function(){var e=this;return a.default.createElement("div",{className:this.props.isSearch?"searchResults":"searchResults hide"},a.default.createElement("span",{title:this.props.title},this.props.total),a.default.createElement("button",{type:"button",title:instant_img_localize.clear_search,onClick:function(t){return e.resetSearch()}},"x",a.default.createElement("span",{className:"offscreen"},instant_img_localize.clear_search)))}}]),t}();t.default=s},function(e,t,n){var r,o;
|
51 |
/*!
|
52 |
-
* imagesLoaded v4.1.
|
53 |
* JavaScript is all like "You images are done yet or what?"
|
54 |
* MIT License
|
55 |
-
|
56 |
-
/*!
|
57 |
-
* imagesLoaded v4.1.3
|
58 |
-
* JavaScript is all like "You images are done yet or what?"
|
59 |
-
* MIT License
|
60 |
-
*/
|
61 |
-
!function(i,a){"use strict";r=[n(49)],void 0===(o=function(e){return function(e,t){var n=e.jQuery,r=e.console;function o(e,t){for(var n in t)e[n]=t[n];return e}function i(e,t,r){if(!(this instanceof i))return new i(e,t,r);"string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=function(e){var t=[];if(Array.isArray(e))t=e;else if("number"==typeof e.length)for(var n=0;n<e.length;n++)t.push(e[n]);else t.push(e);return t}(e),this.options=o({},this.options),"function"==typeof t?r=t:o(this.options,t),r&&this.on("always",r),this.getImages(),n&&(this.jqDeferred=new n.Deferred),setTimeout(function(){this.check()}.bind(this))}i.prototype=Object.create(t.prototype),i.prototype.options={},i.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},i.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&a[t]){for(var n=e.querySelectorAll("img"),r=0;r<n.length;r++){var o=n[r];this.addImage(o)}if("string"==typeof this.options.background){var i=e.querySelectorAll(this.options.background);for(r=0;r<i.length;r++){var s=i[r];this.addElementBackgroundImages(s)}}}};var a={1:!0,9:!0,11:!0};function s(e){this.img=e}function u(e,t){this.url=e,this.element=t,this.img=new Image}return i.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var n=/url\((['"])?(.*?)\1\)/gi,r=n.exec(t.backgroundImage);null!==r;){var o=r&&r[2];o&&this.addBackground(o,e),r=n.exec(t.backgroundImage)}},i.prototype.addImage=function(e){var t=new s(e);this.images.push(t)},i.prototype.addBackground=function(e,t){var n=new u(e,t);this.images.push(n)},i.prototype.check=function(){var e=this;function t(t,n,r){setTimeout(function(){e.progress(t,n,r)})}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach(function(e){e.once("progress",t),e.check()}):this.complete()},i.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+n,e,t)},i.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},s.prototype=Object.create(t.prototype),s.prototype.check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},s.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},s.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},s.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},s.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},s.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},s.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},u.prototype=Object.create(s.prototype),u.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},u.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},u.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},i.makeJQueryPlugin=function(t){(t=t||e.jQuery)&&((n=t).fn.imagesLoaded=function(e,t){return new i(this,e,t).jqDeferred.promise(n(this))})},i.makeJQueryPlugin(),i}(i,e)}.apply(t,r))||(e.exports=o)}("undefined"!=typeof window?window:this)},,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=n(218),i=(r=o)&&r.__esModule?r:{default:r};t.default=function(e){var t=e.color,n=void 0===t?"unsplash":t;return React.createElement("span",{className:(0,i.default)("instant-images-sidebar-icon","color-"+n)},React.createElement("svg",{viewBox:"0 0 31 58",width:"13px",height:"24px"},React.createElement("title",null,"Instant Images Logo"),React.createElement("polygon",{points:"20 0 20 23 31 23 11 58 11 34 0 34 20 0",fill:"#4a7bc5"})))}},function(e,t,n){var r;
|
62 |
-
/*!
|
63 |
-
Copyright (c) 2017 Jed Watson.
|
64 |
-
Licensed under the MIT License (MIT), see
|
65 |
-
http://jedwatson.github.io/classnames
|
66 |
-
*/
|
67 |
/*!
|
68 |
Copyright (c) 2017 Jed Watson.
|
69 |
Licensed under the MIT License (MIT), see
|
70 |
http://jedwatson.github.io/classnames
|
71 |
-
|
72 |
-
!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else if("object"===i)for(var s in r)n.call(r,s)&&r[s]&&e.push(s)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},,,function(e,t,n){"use strict";i(n(217));var r=i(n(222)),o=i(n(225));function i(e){return e&&e.__esModule?e:{default:e}}var a=wp.element.Fragment,s=wp.editPost;s.PluginSidebar,s.PluginSidebarMoreMenuItem;(0,wp.plugins.registerPlugin)("instant-images",{render:function(){return React.createElement(a,null,React.createElement(o.default,null),React.createElement(r.default,null))}})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});s(n(218));var r=s(n(217)),o=s(n(223)),i=s(n(224)),a=s(n(179));function s(e){return e&&e.__esModule?e:{default:e}}wp.element.Component;var u=wp.editPost,l=u.PluginSidebar;u.PluginSidebarMoreMenuItem;t.default=function(){return React.createElement(l,{icon:React.createElement(r.default,{borderless:!0,color:"unsplash"}),name:"instant-images-sidebar",title:"Instant Images"},React.createElement("div",{className:"instant-img-container"},React.createElement(a.default,{editor:"gutenberg",page:"1",orderby:"latest",service:"unsplash",SetFeaturedImage:o.default,InsertImage:i.default})))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=wp.data.dispatch;t.default=function(e){if(null===e)return!1;r("core/editor").editPost({featured_media:e})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=wp.blocks.createBlock;t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";if(""===e)return!1;var o=r("core/image",{url:e,caption:t,alt:n});wp.data.dispatch("core/editor").insertBlocks(o)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});o(n(218));var r=o(n(217));function o(e){return e&&e.__esModule?e:{default:e}}wp.element.Component;var i=wp.editPost,a=(i.PluginSidebar,i.PluginSidebarMoreMenuItem);t.default=function(){return React.createElement(a,{icon:React.createElement(r.default,{color:"unsplash"}),target:"instant-images-sidebar"},"Instant Images")}}]);
|
1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=223)}([function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,i,a,s){if(!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,s],c=0;(u=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw u.framesToPop=1,u}}},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";var r=n(9);e.exports=r},function(e,t,n){"use strict";
|
2 |
/*
|
3 |
object-assign
|
4 |
(c) Sindre Sorhus
|
5 |
@license MIT
|
6 |
+
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,s,u=a(e),l=1;l<arguments.length;l++){for(var c in n=Object(arguments[l]))o.call(n,c)&&(u[c]=n[c]);if(r){s=r(n);for(var p=0;p<s.length;p++)i.call(n,s[p])&&(u[s[p]]=n[s[p]])}}return u}},function(e,t,n){"use strict";var r=n(1),o=n(16),i=n(57),a=(n(0),o.ID_ATTRIBUTE_NAME),s=i,u="__reactInternalInstance$"+Math.random().toString(36).slice(2);function l(e,t){return 1===e.nodeType&&e.getAttribute(a)===String(t)||8===e.nodeType&&e.nodeValue===" react-text: "+t+" "||8===e.nodeType&&e.nodeValue===" react-empty: "+t+" "}function c(e){for(var t;t=e._renderedComponent;)e=t;return e}function p(e,t){var n=c(e);n._hostNode=t,t[u]=n}function d(e,t){if(!(e._flags&s.hasCachedChildNodes)){var n=e._renderedChildren,o=t.firstChild;e:for(var i in n)if(n.hasOwnProperty(i)){var a=n[i],u=c(a)._domID;if(0!==u){for(;null!==o;o=o.nextSibling)if(l(o,u)){p(a,o);continue e}r("32",u)}}e._flags|=s.hasCachedChildNodes}}function f(e){if(e[u])return e[u];for(var t,n,r=[];!e[u];){if(r.push(e),!e.parentNode)return null;e=e.parentNode}for(;e&&(n=e[u]);e=r.pop())t=n,r.length&&d(n,e);return t}var h={getClosestInstanceFromNode:f,getInstanceFromNode:function(e){var t=f(e);return null!=t&&t._hostNode===e?t:null},getNodeFromInstance:function(e){if(void 0===e._hostNode&&r("33"),e._hostNode)return e._hostNode;for(var t=[];!e._hostNode;)t.push(e),e._hostParent||r("34"),e=e._hostParent;for(;t.length;e=t.pop())d(e,e._hostNode);return e._hostNode},precacheChildNodes:d,precacheNode:p,uncacheNode:function(e){var t=e._hostNode;t&&(delete t[u],e._hostNode=null)}};e.exports=h},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=o},function(e,t,n){"use strict";var r=n(87),o=Object.prototype.toString;function i(e){return"[object Array]"===o.call(e)}function a(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function u(e){if("[object Object]"!==o.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function l(e){return"[object Function]"===o.call(e)}function c(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),i(e))for(var n=0,r=e.length;n<r;n++)t.call(null,e[n],n,e);else for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.call(null,e[o],o,e)}e.exports={isArray:i,isArrayBuffer:function(e){return"[object ArrayBuffer]"===o.call(e)},isBuffer:function(e){return null!==e&&!a(e)&&null!==e.constructor&&!a(e.constructor)&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)},isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:s,isPlainObject:u,isUndefined:a,isDate:function(e){return"[object Date]"===o.call(e)},isFile:function(e){return"[object File]"===o.call(e)},isBlob:function(e){return"[object Blob]"===o.call(e)},isFunction:l,isStream:function(e){return s(e)&&l(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:c,merge:function e(){var t={};function n(n,r){u(t[r])&&u(n)?t[r]=e(t[r],n):u(n)?t[r]=e({},n):i(n)?t[r]=n.slice():t[r]=n}for(var r=0,o=arguments.length;r<o;r++)c(arguments[r],n);return t},extend:function(e,t,n){return c(t,(function(t,o){e[o]=n&&"function"==typeof t?r(t,n):t})),e},trim:function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e}}},function(e,t,n){"use strict";e.exports={debugTool:null}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(62),a=n(13),s=n(63),u=n(14),l=n(24),c=n(0),p=[],d=0,f=i.getPooled(),h=!1,m=null;function g(){C.ReactReconcileTransaction&&m||r("123")}var v=[{initialize:function(){this.dirtyComponentsLength=p.length},close:function(){this.dirtyComponentsLength!==p.length?(p.splice(0,this.dirtyComponentsLength),E()):p.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function y(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=i.getPooled(),this.reconcileTransaction=C.ReactReconcileTransaction.getPooled(!0)}function _(e,t){return e._mountOrder-t._mountOrder}function b(e){var t=e.dirtyComponentsLength;t!==p.length&&r("124",t,p.length),p.sort(_),d++;for(var n=0;n<t;n++){var o,i=p[n],a=i._pendingCallbacks;if(i._pendingCallbacks=null,s.logTopLevelRenders){var l=i;i._currentElement.type.isReactTopLevelWrapper&&(l=i._renderedComponent),o="React update: "+l.getName(),console.time(o)}if(u.performUpdateIfNecessary(i,e.reconcileTransaction,d),o&&console.timeEnd(o),a)for(var c=0;c<a.length;c++)e.callbackQueue.enqueue(a[c],i.getPublicInstance())}}o(y.prototype,l,{getTransactionWrappers:function(){return v},destructor:function(){this.dirtyComponentsLength=null,i.release(this.callbackQueue),this.callbackQueue=null,C.ReactReconcileTransaction.release(this.reconcileTransaction),this.reconcileTransaction=null},perform:function(e,t,n){return l.perform.call(this,this.reconcileTransaction.perform,this.reconcileTransaction,e,t,n)}}),a.addPoolingTo(y);var E=function(){for(;p.length||h;){if(p.length){var e=y.getPooled();e.perform(b,null,e),y.release(e)}if(h){h=!1;var t=f;f=i.getPooled(),t.notifyAll(),i.release(t)}}};var C={ReactReconcileTransaction:null,batchedUpdates:function(e,t,n,r,o,i){return g(),m.batchedUpdates(e,t,n,r,o,i)},enqueueUpdate:function e(t){g(),m.isBatchingUpdates?(p.push(t),null==t._updateBatchNumber&&(t._updateBatchNumber=d+1)):m.batchedUpdates(e,t)},flushBatchedUpdates:E,injection:{injectReconcileTransaction:function(e){e||r("126"),C.ReactReconcileTransaction=e},injectBatchingStrategy:function(e){e||r("127"),"function"!=typeof e.batchedUpdates&&r("128"),"boolean"!=typeof e.isBatchingUpdates&&r("129"),m=e}},asap:function(e,t){c(m.isBatchingUpdates,"ReactUpdates.asap: Can't enqueue an asap callback in a context whereupdates are not being batched."),f.enqueue(e,t),h=!0}};e.exports=C},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";e.exports={current:null}},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(9),a=(n(2),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),s={type:null,target:null,currentTarget:i.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};function u(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n;var o=this.constructor.Interface;for(var a in o)if(o.hasOwnProperty(a)){0;var s=o[a];s?this[a]=s(n):"target"===a?this.target=r:this[a]=n[a]}var u=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue;return this.isDefaultPrevented=u?i.thatReturnsTrue:i.thatReturnsFalse,this.isPropagationStopped=i.thatReturnsFalse,this}r(u.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=i.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=i.thatReturnsTrue)},persist:function(){this.isPersistent=i.thatReturnsTrue},isPersistent:i.thatReturnsFalse,destructor:function(){var e=this.constructor.Interface;for(var t in e)this[t]=null;for(var n=0;n<a.length;n++)this[a[n]]=null}}),u.Interface=s,u.augmentClass=function(e,t){var n=function(){};n.prototype=this.prototype;var i=new n;r(i,e.prototype),e.prototype=i,e.prototype.constructor=e,e.Interface=r({},this.Interface,t),e.augmentClass=this.augmentClass,o.addPoolingTo(e,o.fourArgumentPooler)},o.addPoolingTo(u,o.fourArgumentPooler),e.exports=u},function(e,t,n){"use strict";var r=n(3),o=n(52),i=n(97),a=n(102),s=n(15),u=n(103),l=n(109),c=n(110),p=n(112),d=s.createElement,f=s.createFactory,h=s.cloneElement,m=r,g={Children:{map:i.map,forEach:i.forEach,count:i.count,toArray:i.toArray,only:p},Component:o.Component,PureComponent:o.PureComponent,createElement:d,cloneElement:h,isValidElement:s.isValidElement,PropTypes:u,createClass:c,createFactory:f,createMixin:function(e){return e},DOM:a,version:l,__spread:m};e.exports=g},function(e,t,n){"use strict";var r=n(1),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(120);n(7),n(2);function o(){r.attachRefs(this,this._currentElement)}var i={mountComponent:function(e,t,n,r,i,a){var s=e.mountComponent(t,n,r,i,a);return e._currentElement&&null!=e._currentElement.ref&&t.getReactMountReady().enqueue(o,e),s},getHostNode:function(e){return e.getHostNode()},unmountComponent:function(e,t){r.detachRefs(e,e._currentElement),e.unmountComponent(t)},receiveComponent:function(e,t,n,i){var a=e._currentElement;if(t!==a||i!==e._context){0;var s=r.shouldUpdateRefs(a,t);s&&r.detachRefs(e,a),e.receiveComponent(t,n,i),s&&e._currentElement&&null!=e._currentElement.ref&&n.getReactMountReady().enqueue(o,e)}},performUpdateIfNecessary:function(e,t,n){e._updateBatchNumber===n&&e.performUpdateIfNecessary(t)}};e.exports=i},function(e,t,n){"use strict";var r=n(3),o=n(10),i=(n(2),n(54),Object.prototype.hasOwnProperty),a=n(55),s={key:!0,ref:!0,__self:!0,__source:!0};function u(e){return void 0!==e.ref}function l(e){return void 0!==e.key}var c=function(e,t,n,r,o,i,s){return{$$typeof:a,type:e,key:t,ref:n,props:s,_owner:i}};c.createElement=function(e,t,n){var r,a={},p=null,d=null;if(null!=t)for(r in u(t)&&(d=t.ref),l(t)&&(p=""+t.key),void 0===t.__self?null:t.__self,void 0===t.__source?null:t.__source,t)i.call(t,r)&&!s.hasOwnProperty(r)&&(a[r]=t[r]);var f=arguments.length-2;if(1===f)a.children=n;else if(f>1){for(var h=Array(f),m=0;m<f;m++)h[m]=arguments[m+2];0,a.children=h}if(e&&e.defaultProps){var g=e.defaultProps;for(r in g)void 0===a[r]&&(a[r]=g[r])}return c(e,p,d,0,0,o.current,a)},c.createFactory=function(e){var t=c.createElement.bind(null,e);return t.type=e,t},c.cloneAndReplaceKey=function(e,t){return c(e.type,t,e.ref,e._self,e._source,e._owner,e.props)},c.cloneElement=function(e,t,n){var a,p,d=r({},e.props),f=e.key,h=e.ref,m=(e._self,e._source,e._owner);if(null!=t)for(a in u(t)&&(h=t.ref,m=o.current),l(t)&&(f=""+t.key),e.type&&e.type.defaultProps&&(p=e.type.defaultProps),t)i.call(t,a)&&!s.hasOwnProperty(a)&&(void 0===t[a]&&void 0!==p?d[a]=p[a]:d[a]=t[a]);var g=arguments.length-2;if(1===g)d.children=n;else if(g>1){for(var v=Array(g),y=0;y<g;y++)v[y]=arguments[y+2];d.children=v}return c(e.type,f,h,0,0,m,d)},c.isValidElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},e.exports=c},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){return(e&t)===t}var i={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,injectDOMPropertyConfig:function(e){var t=i,n=e.Properties||{},a=e.DOMAttributeNamespaces||{},u=e.DOMAttributeNames||{},l=e.DOMPropertyNames||{},c=e.DOMMutationMethods||{};for(var p in e.isCustomAttribute&&s._isCustomAttributeFunctions.push(e.isCustomAttribute),n){s.properties.hasOwnProperty(p)&&r("48",p);var d=p.toLowerCase(),f=n[p],h={attributeName:d,attributeNamespace:null,propertyName:p,mutationMethod:null,mustUseProperty:o(f,t.MUST_USE_PROPERTY),hasBooleanValue:o(f,t.HAS_BOOLEAN_VALUE),hasNumericValue:o(f,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:o(f,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:o(f,t.HAS_OVERLOADED_BOOLEAN_VALUE)};if(h.hasBooleanValue+h.hasNumericValue+h.hasOverloadedBooleanValue<=1||r("50",p),u.hasOwnProperty(p)){var m=u[p];h.attributeName=m}a.hasOwnProperty(p)&&(h.attributeNamespace=a[p]),l.hasOwnProperty(p)&&(h.propertyName=l[p]),c.hasOwnProperty(p)&&(h.mutationMethod=c[p]),s.properties[p]=h}}},a=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",s={ID_ATTRIBUTE_NAME:"data-reactid",ROOT_ATTRIBUTE_NAME:"data-reactroot",ATTRIBUTE_NAME_START_CHAR:a,ATTRIBUTE_NAME_CHAR:a+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",properties:{},getPossibleStandardName:null,_isCustomAttributeFunctions:[],isCustomAttribute:function(e){for(var t=0;t<s._isCustomAttributeFunctions.length;t++){if((0,s._isCustomAttributeFunctions[t])(e))return!0}return!1},injection:i};e.exports=s},function(e,t,n){"use strict";var r=n(38),o=n(26),i=n(39),a=n(67),s="undefined"!=typeof document&&"number"==typeof document.documentMode||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&/\bEdge\/\d/.test(navigator.userAgent);function u(e){if(s){var t=e.node,n=e.children;if(n.length)for(var r=0;r<n.length;r++)l(t,n[r],null);else null!=e.html?o(t,e.html):null!=e.text&&a(t,e.text)}}var l=i((function(e,t,n){11===t.node.nodeType||1===t.node.nodeType&&"object"===t.node.nodeName.toLowerCase()&&(null==t.node.namespaceURI||t.node.namespaceURI===r.html)?(u(t),e.insertBefore(t.node,n)):(e.insertBefore(t.node,n),u(t))}));function c(){return this.node.nodeName}function p(e){return{node:e,children:[],html:null,text:null,toString:c}}p.insertTreeBefore=l,p.replaceChildWithTree=function(e,t){e.parentNode.replaceChild(t.node,e),u(t)},p.queueChild=function(e,t){s?e.children.push(t):e.node.appendChild(t.node)},p.queueHTML=function(e,t){s?e.html=t:o(e.node,t)},p.queueText=function(e,t){s?e.text=t:a(e.node,t)},e.exports=p},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";var r=n(20),o=n(32),i=n(59),a=n(60),s=(n(2),r.getListener);function u(e,t,n){var r=function(e,t,n){var r=t.dispatchConfig.phasedRegistrationNames[n];return s(e,r)}(e,n,t);r&&(n._dispatchListeners=i(n._dispatchListeners,r),n._dispatchInstances=i(n._dispatchInstances,e))}function l(e){e&&e.dispatchConfig.phasedRegistrationNames&&o.traverseTwoPhase(e._targetInst,u,e)}function c(e){if(e&&e.dispatchConfig.phasedRegistrationNames){var t=e._targetInst,n=t?o.getParentInstance(t):null;o.traverseTwoPhase(n,u,e)}}function p(e,t,n){if(n&&n.dispatchConfig.registrationName){var r=n.dispatchConfig.registrationName,o=s(e,r);o&&(n._dispatchListeners=i(n._dispatchListeners,o),n._dispatchInstances=i(n._dispatchInstances,e))}}function d(e){e&&e.dispatchConfig.registrationName&&p(e._targetInst,0,e)}var f={accumulateTwoPhaseDispatches:function(e){a(e,l)},accumulateTwoPhaseDispatchesSkipTarget:function(e){a(e,c)},accumulateDirectDispatches:function(e){a(e,d)},accumulateEnterLeaveDispatches:function(e,t,n,r){o.traverseEnterLeave(n,r,p,e,t)}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=n(31),i=n(32),a=n(33),s=n(59),u=n(60),l=(n(0),{}),c=null,p=function(e,t){e&&(i.executeDispatchesInOrder(e,t),e.isPersistent()||e.constructor.release(e))},d=function(e){return p(e,!0)},f=function(e){return p(e,!1)},h=function(e){return"."+e._rootNodeID};var m={injection:{injectEventPluginOrder:o.injectEventPluginOrder,injectEventPluginsByName:o.injectEventPluginsByName},putListener:function(e,t,n){"function"!=typeof n&&r("94",t,typeof n);var i=h(e);(l[t]||(l[t]={}))[i]=n;var a=o.registrationNameModules[t];a&&a.didPutListener&&a.didPutListener(e,t,n)},getListener:function(e,t){var n=l[t];if(function(e,t,n){switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||(r=t,"button"!==r&&"input"!==r&&"select"!==r&&"textarea"!==r));default:return!1}var r}(t,e._currentElement.type,e._currentElement.props))return null;var r=h(e);return n&&n[r]},deleteListener:function(e,t){var n=o.registrationNameModules[t];n&&n.willDeleteListener&&n.willDeleteListener(e,t);var r=l[t];r&&delete r[h(e)]},deleteAllListeners:function(e){var t=h(e);for(var n in l)if(l.hasOwnProperty(n)&&l[n][t]){var r=o.registrationNameModules[n];r&&r.willDeleteListener&&r.willDeleteListener(e,n),delete l[n][t]}},extractEvents:function(e,t,n,r){for(var i,a=o.plugins,u=0;u<a.length;u++){var l=a[u];if(l){var c=l.extractEvents(e,t,n,r);c&&(i=s(i,c))}}return i},enqueueEvents:function(e){e&&(c=s(c,e))},processEventQueue:function(e){var t=c;c=null,u(t,e?d:f),c&&r("95"),a.rethrowCaughtError()},__purge:function(){l={}},__getListenerBank:function(){return l}};e.exports=m},function(e,t,n){"use strict";var r=n(11),o=n(34),i={view:function(e){if(e.view)return e.view;var t=o(e);if(t.window===t)return t;var n=t.ownerDocument;return n?n.defaultView||n.parentWindow:window},detail:function(e){return e.detail||0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r={remove:function(e){e._reactInternalInstance=void 0},get:function(e){return e._reactInternalInstance},has:function(e){return void 0!==e._reactInternalInstance},set:function(e,t){e._reactInternalInstance=t}};e.exports=r},function(e,t,n){"use strict";e.exports={}},function(e,t,n){"use strict";var r=n(1),o=(n(0),{}),i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,n,o,i,a,s,u){var l,c;this.isInTransaction()&&r("27");try{this._isInTransaction=!0,l=!0,this.initializeAll(0),c=e.call(t,n,o,i,a,s,u),l=!1}finally{try{if(l)try{this.closeAll(0)}catch(e){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return c},initializeAll:function(e){for(var t=this.transactionWrappers,n=e;n<t.length;n++){var r=t[n];try{this.wrapperInitData[n]=o,this.wrapperInitData[n]=r.initialize?r.initialize.call(this):null}finally{if(this.wrapperInitData[n]===o)try{this.initializeAll(n+1)}catch(e){}}}},closeAll:function(e){this.isInTransaction()||r("28");for(var t=this.transactionWrappers,n=e;n<t.length;n++){var i,a=t[n],s=this.wrapperInitData[n];try{i=!0,s!==o&&a.close&&a.close.call(this,s),i=!1}finally{if(i)try{this.closeAll(n+1)}catch(e){}}}this.wrapperInitData.length=0}};e.exports=i},function(e,t,n){"use strict";var r=n(21),o=n(66),i={screenX:null,screenY:null,clientX:null,clientY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:n(36),button:function(e){var t=e.button;return"which"in e?t:2===t?2:4===t?1:0},buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},pageX:function(e){return"pageX"in e?e.pageX:e.clientX+o.currentScrollLeft},pageY:function(e){return"pageY"in e?e.pageY:e.clientY+o.currentScrollTop}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r,o=n(5),i=n(38),a=/^[ \r\n\t\f]/,s=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,u=n(39)((function(e,t){if(e.namespaceURI!==i.svg||"innerHTML"in e)e.innerHTML=t;else{(r=r||document.createElement("div")).innerHTML="<svg>"+t+"</svg>";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}}));if(o.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(u=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),a.test(t)||"<"===t[0]&&s.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),l=null}e.exports=u},function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){return"boolean"==typeof e||"number"==typeof e?""+e:function(e){var t,n=""+e,o=r.exec(n);if(!o)return n;var i="",a=0,s=0;for(a=o.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==a&&(i+=n.substring(s,a)),s=a+1,i+=t}return s!==a?i+n.substring(s,a):i}(e)}},function(e,t,n){"use strict";var r,o=n(3),i=n(31),a=n(141),s=n(66),u=n(142),l=n(35),c={},p=!1,d=0,f={topAbort:"abort",topAnimationEnd:u("animationend")||"animationend",topAnimationIteration:u("animationiteration")||"animationiteration",topAnimationStart:u("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:u("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},h="_reactListenersID"+String(Math.random()).slice(2);var m=o({},a,{ReactEventListener:null,injection:{injectReactEventListener:function(e){e.setHandleTopLevel(m.handleTopLevel),m.ReactEventListener=e}},setEnabled:function(e){m.ReactEventListener&&m.ReactEventListener.setEnabled(e)},isEnabled:function(){return!(!m.ReactEventListener||!m.ReactEventListener.isEnabled())},listenTo:function(e,t){for(var n=t,r=function(e){return Object.prototype.hasOwnProperty.call(e,h)||(e[h]=d++,c[e[h]]={}),c[e[h]]}(n),o=i.registrationNameDependencies[e],a=0;a<o.length;a++){var s=o[a];r.hasOwnProperty(s)&&r[s]||("topWheel"===s?l("wheel")?m.ReactEventListener.trapBubbledEvent("topWheel","wheel",n):l("mousewheel")?m.ReactEventListener.trapBubbledEvent("topWheel","mousewheel",n):m.ReactEventListener.trapBubbledEvent("topWheel","DOMMouseScroll",n):"topScroll"===s?l("scroll",!0)?m.ReactEventListener.trapCapturedEvent("topScroll","scroll",n):m.ReactEventListener.trapBubbledEvent("topScroll","scroll",m.ReactEventListener.WINDOW_HANDLE):"topFocus"===s||"topBlur"===s?(l("focus",!0)?(m.ReactEventListener.trapCapturedEvent("topFocus","focus",n),m.ReactEventListener.trapCapturedEvent("topBlur","blur",n)):l("focusin")&&(m.ReactEventListener.trapBubbledEvent("topFocus","focusin",n),m.ReactEventListener.trapBubbledEvent("topBlur","focusout",n)),r.topBlur=!0,r.topFocus=!0):f.hasOwnProperty(s)&&m.ReactEventListener.trapBubbledEvent(s,f[s],n),r[s]=!0)}},trapBubbledEvent:function(e,t,n){return m.ReactEventListener.trapBubbledEvent(e,t,n)},trapCapturedEvent:function(e,t,n){return m.ReactEventListener.trapCapturedEvent(e,t,n)},supportsEventPageXY:function(){if(!document.createEvent)return!1;var e=document.createEvent("MouseEvent");return null!=e&&"pageX"in e},ensureScrollValueMonitoring:function(){if(void 0===r&&(r=m.supportsEventPageXY()),!r&&!p){var e=s.refreshScrollValues;m.ReactEventListener.monitorScrollValue(e),p=!0}}});e.exports=m},function(e,t,n){"use strict";e.exports=n(12)},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var u,l=[],c=!1,p=-1;function d(){c&&u&&(c=!1,u.length?l=u.concat(l):p=-1,l.length&&f())}function f(){if(!c){var e=s(d);c=!0;for(var t=l.length;t;){for(u=l,l=[];++p<t;)u&&u[p].run();p=-1,t=l.length}u=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new h(e,t)),1!==l.length||c||s(f)},h.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=m,o.addListener=m,o.once=m,o.off=m,o.removeListener=m,o.removeAllListeners=m,o.emit=m,o.prependListener=m,o.prependOnceListener=m,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i={};function a(){if(o)for(var e in i){var t=i[e],n=o.indexOf(e);if(n>-1||r("96",e),!l.plugins[n]){t.extractEvents||r("97",e),l.plugins[n]=t;var a=t.eventTypes;for(var u in a)s(a[u],t,u)||r("98",u,e)}}}function s(e,t,n){l.eventNameDispatchConfigs.hasOwnProperty(n)&&r("99",n),l.eventNameDispatchConfigs[n]=e;var o=e.phasedRegistrationNames;if(o){for(var i in o){if(o.hasOwnProperty(i))u(o[i],t,n)}return!0}return!!e.registrationName&&(u(e.registrationName,t,n),!0)}function u(e,t,n){l.registrationNameModules[e]&&r("100",e),l.registrationNameModules[e]=t,l.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var l={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){o&&r("101"),o=Array.prototype.slice.call(e),a()},injectEventPluginsByName:function(e){var t=!1;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];i.hasOwnProperty(n)&&i[n]===o||(i[n]&&r("102",n),i[n]=o,t=!0)}t&&a()},getPluginModuleForEvent:function(e){var t=e.dispatchConfig;if(t.registrationName)return l.registrationNameModules[t.registrationName]||null;if(void 0!==t.phasedRegistrationNames){var n=t.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var o=l.registrationNameModules[n[r]];if(o)return o}}return null},_resetEventPlugins:function(){for(var e in o=null,i)i.hasOwnProperty(e)&&delete i[e];l.plugins.length=0;var t=l.eventNameDispatchConfigs;for(var n in t)t.hasOwnProperty(n)&&delete t[n];var r=l.registrationNameModules;for(var a in r)r.hasOwnProperty(a)&&delete r[a]}};e.exports=l},function(e,t,n){"use strict";var r,o,i=n(1),a=n(33);n(0),n(2);function s(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=u.getNodeFromInstance(r),t?a.invokeGuardedCallbackWithCatch(o,n,e):a.invokeGuardedCallback(o,n,e),e.currentTarget=null}var u={isEndish:function(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e},isMoveish:function(e){return"topMouseMove"===e||"topTouchMove"===e},isStartish:function(e){return"topMouseDown"===e||"topTouchStart"===e},executeDirectDispatch:function(e){var t=e._dispatchListeners,n=e._dispatchInstances;Array.isArray(t)&&i("103"),e.currentTarget=t?u.getNodeFromInstance(n):null;var r=t?t(e):null;return e.currentTarget=null,e._dispatchListeners=null,e._dispatchInstances=null,r},executeDispatchesInOrder:function(e,t){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var o=0;o<n.length&&!e.isPropagationStopped();o++)s(e,t,n[o],r[o]);else n&&s(e,t,n,r);e._dispatchListeners=null,e._dispatchInstances=null},executeDispatchesInOrderStopAtTrue:function(e){var t=function(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t)){for(var r=0;r<t.length&&!e.isPropagationStopped();r++)if(t[r](e,n[r]))return n[r]}else if(t&&t(e,n))return n;return null}(e);return e._dispatchInstances=null,e._dispatchListeners=null,t},hasDispatches:function(e){return!!e._dispatchListeners},getInstanceFromNode:function(e){return r.getInstanceFromNode(e)},getNodeFromInstance:function(e){return r.getNodeFromInstance(e)},isAncestor:function(e,t){return o.isAncestor(e,t)},getLowestCommonAncestor:function(e,t){return o.getLowestCommonAncestor(e,t)},getParentInstance:function(e){return o.getParentInstance(e)},traverseTwoPhase:function(e,t,n){return o.traverseTwoPhase(e,t,n)},traverseEnterLeave:function(e,t,n,r,i){return o.traverseEnterLeave(e,t,n,r,i)},injection:{injectComponentTree:function(e){r=e},injectTreeTraversal:function(e){o=e}}};e.exports=u},function(e,t,n){"use strict";var r=null;function o(e,t,n){try{t(n)}catch(e){null===r&&(r=e)}}var i={invokeGuardedCallback:o,invokeGuardedCallbackWithCatch:o,rethrowCaughtError:function(){if(r){var e=r;throw r=null,e}}};e.exports=i},function(e,t,n){"use strict";e.exports=function(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}},function(e,t,n){"use strict";var r,o=n(5);o.canUseDOM&&(r=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""))
|
7 |
/**
|
8 |
* Checks if an event is supported in the current execution environment.
|
9 |
*
|
17 |
* @return {boolean} True if the event is supported.
|
18 |
* @internal
|
19 |
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
20 |
+
*/,e.exports=function(e,t){if(!o.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,i=n in document;if(!i){var a=document.createElement("div");a.setAttribute(n,"return;"),i="function"==typeof a[n]}return!i&&r&&"wheel"===e&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}},function(e,t,n){"use strict";var r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function o(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=r[e];return!!n&&!!t[n]}e.exports=function(e){return o}},function(e,t,n){"use strict";var r=n(17),o=n(126),i=(n(4),n(7),n(39)),a=n(26),s=n(67);function u(e,t){return Array.isArray(t)&&(t=t[1]),t?t.nextSibling:e.firstChild}var l=i((function(e,t,n){e.insertBefore(t,n)}));function c(e,t,n){r.insertTreeBefore(e,t,n)}function p(e,t,n){Array.isArray(t)?function(e,t,n,r){var o=t;for(;;){var i=o.nextSibling;if(l(e,o,r),o===n)break;o=i}}(e,t[0],t[1],n):l(e,t,n)}function d(e,t){if(Array.isArray(t)){var n=t[1];f(e,t=t[0],n),e.removeChild(n)}e.removeChild(t)}function f(e,t,n){for(;;){var r=t.nextSibling;if(r===n)break;e.removeChild(r)}}var h={dangerouslyReplaceNodeWithMarkup:o.dangerouslyReplaceNodeWithMarkup,replaceDelimitedText:function(e,t,n){var r=e.parentNode,o=e.nextSibling;o===t?n&&l(r,document.createTextNode(n),o):n?(s(o,n),f(r,o,t)):f(r,e,t)},processUpdates:function(e,t){for(var n=0;n<t.length;n++){var r=t[n];switch(r.type){case"INSERT_MARKUP":c(e,r.content,u(e,r.afterNode));break;case"MOVE_EXISTING":p(e,r.fromNode,u(e,r.afterNode));break;case"SET_MARKUP":a(e,r.content);break;case"TEXT_CONTENT":s(e,r.content);break;case"REMOVE_NODE":d(e,r.fromNode)}}}};e.exports=h},function(e,t,n){"use strict";e.exports={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"}},function(e,t,n){"use strict";e.exports=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction((function(){return e(t,n,r,o)}))}:e}},function(e,t,n){"use strict";var r=n(1),o=n(144),i=n(56)(n(12).isValidElement),a=(n(0),n(2),{button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0});function s(e){null!=e.checkedLink&&null!=e.valueLink&&r("87")}function u(e){s(e),(null!=e.value||null!=e.onChange)&&r("88")}function l(e){s(e),(null!=e.checked||null!=e.onChange)&&r("89")}var c={value:function(e,t,n){return!e[t]||a[e.type]||e.onChange||e.readOnly||e.disabled?null:new Error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.")},checked:function(e,t,n){return!e[t]||e.onChange||e.readOnly||e.disabled?null:new Error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")},onChange:i.func},p={};function d(e){if(e){var t=e.getName();if(t)return" Check the render method of `"+t+"`."}return""}var f={checkPropTypes:function(e,t,n){for(var r in c){if(c.hasOwnProperty(r))var i=c[r](t,r,e,"prop",null,o);if(i instanceof Error&&!(i.message in p)){p[i.message]=!0;d(n)}}},getValue:function(e){return e.valueLink?(u(e),e.valueLink.value):e.value},getChecked:function(e){return e.checkedLink?(l(e),e.checkedLink.value):e.checked},executeOnChange:function(e,t){return e.valueLink?(u(e),e.valueLink.requestChange(t.target.value)):e.checkedLink?(l(e),e.checkedLink.requestChange(t.target.checked)):e.onChange?e.onChange.call(void 0,t):void 0}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=(n(0),!1),i={replaceNodeWithMarkup:null,processChildrenUpdates:null,injection:{injectEnvironment:function(e){o&&r("104"),i.replaceNodeWithMarkup=e.replaceNodeWithMarkup,i.processChildrenUpdates=e.processChildrenUpdates,o=!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(149),a=n(73),s=n(74),u=(n(150),n(0),n(2),function(e){this.construct(e)});function l(e,t){var n;if(null===e||!1===e)n=a.create(l);else if("object"==typeof e){var o=e,i=o.type;if("function"!=typeof i&&"string"!=typeof i){var c="";0,c+=function(e){if(e){var t=e.getName();if(t)return" Check the render method of `"+t+"`."}return""}(o._owner),r("130",null==i?i:typeof i,c)}"string"==typeof o.type?n=s.createInternalComponent(o):!function(e){return"function"==typeof e&&void 0!==e.prototype&&"function"==typeof e.prototype.mountComponent&&"function"==typeof e.prototype.receiveComponent}(o.type)?n=new u(o):(n=new o.type(o)).getHostNode||(n.getHostNode=n.getNativeNode)}else"string"==typeof e||"number"==typeof e?n=s.createInstanceForText(e):r("131",typeof e);return n._mountIndex=0,n._mountImage=null,n}o(u.prototype,i,{_instantiateReactComponent:l}),e.exports=l},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty;function o(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}e.exports=function(e,t){if(o(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(var a=0;a<n.length;a++)if(!r.call(t,n[a])||!o(e[n[a]],t[n[a]]))return!1;return!0}},function(e,t,n){"use strict";e.exports=function(e,t){var n=null===e||!1===e,r=null===t||!1===t;if(n||r)return n===r;var o=typeof e,i=typeof t;return"string"===o||"number"===o?"string"===i||"number"===i:"object"===i&&e.type===t.type&&e.key===t.key}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,(function(e){return t[e]}))}};e.exports=r},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(22)),i=(n(7),n(8));n(0),n(2);function a(e){i.enqueueUpdate(e)}function s(e,t){var n=o.get(e);return n||null}var u={isMounted:function(e){var t=o.get(e);return!!t&&!!t._renderedComponent},enqueueCallback:function(e,t,n){u.validateCallback(t,n);var r=s(e);if(!r)return null;r._pendingCallbacks?r._pendingCallbacks.push(t):r._pendingCallbacks=[t],a(r)},enqueueCallbackInternal:function(e,t){e._pendingCallbacks?e._pendingCallbacks.push(t):e._pendingCallbacks=[t],a(e)},enqueueForceUpdate:function(e){var t=s(e);t&&(t._pendingForceUpdate=!0,a(t))},enqueueReplaceState:function(e,t,n){var r=s(e);r&&(r._pendingStateQueue=[t],r._pendingReplaceState=!0,null!=n&&(u.validateCallback(n,"replaceState"),r._pendingCallbacks?r._pendingCallbacks.push(n):r._pendingCallbacks=[n]),a(r))},enqueueSetState:function(e,t){var n=s(e);n&&((n._pendingStateQueue||(n._pendingStateQueue=[])).push(t),a(n))},enqueueElementInternal:function(e,t,n){e._pendingElement=t,e._context=n,a(e)},validateCallback:function(e,t){e&&"function"!=typeof e&&r("122",t,function(e){var t=typeof e;if("object"!==t)return t;var n=e.constructor&&e.constructor.name||t,r=Object.keys(e);return r.length>0&&r.length<20?n+" (keys: "+r.join(", ")+")":n}(e))}};e.exports=u},function(e,t,n){"use strict";n(3);var r=n(9),o=(n(2),r);e.exports=o},function(e,t,n){"use strict";e.exports=function(e){var t,n=e.keyCode;return"charCode"in e?0===(t=e.charCode)&&13===n&&(t=13):t=n,t>=32||13===t?t:0}},function(e,t,n){var r,o;"undefined"!=typeof window&&window,void 0===(o="function"==typeof(r=function(){"use strict";function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var n=this._events=this._events||{},r=n[e]=n[e]||[];return-1==r.indexOf(t)&&r.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var n=this._onceEvents=this._onceEvents||{};return(n[e]=n[e]||{})[t]=!0,this}},t.off=function(e,t){var n=this._events&&this._events[e];if(n&&n.length){var r=n.indexOf(t);return-1!=r&&n.splice(r,1),this}},t.emitEvent=function(e,t){var n=this._events&&this._events[e];if(n&&n.length){n=n.slice(0),t=t||[];for(var r=this._onceEvents&&this._onceEvents[e],o=0;o<n.length;o++){var i=n[o];r&&r[i]&&(this.off(e,i),delete r[i]),i.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){var r,o;
|
21 |
/*!
|
22 |
* getSize v2.0.3
|
23 |
* measure size of elements
|
24 |
* MIT license
|
25 |
+
*/window,void 0===(o="function"==typeof(r=function(){"use strict";function e(e){var t=parseFloat(e);return-1==e.indexOf("%")&&!isNaN(t)&&t}var t="undefined"==typeof console?function(){}:function(e){console.error(e)},n=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],r=n.length;function o(e){var n=getComputedStyle(e);return n||t("Style returned "+n+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),n}var i,a=!1;function s(t){if(function(){if(!a){a=!0;var t=document.createElement("div");t.style.width="200px",t.style.padding="1px 2px 3px 4px",t.style.borderStyle="solid",t.style.borderWidth="1px 2px 3px 4px",t.style.boxSizing="border-box";var n=document.body||document.documentElement;n.appendChild(t);var r=o(t);i=200==Math.round(e(r.width)),s.isBoxSizeOuter=i,n.removeChild(t)}}(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var u=o(t);if("none"==u.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<r;t++)e[n[t]]=0;return e}();var l={};l.width=t.offsetWidth,l.height=t.offsetHeight;for(var c=l.isBorderBox="border-box"==u.boxSizing,p=0;p<r;p++){var d=n[p],f=u[d],h=parseFloat(f);l[d]=isNaN(h)?0:h}var m=l.paddingLeft+l.paddingRight,g=l.paddingTop+l.paddingBottom,v=l.marginLeft+l.marginRight,y=l.marginTop+l.marginBottom,_=l.borderLeftWidth+l.borderRightWidth,b=l.borderTopWidth+l.borderBottomWidth,E=c&&i,C=e(u.width);!1!==C&&(l.width=C+(E?0:m+_));var w=e(u.height);return!1!==w&&(l.height=w+(E?0:g+b)),l.innerWidth=l.width-(m+_),l.innerHeight=l.height-(g+b),l.outerWidth=l.width+v,l.outerHeight=l.height+y,l}}return s})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){"use strict";e.exports={photo_api:"https://api.unsplash.com/photos",collections_api:"https://api.unsplash.com/collections",search_api:"https://api.unsplash.com/search/photos",app_id:"/?client_id="+instant_img_localize.unsplash_app_id,posts_per_page:"&per_page=20"}},function(e,t,n){"use strict";var r=n(18),o=n(3),i=n(53),a=(n(54),n(23));n(0),n(96);function s(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function u(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function l(){}s.prototype.isReactComponent={},s.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e),t&&this.updater.enqueueCallback(this,t,"setState")},s.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this),e&&this.updater.enqueueCallback(this,e,"forceUpdate")},l.prototype=s.prototype,u.prototype=new l,u.prototype.constructor=u,o(u.prototype,s.prototype),u.prototype.isPureReactComponent=!0,e.exports={Component:s,PureComponent:u}},function(e,t,n){"use strict";n(2);var r={isMounted:function(e){return!1},enqueueCallback:function(e,t){},enqueueForceUpdate:function(e){},enqueueReplaceState:function(e,t){},enqueueSetState:function(e,t){}};e.exports=r},function(e,t,n){"use strict";e.exports=!1},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r=n(104);e.exports=function(e){return r(e,!1)}},function(e,t,n){"use strict";e.exports={hasCachedChildNodes:1}},function(e,t,n){"use strict";var r=n(114),o=n(115),i=n(119),a=n(122),s=n(123),u=n(124),l=n(125),c=n(131),p=n(4),d=n(155),f=n(156),h=n(157),m=n(78),g=n(158),v=n(160),y=n(161),_=n(167),b=n(168),E=n(169),C=!1;e.exports={inject:function(){C||(C=!0,v.EventEmitter.injectReactEventListener(g),v.EventPluginHub.injectEventPluginOrder(a),v.EventPluginUtils.injectComponentTree(p),v.EventPluginUtils.injectTreeTraversal(f),v.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:E,EnterLeaveEventPlugin:s,ChangeEventPlugin:i,SelectEventPlugin:b,BeforeInputEventPlugin:o}),v.HostComponent.injectGenericComponentClass(c),v.HostComponent.injectTextComponentClass(h),v.DOMProperty.injectDOMPropertyConfig(r),v.DOMProperty.injectDOMPropertyConfig(u),v.DOMProperty.injectDOMPropertyConfig(_),v.EmptyComponent.injectEmptyComponentFactory((function(e){return new d(e)})),v.Updates.injectReconcileTransaction(y),v.Updates.injectBatchingStrategy(m),v.Component.injectEnvironment(l))}}},function(e,t,n){"use strict";var r=n(1);n(0);e.exports=function(e,t){return null==t&&r("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}},function(e,t,n){"use strict";e.exports=function(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}},function(e,t,n){"use strict";var r=n(5),o=null;e.exports=function(){return!o&&r.canUseDOM&&(o="textContent"in document.documentElement?"textContent":"innerText"),o}},function(e,t,n){"use strict";var r=n(1);var o=n(13),i=(n(0),function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._callbacks=null,this._contexts=null,this._arg=t}return e.prototype.enqueue=function(e,t){this._callbacks=this._callbacks||[],this._callbacks.push(e),this._contexts=this._contexts||[],this._contexts.push(t)},e.prototype.notifyAll=function(){var e=this._callbacks,t=this._contexts,n=this._arg;if(e&&t){e.length!==t.length&&r("24"),this._callbacks=null,this._contexts=null;for(var o=0;o<e.length;o++)e[o].call(t[o],n);e.length=0,t.length=0}},e.prototype.checkpoint=function(){return this._callbacks?this._callbacks.length:0},e.prototype.rollback=function(e){this._callbacks&&this._contexts&&(this._callbacks.length=e,this._contexts.length=e)},e.prototype.reset=function(){this._callbacks=null,this._contexts=null},e.prototype.destructor=function(){this.reset()},e}());e.exports=o.addPoolingTo(i)},function(e,t,n){"use strict";e.exports={logTopLevelRenders:!1}},function(e,t,n){"use strict";var r=n(4);function o(e){var t=e.type,n=e.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===t||"radio"===t)}function i(e){return e._wrapperState.valueTracker}var a={_getTrackerFromNode:function(e){return i(r.getInstanceFromNode(e))},track:function(e){if(!i(e)){var t=r.getNodeFromInstance(e),n=o(t)?"checked":"value",a=Object.getOwnPropertyDescriptor(t.constructor.prototype,n),s=""+t[n];t.hasOwnProperty(n)||"function"!=typeof a.get||"function"!=typeof a.set||(Object.defineProperty(t,n,{enumerable:a.enumerable,configurable:!0,get:function(){return a.get.call(this)},set:function(e){s=""+e,a.set.call(this,e)}}),function(e,t){e._wrapperState.valueTracker=t}(e,{getValue:function(){return s},setValue:function(e){s=""+e},stopTracking:function(){!function(e){e._wrapperState.valueTracker=null}(e),delete t[n]}}))}},updateValueIfChanged:function(e){if(!e)return!1;var t=i(e);if(!t)return a.track(e),!0;var n,s,u=t.getValue(),l=((n=r.getNodeFromInstance(e))&&(s=o(n)?""+n.checked:n.value),s);return l!==u&&(t.setValue(l),!0)},stopTracking:function(e){var t=i(e);t&&t.stopTracking()}};e.exports=a},function(e,t,n){"use strict";var r={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};e.exports=function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!r[e.type]:"textarea"===t}},function(e,t,n){"use strict";var r={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(e){r.currentScrollLeft=e.x,r.currentScrollTop=e.y}};e.exports=r},function(e,t,n){"use strict";var r=n(5),o=n(27),i=n(26),a=function(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t};r.canUseDOM&&("textContent"in document.documentElement||(a=function(e,t){3!==e.nodeType?i(e,o(t)):e.nodeValue=t})),e.exports=a},function(e,t,n){"use strict";e.exports=function(e){try{e.focus()}catch(e){}}},function(e,t,n){"use strict";var r={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};var o=["Webkit","ms","Moz","O"];Object.keys(r).forEach((function(e){o.forEach((function(t){r[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=r[e]}))}));var i={isUnitlessNumber:r,shorthandPropertyExpansions:{background:{backgroundAttachment:!0,backgroundColor:!0,backgroundImage:!0,backgroundPositionX:!0,backgroundPositionY:!0,backgroundRepeat:!0},backgroundPosition:{backgroundPositionX:!0,backgroundPositionY:!0},border:{borderWidth:!0,borderStyle:!0,borderColor:!0},borderBottom:{borderBottomWidth:!0,borderBottomStyle:!0,borderBottomColor:!0},borderLeft:{borderLeftWidth:!0,borderLeftStyle:!0,borderLeftColor:!0},borderRight:{borderRightWidth:!0,borderRightStyle:!0,borderRightColor:!0},borderTop:{borderTopWidth:!0,borderTopStyle:!0,borderTopColor:!0},font:{fontStyle:!0,fontVariant:!0,fontWeight:!0,fontSize:!0,lineHeight:!0,fontFamily:!0},outline:{outlineWidth:!0,outlineStyle:!0,outlineColor:!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(16),o=(n(4),n(7),n(140)),i=(n(2),new RegExp("^["+r.ATTRIBUTE_NAME_START_CHAR+"]["+r.ATTRIBUTE_NAME_CHAR+"]*$")),a={},s={};function u(e){return!!s.hasOwnProperty(e)||!a.hasOwnProperty(e)&&(i.test(e)?(s[e]=!0,!0):(a[e]=!0,!1))}function l(e,t){return null==t||e.hasBooleanValue&&!t||e.hasNumericValue&&isNaN(t)||e.hasPositiveNumericValue&&t<1||e.hasOverloadedBooleanValue&&!1===t}var c={createMarkupForID:function(e){return r.ID_ATTRIBUTE_NAME+"="+o(e)},setAttributeForID:function(e,t){e.setAttribute(r.ID_ATTRIBUTE_NAME,t)},createMarkupForRoot:function(){return r.ROOT_ATTRIBUTE_NAME+'=""'},setAttributeForRoot:function(e){e.setAttribute(r.ROOT_ATTRIBUTE_NAME,"")},createMarkupForProperty:function(e,t){var n=r.properties.hasOwnProperty(e)?r.properties[e]:null;if(n){if(l(n,t))return"";var i=n.attributeName;return n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===t?i+'=""':i+"="+o(t)}return r.isCustomAttribute(e)?null==t?"":e+"="+o(t):null},createMarkupForCustomAttribute:function(e,t){return u(e)&&null!=t?e+"="+o(t):""},setValueForProperty:function(e,t,n){var o=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(o){var i=o.mutationMethod;if(i)i(e,n);else{if(l(o,n))return void this.deleteValueForProperty(e,t);if(o.mustUseProperty)e[o.propertyName]=n;else{var a=o.attributeName,s=o.attributeNamespace;s?e.setAttributeNS(s,a,""+n):o.hasBooleanValue||o.hasOverloadedBooleanValue&&!0===n?e.setAttribute(a,""):e.setAttribute(a,""+n)}}}else if(r.isCustomAttribute(t))return void c.setValueForAttribute(e,t,n)},setValueForAttribute:function(e,t,n){u(t)&&(null==n?e.removeAttribute(t):e.setAttribute(t,""+n))},deleteValueForAttribute:function(e,t){e.removeAttribute(t)},deleteValueForProperty:function(e,t){var n=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(n){var o=n.mutationMethod;if(o)o(e,void 0);else if(n.mustUseProperty){var i=n.propertyName;n.hasBooleanValue?e[i]=!1:e[i]=""}else e.removeAttribute(n.attributeName)}else r.isCustomAttribute(t)&&e.removeAttribute(t)}};e.exports=c},function(e,t,n){"use strict";var r=n(3),o=n(40),i=n(4),a=n(8),s=(n(2),!1);function u(){if(this._rootNodeID&&this._wrapperState.pendingUpdate){this._wrapperState.pendingUpdate=!1;var e=this._currentElement.props,t=o.getValue(e);null!=t&&l(this,Boolean(e.multiple),t)}}function l(e,t,n){var r,o,a=i.getNodeFromInstance(e).options;if(t){for(r={},o=0;o<n.length;o++)r[""+n[o]]=!0;for(o=0;o<a.length;o++){var s=r.hasOwnProperty(a[o].value);a[o].selected!==s&&(a[o].selected=s)}}else{for(r=""+n,o=0;o<a.length;o++)if(a[o].value===r)return void(a[o].selected=!0);a.length&&(a[0].selected=!0)}}var c={getHostProps:function(e,t){return r({},t,{onChange:e._wrapperState.onChange,value:void 0})},mountWrapper:function(e,t){var n=o.getValue(t);e._wrapperState={pendingUpdate:!1,initialValue:null!=n?n:t.defaultValue,listeners:null,onChange:p.bind(e),wasMultiple:Boolean(t.multiple)},void 0===t.value||void 0===t.defaultValue||s||(s=!0)},getSelectValueContext:function(e){return e._wrapperState.initialValue},postUpdateWrapper:function(e){var t=e._currentElement.props;e._wrapperState.initialValue=void 0;var n=e._wrapperState.wasMultiple;e._wrapperState.wasMultiple=Boolean(t.multiple);var r=o.getValue(t);null!=r?(e._wrapperState.pendingUpdate=!1,l(e,Boolean(t.multiple),r)):n!==Boolean(t.multiple)&&(null!=t.defaultValue?l(e,Boolean(t.multiple),t.defaultValue):l(e,Boolean(t.multiple),t.multiple?[]:""))}};function p(e){var t=this._currentElement.props,n=o.executeOnChange(t,e);return this._rootNodeID&&(this._wrapperState.pendingUpdate=!0),a.asap(u,this),n}e.exports=c},function(e,t,n){"use strict";var r=n(1),o=n(12),i=(n(0),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(e){return null===e||!1===e?i.EMPTY:o.isValidElement(e)?"function"==typeof e.type?i.COMPOSITE:i.HOST:void r("26",e)}});e.exports=i},function(e,t,n){"use strict";var r,o={injectEmptyComponentFactory:function(e){r=e}},i={create:function(e){return r(e)}};i.injection=o,e.exports=i},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i=null;var a={createInternalComponent:function(e){return o||r("111",e.type),new o(e)},createInstanceForText:function(e){return new i(e)},isTextComponent:function(e){return e instanceof i},injection:{injectGenericComponentClass:function(e){o=e},injectTextComponentClass:function(e){i=e}}};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(151)),i=n(152),a=(n(0),n(45));n(2);function s(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,u,l){var c,p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===o)return u(l,t,""===n?"."+s(t,0):n),1;var d=0,f=""===n?".":n+":";if(Array.isArray(t))for(var h=0;h<t.length;h++)d+=e(c=t[h],f+s(c,h),u,l);else{var m=i(t);if(m){var g,v=m.call(t);if(m!==t.entries)for(var y=0;!(g=v.next()).done;)d+=e(c=g.value,f+s(c,y++),u,l);else for(;!(g=v.next()).done;){var _=g.value;_&&(d+=e(c=_[1],f+a.escape(_[0])+":"+s(c,0),u,l))}}else if("object"===p){var b=String(t);r("31","[object Object]"===b?"object with keys {"+Object.keys(t).join(", ")+"}":b,"")}}return d}(e,"",t,n)}},function(e,t,n){"use strict";var r,o,i,a,s,u,l,c=n(18),p=n(10);n(0),n(2);function d(e){var t=Function.prototype.toString,n=Object.prototype.hasOwnProperty,r=RegExp("^"+t.call(n).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");try{var o=t.call(e);return r.test(o)}catch(e){return!1}}if("function"==typeof Array.from&&"function"==typeof Map&&d(Map)&&null!=Map.prototype&&"function"==typeof Map.prototype.keys&&d(Map.prototype.keys)&&"function"==typeof Set&&d(Set)&&null!=Set.prototype&&"function"==typeof Set.prototype.keys&&d(Set.prototype.keys)){var f=new Map,h=new Set;r=function(e,t){f.set(e,t)},o=function(e){return f.get(e)},i=function(e){f.delete(e)},a=function(){return Array.from(f.keys())},s=function(e){h.add(e)},u=function(e){h.delete(e)},l=function(){return Array.from(h.keys())}}else{var m={},g={},v=function(e){return"."+e},y=function(e){return parseInt(e.substr(1),10)};r=function(e,t){var n=v(e);m[n]=t},o=function(e){var t=v(e);return m[t]},i=function(e){var t=v(e);delete m[t]},a=function(){return Object.keys(m).map(y)},s=function(e){var t=v(e);g[t]=!0},u=function(e){var t=v(e);delete g[t]},l=function(){return Object.keys(g).map(y)}}var _=[];function b(e){var t=o(e);if(t){var n=t.childIDs;i(e),n.forEach(b)}}function E(e,t,n){return"\n in "+(e||"Unknown")+(t?" (at "+t.fileName.replace(/^.*[\\\/]/,"")+":"+t.lineNumber+")":n?" (created by "+n+")":"")}function C(e){return null==e?"#empty":"string"==typeof e||"number"==typeof e?"#text":"string"==typeof e.type?e.type:e.type.displayName||e.type.name||"Unknown"}function w(e){var t,n=x.getDisplayName(e),r=x.getElement(e),o=x.getOwnerID(e);return o&&(t=x.getDisplayName(o)),E(n,r&&r._source,t)}var x={onSetChildren:function(e,t){var n=o(e);n||c("144"),n.childIDs=t;for(var r=0;r<t.length;r++){var i=t[r],a=o(i);a||c("140"),null==a.childIDs&&"object"==typeof a.element&&null!=a.element&&c("141"),a.isMounted||c("71"),null==a.parentID&&(a.parentID=e),a.parentID!==e&&c("142",i,a.parentID,e)}},onBeforeMountComponent:function(e,t,n){r(e,{element:t,parentID:n,text:null,childIDs:[],isMounted:!1,updateCount:0})},onBeforeUpdateComponent:function(e,t){var n=o(e);n&&n.isMounted&&(n.element=t)},onMountComponent:function(e){var t=o(e);t||c("144"),t.isMounted=!0,0===t.parentID&&s(e)},onUpdateComponent:function(e){var t=o(e);t&&t.isMounted&&t.updateCount++},onUnmountComponent:function(e){var t=o(e);t&&(t.isMounted=!1,0===t.parentID&&u(e));_.push(e)},purgeUnmountedComponents:function(){if(!x._preventPurging){for(var e=0;e<_.length;e++){b(_[e])}_.length=0}},isMounted:function(e){var t=o(e);return!!t&&t.isMounted},getCurrentStackAddendum:function(e){var t="";if(e){var n=C(e),r=e._owner;t+=E(n,e._source,r&&r.getName())}var o=p.current,i=o&&o._debugID;return t+=x.getStackAddendumByID(i)},getStackAddendumByID:function(e){for(var t="";e;)t+=w(e),e=x.getParentID(e);return t},getChildIDs:function(e){var t=o(e);return t?t.childIDs:[]},getDisplayName:function(e){var t=x.getElement(e);return t?C(t):null},getElement:function(e){var t=o(e);return t?t.element:null},getOwnerID:function(e){var t=x.getElement(e);return t&&t._owner?t._owner._debugID:null},getParentID:function(e){var t=o(e);return t?t.parentID:null},getSource:function(e){var t=o(e),n=t?t.element:null;return null!=n?n._source:null},getText:function(e){var t=x.getElement(e);return"string"==typeof t?t:"number"==typeof t?""+t:null},getUpdateCount:function(e){var t=o(e);return t?t.updateCount:0},getRootIDs:l,getRegisteredIDs:a,pushNonStandardWarningStack:function(e,t){if("function"==typeof console.reactStack){var n=[],r=p.current,o=r&&r._debugID;try{for(e&&n.push({name:o?x.getDisplayName(o):null,fileName:t?t.fileName:null,lineNumber:t?t.lineNumber:null});o;){var i=x.getElement(o),a=x.getParentID(o),s=x.getOwnerID(o),u=s?x.getDisplayName(s):null,l=i&&i._source;n.push({name:u,fileName:l?l.fileName:null,lineNumber:l?l.lineNumber:null}),o=a}}catch(e){}console.reactStack(n)}},popNonStandardWarningStack:function(){"function"==typeof console.reactStackEnd&&console.reactStackEnd()}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(24),a=(n(7),n(154)),s=[];var u={enqueue:function(){}};function l(e){this.reinitializeTransaction(),this.renderToStaticMarkup=e,this.useCreateElement=!1,this.updateQueue=new a(this)}var c={getTransactionWrappers:function(){return s},getReactMountReady:function(){return u},getUpdateQueue:function(){return this.updateQueue},destructor:function(){},checkpoint:function(){},rollback:function(){}};r(l.prototype,i,c),o.addPoolingTo(l),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(8),i=n(24),a=n(9),s={initialize:a,close:function(){p.isBatchingUpdates=!1}},u=[{initialize:a,close:o.flushBatchedUpdates.bind(o)},s];function l(){this.reinitializeTransaction()}r(l.prototype,i,{getTransactionWrappers:function(){return u}});var c=new l,p={isBatchingUpdates:!1,batchedUpdates:function(e,t,n,r,o,i){var a=p.isBatchingUpdates;return p.isBatchingUpdates=!0,a?e(t,n,r,o,i):c.perform(e,null,t,n,r,o,i)}};e.exports=p},function(e,t,n){"use strict";var r=n(9),o={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=o},function(e,t,n){"use strict";var r=n(162),o=n(164),i=n(68),a=n(81);var s={hasSelectionCapabilities:function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&"text"===e.type||"textarea"===t||"true"===e.contentEditable)},getSelectionInformation:function(){var e=a();return{focusedElem:e,selectionRange:s.hasSelectionCapabilities(e)?s.getSelection(e):null}},restoreSelection:function(e){var t,n=a(),r=e.focusedElem,u=e.selectionRange;n!==r&&(t=r,o(document.documentElement,t))&&(s.hasSelectionCapabilities(r)&&s.setSelection(r,u),i(r))},getSelection:function(e){var t;if("selectionStart"in e)t={start:e.selectionStart,end:e.selectionEnd};else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var n=document.selection.createRange();n.parentElement()===e&&(t={start:-n.moveStart("character",-e.value.length),end:-n.moveEnd("character",-e.value.length)})}else t=r.getOffsets(e);return t||{start:0,end:0}},setSelection:function(e,t){var n=t.start,o=t.end;if(void 0===o&&(o=n),"selectionStart"in e)e.selectionStart=n,e.selectionEnd=Math.min(o,e.value.length);else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var i=e.createTextRange();i.collapse(!0),i.moveStart("character",n),i.moveEnd("character",o-n),i.select()}else r.setOffsets(e,t)}};e.exports=s},function(e,t,n){"use strict";e.exports=function(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(16),a=n(12),s=n(28),u=(n(10),n(4)),l=n(83),c=n(179),p=n(63),d=n(22),f=(n(7),n(84)),h=n(14),m=n(46),g=n(8),v=n(23),y=n(42),_=(n(0),n(26)),b=n(44),E=(n(2),i.ID_ATTRIBUTE_NAME),C=i.ROOT_ATTRIBUTE_NAME,w={};function x(e){return e?9===e.nodeType?e.documentElement:e.firstChild:null}function T(e,t,n,r,o){var i;if(p.logTopLevelRenders){var a=e._currentElement.props.child.type;i="React mount: "+("string"==typeof a?a:a.displayName||a.name),console.time(i)}var s=h.mountComponent(e,n,null,l(e,t),o,0);i&&console.timeEnd(i),e._renderedComponent._topLevelWrapper=e,R._mountImageIntoNode(s,t,e,r,n)}function k(e,t,n,r){var o=g.ReactReconcileTransaction.getPooled(!n&&c.useCreateElement);o.perform(T,null,e,t,o,n,r),g.ReactReconcileTransaction.release(o)}function S(e,t,n){for(0,h.unmountComponent(e,n),9===t.nodeType&&(t=t.documentElement);t.lastChild;)t.removeChild(t.lastChild)}function P(e){var t=x(e);if(t){var n=u.getInstanceFromNode(t);return!(!n||!n._hostParent)}}function I(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function N(e){var t=function(e){var t=x(e),n=t&&u.getInstanceFromNode(t);return n&&!n._hostParent?n:null}(e);return t?t._hostContainerInfo._topLevelWrapper:null}var M=1,O=function(){this.rootID=M++};O.prototype.isReactComponent={},O.prototype.render=function(){return this.props.child},O.isReactTopLevelWrapper=!0;var R={TopLevelWrapper:O,_instancesByReactRootID:w,scrollMonitor:function(e,t){t()},_updateRootComponent:function(e,t,n,r,o){return R.scrollMonitor(r,(function(){m.enqueueElementInternal(e,t,n),o&&m.enqueueCallbackInternal(e,o)})),e},_renderNewRootComponent:function(e,t,n,o){I(t)||r("37"),s.ensureScrollValueMonitoring();var i=y(e,!1);g.batchedUpdates(k,i,t,n,o);var a=i._instance.rootID;return w[a]=i,i},renderSubtreeIntoContainer:function(e,t,n,o){return null!=e&&d.has(e)||r("38"),R._renderSubtreeIntoContainer(e,t,n,o)},_renderSubtreeIntoContainer:function(e,t,n,o){m.validateCallback(o,"ReactDOM.render"),a.isValidElement(t)||r("39","string"==typeof t?" Instead of passing a string like 'div', pass React.createElement('div') or <div />.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or <Foo />.":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":"");var i,s=a.createElement(O,{child:t});if(e){var u=d.get(e);i=u._processChildContext(u._context)}else i=v;var l=N(n);if(l){var c=l._currentElement.props.child;if(b(c,t)){var p=l._renderedComponent.getPublicInstance(),f=o&&function(){o.call(p)};return R._updateRootComponent(l,s,i,n,f),p}R.unmountComponentAtNode(n)}var h,g=x(n),y=g&&!(!(h=g).getAttribute||!h.getAttribute(E)),_=P(n),C=y&&!l&&!_,w=R._renderNewRootComponent(s,n,C,i)._renderedComponent.getPublicInstance();return o&&o.call(w),w},render:function(e,t,n){return R._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){I(e)||r("40");var t=N(e);if(!t){P(e),1===e.nodeType&&e.hasAttribute(C);return!1}return delete w[t._instance.rootID],g.batchedUpdates(S,t,e,!1),!0},_mountImageIntoNode:function(e,t,n,i,a){if(I(t)||r("41"),i){var s=x(t);if(f.canReuseMarkup(e,s))return void u.precacheNode(n,s);var l=s.getAttribute(f.CHECKSUM_ATTR_NAME);s.removeAttribute(f.CHECKSUM_ATTR_NAME);var c=s.outerHTML;s.setAttribute(f.CHECKSUM_ATTR_NAME,l);var p=e,d=function(e,t){for(var n=Math.min(e.length,t.length),r=0;r<n;r++)if(e.charAt(r)!==t.charAt(r))return r;return e.length===t.length?-1:n}(p,c),h=" (client) "+p.substring(d-20,d+20)+"\n (server) "+c.substring(d-20,d+20);9===t.nodeType&&r("42",h)}if(9===t.nodeType&&r("43"),a.useCreateElement){for(;t.lastChild;)t.removeChild(t.lastChild);o.insertTreeBefore(t,e,null)}else _(t,e),u.precacheNode(n,t.firstChild)}};e.exports=R},function(e,t,n){"use strict";n(47);e.exports=function(e,t){return{_topLevelWrapper:e,_idCounter:1,_ownerDocument:t?9===t.nodeType?t:t.ownerDocument:null,_node:t,_tag:t?t.nodeName.toLowerCase():null,_namespaceURI:t?t.namespaceURI:null}}},function(e,t,n){"use strict";var r=n(180),o=/\/?>/,i=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(e){var t=r(e);return i.test(e)?e:e.replace(o," "+a.CHECKSUM_ATTR_NAME+'="'+t+'"$&')},canReuseMarkup:function(e,t){var n=t.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(e)===n}};e.exports=a},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(72);e.exports=function(e){for(var t;(t=e._renderedNodeType)===r.COMPOSITE;)e=e._renderedComponent;return t===r.HOST?e._renderedComponent:t===r.EMPTY?null:void 0}},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},function(e,t,n){"use strict";var r=n(6);function o(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var a=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(o(t)+"="+o(e))})))})),i=a.join("&")}if(i){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";(function(t){var r=n(6),o=n(200),i={"Content-Type":"application/x-www-form-urlencoded"};function a(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var s,u={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==t&&"[object process]"===Object.prototype.toString.call(t))&&(s=n(91)),s),transformRequest:[function(e,t){return o(t,"Accept"),o(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e)?e:r.isArrayBufferView(e)?e.buffer:r.isURLSearchParams(e)?(a(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):r.isObject(e)?(a(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),r.forEach(["post","put","patch"],(function(e){u.headers[e]=r.merge(i)})),e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(6),o=n(201),i=n(203),a=n(88),s=n(204),u=n(207),l=n(208),c=n(92);e.exports=function(e){return new Promise((function(t,n){var p=e.data,d=e.headers;r.isFormData(p)&&delete d["Content-Type"];var f=new XMLHttpRequest;if(e.auth){var h=e.auth.username||"",m=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";d.Authorization="Basic "+btoa(h+":"+m)}var g=s(e.baseURL,e.url);if(f.open(e.method.toUpperCase(),a(g,e.params,e.paramsSerializer),!0),f.timeout=e.timeout,f.onreadystatechange=function(){if(f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in f?u(f.getAllResponseHeaders()):null,i={data:e.responseType&&"text"!==e.responseType?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:r,config:e,request:f};o(t,n,i),f=null}},f.onabort=function(){f&&(n(c("Request aborted",e,"ECONNABORTED",f)),f=null)},f.onerror=function(){n(c("Network Error",e,null,f)),f=null},f.ontimeout=function(){var t="timeout of "+e.timeout+"ms exceeded";e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(c(t,e,"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var v=(e.withCredentials||l(g))&&e.xsrfCookieName?i.read(e.xsrfCookieName):void 0;v&&(d[e.xsrfHeaderName]=v)}if("setRequestHeader"in f&&r.forEach(d,(function(e,t){void 0===p&&"content-type"===t.toLowerCase()?delete d[t]:f.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(f.withCredentials=!!e.withCredentials),e.responseType)try{f.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&f.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then((function(e){f&&(f.abort(),n(e),f=null)})),p||(p=null),f.send(p)}))}},function(e,t,n){"use strict";var r=n(202);e.exports=function(e,t,n,o,i){var a=new Error(e);return r(a,t,n,o,i)}},function(e,t,n){"use strict";var r=n(6);e.exports=function(e,t){t=t||{};var n={},o=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function u(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function l(o){r.isUndefined(t[o])?r.isUndefined(e[o])||(n[o]=u(void 0,e[o])):n[o]=u(e[o],t[o])}r.forEach(o,(function(e){r.isUndefined(t[e])||(n[e]=u(void 0,t[e]))})),r.forEach(i,l),r.forEach(a,(function(o){r.isUndefined(t[o])?r.isUndefined(e[o])||(n[o]=u(void 0,e[o])):n[o]=u(void 0,t[o])})),r.forEach(s,(function(r){r in t?n[r]=u(e[r],t[r]):r in e&&(n[r]=u(void 0,e[r]))}));var c=o.concat(i).concat(a).concat(s),p=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===c.indexOf(e)}));return r.forEach(p,l),n}},function(e,t,n){"use strict";function r(e){this.message=e}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,e.exports=r},function(e,t,n){"use strict";e.exports=n(113)},function(e,t,n){"use strict";e.exports=function(){}},function(e,t,n){"use strict";var r=n(98),o=n(15),i=n(9),a=n(99),s=r.twoArgumentPooler,u=r.fourArgumentPooler,l=/\/+/g;function c(e){return(""+e).replace(l,"$&/")}function p(e,t){this.func=e,this.context=t,this.count=0}function d(e,t,n){var r=e.func,o=e.context;r.call(o,t,e.count++)}function f(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function h(e,t,n){var r=e.result,a=e.keyPrefix,s=e.func,u=e.context,l=s.call(u,t,e.count++);Array.isArray(l)?m(l,r,n,i.thatReturnsArgument):null!=l&&(o.isValidElement(l)&&(l=o.cloneAndReplaceKey(l,a+(!l.key||t&&t.key===l.key?"":c(l.key)+"/")+n)),r.push(l))}function m(e,t,n,r,o){var i="";null!=n&&(i=c(n)+"/");var s=f.getPooled(t,i,r,o);a(e,h,s),f.release(s)}function g(e,t,n){return null}p.prototype.destructor=function(){this.func=null,this.context=null,this.count=0},r.addPoolingTo(p,s),f.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},r.addPoolingTo(f,u);var v={forEach:function(e,t,n){if(null==e)return e;var r=p.getPooled(t,n);a(e,d,r),p.release(r)},map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},mapIntoWithKeyPrefixInternal:m,count:function(e,t){return a(e,g,null)},toArray:function(e){var t=[];return m(e,t,null,i.thatReturnsArgument),t}};e.exports=v},function(e,t,n){"use strict";var r=n(18),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(18),o=(n(10),n(55)),i=n(100),a=(n(0),n(101));n(2);function s(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,u,l){var c,p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===o)return u(l,t,""===n?"."+s(t,0):n),1;var d=0,f=""===n?".":n+":";if(Array.isArray(t))for(var h=0;h<t.length;h++)d+=e(c=t[h],f+s(c,h),u,l);else{var m=i(t);if(m){var g,v=m.call(t);if(m!==t.entries)for(var y=0;!(g=v.next()).done;)d+=e(c=g.value,f+s(c,y++),u,l);else for(;!(g=v.next()).done;){var _=g.value;_&&(d+=e(c=_[1],f+a.escape(_[0])+":"+s(c,0),u,l))}}else if("object"===p){var b=String(t);r("31","[object Object]"===b?"object with keys {"+Object.keys(t).join(", ")+"}":b,"")}}return d}(e,"",t,n)}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator;e.exports=function(e){var t=e&&(r&&e[r]||e["@@iterator"]);if("function"==typeof t)return t}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,(function(e){return t[e]}))}};e.exports=r},function(e,t,n){"use strict";var r=n(15).createFactory,o={a:r("a"),abbr:r("abbr"),address:r("address"),area:r("area"),article:r("article"),aside:r("aside"),audio:r("audio"),b:r("b"),base:r("base"),bdi:r("bdi"),bdo:r("bdo"),big:r("big"),blockquote:r("blockquote"),body:r("body"),br:r("br"),button:r("button"),canvas:r("canvas"),caption:r("caption"),cite:r("cite"),code:r("code"),col:r("col"),colgroup:r("colgroup"),data:r("data"),datalist:r("datalist"),dd:r("dd"),del:r("del"),details:r("details"),dfn:r("dfn"),dialog:r("dialog"),div:r("div"),dl:r("dl"),dt:r("dt"),em:r("em"),embed:r("embed"),fieldset:r("fieldset"),figcaption:r("figcaption"),figure:r("figure"),footer:r("footer"),form:r("form"),h1:r("h1"),h2:r("h2"),h3:r("h3"),h4:r("h4"),h5:r("h5"),h6:r("h6"),head:r("head"),header:r("header"),hgroup:r("hgroup"),hr:r("hr"),html:r("html"),i:r("i"),iframe:r("iframe"),img:r("img"),input:r("input"),ins:r("ins"),kbd:r("kbd"),keygen:r("keygen"),label:r("label"),legend:r("legend"),li:r("li"),link:r("link"),main:r("main"),map:r("map"),mark:r("mark"),menu:r("menu"),menuitem:r("menuitem"),meta:r("meta"),meter:r("meter"),nav:r("nav"),noscript:r("noscript"),object:r("object"),ol:r("ol"),optgroup:r("optgroup"),option:r("option"),output:r("output"),p:r("p"),param:r("param"),picture:r("picture"),pre:r("pre"),progress:r("progress"),q:r("q"),rp:r("rp"),rt:r("rt"),ruby:r("ruby"),s:r("s"),samp:r("samp"),script:r("script"),section:r("section"),select:r("select"),small:r("small"),source:r("source"),span:r("span"),strong:r("strong"),style:r("style"),sub:r("sub"),summary:r("summary"),sup:r("sup"),table:r("table"),tbody:r("tbody"),td:r("td"),textarea:r("textarea"),tfoot:r("tfoot"),th:r("th"),thead:r("thead"),time:r("time"),title:r("title"),tr:r("tr"),track:r("track"),u:r("u"),ul:r("ul"),var:r("var"),video:r("video"),wbr:r("wbr"),circle:r("circle"),clipPath:r("clipPath"),defs:r("defs"),ellipse:r("ellipse"),g:r("g"),image:r("image"),line:r("line"),linearGradient:r("linearGradient"),mask:r("mask"),path:r("path"),pattern:r("pattern"),polygon:r("polygon"),polyline:r("polyline"),radialGradient:r("radialGradient"),rect:r("rect"),stop:r("stop"),svg:r("svg"),text:r("text"),tspan:r("tspan")};e.exports=o},function(e,t,n){"use strict";var r=n(15).isValidElement,o=n(56);e.exports=o(r)},function(e,t,n){"use strict";var r=n(105),o=n(3),i=n(107),a=n(108),s=Function.call.bind(Object.prototype.hasOwnProperty);function u(){return null}e.exports=function(e,t){var n="function"==typeof Symbol&&Symbol.iterator;var l={array:f("array"),bool:f("boolean"),func:f("function"),number:f("number"),object:f("object"),string:f("string"),symbol:f("symbol"),any:d(u),arrayOf:function(e){return d((function(t,n,r,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var s=t[n];if(!Array.isArray(s))return new p("Invalid "+o+" `"+a+"` of type `"+m(s)+"` supplied to `"+r+"`, expected an array.");for(var u=0;u<s.length;u++){var l=e(s,u,r,o,a+"["+u+"]",i);if(l instanceof Error)return l}return null}))},element:d((function(t,n,r,o,i){var a=t[n];return e(a)?null:new p("Invalid "+o+" `"+i+"` of type `"+m(a)+"` supplied to `"+r+"`, expected a single ReactElement.")})),elementType:d((function(e,t,n,o,i){var a=e[t];return r.isValidElementType(a)?null:new p("Invalid "+o+" `"+i+"` of type `"+m(a)+"` supplied to `"+n+"`, expected a single ReactElement type.")})),instanceOf:function(e){return d((function(t,n,r,o,i){if(!(t[n]instanceof e)){var a=e.name||"<<anonymous>>";return new p("Invalid "+o+" `"+i+"` of type `"+function(e){if(!e.constructor||!e.constructor.name)return"<<anonymous>>";return e.constructor.name}(t[n])+"` supplied to `"+r+"`, expected instance of `"+a+"`.")}return null}))},node:d((function(e,t,n,r,o){return h(e[t])?null:new p("Invalid "+r+" `"+o+"` supplied to `"+n+"`, expected a ReactNode.")})),objectOf:function(e){return d((function(t,n,r,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var u=t[n],l=m(u);if("object"!==l)return new p("Invalid "+o+" `"+a+"` of type `"+l+"` supplied to `"+r+"`, expected an object.");for(var c in u)if(s(u,c)){var d=e(u,c,r,o,a+"."+c,i);if(d instanceof Error)return d}return null}))},oneOf:function(e){if(!Array.isArray(e))return u;return d((function(t,n,r,o,i){for(var a=t[n],s=0;s<e.length;s++)if(c(a,e[s]))return null;var u=JSON.stringify(e,(function(e,t){return"symbol"===g(t)?String(t):t}));return new p("Invalid "+o+" `"+i+"` of value `"+String(a)+"` supplied to `"+r+"`, expected one of "+u+".")}))},oneOfType:function(e){if(!Array.isArray(e))return u;for(var t=0;t<e.length;t++){var n=e[t];if("function"!=typeof n)return v(n),u}return d((function(t,n,r,o,a){for(var s=0;s<e.length;s++){if(null==(0,e[s])(t,n,r,o,a,i))return null}return new p("Invalid "+o+" `"+a+"` supplied to `"+r+"`.")}))},shape:function(e){return d((function(t,n,r,o,a){var s=t[n],u=m(s);if("object"!==u)return new p("Invalid "+o+" `"+a+"` of type `"+u+"` supplied to `"+r+"`, expected `object`.");for(var l in e){var c=e[l];if(c){var d=c(s,l,r,o,a+"."+l,i);if(d)return d}}return null}))},exact:function(e){return d((function(t,n,r,a,s){var u=t[n],l=m(u);if("object"!==l)return new p("Invalid "+a+" `"+s+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");var c=o({},t[n],e);for(var d in c){var f=e[d];if(!f)return new p("Invalid "+a+" `"+s+"` key `"+d+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=f(u,d,r,a,s+"."+d,i);if(h)return h}return null}))}};function c(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function p(e){this.message=e,this.stack=""}function d(e){function n(n,r,o,a,s,u,l){if((a=a||"<<anonymous>>",u=u||o,l!==i)&&t){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}return null==r[o]?n?null===r[o]?new p("The "+s+" `"+u+"` is marked as required in `"+a+"`, but its value is `null`."):new p("The "+s+" `"+u+"` is marked as required in `"+a+"`, but its value is `undefined`."):null:e(r,o,a,s,u)}var r=n.bind(null,!1);return r.isRequired=n.bind(null,!0),r}function f(e){return d((function(t,n,r,o,i,a){var s=t[n];return m(s)!==e?new p("Invalid "+o+" `"+i+"` of type `"+g(s)+"` supplied to `"+r+"`, expected `"+e+"`."):null}))}function h(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(h);if(null===t||e(t))return!0;var r=function(e){var t=e&&(n&&e[n]||e["@@iterator"]);if("function"==typeof t)return t}(t);if(!r)return!1;var o,i=r.call(t);if(r!==t.entries){for(;!(o=i.next()).done;)if(!h(o.value))return!1}else for(;!(o=i.next()).done;){var a=o.value;if(a&&!h(a[1]))return!1}return!0;default:return!1}}function m(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function g(e){if(null==e)return""+e;var t=m(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function v(e){var t=g(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return p.prototype=Error.prototype,l.checkPropTypes=a,l.resetWarningCache=a.resetWarningCache,l.PropTypes=l,l}},function(e,t,n){"use strict";e.exports=n(106)},function(e,t,n){"use strict";
|
26 |
+
/** @license React v16.13.1
|
27 |
+
* react-is.production.min.js
|
28 |
+
*
|
29 |
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
30 |
+
*
|
31 |
+
* This source code is licensed under the MIT license found in the
|
32 |
+
* LICENSE file in the root directory of this source tree.
|
33 |
+
*/var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,u=r?Symbol.for("react.profiler"):60114,l=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,h=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,g=r?Symbol.for("react.memo"):60115,v=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,_=r?Symbol.for("react.fundamental"):60117,b=r?Symbol.for("react.responder"):60118,E=r?Symbol.for("react.scope"):60119;function C(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case p:case d:case a:case u:case s:case h:return e;default:switch(e=e&&e.$$typeof){case c:case f:case v:case g:case l:return e;default:return t}}case i:return t}}}function w(e){return C(e)===d}t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=o,t.ForwardRef=f,t.Fragment=a,t.Lazy=v,t.Memo=g,t.Portal=i,t.Profiler=u,t.StrictMode=s,t.Suspense=h,t.isAsyncMode=function(e){return w(e)||C(e)===p},t.isConcurrentMode=w,t.isContextConsumer=function(e){return C(e)===c},t.isContextProvider=function(e){return C(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return C(e)===f},t.isFragment=function(e){return C(e)===a},t.isLazy=function(e){return C(e)===v},t.isMemo=function(e){return C(e)===g},t.isPortal=function(e){return C(e)===i},t.isProfiler=function(e){return C(e)===u},t.isStrictMode=function(e){return C(e)===s},t.isSuspense=function(e){return C(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===u||e===s||e===h||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===g||e.$$typeof===l||e.$$typeof===c||e.$$typeof===f||e.$$typeof===_||e.$$typeof===b||e.$$typeof===E||e.$$typeof===y)},t.typeOf=C},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";function r(e,t,n,r,o){}r.resetWarningCache=function(){0},e.exports=r},function(e,t,n){"use strict";e.exports="15.7.0"},function(e,t,n){"use strict";var r=n(52).Component,o=n(15).isValidElement,i=n(53),a=n(111);e.exports=a(r,o,i)},function(e,t,n){"use strict";var r=n(3),o={};function i(e,t,n,r,o,i,a,s){if(!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,s],c=0;(u=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw u.framesToPop=1,u}}e.exports=function(e,t,n){var a=[],s={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",UNSAFE_componentWillMount:"DEFINE_MANY",UNSAFE_componentWillReceiveProps:"DEFINE_MANY",UNSAFE_componentWillUpdate:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},u={getDerivedStateFromProps:"DEFINE_MANY_MERGED"},l={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var n=0;n<t.length;n++)p(e,t[n])},childContextTypes:function(e,t){e.childContextTypes=r({},e.childContextTypes,t)},contextTypes:function(e,t){e.contextTypes=r({},e.contextTypes,t)},getDefaultProps:function(e,t){e.getDefaultProps?e.getDefaultProps=f(e.getDefaultProps,t):e.getDefaultProps=t},propTypes:function(e,t){e.propTypes=r({},e.propTypes,t)},statics:function(e,t){!function(e,t){if(!t)return;for(var n in t){var r=t[n];if(t.hasOwnProperty(n)){if(i(!(n in l),'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n),n in e)return i("DEFINE_MANY_MERGED"===(u.hasOwnProperty(n)?u[n]:null),"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),void(e[n]=f(e[n],r));e[n]=r}}}(e,t)},autobind:function(){}};function c(e,t){var n=s.hasOwnProperty(t)?s[t]:null;y.hasOwnProperty(t)&&i("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&i("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function p(e,n){if(n){i("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),i(!t(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var r=e.prototype,o=r.__reactAutoBindPairs;for(var a in n.hasOwnProperty("mixins")&&l.mixins(e,n.mixins),n)if(n.hasOwnProperty(a)&&"mixins"!==a){var u=n[a],p=r.hasOwnProperty(a);if(c(p,a),l.hasOwnProperty(a))l[a](e,u);else{var d=s.hasOwnProperty(a);if("function"==typeof u&&!d&&!p&&!1!==n.autobind)o.push(a,u),r[a]=u;else if(p){var m=s[a];i(d&&("DEFINE_MANY_MERGED"===m||"DEFINE_MANY"===m),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",m,a),"DEFINE_MANY_MERGED"===m?r[a]=f(r[a],u):"DEFINE_MANY"===m&&(r[a]=h(r[a],u))}else r[a]=u}}}else;}function d(e,t){for(var n in i(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects."),t)t.hasOwnProperty(n)&&(i(void 0===e[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),e[n]=t[n]);return e}function f(e,t){return function(){var n=e.apply(this,arguments),r=t.apply(this,arguments);if(null==n)return r;if(null==r)return n;var o={};return d(o,n),d(o,r),o}}function h(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function m(e,t){return t.bind(e)}var g={componentDidMount:function(){this.__isMounted=!0}},v={componentWillUnmount:function(){this.__isMounted=!1}},y={replaceState:function(e,t){this.updater.enqueueReplaceState(this,e,t)},isMounted:function(){return!!this.__isMounted}},_=function(){};return r(_.prototype,e.prototype,y),function(e){var t=function(e,r,a){this.__reactAutoBindPairs.length&&function(e){for(var t=e.__reactAutoBindPairs,n=0;n<t.length;n+=2){var r=t[n],o=t[n+1];e[r]=m(e,o)}}(this),this.props=e,this.context=r,this.refs=o,this.updater=a||n,this.state=null;var s=this.getInitialState?this.getInitialState():null;i("object"==typeof s&&!Array.isArray(s),"%s.getInitialState(): must return an object or null",t.displayName||"ReactCompositeComponent"),this.state=s};for(var r in t.prototype=new _,t.prototype.constructor=t,t.prototype.__reactAutoBindPairs=[],a.forEach(p.bind(null,t)),p(t,g),p(t,e),p(t,v),t.getDefaultProps&&(t.defaultProps=t.getDefaultProps()),i(t.prototype.render,"createClass(...): Class specification must implement a `render` method."),s)t.prototype[r]||(t.prototype[r]=null);return t}}},function(e,t,n){"use strict";var r=n(18),o=n(15);n(0);e.exports=function(e){return o.isValidElement(e)||r("143"),e}},function(e,t,n){"use strict";var r=n(4),o=n(58),i=n(82),a=n(14),s=n(8),u=n(85),l=n(181),c=n(86),p=n(182);n(2);o.inject();var d={findDOMNode:l,render:i.render,unmountComponentAtNode:i.unmountComponentAtNode,version:u,unstable_batchedUpdates:s.batchedUpdates,unstable_renderSubtreeIntoContainer:p};"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject&&__REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ComponentTree:{getClosestInstanceFromNode:r.getClosestInstanceFromNode,getNodeFromInstance:function(e){return e._renderedComponent&&(e=c(e)),e?r.getNodeFromInstance(e):null}},Mount:i,Reconciler:a}),e.exports=d},function(e,t,n){"use strict";e.exports={Properties:{"aria-current":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},DOMAttributeNames:{},DOMPropertyNames:{}}},function(e,t,n){"use strict";var r=n(19),o=n(5),i=n(116),a=n(117),s=n(118),u=[9,13,27,32],l=o.canUseDOM&&"CompositionEvent"in window,c=null;o.canUseDOM&&"documentMode"in document&&(c=document.documentMode);var p,d=o.canUseDOM&&"TextEvent"in window&&!c&&!("object"==typeof(p=window.opera)&&"function"==typeof p.version&&parseInt(p.version(),10)<=12),f=o.canUseDOM&&(!l||c&&c>8&&c<=11);var h=String.fromCharCode(32),m={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},g=!1;function v(e,t){switch(e){case"topKeyUp":return-1!==u.indexOf(t.keyCode);case"topKeyDown":return 229!==t.keyCode;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function y(e){var t=e.detail;return"object"==typeof t&&"data"in t?t.data:null}var _=null;function b(e,t,n,o){var s,u;if(l?s=function(e){switch(e){case"topCompositionStart":return m.compositionStart;case"topCompositionEnd":return m.compositionEnd;case"topCompositionUpdate":return m.compositionUpdate}}(e):_?v(e,n)&&(s=m.compositionEnd):function(e,t){return"topKeyDown"===e&&229===t.keyCode}(e,n)&&(s=m.compositionStart),!s)return null;f&&(_||s!==m.compositionStart?s===m.compositionEnd&&_&&(u=_.getData()):_=i.getPooled(o));var c=a.getPooled(s,t,n,o);if(u)c.data=u;else{var p=y(n);null!==p&&(c.data=p)}return r.accumulateTwoPhaseDispatches(c),c}function E(e,t,n,o){var a;if(!(a=d?function(e,t){switch(e){case"topCompositionEnd":return y(t);case"topKeyPress":return 32!==t.which?null:(g=!0,h);case"topTextInput":var n=t.data;return n===h&&g?null:n;default:return null}}(e,n):function(e,t){if(_){if("topCompositionEnd"===e||!l&&v(e,t)){var n=_.getData();return i.release(_),_=null,n}return null}switch(e){case"topPaste":return null;case"topKeyPress":return t.which&&!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&&!(e.ctrlKey&&e.altKey)}(t)?String.fromCharCode(t.which):null;case"topCompositionEnd":return f?null:t.data;default:return null}}(e,n)))return null;var u=s.getPooled(m.beforeInput,t,n,o);return u.data=a,r.accumulateTwoPhaseDispatches(u),u}var C={eventTypes:m,extractEvents:function(e,t,n,r){return[b(e,t,n,r),E(e,t,n,r)]}};e.exports=C},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(61);function a(e){this._root=e,this._startText=this.getText(),this._fallbackText=null}r(a.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[i()]},getData:function(){if(this._fallbackText)return this._fallbackText;var e,t,n=this._startText,r=n.length,o=this.getText(),i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);var s=t>1?1-t:void 0;return this._fallbackText=o.slice(e,s),this._fallbackText}}),o.addPoolingTo(a),e.exports=a},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(20),o=n(19),i=n(5),a=n(4),s=n(8),u=n(11),l=n(64),c=n(34),p=n(35),d=n(65),f={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}};function h(e,t,n){var r=u.getPooled(f.change,e,t,n);return r.type="change",o.accumulateTwoPhaseDispatches(r),r}var m=null,g=null;var v=!1;function y(e){var t=h(g,e,c(e));s.batchedUpdates(_,t)}function _(e){r.enqueueEvents(e),r.processEventQueue(!1)}function b(){m&&(m.detachEvent("onchange",y),m=null,g=null)}function E(e,t){var n=l.updateValueIfChanged(e),r=!0===t.simulated&&M._allowSimulatedPassThrough;if(n||r)return e}function C(e,t){if("topChange"===e)return t}function w(e,t,n){"topFocus"===e?(b(),function(e,t){g=t,(m=e).attachEvent("onchange",y)}(t,n)):"topBlur"===e&&b()}i.canUseDOM&&(v=p("change")&&(!document.documentMode||document.documentMode>8));var x=!1;function T(){m&&(m.detachEvent("onpropertychange",k),m=null,g=null)}function k(e){"value"===e.propertyName&&E(g,e)&&y(e)}function S(e,t,n){"topFocus"===e?(T(),function(e,t){g=t,(m=e).attachEvent("onpropertychange",k)}(t,n)):"topBlur"===e&&T()}function P(e,t,n){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return E(g,n)}function I(e,t,n){if("topClick"===e)return E(t,n)}function N(e,t,n){if("topInput"===e||"topChange"===e)return E(t,n)}i.canUseDOM&&(x=p("input")&&(!document.documentMode||document.documentMode>9));var M={eventTypes:f,_allowSimulatedPassThrough:!0,_isInputEventSupported:x,extractEvents:function(e,t,n,r){var o,i,s,u,l=t?a.getNodeFromInstance(t):window;if("select"===(u=(s=l).nodeName&&s.nodeName.toLowerCase())||"input"===u&&"file"===s.type?v?o=C:i=w:d(l)?x?o=N:(o=P,i=S):function(e){var t=e.nodeName;return t&&"input"===t.toLowerCase()&&("checkbox"===e.type||"radio"===e.type)}(l)&&(o=I),o){var c=o(e,t,n);if(c)return h(c,n,r)}i&&i(e,l,t),"topBlur"===e&&function(e,t){if(null!=e){var n=e._wrapperState||t._wrapperState;if(n&&n.controlled&&"number"===t.type){var r=""+t.value;t.getAttribute("value")!==r&&t.setAttribute("value",r)}}}(t,l)}};e.exports=M},function(e,t,n){"use strict";var r=n(121),o={};o.attachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(t.getPublicInstance()):r.addComponentAsRefTo(t,e,n)}(n,e,t._owner)}},o.shouldUpdateRefs=function(e,t){var n=null,r=null;null!==e&&"object"==typeof e&&(n=e.ref,r=e._owner);var o=null,i=null;return null!==t&&"object"==typeof t&&(o=t.ref,i=t._owner),n!==o||"string"==typeof o&&i!==r},o.detachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(null):r.removeComponentAsRefFrom(t,e,n)}(n,e,t._owner)}},e.exports=o},function(e,t,n){"use strict";var r=n(1);n(0);function o(e){return!(!e||"function"!=typeof e.attachRef||"function"!=typeof e.detachRef)}var i={addComponentAsRefTo:function(e,t,n){o(n)||r("119"),n.attachRef(t,e)},removeComponentAsRefFrom:function(e,t,n){o(n)||r("120");var i=n.getPublicInstance();i&&i.refs[t]===e.getPublicInstance()&&n.detachRef(t)}};e.exports=i},function(e,t,n){"use strict";e.exports=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"]},function(e,t,n){"use strict";var r=n(19),o=n(4),i=n(25),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},s={eventTypes:a,extractEvents:function(e,t,n,s){if("topMouseOver"===e&&(n.relatedTarget||n.fromElement))return null;if("topMouseOut"!==e&&"topMouseOver"!==e)return null;var u,l,c;if(s.window===s)u=s;else{var p=s.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if("topMouseOut"===e){l=t;var d=n.relatedTarget||n.toElement;c=d?o.getClosestInstanceFromNode(d):null}else l=null,c=t;if(l===c)return null;var f=null==l?u:o.getNodeFromInstance(l),h=null==c?u:o.getNodeFromInstance(c),m=i.getPooled(a.mouseLeave,l,n,s);m.type="mouseleave",m.target=f,m.relatedTarget=h;var g=i.getPooled(a.mouseEnter,c,n,s);return g.type="mouseenter",g.target=h,g.relatedTarget=f,r.accumulateEnterLeaveDispatches(m,g,l,c),[m,g]}};e.exports=s},function(e,t,n){"use strict";var r=n(16),o=r.injection.MUST_USE_PROPERTY,i=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,s=r.injection.HAS_POSITIVE_NUMERIC_VALUE,u=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,l={isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:i,allowTransparency:0,alt:0,as:0,async:i,autoComplete:0,autoPlay:i,capture:i,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:o|i,cite:0,classID:0,className:0,cols:s,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:i,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:i,defer:i,dir:0,disabled:i,download:u,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:i,formTarget:0,frameBorder:0,headers:0,height:0,hidden:i,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:i,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:o|i,muted:o|i,name:0,nonce:0,noValidate:i,open:i,optimum:0,pattern:0,placeholder:0,playsInline:i,poster:0,preload:0,profile:0,radioGroup:0,readOnly:i,referrerPolicy:0,rel:0,required:i,reversed:i,role:0,rows:s,rowSpan:a,sandbox:0,scope:0,scoped:i,scrolling:0,seamless:i,selected:o|i,shape:0,size:s,sizes:0,span:s,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:i,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");("number"!==e.type||!1===e.hasAttribute("value")||e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e)&&e.setAttribute("value",""+t)}}};e.exports=l},function(e,t,n){"use strict";var r=n(37),o={processChildrenUpdates:n(130).dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(5),a=n(127),s=n(9),u=(n(0),{dangerouslyReplaceNodeWithMarkup:function(e,t){if(i.canUseDOM||r("56"),t||r("57"),"HTML"===e.nodeName&&r("58"),"string"==typeof t){var n=a(t,s)[0];e.parentNode.replaceChild(n,e)}else o.replaceChildWithTree(e,t)}});e.exports=u},function(e,t,n){"use strict";var r=n(5),o=n(128),i=n(129),a=n(0),s=r.canUseDOM?document.createElement("div"):null,u=/^\s*<(\w+)/;e.exports=function(e,t){var n=s;s||a(!1);var r=function(e){var t=e.match(u);return t&&t[1].toLowerCase()}(e),l=r&&i(r);if(l){n.innerHTML=l[1]+e+l[2];for(var c=l[0];c--;)n=n.lastChild}else n.innerHTML=e;var p=n.getElementsByTagName("script");p.length&&(t||a(!1),o(p).forEach(t));for(var d=Array.from(n.childNodes);n.lastChild;)n.removeChild(n.lastChild);return d}},function(e,t,n){"use strict";var r=n(0);e.exports=function(e){return function(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"length"in e&&!("setInterval"in e)&&"number"!=typeof e.nodeType&&(Array.isArray(e)||"callee"in e||"item"in e)}(e)?Array.isArray(e)?e.slice():function(e){var t=e.length;if((Array.isArray(e)||"object"!=typeof e&&"function"!=typeof e)&&r(!1),"number"!=typeof t&&r(!1),0===t||t-1 in e||r(!1),"function"==typeof e.callee&&r(!1),e.hasOwnProperty)try{return Array.prototype.slice.call(e)}catch(e){}for(var n=Array(t),o=0;o<t;o++)n[o]=e[o];return n}(e):[e]}},function(e,t,n){"use strict";var r=n(5),o=n(0),i=r.canUseDOM?document.createElement("div"):null,a={},s=[1,'<select multiple="true">',"</select>"],u=[1,"<table>","</table>"],l=[3,"<table><tbody><tr>","</tr></tbody></table>"],c=[1,'<svg xmlns="http://www.w3.org/2000/svg">',"</svg>"],p={"*":[1,"?<div>","</div>"],area:[1,"<map>","</map>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],legend:[1,"<fieldset>","</fieldset>"],param:[1,"<object>","</object>"],tr:[2,"<table><tbody>","</tbody></table>"],optgroup:s,option:s,caption:u,colgroup:u,tbody:u,tfoot:u,thead:u,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach((function(e){p[e]=c,a[e]=!0})),e.exports=function(e){return i||o(!1),p.hasOwnProperty(e)||(e="*"),a.hasOwnProperty(e)||(i.innerHTML="*"===e?"<link />":"<"+e+"></"+e+">",a[e]=!i.firstChild),a[e]?p[e]:null}},function(e,t,n){"use strict";var r=n(37),o=n(4),i={dangerouslyProcessChildrenUpdates:function(e,t){var n=o.getNodeFromInstance(e);r.processUpdates(n,t)}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(132),a=n(133),s=n(17),u=n(38),l=n(16),c=n(70),p=n(20),d=n(31),f=n(28),h=n(57),m=n(4),g=n(143),v=n(145),y=n(71),_=n(146),b=(n(7),n(147)),E=n(77),C=(n(9),n(27)),w=(n(0),n(35),n(43),n(64)),x=(n(47),n(2),h),T=p.deleteListener,k=m.getNodeFromInstance,S=f.listenTo,P=d.registrationNameModules,I={string:!0,number:!0},N={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null};function M(e,t){t&&(q[e._tag]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&r("137",e._tag,e._currentElement._owner?" Check the render method of "+e._currentElement._owner.getName()+".":""),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&r("60"),"object"==typeof t.dangerouslySetInnerHTML&&"__html"in t.dangerouslySetInnerHTML||r("61")),null!=t.style&&"object"!=typeof t.style&&r("62",function(e){if(e){var t=e._currentElement._owner||null;if(t){var n=t.getName();if(n)return" This DOM node was rendered by `"+n+"`."}}return""}(e)))}function O(e,t,n,r){if(!(r instanceof E)){0;var o=e._hostContainerInfo,i=o._node&&11===o._node.nodeType?o._node:o._ownerDocument;S(t,i),r.getReactMountReady().enqueue(R,{inst:e,registrationName:t,listener:n})}}function R(){p.putListener(this.inst,this.registrationName,this.listener)}function A(){g.postMountWrapper(this)}function L(){_.postMountWrapper(this)}function D(){v.postMountWrapper(this)}var U={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"};function j(){w.track(this)}function F(){this._rootNodeID||r("63");var e=k(this);switch(e||r("64"),this._tag){case"iframe":case"object":this._wrapperState.listeners=[f.trapBubbledEvent("topLoad","load",e)];break;case"video":case"audio":for(var t in this._wrapperState.listeners=[],U)U.hasOwnProperty(t)&&this._wrapperState.listeners.push(f.trapBubbledEvent(t,U[t],e));break;case"source":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e)];break;case"img":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e),f.trapBubbledEvent("topLoad","load",e)];break;case"form":this._wrapperState.listeners=[f.trapBubbledEvent("topReset","reset",e),f.trapBubbledEvent("topSubmit","submit",e)];break;case"input":case"select":case"textarea":this._wrapperState.listeners=[f.trapBubbledEvent("topInvalid","invalid",e)]}}function B(){y.postUpdateWrapper(this)}var W={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},z={listing:!0,pre:!0,textarea:!0},q=o({menuitem:!0},W),V=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,H={},Y={}.hasOwnProperty;function K(e,t){return e.indexOf("-")>=0||null!=t.is}var $=1;function G(e){var t=e.type;!function(e){Y.call(H,e)||(V.test(e)||r("65",e),H[e]=!0)}(t),this._currentElement=e,this._tag=t.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null,this._flags=0}G.displayName="ReactDOMComponent",G.Mixin={mountComponent:function(e,t,n,r){this._rootNodeID=$++,this._domID=n._idCounter++,this._hostParent=t,this._hostContainerInfo=n;var o,a,l,p=this._currentElement.props;switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},e.getReactMountReady().enqueue(F,this);break;case"input":g.mountWrapper(this,p,t),p=g.getHostProps(this,p),e.getReactMountReady().enqueue(j,this),e.getReactMountReady().enqueue(F,this);break;case"option":v.mountWrapper(this,p,t),p=v.getHostProps(this,p);break;case"select":y.mountWrapper(this,p,t),p=y.getHostProps(this,p),e.getReactMountReady().enqueue(F,this);break;case"textarea":_.mountWrapper(this,p,t),p=_.getHostProps(this,p),e.getReactMountReady().enqueue(j,this),e.getReactMountReady().enqueue(F,this)}if(M(this,p),null!=t?(o=t._namespaceURI,a=t._tag):n._tag&&(o=n._namespaceURI,a=n._tag),(null==o||o===u.svg&&"foreignobject"===a)&&(o=u.html),o===u.html&&("svg"===this._tag?o=u.svg:"math"===this._tag&&(o=u.mathml)),this._namespaceURI=o,e.useCreateElement){var d,f=n._ownerDocument;if(o===u.html)if("script"===this._tag){var h=f.createElement("div"),b=this._currentElement.type;h.innerHTML="<"+b+"></"+b+">",d=h.removeChild(h.firstChild)}else d=p.is?f.createElement(this._currentElement.type,p.is):f.createElement(this._currentElement.type);else d=f.createElementNS(o,this._currentElement.type);m.precacheNode(this,d),this._flags|=x.hasCachedChildNodes,this._hostParent||c.setAttributeForRoot(d),this._updateDOMProperties(null,p,e);var E=s(d);this._createInitialChildren(e,p,r,E),l=E}else{var C=this._createOpenTagMarkupAndPutListeners(e,p),w=this._createContentMarkup(e,p,r);l=!w&&W[this._tag]?C+"/>":C+">"+w+"</"+this._currentElement.type+">"}switch(this._tag){case"input":e.getReactMountReady().enqueue(A,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"textarea":e.getReactMountReady().enqueue(L,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"select":case"button":p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"option":e.getReactMountReady().enqueue(D,this)}return l},_createOpenTagMarkupAndPutListeners:function(e,t){var n="<"+this._currentElement.type;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];if(null!=i)if(P.hasOwnProperty(r))i&&O(this,r,i,e);else{"style"===r&&(i&&(i=this._previousStyleCopy=o({},t.style)),i=a.createMarkupForStyles(i,this));var s=null;null!=this._tag&&K(this._tag,t)?N.hasOwnProperty(r)||(s=c.createMarkupForCustomAttribute(r,i)):s=c.createMarkupForProperty(r,i),s&&(n+=" "+s)}}return e.renderToStaticMarkup?n:(this._hostParent||(n+=" "+c.createMarkupForRoot()),n+=" "+c.createMarkupForID(this._domID))},_createContentMarkup:function(e,t,n){var r="",o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&(r=o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)r=C(i);else if(null!=a){r=this.mountChildren(a,e,n).join("")}}return z[this._tag]&&"\n"===r.charAt(0)?"\n"+r:r},_createInitialChildren:function(e,t,n,r){var o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&s.queueHTML(r,o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)""!==i&&s.queueText(r,i);else if(null!=a)for(var u=this.mountChildren(a,e,n),l=0;l<u.length;l++)s.queueChild(r,u[l])}},receiveComponent:function(e,t,n){var r=this._currentElement;this._currentElement=e,this.updateComponent(t,r,e,n)},updateComponent:function(e,t,n,r){var o=t.props,i=this._currentElement.props;switch(this._tag){case"input":o=g.getHostProps(this,o),i=g.getHostProps(this,i);break;case"option":o=v.getHostProps(this,o),i=v.getHostProps(this,i);break;case"select":o=y.getHostProps(this,o),i=y.getHostProps(this,i);break;case"textarea":o=_.getHostProps(this,o),i=_.getHostProps(this,i)}switch(M(this,i),this._updateDOMProperties(o,i,e),this._updateDOMChildren(o,i,e,r),this._tag){case"input":g.updateWrapper(this),w.updateValueIfChanged(this);break;case"textarea":_.updateWrapper(this);break;case"select":e.getReactMountReady().enqueue(B,this)}},_updateDOMProperties:function(e,t,n){var r,i,s;for(r in e)if(!t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&null!=e[r])if("style"===r){var u=this._previousStyleCopy;for(i in u)u.hasOwnProperty(i)&&((s=s||{})[i]="");this._previousStyleCopy=null}else P.hasOwnProperty(r)?e[r]&&T(this,r):K(this._tag,e)?N.hasOwnProperty(r)||c.deleteValueForAttribute(k(this),r):(l.properties[r]||l.isCustomAttribute(r))&&c.deleteValueForProperty(k(this),r);for(r in t){var p=t[r],d="style"===r?this._previousStyleCopy:null!=e?e[r]:void 0;if(t.hasOwnProperty(r)&&p!==d&&(null!=p||null!=d))if("style"===r)if(p?p=this._previousStyleCopy=o({},p):this._previousStyleCopy=null,d){for(i in d)!d.hasOwnProperty(i)||p&&p.hasOwnProperty(i)||((s=s||{})[i]="");for(i in p)p.hasOwnProperty(i)&&d[i]!==p[i]&&((s=s||{})[i]=p[i])}else s=p;else if(P.hasOwnProperty(r))p?O(this,r,p,n):d&&T(this,r);else if(K(this._tag,t))N.hasOwnProperty(r)||c.setValueForAttribute(k(this),r,p);else if(l.properties[r]||l.isCustomAttribute(r)){var f=k(this);null!=p?c.setValueForProperty(f,r,p):c.deleteValueForProperty(f,r)}}s&&a.setValueForStyles(k(this),s,this)},_updateDOMChildren:function(e,t,n,r){var o=I[typeof e.children]?e.children:null,i=I[typeof t.children]?t.children:null,a=e.dangerouslySetInnerHTML&&e.dangerouslySetInnerHTML.__html,s=t.dangerouslySetInnerHTML&&t.dangerouslySetInnerHTML.__html,u=null!=o?null:e.children,l=null!=i?null:t.children,c=null!=o||null!=a,p=null!=i||null!=s;null!=u&&null==l?this.updateChildren(null,n,r):c&&!p&&this.updateTextContent(""),null!=i?o!==i&&this.updateTextContent(""+i):null!=s?a!==s&&this.updateMarkup(""+s):null!=l&&this.updateChildren(l,n,r)},getHostNode:function(){return k(this)},unmountComponent:function(e){switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":var t=this._wrapperState.listeners;if(t)for(var n=0;n<t.length;n++)t[n].remove();break;case"input":case"textarea":w.stopTracking(this);break;case"html":case"head":case"body":r("66",this._tag)}this.unmountChildren(e),m.uncacheNode(this),p.deleteAllListeners(this),this._rootNodeID=0,this._domID=0,this._wrapperState=null},getPublicInstance:function(){return k(this)}},o(G.prototype,G.Mixin,b.Mixin),e.exports=G},function(e,t,n){"use strict";var r=n(4),o=n(68),i={focusDOMComponent:function(){o(r.getNodeFromInstance(this))}};e.exports=i},function(e,t,n){"use strict";var r=n(69),o=n(5),i=(n(7),n(134),n(136)),a=n(137),s=n(139),u=(n(2),s((function(e){return a(e)}))),l=!1,c="cssFloat";if(o.canUseDOM){var p=document.createElement("div").style;try{p.font=""}catch(e){l=!0}void 0===document.documentElement.style.cssFloat&&(c="styleFloat")}var d={createMarkupForStyles:function(e,t){var n="";for(var r in e)if(e.hasOwnProperty(r)){var o=0===r.indexOf("--"),a=e[r];0,null!=a&&(n+=u(r)+":",n+=i(r,a,t,o)+";")}return n||null},setValueForStyles:function(e,t,n){var o=e.style;for(var a in t)if(t.hasOwnProperty(a)){var s=0===a.indexOf("--");0;var u=i(a,t[a],n,s);if("float"!==a&&"cssFloat"!==a||(a=c),s)o.setProperty(a,u);else if(u)o[a]=u;else{var p=l&&r.shorthandPropertyExpansions[a];if(p)for(var d in p)o[d]="";else o[a]=""}}}};e.exports=d},function(e,t,n){"use strict";var r=n(135),o=/^-ms-/;e.exports=function(e){return r(e.replace(o,"ms-"))}},function(e,t,n){"use strict";var r=/-(.)/g;e.exports=function(e){return e.replace(r,(function(e,t){return t.toUpperCase()}))}},function(e,t,n){"use strict";var r=n(69),o=(n(2),r.isUnitlessNumber);e.exports=function(e,t,n,r){if(null==t||"boolean"==typeof t||""===t)return"";var i=isNaN(t);return r||i||0===t||o.hasOwnProperty(e)&&o[e]?""+t:("string"==typeof t&&(t=t.trim()),t+"px")}},function(e,t,n){"use strict";var r=n(138),o=/^ms-/;e.exports=function(e){return r(e).replace(o,"-ms-")}},function(e,t,n){"use strict";var r=/([A-Z])/g;e.exports=function(e){return e.replace(r,"-$1").toLowerCase()}},function(e,t,n){"use strict";e.exports=function(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}},function(e,t,n){"use strict";var r=n(27);e.exports=function(e){return'"'+r(e)+'"'}},function(e,t,n){"use strict";var r=n(20);var o={handleTopLevel:function(e,t,n,o){!function(e){r.enqueueEvents(e),r.processEventQueue(!1)}(r.extractEvents(e,t,n,o))}};e.exports=o},function(e,t,n){"use strict";var r=n(5);function o(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}var i={animationend:o("Animation","AnimationEnd"),animationiteration:o("Animation","AnimationIteration"),animationstart:o("Animation","AnimationStart"),transitionend:o("Transition","TransitionEnd")},a={},s={};r.canUseDOM&&(s=document.createElement("div").style,"AnimationEvent"in window||(delete i.animationend.animation,delete i.animationiteration.animation,delete i.animationstart.animation),"TransitionEvent"in window||delete i.transitionend.transition),e.exports=function(e){if(a[e])return a[e];if(!i[e])return e;var t=i[e];for(var n in t)if(t.hasOwnProperty(n)&&n in s)return a[e]=t[n];return""}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(70),a=n(40),s=n(4),u=n(8);n(0),n(2);function l(){this._rootNodeID&&p.updateWrapper(this)}function c(e){return"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}var p={getHostProps:function(e,t){var n=a.getValue(t),r=a.getChecked(t);return o({type:void 0,step:void 0,min:void 0,max:void 0},t,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:e._wrapperState.initialValue,checked:null!=r?r:e._wrapperState.initialChecked,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:null!=t.value?t.value:n,listeners:null,onChange:d.bind(e),controlled:c(t)}},updateWrapper:function(e){var t=e._currentElement.props,n=t.checked;null!=n&&i.setValueForProperty(s.getNodeFromInstance(e),"checked",n||!1);var r=s.getNodeFromInstance(e),o=a.getValue(t);if(null!=o)if(0===o&&""===r.value)r.value="0";else if("number"===t.type){var u=parseFloat(r.value,10)||0;(o!=u||o==u&&r.value!=o)&&(r.value=""+o)}else r.value!==""+o&&(r.value=""+o);else null==t.value&&null!=t.defaultValue&&r.defaultValue!==""+t.defaultValue&&(r.defaultValue=""+t.defaultValue),null==t.checked&&null!=t.defaultChecked&&(r.defaultChecked=!!t.defaultChecked)},postMountWrapper:function(e){var t=e._currentElement.props,n=s.getNodeFromInstance(e);switch(t.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":n.value="",n.value=n.defaultValue;break;default:n.value=n.value}var r=n.name;""!==r&&(n.name=""),n.defaultChecked=!n.defaultChecked,n.defaultChecked=!n.defaultChecked,""!==r&&(n.name=r)}};function d(e){var t=this._currentElement.props,n=a.executeOnChange(t,e);u.asap(l,this);var o=t.name;if("radio"===t.type&&null!=o){for(var i=s.getNodeFromInstance(this),c=i;c.parentNode;)c=c.parentNode;for(var p=c.querySelectorAll("input[name="+JSON.stringify(""+o)+'][type="radio"]'),d=0;d<p.length;d++){var f=p[d];if(f!==i&&f.form===i.form){var h=s.getInstanceFromNode(f);h||r("90"),u.asap(l,h)}}}return n}e.exports=p},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(3),o=n(12),i=n(4),a=n(71),s=(n(2),!1);function u(e){var t="";return o.Children.forEach(e,(function(e){null!=e&&("string"==typeof e||"number"==typeof e?t+=e:s||(s=!0))})),t}var l={mountWrapper:function(e,t,n){var r=null;if(null!=n){var o=n;"optgroup"===o._tag&&(o=o._hostParent),null!=o&&"select"===o._tag&&(r=a.getSelectValueContext(o))}var i,s=null;if(null!=r)if(i=null!=t.value?t.value+"":u(t.children),s=!1,Array.isArray(r)){for(var l=0;l<r.length;l++)if(""+r[l]===i){s=!0;break}}else s=""+r===i;e._wrapperState={selected:s}},postMountWrapper:function(e){var t=e._currentElement.props;null!=t.value&&i.getNodeFromInstance(e).setAttribute("value",t.value)},getHostProps:function(e,t){var n=r({selected:void 0,children:void 0},t);null!=e._wrapperState.selected&&(n.selected=e._wrapperState.selected);var o=u(t.children);return o&&(n.children=o),n}};e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(40),a=n(4),s=n(8);n(0),n(2);function u(){this._rootNodeID&&l.updateWrapper(this)}var l={getHostProps:function(e,t){return null!=t.dangerouslySetInnerHTML&&r("91"),o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=i.getValue(t),o=n;if(null==n){var a=t.defaultValue,s=t.children;null!=s&&(null!=a&&r("92"),Array.isArray(s)&&(s.length<=1||r("93"),s=s[0]),a=""+s),null==a&&(a=""),o=a}e._wrapperState={initialValue:""+o,listeners:null,onChange:c.bind(e)}},updateWrapper:function(e){var t=e._currentElement.props,n=a.getNodeFromInstance(e),r=i.getValue(t);if(null!=r){var o=""+r;o!==n.value&&(n.value=o),null==t.defaultValue&&(n.defaultValue=o)}null!=t.defaultValue&&(n.defaultValue=t.defaultValue)},postMountWrapper:function(e){var t=a.getNodeFromInstance(e),n=t.textContent;n===e._wrapperState.initialValue&&(t.value=n)}};function c(e){var t=this._currentElement.props,n=i.executeOnChange(t,e);return s.asap(u,this),n}e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(41),i=(n(22),n(7),n(10),n(14)),a=n(148),s=(n(9),n(153));n(0);function u(e,t){return t&&(e=e||[]).push(t),e}function l(e,t){o.processChildrenUpdates(e,t)}var c={Mixin:{_reconcilerInstantiateChildren:function(e,t,n){return a.instantiateChildren(e,t,n)},_reconcilerUpdateChildren:function(e,t,n,r,o,i){var u;return u=s(t,0),a.updateChildren(e,u,n,r,o,this,this._hostContainerInfo,i,0),u},mountChildren:function(e,t,n){var r=this._reconcilerInstantiateChildren(e,t,n);this._renderedChildren=r;var o=[],a=0;for(var s in r)if(r.hasOwnProperty(s)){var u=r[s];0;var l=i.mountComponent(u,t,this,this._hostContainerInfo,n,0);u._mountIndex=a++,o.push(l)}return o},updateTextContent:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"TEXT_CONTENT",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateMarkup:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"SET_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateChildren:function(e,t,n){this._updateChildren(e,t,n)},_updateChildren:function(e,t,n){var r=this._renderedChildren,o={},a=[],s=this._reconcilerUpdateChildren(r,e,a,o,t,n);if(s||r){var c,p=null,d=0,f=0,h=0,m=null;for(c in s)if(s.hasOwnProperty(c)){var g=r&&r[c],v=s[c];g===v?(p=u(p,this.moveChild(g,m,d,f)),f=Math.max(g._mountIndex,f),g._mountIndex=d):(g&&(f=Math.max(g._mountIndex,f)),p=u(p,this._mountChildAtIndex(v,a[h],m,d,t,n)),h++),d++,m=i.getHostNode(v)}for(c in o)o.hasOwnProperty(c)&&(p=u(p,this._unmountChild(r[c],o[c])));p&&l(this,p),this._renderedChildren=s}},unmountChildren:function(e){var t=this._renderedChildren;a.unmountChildren(t,e),this._renderedChildren=null},moveChild:function(e,t,n,r){if(e._mountIndex<r)return function(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._mountIndex,fromNode:i.getHostNode(e),toIndex:n,afterNode:t}}(e,t,n)},createChild:function(e,t,n){return function(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:n,afterNode:t}}(n,t,e._mountIndex)},removeChild:function(e,t){return function(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._mountIndex,fromNode:t,toIndex:null,afterNode:null}}(e,t)},_mountChildAtIndex:function(e,t,n,r,o,i){return e._mountIndex=r,this.createChild(e,n,t)},_unmountChild:function(e,t){var n=this.removeChild(e,t);return e._mountIndex=null,n}}};e.exports=c},function(e,t,n){"use strict";(function(t){var r=n(14),o=n(42),i=(n(45),n(44)),a=n(75);n(2);function s(e,t,n,r){var i=void 0===e[n];null!=t&&i&&(e[n]=o(t,!0))}void 0!==t&&Object({NODE_ENV:"production"});var u={instantiateChildren:function(e,t,n,r){if(null==e)return null;var o={};return a(e,s,o),o},updateChildren:function(e,t,n,a,s,u,l,c,p){if(t||e){var d,f;for(d in t)if(t.hasOwnProperty(d)){var h=(f=e&&e[d])&&f._currentElement,m=t[d];if(null!=f&&i(h,m))r.receiveComponent(f,m,s,c),t[d]=f;else{f&&(a[d]=r.getHostNode(f),r.unmountComponent(f,!1));var g=o(m,!0);t[d]=g;var v=r.mountComponent(g,s,u,l,c,p);n.push(v)}}for(d in e)!e.hasOwnProperty(d)||t&&t.hasOwnProperty(d)||(f=e[d],a[d]=r.getHostNode(f),r.unmountComponent(f,!1))}},unmountChildren:function(e,t){for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];r.unmountComponent(o,t)}}};e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(12),a=n(41),s=n(10),u=n(33),l=n(22),c=(n(7),n(72)),p=n(14),d=n(23),f=(n(0),n(43)),h=n(44),m=(n(2),0),g=1,v=2;function y(e){}function _(e,t){0}y.prototype.render=function(){var e=l.get(this)._currentElement.type,t=e(this.props,this.context,this.updater);return _(e,t),t};var b=1,E={construct:function(e){this._currentElement=e,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(e,t,n,o){this._context=o,this._mountOrder=b++,this._hostParent=t,this._hostContainerInfo=n;var a,s=this._currentElement.props,u=this._processContext(o),c=this._currentElement.type,p=e.getUpdateQueue(),f=function(e){return!(!e.prototype||!e.prototype.isReactComponent)}(c),h=this._constructComponent(f,s,u,p);f||null!=h&&null!=h.render?!function(e){return!(!e.prototype||!e.prototype.isPureReactComponent)}(c)?this._compositeType=m:this._compositeType=g:(a=h,_(),null===h||!1===h||i.isValidElement(h)||r("105",c.displayName||c.name||"Component"),h=new y(c),this._compositeType=v),h.props=s,h.context=u,h.refs=d,h.updater=p,this._instance=h,l.set(h,this);var E,C=h.state;return void 0===C&&(h.state=C=null),("object"!=typeof C||Array.isArray(C))&&r("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,E=h.unstable_handleError?this.performInitialMountWithErrorHandling(a,t,n,e,o):this.performInitialMount(a,t,n,e,o),h.componentDidMount&&e.getReactMountReady().enqueue(h.componentDidMount,h),E},_constructComponent:function(e,t,n,r){return this._constructComponentWithoutOwner(e,t,n,r)},_constructComponentWithoutOwner:function(e,t,n,r){var o=this._currentElement.type;return e?new o(t,n,r):o(t,n,r)},performInitialMountWithErrorHandling:function(e,t,n,r,o){var i,a=r.checkpoint();try{i=this.performInitialMount(e,t,n,r,o)}catch(s){r.rollback(a),this._instance.unstable_handleError(s),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),i=this.performInitialMount(e,t,n,r,o)}return i},performInitialMount:function(e,t,n,r,o){var i=this._instance;i.componentWillMount&&(i.componentWillMount(),this._pendingStateQueue&&(i.state=this._processPendingState(i.props,i.context))),void 0===e&&(e=this._renderValidatedComponent());var a=c.getType(e);this._renderedNodeType=a;var s=this._instantiateReactComponent(e,a!==c.EMPTY);return this._renderedComponent=s,p.mountComponent(s,r,t,n,this._processChildContext(o),0)},getHostNode:function(){return p.getHostNode(this._renderedComponent)},unmountComponent:function(e){if(this._renderedComponent){var t=this._instance;if(t.componentWillUnmount&&!t._calledComponentWillUnmount)if(t._calledComponentWillUnmount=!0,e){var n=this.getName()+".componentWillUnmount()";u.invokeGuardedCallback(n,t.componentWillUnmount.bind(t))}else t.componentWillUnmount();this._renderedComponent&&(p.unmountComponent(this._renderedComponent,e),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,l.remove(t)}},_maskContext:function(e){var t=this._currentElement.type.contextTypes;if(!t)return d;var n={};for(var r in t)n[r]=e[r];return n},_processContext:function(e){return this._maskContext(e)},_processChildContext:function(e){var t,n=this._currentElement.type,i=this._instance;if(i.getChildContext&&(t=i.getChildContext()),t){for(var a in"object"!=typeof n.childContextTypes&&r("107",this.getName()||"ReactCompositeComponent"),t)a in n.childContextTypes||r("108",this.getName()||"ReactCompositeComponent",a);return o({},e,t)}return e},_checkContextTypes:function(e,t,n){0},receiveComponent:function(e,t,n){var r=this._currentElement,o=this._context;this._pendingElement=null,this.updateComponent(t,r,e,o,n)},performUpdateIfNecessary:function(e){null!=this._pendingElement?p.receiveComponent(this,this._pendingElement,e,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(e,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(e,t,n,o,i){var a=this._instance;null==a&&r("136",this.getName()||"ReactCompositeComponent");var s,u=!1;this._context===i?s=a.context:(s=this._processContext(i),u=!0);var l=t.props,c=n.props;t!==n&&(u=!0),u&&a.componentWillReceiveProps&&a.componentWillReceiveProps(c,s);var p=this._processPendingState(c,s),d=!0;this._pendingForceUpdate||(a.shouldComponentUpdate?d=a.shouldComponentUpdate(c,p,s):this._compositeType===g&&(d=!f(l,c)||!f(a.state,p))),this._updateBatchNumber=null,d?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,c,p,s,e,i)):(this._currentElement=n,this._context=i,a.props=c,a.state=p,a.context=s)},_processPendingState:function(e,t){var n=this._instance,r=this._pendingStateQueue,i=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!r)return n.state;if(i&&1===r.length)return r[0];for(var a=o({},i?r[0]:n.state),s=i?1:0;s<r.length;s++){var u=r[s];o(a,"function"==typeof u?u.call(n,a,e,t):u)}return a},_performComponentUpdate:function(e,t,n,r,o,i){var a,s,u,l=this._instance,c=Boolean(l.componentDidUpdate);c&&(a=l.props,s=l.state,u=l.context),l.componentWillUpdate&&l.componentWillUpdate(t,n,r),this._currentElement=e,this._context=i,l.props=t,l.state=n,l.context=r,this._updateRenderedComponent(o,i),c&&o.getReactMountReady().enqueue(l.componentDidUpdate.bind(l,a,s,u),l)},_updateRenderedComponent:function(e,t){var n=this._renderedComponent,r=n._currentElement,o=this._renderValidatedComponent();if(h(r,o))p.receiveComponent(n,o,e,this._processChildContext(t));else{var i=p.getHostNode(n);p.unmountComponent(n,!1);var a=c.getType(o);this._renderedNodeType=a;var s=this._instantiateReactComponent(o,a!==c.EMPTY);this._renderedComponent=s;var u=p.mountComponent(s,e,this._hostParent,this._hostContainerInfo,this._processChildContext(t),0);this._replaceNodeWithMarkup(i,u,n)}},_replaceNodeWithMarkup:function(e,t,n){a.replaceNodeWithMarkup(e,t,n)},_renderValidatedComponentWithoutOwnerOrContext:function(){return this._instance.render()},_renderValidatedComponent:function(){var e;if(this._compositeType!==v){s.current=this;try{e=this._renderValidatedComponentWithoutOwnerOrContext()}finally{s.current=null}}else e=this._renderValidatedComponentWithoutOwnerOrContext();return null===e||!1===e||i.isValidElement(e)||r("109",this.getName()||"ReactCompositeComponent"),e},attachRef:function(e,t){var n=this.getPublicInstance();null==n&&r("110");var o=t.getPublicInstance();(n.refs===d?n.refs={}:n.refs)[e]=o},detachRef:function(e){delete this.getPublicInstance().refs[e]},getName:function(){var e=this._currentElement.type,t=this._instance&&this._instance.constructor;return e.displayName||t&&t.displayName||e.name||t&&t.name||null},getPublicInstance:function(){var e=this._instance;return this._compositeType===v?null:e},_instantiateReactComponent:null};e.exports=E},function(e,t,n){"use strict";var r=1;e.exports=function(){return r++}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator;e.exports=function(e){var t=e&&(r&&e[r]||e["@@iterator"]);if("function"==typeof t)return t}},function(e,t,n){"use strict";(function(t){n(45);var r=n(75);n(2);function o(e,t,n,r){if(e&&"object"==typeof e){var o=e;0,void 0===o[n]&&null!=t&&(o[n]=t)}}void 0!==t&&Object({NODE_ENV:"production"}),e.exports=function(e,t){if(null==e)return e;var n={};return r(e,o,n),n}}).call(this,n(30))},function(e,t,n){"use strict";var r=n(46);n(2);var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.transaction=t}return e.prototype.isMounted=function(e){return!1},e.prototype.enqueueCallback=function(e,t,n){this.transaction.isInTransaction()&&r.enqueueCallback(e,t,n)},e.prototype.enqueueForceUpdate=function(e){this.transaction.isInTransaction()&&r.enqueueForceUpdate(e)},e.prototype.enqueueReplaceState=function(e,t){this.transaction.isInTransaction()&&r.enqueueReplaceState(e,t)},e.prototype.enqueueSetState=function(e,t){this.transaction.isInTransaction()&&r.enqueueSetState(e,t)},e}();e.exports=o},function(e,t,n){"use strict";var r=n(3),o=n(17),i=n(4),a=function(e){this._currentElement=null,this._hostNode=null,this._hostParent=null,this._hostContainerInfo=null,this._domID=0};r(a.prototype,{mountComponent:function(e,t,n,r){var a=n._idCounter++;this._domID=a,this._hostParent=t,this._hostContainerInfo=n;var s=" react-empty: "+this._domID+" ";if(e.useCreateElement){var u=n._ownerDocument.createComment(s);return i.precacheNode(this,u),o(u)}return e.renderToStaticMarkup?"":"\x3c!--"+s+"--\x3e"},receiveComponent:function(){},getHostNode:function(){return i.getNodeFromInstance(this)},unmountComponent:function(){i.uncacheNode(this)}}),e.exports=a},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){"_hostNode"in e||r("33"),"_hostNode"in t||r("33");for(var n=0,o=e;o;o=o._hostParent)n++;for(var i=0,a=t;a;a=a._hostParent)i++;for(;n-i>0;)e=e._hostParent,n--;for(;i-n>0;)t=t._hostParent,i--;for(var s=n;s--;){if(e===t)return e;e=e._hostParent,t=t._hostParent}return null}e.exports={isAncestor:function(e,t){"_hostNode"in e||r("35"),"_hostNode"in t||r("35");for(;t;){if(t===e)return!0;t=t._hostParent}return!1},getLowestCommonAncestor:o,getParentInstance:function(e){return"_hostNode"in e||r("36"),e._hostParent},traverseTwoPhase:function(e,t,n){for(var r,o=[];e;)o.push(e),e=e._hostParent;for(r=o.length;r-- >0;)t(o[r],"captured",n);for(r=0;r<o.length;r++)t(o[r],"bubbled",n)},traverseEnterLeave:function(e,t,n,r,i){for(var a=e&&t?o(e,t):null,s=[];e&&e!==a;)s.push(e),e=e._hostParent;for(var u,l=[];t&&t!==a;)l.push(t),t=t._hostParent;for(u=0;u<s.length;u++)n(s[u],"bubbled",r);for(u=l.length;u-- >0;)n(l[u],"captured",i)}}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(37),a=n(17),s=n(4),u=n(27),l=(n(0),n(47),function(e){this._currentElement=e,this._stringText=""+e,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});o(l.prototype,{mountComponent:function(e,t,n,r){var o=n._idCounter++,i=" react-text: "+o+" ";if(this._domID=o,this._hostParent=t,e.useCreateElement){var l=n._ownerDocument,c=l.createComment(i),p=l.createComment(" /react-text "),d=a(l.createDocumentFragment());return a.queueChild(d,a(c)),this._stringText&&a.queueChild(d,a(l.createTextNode(this._stringText))),a.queueChild(d,a(p)),s.precacheNode(this,c),this._closingComment=p,d}var f=u(this._stringText);return e.renderToStaticMarkup?f:"\x3c!--"+i+"--\x3e"+f+"\x3c!-- /react-text --\x3e"},receiveComponent:function(e,t){if(e!==this._currentElement){this._currentElement=e;var n=""+e;if(n!==this._stringText){this._stringText=n;var r=this.getHostNode();i.replaceDelimitedText(r[0],r[1],n)}}},getHostNode:function(){var e=this._commentNodes;if(e)return e;if(!this._closingComment)for(var t=s.getNodeFromInstance(this).nextSibling;;){if(null==t&&r("67",this._domID),8===t.nodeType&&" /react-text "===t.nodeValue){this._closingComment=t;break}t=t.nextSibling}return e=[this._hostNode,this._closingComment],this._commentNodes=e,e},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,s.uncacheNode(this)}}),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(79),i=n(5),a=n(13),s=n(4),u=n(8),l=n(34),c=n(159);function p(e){for(;e._hostParent;)e=e._hostParent;var t=s.getNodeFromInstance(e).parentNode;return s.getClosestInstanceFromNode(t)}function d(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]}function f(e){var t=l(e.nativeEvent),n=s.getClosestInstanceFromNode(t),r=n;do{e.ancestors.push(r),r=r&&p(r)}while(r);for(var o=0;o<e.ancestors.length;o++)n=e.ancestors[o],m._handleTopLevel(e.topLevelType,n,e.nativeEvent,l(e.nativeEvent))}function h(e){e(c(window))}r(d.prototype,{destructor:function(){this.topLevelType=null,this.nativeEvent=null,this.ancestors.length=0}}),a.addPoolingTo(d,a.twoArgumentPooler);var m={_enabled:!0,_handleTopLevel:null,WINDOW_HANDLE:i.canUseDOM?window:null,setHandleTopLevel:function(e){m._handleTopLevel=e},setEnabled:function(e){m._enabled=!!e},isEnabled:function(){return m._enabled},trapBubbledEvent:function(e,t,n){return n?o.listen(n,t,m.dispatchEvent.bind(null,e)):null},trapCapturedEvent:function(e,t,n){return n?o.capture(n,t,m.dispatchEvent.bind(null,e)):null},monitorScrollValue:function(e){var t=h.bind(null,e);o.listen(window,"scroll",t)},dispatchEvent:function(e,t){if(m._enabled){var n=d.getPooled(e,t);try{u.batchedUpdates(f,n)}finally{d.release(n)}}}};e.exports=m},function(e,t,n){"use strict";e.exports=function(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e.document.documentElement.scrollLeft,y:e.pageYOffset||e.document.documentElement.scrollTop}:{x:e.scrollLeft,y:e.scrollTop}}},function(e,t,n){"use strict";var r=n(16),o=n(20),i=n(32),a=n(41),s=n(73),u=n(28),l=n(74),c=n(8),p={Component:a.injection,DOMProperty:r.injection,EmptyComponent:s.injection,EventPluginHub:o.injection,EventPluginUtils:i.injection,EventEmitter:u.injection,HostComponent:l.injection,Updates:c.injection};e.exports=p},function(e,t,n){"use strict";var r=n(3),o=n(62),i=n(13),a=n(28),s=n(80),u=(n(7),n(24)),l=n(46),c=[{initialize:s.getSelectionInformation,close:s.restoreSelection},{initialize:function(){var e=a.isEnabled();return a.setEnabled(!1),e},close:function(e){a.setEnabled(e)}},{initialize:function(){this.reactMountReady.reset()},close:function(){this.reactMountReady.notifyAll()}}];function p(e){this.reinitializeTransaction(),this.renderToStaticMarkup=!1,this.reactMountReady=o.getPooled(null),this.useCreateElement=e}var d={getTransactionWrappers:function(){return c},getReactMountReady:function(){return this.reactMountReady},getUpdateQueue:function(){return l},checkpoint:function(){return this.reactMountReady.checkpoint()},rollback:function(e){this.reactMountReady.rollback(e)},destructor:function(){o.release(this.reactMountReady),this.reactMountReady=null}};r(p.prototype,u,d),i.addPoolingTo(p),e.exports=p},function(e,t,n){"use strict";var r=n(5),o=n(163),i=n(61);function a(e,t,n,r){return e===n&&t===r}var s=r.canUseDOM&&"selection"in document&&!("getSelection"in window),u={getOffsets:s?function(e){var t=document.selection.createRange(),n=t.text.length,r=t.duplicate();r.moveToElementText(e),r.setEndPoint("EndToStart",t);var o=r.text.length;return{start:o,end:o+n}}:function(e){var t=window.getSelection&&window.getSelection();if(!t||0===t.rangeCount)return null;var n=t.anchorNode,r=t.anchorOffset,o=t.focusNode,i=t.focusOffset,s=t.getRangeAt(0);try{s.startContainer.nodeType,s.endContainer.nodeType}catch(e){return null}var u=a(t.anchorNode,t.anchorOffset,t.focusNode,t.focusOffset)?0:s.toString().length,l=s.cloneRange();l.selectNodeContents(e),l.setEnd(s.startContainer,s.startOffset);var c=a(l.startContainer,l.startOffset,l.endContainer,l.endOffset)?0:l.toString().length,p=c+u,d=document.createRange();d.setStart(n,r),d.setEnd(o,i);var f=d.collapsed;return{start:f?p:c,end:f?c:p}},setOffsets:s?function(e,t){var n,r,o=document.selection.createRange().duplicate();void 0===t.end?r=n=t.start:t.start>t.end?(n=t.end,r=t.start):(n=t.start,r=t.end),o.moveToElementText(e),o.moveStart("character",n),o.setEndPoint("EndToStart",o),o.moveEnd("character",r-n),o.select()}:function(e,t){if(window.getSelection){var n=window.getSelection(),r=e[i()].length,a=Math.min(t.start,r),s=void 0===t.end?a:Math.min(t.end,r);if(!n.extend&&a>s){var u=s;s=a,a=u}var l=o(e,a),c=o(e,s);if(l&&c){var p=document.createRange();p.setStart(l.node,l.offset),n.removeAllRanges(),a>s?(n.addRange(p),n.extend(c.node,c.offset)):(p.setEnd(c.node,c.offset),n.addRange(p))}}}};e.exports=u},function(e,t,n){"use strict";function r(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function o(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}e.exports=function(e,t){for(var n=r(e),i=0,a=0;n;){if(3===n.nodeType){if(a=i+n.textContent.length,i<=t&&a>=t)return{node:n,offset:t-i};i=a}n=r(o(n))}}},function(e,t,n){"use strict";var r=n(165);e.exports=function e(t,n){return!(!t||!n)&&(t===n||!r(t)&&(r(n)?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}},function(e,t,n){"use strict";var r=n(166);e.exports=function(e){return r(e)&&3==e.nodeType}},function(e,t,n){"use strict";e.exports=function(e){var t=(e?e.ownerDocument||e:document).defaultView||window;return!(!e||!("function"==typeof t.Node?e instanceof t.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}},function(e,t,n){"use strict";var r="http://www.w3.org/1999/xlink",o="http://www.w3.org/XML/1998/namespace",i={accentHeight:"accent-height",accumulate:0,additive:0,alignmentBaseline:"alignment-baseline",allowReorder:"allowReorder",alphabetic:0,amplitude:0,arabicForm:"arabic-form",ascent:0,attributeName:"attributeName",attributeType:"attributeType",autoReverse:"autoReverse",azimuth:0,baseFrequency:"baseFrequency",baseProfile:"baseProfile",baselineShift:"baseline-shift",bbox:0,begin:0,bias:0,by:0,calcMode:"calcMode",capHeight:"cap-height",clip:0,clipPath:"clip-path",clipRule:"clip-rule",clipPathUnits:"clipPathUnits",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",contentScriptType:"contentScriptType",contentStyleType:"contentStyleType",cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:"diffuseConstant",direction:0,display:0,divisor:0,dominantBaseline:"dominant-baseline",dur:0,dx:0,dy:0,edgeMode:"edgeMode",elevation:0,enableBackground:"enable-background",end:0,exponent:0,externalResourcesRequired:"externalResourcesRequired",fill:0,fillOpacity:"fill-opacity",fillRule:"fill-rule",filter:0,filterRes:"filterRes",filterUnits:"filterUnits",floodColor:"flood-color",floodOpacity:"flood-opacity",focusable:0,fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",glyphRef:"glyphRef",gradientTransform:"gradientTransform",gradientUnits:"gradientUnits",hanging:0,horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",ideographic:0,imageRendering:"image-rendering",in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:"kernelMatrix",kernelUnitLength:"kernelUnitLength",kerning:0,keyPoints:"keyPoints",keySplines:"keySplines",keyTimes:"keyTimes",lengthAdjust:"lengthAdjust",letterSpacing:"letter-spacing",lightingColor:"lighting-color",limitingConeAngle:"limitingConeAngle",local:0,markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",markerHeight:"markerHeight",markerUnits:"markerUnits",markerWidth:"markerWidth",mask:0,maskContentUnits:"maskContentUnits",maskUnits:"maskUnits",mathematical:0,mode:0,numOctaves:"numOctaves",offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pathLength:"pathLength",patternContentUnits:"patternContentUnits",patternTransform:"patternTransform",patternUnits:"patternUnits",pointerEvents:"pointer-events",points:0,pointsAtX:"pointsAtX",pointsAtY:"pointsAtY",pointsAtZ:"pointsAtZ",preserveAlpha:"preserveAlpha",preserveAspectRatio:"preserveAspectRatio",primitiveUnits:"primitiveUnits",r:0,radius:0,refX:"refX",refY:"refY",renderingIntent:"rendering-intent",repeatCount:"repeatCount",repeatDur:"repeatDur",requiredExtensions:"requiredExtensions",requiredFeatures:"requiredFeatures",restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:"shape-rendering",slope:0,spacing:0,specularConstant:"specularConstant",specularExponent:"specularExponent",speed:0,spreadMethod:"spreadMethod",startOffset:"startOffset",stdDeviation:"stdDeviation",stemh:0,stemv:0,stitchTiles:"stitchTiles",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",string:0,stroke:0,strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",surfaceScale:"surfaceScale",systemLanguage:"systemLanguage",tableValues:"tableValues",targetX:"targetX",targetY:"targetY",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",textLength:"textLength",to:0,transform:0,u1:0,u2:0,underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicode:0,unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",values:0,vectorEffect:"vector-effect",version:0,vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",viewBox:"viewBox",viewTarget:"viewTarget",visibility:0,widths:0,wordSpacing:"word-spacing",writingMode:"writing-mode",x:0,xHeight:"x-height",x1:0,x2:0,xChannelSelector:"xChannelSelector",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlns:0,xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space",y:0,y1:0,y2:0,yChannelSelector:"yChannelSelector",z:0,zoomAndPan:"zoomAndPan"},a={Properties:{},DOMAttributeNamespaces:{xlinkActuate:r,xlinkArcrole:r,xlinkHref:r,xlinkRole:r,xlinkShow:r,xlinkTitle:r,xlinkType:r,xmlBase:o,xmlLang:o,xmlSpace:o},DOMAttributeNames:{}};Object.keys(i).forEach((function(e){a.Properties[e]=0,i[e]&&(a.DOMAttributeNames[e]=i[e])})),e.exports=a},function(e,t,n){"use strict";var r=n(19),o=n(5),i=n(4),a=n(80),s=n(11),u=n(81),l=n(65),c=n(43),p=o.canUseDOM&&"documentMode"in document&&document.documentMode<=11,d={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:["topBlur","topContextMenu","topFocus","topKeyDown","topKeyUp","topMouseDown","topMouseUp","topSelectionChange"]}},f=null,h=null,m=null,g=!1,v=!1;function y(e,t){if(g||null==f||f!==u())return null;var n=function(e){if("selectionStart"in e&&a.hasSelectionCapabilities(e))return{start:e.selectionStart,end:e.selectionEnd};if(window.getSelection){var t=window.getSelection();return{anchorNode:t.anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset}}if(document.selection){var n=document.selection.createRange();return{parentElement:n.parentElement(),text:n.text,top:n.boundingTop,left:n.boundingLeft}}}(f);if(!m||!c(m,n)){m=n;var o=s.getPooled(d.select,h,e,t);return o.type="select",o.target=f,r.accumulateTwoPhaseDispatches(o),o}return null}var _={eventTypes:d,extractEvents:function(e,t,n,r){if(!v)return null;var o=t?i.getNodeFromInstance(t):window;switch(e){case"topFocus":(l(o)||"true"===o.contentEditable)&&(f=o,h=t,m=null);break;case"topBlur":f=null,h=null,m=null;break;case"topMouseDown":g=!0;break;case"topContextMenu":case"topMouseUp":return g=!1,y(n,r);case"topSelectionChange":if(p)break;case"topKeyDown":case"topKeyUp":return y(n,r)}return null},didPutListener:function(e,t,n){"onSelect"===t&&(v=!0)}};e.exports=_},function(e,t,n){"use strict";var r=n(1),o=n(79),i=n(19),a=n(4),s=n(170),u=n(171),l=n(11),c=n(172),p=n(173),d=n(25),f=n(175),h=n(176),m=n(177),g=n(21),v=n(178),y=n(9),_=n(48),b=(n(0),{}),E={};["abort","animationEnd","animationIteration","animationStart","blur","canPlay","canPlayThrough","click","contextMenu","copy","cut","doubleClick","drag","dragEnd","dragEnter","dragExit","dragLeave","dragOver","dragStart","drop","durationChange","emptied","encrypted","ended","error","focus","input","invalid","keyDown","keyPress","keyUp","load","loadedData","loadedMetadata","loadStart","mouseDown","mouseMove","mouseOut","mouseOver","mouseUp","paste","pause","play","playing","progress","rateChange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeUpdate","touchCancel","touchEnd","touchMove","touchStart","transitionEnd","volumeChange","waiting","wheel"].forEach((function(e){var t=e[0].toUpperCase()+e.slice(1),n="on"+t,r="top"+t,o={phasedRegistrationNames:{bubbled:n,captured:n+"Capture"},dependencies:[r]};b[e]=o,E[r]=o}));var C={};function w(e){return"."+e._rootNodeID}function x(e){return"button"===e||"input"===e||"select"===e||"textarea"===e}var T={eventTypes:b,extractEvents:function(e,t,n,o){var a,y=E[e];if(!y)return null;switch(e){case"topAbort":case"topCanPlay":case"topCanPlayThrough":case"topDurationChange":case"topEmptied":case"topEncrypted":case"topEnded":case"topError":case"topInput":case"topInvalid":case"topLoad":case"topLoadedData":case"topLoadedMetadata":case"topLoadStart":case"topPause":case"topPlay":case"topPlaying":case"topProgress":case"topRateChange":case"topReset":case"topSeeked":case"topSeeking":case"topStalled":case"topSubmit":case"topSuspend":case"topTimeUpdate":case"topVolumeChange":case"topWaiting":a=l;break;case"topKeyPress":if(0===_(n))return null;case"topKeyDown":case"topKeyUp":a=p;break;case"topBlur":case"topFocus":a=c;break;case"topClick":if(2===n.button)return null;case"topDoubleClick":case"topMouseDown":case"topMouseMove":case"topMouseUp":case"topMouseOut":case"topMouseOver":case"topContextMenu":a=d;break;case"topDrag":case"topDragEnd":case"topDragEnter":case"topDragExit":case"topDragLeave":case"topDragOver":case"topDragStart":case"topDrop":a=f;break;case"topTouchCancel":case"topTouchEnd":case"topTouchMove":case"topTouchStart":a=h;break;case"topAnimationEnd":case"topAnimationIteration":case"topAnimationStart":a=s;break;case"topTransitionEnd":a=m;break;case"topScroll":a=g;break;case"topWheel":a=v;break;case"topCopy":case"topCut":case"topPaste":a=u}a||r("86",e);var b=a.getPooled(y,t,n,o);return i.accumulateTwoPhaseDispatches(b),b},didPutListener:function(e,t,n){if("onClick"===t&&!x(e._tag)){var r=w(e),i=a.getNodeFromInstance(e);C[r]||(C[r]=o.listen(i,"click",y))}},willDeleteListener:function(e,t){if("onClick"===t&&!x(e._tag)){var n=w(e);C[n].remove(),delete C[n]}}};e.exports=T},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{animationName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11),o={clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(21);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{relatedTarget:null}),e.exports=o},function(e,t,n){"use strict";var r=n(21),o=n(48),i={key:n(174),location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:n(36),charCode:function(e){return"keypress"===e.type?o(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?o(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r=n(48),o={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},i={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"};e.exports=function(e){if(e.key){var t=o[e.key]||e.key;if("Unidentified"!==t)return t}if("keypress"===e.type){var n=r(e);return 13===n?"Enter":String.fromCharCode(n)}return"keydown"===e.type||"keyup"===e.type?i[e.keyCode]||"Unidentified":""}},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{dataTransfer:null}),e.exports=o},function(e,t,n){"use strict";var r=n(21),o={touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:n(36)};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{propertyName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),e.exports=o},function(e,t,n){"use strict";e.exports={useCreateElement:!0,useFiber:!1}},function(e,t,n){"use strict";e.exports=function(e){for(var t=1,n=0,r=0,o=e.length,i=-4&o;r<i;){for(var a=Math.min(r+4096,i);r<a;r+=4)n+=(t+=e.charCodeAt(r))+(t+=e.charCodeAt(r+1))+(t+=e.charCodeAt(r+2))+(t+=e.charCodeAt(r+3));t%=65521,n%=65521}for(;r<o;r++)n+=t+=e.charCodeAt(r);return(t%=65521)|(n%=65521)<<16}},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(4)),i=n(22),a=n(86);n(0),n(2);e.exports=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=i.get(e);if(t)return(t=a(t))?o.getNodeFromInstance(t):null;"function"==typeof e.render?r("44"):r("45",Object.keys(e))}},function(e,t,n){"use strict";var r=n(82);e.exports=r.renderSubtreeIntoContainer},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=l(n(29)),i=(l(n(95)),l(n(184)),l(n(188))),a=l(n(193)),s=l(n(212)),u=l(n(51));function l(e){return e&&e.__esModule?e:{default:e}}function c(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}var p=n(213),d=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.results=n.props.results?n.props.results:[],n.state={results:n.results},n.service=n.props.service,n.orderby=n.props.orderby,n.page=n.props.page,n.is_search=!1,n.search_term="",n.total_results=0,n.orientation="",n.isLoading=!1,n.isDone=!1,n.errorMsg="",n.msnry="",n.tooltipInterval="",n.editor=n.props.editor?n.props.editor:"classic",n.is_block_editor="gutenberg"===n.props.editor,n.is_media_router="media-router"===n.props.editor,n.SetFeaturedImage=n.props.SetFeaturedImage?n.props.SetFeaturedImage.bind(n):"",n.InsertImage=n.props.InsertImage?n.props.InsertImage.bind(n):"",n.is_block_editor?(n.container=document.querySelector("body"),n.container.classList.add("loading"),n.wrapper=document.querySelector("body")):(n.container=n.props.container.closest(".instant-img-container"),n.wrapper=n.props.container.closest(".instant-images-wrapper"),n.container.classList.add("loading")),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),r(t,[{key:"test",value:function(){var e=this,t=this.container.querySelector(".error-messaging"),n=instant_img_localize.root+"instant-images/test/",r=new XMLHttpRequest;r.open("POST",n,!0),r.setRequestHeader("X-WP-Nonce",instant_img_localize.nonce),r.setRequestHeader("Content-Type","application/json"),r.send(),r.onload=function(){r.status>=200&&r.status<400?JSON.parse(r.response).success||e.renderTestError(t):e.renderTestError(t)},r.onerror=function(t){console.log(t),e.renderTestError(errorTarget)}}},{key:"renderTestError",value:function(e){e.classList.add("active"),e.innerHTML=instant_img_localize.error_restapi+instant_img_localize.error_restapi_desc}},{key:"search",value:function(e){e.preventDefault();var t=this.container.querySelector("#photo-search"),n=t.value;n.length>2?(t.classList.add("searching"),this.container.classList.add("loading"),this.search_term=n,this.is_search=!0,this.doSearch(this.search_term)):t.focus()}},{key:"setOrientation",value:function(e,t){if(t&&t.target){var n=t.target;if(n.classList.contains("active"))n.classList.remove("active"),this.orientation="";else{var r=n.parentNode.querySelectorAll("li");[].concat(c(r)).forEach((function(e){return e.classList.remove("active")})),n.classList.add("active"),this.orientation=e}""!==this.search_term&&this.doSearch(this.search_term)}}},{key:"hasOrientation",value:function(){return""!==this.orientation}},{key:"clearOrientation",value:function(){var e=this.container.querySelectorAll(".orientation-list li");[].concat(c(e)).forEach((function(e){return e.classList.remove("active")})),this.orientation=""}},{key:"doSearch",value:function(e){var t=this,n="term";this.page=1;var r=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term;this.hasOrientation()&&(r=r+"&orientation="+this.orientation),"id:"===e.substring(0,3)&&(n="id",e=e.replace("id:",""),r=u.default.photo_api+"/"+e+u.default.app_id);var o=this.container.querySelector("#photo-search");fetch(r).then((function(e){return e.json()})).then((function(e){if("term"===n&&(t.total_results=e.total,t.checkTotalResults(e.results.length),t.results=e.results,t.setState({results:t.results})),"id"===n&&e){var r=[];e.errors?(t.total_results=0,t.checkTotalResults("0")):(r.push(e),t.total_results=1,t.checkTotalResults("1")),t.results=r,t.setState({results:t.results})}o.classList.remove("searching")})).catch((function(e){console.log(e),t.isLoading=!1}))}},{key:"clearSearch",value:function(){this.container.querySelector("#photo-search").value="",this.total_results=0,this.is_search=!1,this.search_term="",this.clearOrientation()}},{key:"getPhotos",value:function(){var e=this;this.page=parseInt(this.page)+1,this.container.classList.add("loading"),this.isLoading=!0;var t=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;this.is_search&&(t=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term,this.hasOrientation()&&(t=t+"&orientation="+this.orientation)),fetch(t).then((function(e){return e.json()})).then((function(t){e.is_search&&(t=t.results),t.map((function(t){e.results.push(t)})),e.checkTotalResults(t.length),e.setState({results:e.results})})).catch((function(t){console.log(t),e.isLoading=!1}))}},{key:"togglePhotoList",value:function(e,t){var n=t.target;if(n.classList.contains("active"))return!1;n.classList.add("loading"),this.isLoading=!0;var r=this;this.page=1,this.orderby=e,this.results=[],this.clearSearch();var o=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;fetch(o).then((function(e){return e.json()})).then((function(e){r.checkTotalResults(e.length),r.results=e,r.setState({results:e}),n.classList.remove("loading")})).catch((function(e){console.log(e),r.isLoading=!1}))}},{key:"renderLayout",value:function(){if(this.is_block_editor)return!1;var e=this,t=e.container.querySelector(".photo-target");p(t,(function(){e.msnry=new i.default(t,{itemSelector:".photo"}),[].concat(c(e.container.querySelectorAll(".photo-target .photo"))).forEach((function(e){return e.classList.add("in-view")}))}))}},{key:"onScroll",value:function(){window.innerHeight+window.pageYOffset>=document.body.scrollHeight-400&&!this.isLoading&&!this.isDone&&this.getPhotos()}},{key:"checkTotalResults",value:function(e){this.isDone=0==e}},{key:"setActiveState",value:function(){var e=this;([].concat(c(this.container.querySelectorAll(".control-nav button"))).forEach((function(e){return e.classList.remove("active")})),this.is_search)||this.container.querySelector(".control-nav li button."+this.orderby).classList.add("active");setTimeout((function(){e.isLoading=!1,e.container.classList.remove("loading")}),1e3)}},{key:"showTooltip",value:function(e){var t=this,n=e.currentTarget,r=n.getBoundingClientRect(),o=Math.round(r.left),i=Math.round(r.top),a=this.container.querySelector("#tooltip");a.classList.remove("over"),n.classList.contains("tooltip--above")?a.classList.add("above"):a.classList.remove("above");var s=n.dataset.title;this.tooltipInterval=setInterval((function(){clearInterval(t.tooltipInterval),a.innerHTML=s,o=o-a.offsetWidth+n.offsetWidth+5,a.style.left=o+"px",a.style.top=i+"px",setTimeout((function(){a.classList.add("over")}),150)}),500)}},{key:"hideTooltip",value:function(e){clearInterval(this.tooltipInterval),this.container.querySelector("#tooltip").classList.remove("over")}},{key:"componentDidUpdate",value:function(){this.renderLayout(),this.setActiveState()}},{key:"componentDidMount",value:function(){var e=this;this.renderLayout(),this.setActiveState(),this.test(),this.container.classList.remove("loading"),this.wrapper.classList.add("loaded"),this.is_block_editor||this.is_media_router?(this.page=0,this.getPhotos()):window.addEventListener("scroll",(function(){return e.onScroll()}))}},{key:"render",value:function(){var e=this,t=this.is_search?{display:"flex"}:{display:"none"};return o.default.createElement("div",{id:"photo-listing",className:this.service},o.default.createElement("ul",{className:"control-nav"},o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"latest",onClick:function(t){return e.togglePhotoList("latest",t)}},instant_img_localize.latest)),o.default.createElement("li",{id:"nav-target"},o.default.createElement("button",{type:"button",className:"popular",onClick:function(t){return e.togglePhotoList("popular",t)}},instant_img_localize.popular)),o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"oldest",onClick:function(t){return e.togglePhotoList("oldest",t)}},instant_img_localize.oldest)),o.default.createElement("li",{className:"search-field",id:"search-bar"},o.default.createElement("form",{onSubmit:function(t){return e.search(t)},autoComplete:"off"},o.default.createElement("input",{type:"search",id:"photo-search",placeholder:instant_img_localize.search}),o.default.createElement("button",{type:"submit",id:"photo-search-submit"},o.default.createElement("i",{className:"fa fa-search"})),o.default.createElement(s.default,{container:this.container,isSearch:this.is_search,total:this.total_results,title:this.total_results+" "+instant_img_localize.search_results+" "+this.search_term})))),o.default.createElement("div",{className:"error-messaging"}),o.default.createElement("div",{className:"orientation-list",style:t},o.default.createElement("span",null,o.default.createElement("i",{className:"fa fa-filter","aria-hidden":"true"})," ",instant_img_localize.orientation,":"),o.default.createElement("ul",null,o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("landscape",t)},onKeyPress:function(t){return e.setOrientation("landscape",t)}},instant_img_localize.landscape),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("portrait",t)},onKeyPress:function(t){return e.setOrientation("portrait",t)}},instant_img_localize.portrait),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("squarish",t)},onKeyPress:function(t){return e.setOrientation("squarish",t)}},instant_img_localize.squarish))),o.default.createElement("div",{id:"photos",className:"photo-target"},this.state.results.map((function(t,n){return o.default.createElement(a.default,{result:t,key:t.id+n,editor:e.editor,mediaRouter:e.is_media_router,blockEditor:e.is_block_editor,SetFeaturedImage:e.SetFeaturedImage,InsertImage:e.InsertImage,showTooltip:e.showTooltip,hideTooltip:e.hideTooltip})}))),o.default.createElement("div",{className:0==this.total_results&&!0===this.is_search?"no-results show":"no-results",title:this.props.title},o.default.createElement("h3",null,instant_img_localize.no_results," "),o.default.createElement("p",null,instant_img_localize.no_results_desc," ")),o.default.createElement("div",{className:"loading-block"}),o.default.createElement("div",{className:"load-more-wrap"},o.default.createElement("button",{type:"button",className:"button",onClick:function(){return e.getPhotos()}},instant_img_localize.load_more)),o.default.createElement("div",{id:"tooltip"},"Meow"))}}]),t}(o.default.Component);t.default=d},function(e,t,n){"use strict";e.exports=n(185)},function(e,t,n){"use strict";var r=n(58),o=n(186),i=n(85);r.inject();var a={renderToString:o.renderToString,renderToStaticMarkup:o.renderToStaticMarkup,version:i};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=n(12),i=n(83),a=n(78),s=(n(7),n(84)),u=n(14),l=n(187),c=n(77),p=n(8),d=n(23),f=n(42),h=(n(0),0);function m(e,t){var n;try{return p.injection.injectBatchingStrategy(l),n=c.getPooled(t),h++,n.perform((function(){var r=f(e,!0),o=u.mountComponent(r,n,null,i(),d,0);return t||(o=s.addChecksumToMarkup(o)),o}),null)}finally{h--,c.release(n),h||p.injection.injectBatchingStrategy(a)}}e.exports={renderToString:function(e){return o.isValidElement(e)||r("46"),m(e,!1)},renderToStaticMarkup:function(e){return o.isValidElement(e)||r("47"),m(e,!0)}}},function(e,t,n){"use strict";e.exports={isBatchingUpdates:!1,batchedUpdates:function(e){}}},function(e,t,n){var r,o,i;
|
34 |
/*!
|
35 |
* Masonry v4.2.2
|
36 |
* Cascading grid layout library
|
37 |
* https://masonry.desandro.com
|
38 |
* MIT License
|
39 |
* by David DeSandro
|
40 |
+
*/window,o=[n(189),n(50)],void 0===(i="function"==typeof(r=function(e,t){"use strict";var n=e.create("masonry");n.compatOptions.fitWidth="isFitWidth";var r=n.prototype;return r._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var e=0;e<this.cols;e++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},r.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var e=this.items[0],n=e&&e.element;this.columnWidth=n&&t(n).outerWidth||this.containerWidth}var r=this.columnWidth+=this.gutter,o=this.containerWidth+this.gutter,i=o/r,a=r-o%r;i=Math[a&&a<1?"round":"floor"](i),this.cols=Math.max(i,1)},r.getContainerWidth=function(){var e=this._getOption("fitWidth")?this.element.parentNode:this.element,n=t(e);this.containerWidth=n&&n.innerWidth},r._getItemLayoutPosition=function(e){e.getSize();var t=e.size.outerWidth%this.columnWidth,n=Math[t&&t<1?"round":"ceil"](e.size.outerWidth/this.columnWidth);n=Math.min(n,this.cols);for(var r=this[this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition"](n,e),o={x:this.columnWidth*r.col,y:r.y},i=r.y+e.size.outerHeight,a=n+r.col,s=r.col;s<a;s++)this.colYs[s]=i;return o},r._getTopColPosition=function(e){var t=this._getTopColGroup(e),n=Math.min.apply(Math,t);return{col:t.indexOf(n),y:n}},r._getTopColGroup=function(e){if(e<2)return this.colYs;for(var t=[],n=this.cols+1-e,r=0;r<n;r++)t[r]=this._getColGroupY(r,e);return t},r._getColGroupY=function(e,t){if(t<2)return this.colYs[e];var n=this.colYs.slice(e,e+t);return Math.max.apply(Math,n)},r._getHorizontalColPosition=function(e,t){var n=this.horizontalColIndex%this.cols;n=e>1&&n+e>this.cols?0:n;var r=t.size.outerWidth&&t.size.outerHeight;return this.horizontalColIndex=r?n+e:this.horizontalColIndex,{col:n,y:this._getColGroupY(n,e)}},r._manageStamp=function(e){var n=t(e),r=this._getElementOffset(e),o=this._getOption("originLeft")?r.left:r.right,i=o+n.outerWidth,a=Math.floor(o/this.columnWidth);a=Math.max(0,a);var s=Math.floor(i/this.columnWidth);s-=i%this.columnWidth?0:1,s=Math.min(this.cols-1,s);for(var u=(this._getOption("originTop")?r.top:r.bottom)+n.outerHeight,l=a;l<=s;l++)this.colYs[l]=Math.max(u,this.colYs[l])},r._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var e={height:this.maxY};return this._getOption("fitWidth")&&(e.width=this._getContainerFitWidth()),e},r._getContainerFitWidth=function(){for(var e=0,t=this.cols;--t&&0===this.colYs[t];)e++;return(this.cols-e)*this.columnWidth-this.gutter},r.needsResizeLayout=function(){var e=this.containerWidth;return this.getContainerWidth(),e!=this.containerWidth},n})?r.apply(t,o):r)||(e.exports=i)},function(e,t,n){var r,o;
|
|
|
|
|
|
|
|
|
|
|
41 |
/*!
|
42 |
* Outlayer v2.1.1
|
43 |
* the brains and guts of a layout library
|
44 |
* MIT license
|
45 |
+
*/!function(i,a){"use strict";r=[n(49),n(50),n(190),n(192)],void 0===(o=function(e,t,n,r){return function(e,t,n,r,o){var i=e.console,a=e.jQuery,s=function(){},u=0,l={};function c(e,t){var n=r.getQueryElement(e);if(n){this.element=n,a&&(this.$element=a(this.element)),this.options=r.extend({},this.constructor.defaults),this.option(t);var o=++u;this.element.outlayerGUID=o,l[o]=this,this._create(),this._getOption("initLayout")&&this.layout()}else i&&i.error("Bad element for "+this.constructor.namespace+": "+(n||e))}c.namespace="outlayer",c.Item=o,c.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var p=c.prototype;function d(e){function t(){e.apply(this,arguments)}return t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t}r.extend(p,t.prototype),p.option=function(e){r.extend(this.options,e)},p._getOption=function(e){var t=this.constructor.compatOptions[e];return t&&void 0!==this.options[t]?this.options[t]:this.options[e]},c.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},p._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),r.extend(this.element.style,this.options.containerStyle),this._getOption("resize")&&this.bindResize()},p.reloadItems=function(){this.items=this._itemize(this.element.children)},p._itemize=function(e){for(var t=this._filterFindItemElements(e),n=this.constructor.Item,r=[],o=0;o<t.length;o++){var i=new n(t[o],this);r.push(i)}return r},p._filterFindItemElements=function(e){return r.filterFindElements(e,this.options.itemSelector)},p.getItemElements=function(){return this.items.map((function(e){return e.element}))},p.layout=function(){this._resetLayout(),this._manageStamps();var e=this._getOption("layoutInstant"),t=void 0!==e?e:!this._isLayoutInited;this.layoutItems(this.items,t),this._isLayoutInited=!0},p._init=p.layout,p._resetLayout=function(){this.getSize()},p.getSize=function(){this.size=n(this.element)},p._getMeasurement=function(e,t){var r,o=this.options[e];o?("string"==typeof o?r=this.element.querySelector(o):o instanceof HTMLElement&&(r=o),this[e]=r?n(r)[t]:o):this[e]=0},p.layoutItems=function(e,t){e=this._getItemsForLayout(e),this._layoutItems(e,t),this._postLayout()},p._getItemsForLayout=function(e){return e.filter((function(e){return!e.isIgnored}))},p._layoutItems=function(e,t){if(this._emitCompleteOnItems("layout",e),e&&e.length){var n=[];e.forEach((function(e){var r=this._getItemLayoutPosition(e);r.item=e,r.isInstant=t||e.isLayoutInstant,n.push(r)}),this),this._processLayoutQueue(n)}},p._getItemLayoutPosition=function(){return{x:0,y:0}},p._processLayoutQueue=function(e){this.updateStagger(),e.forEach((function(e,t){this._positionItem(e.item,e.x,e.y,e.isInstant,t)}),this)},p.updateStagger=function(){var e=this.options.stagger;if(null!=e)return this.stagger=function(e){if("number"==typeof e)return e;var t=e.match(/(^\d*\.?\d*)(\w*)/),n=t&&t[1],r=t&&t[2];if(!n.length)return 0;return(n=parseFloat(n))*(f[r]||1)}(e),this.stagger;this.stagger=0},p._positionItem=function(e,t,n,r,o){r?e.goTo(t,n):(e.stagger(o*this.stagger),e.moveTo(t,n))},p._postLayout=function(){this.resizeContainer()},p.resizeContainer=function(){if(this._getOption("resizeContainer")){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},p._getContainerSize=s,p._setContainerMeasure=function(e,t){if(void 0!==e){var n=this.size;n.isBorderBox&&(e+=t?n.paddingLeft+n.paddingRight+n.borderLeftWidth+n.borderRightWidth:n.paddingBottom+n.paddingTop+n.borderTopWidth+n.borderBottomWidth),e=Math.max(e,0),this.element.style[t?"width":"height"]=e+"px"}},p._emitCompleteOnItems=function(e,t){var n=this;function r(){n.dispatchEvent(e+"Complete",null,[t])}var o=t.length;if(t&&o){var i=0;t.forEach((function(t){t.once(e,a)}))}else r();function a(){++i==o&&r()}},p.dispatchEvent=function(e,t,n){var r=t?[t].concat(n):n;if(this.emitEvent(e,r),a)if(this.$element=this.$element||a(this.element),t){var o=a.Event(t);o.type=e,this.$element.trigger(o,n)}else this.$element.trigger(e,n)},p.ignore=function(e){var t=this.getItem(e);t&&(t.isIgnored=!0)},p.unignore=function(e){var t=this.getItem(e);t&&delete t.isIgnored},p.stamp=function(e){(e=this._find(e))&&(this.stamps=this.stamps.concat(e),e.forEach(this.ignore,this))},p.unstamp=function(e){(e=this._find(e))&&e.forEach((function(e){r.removeFrom(this.stamps,e),this.unignore(e)}),this)},p._find=function(e){if(e)return"string"==typeof e&&(e=this.element.querySelectorAll(e)),e=r.makeArray(e)},p._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},p._getBoundingRect=function(){var e=this.element.getBoundingClientRect(),t=this.size;this._boundingRect={left:e.left+t.paddingLeft+t.borderLeftWidth,top:e.top+t.paddingTop+t.borderTopWidth,right:e.right-(t.paddingRight+t.borderRightWidth),bottom:e.bottom-(t.paddingBottom+t.borderBottomWidth)}},p._manageStamp=s,p._getElementOffset=function(e){var t=e.getBoundingClientRect(),r=this._boundingRect,o=n(e);return{left:t.left-r.left-o.marginLeft,top:t.top-r.top-o.marginTop,right:r.right-t.right-o.marginRight,bottom:r.bottom-t.bottom-o.marginBottom}},p.handleEvent=r.handleEvent,p.bindResize=function(){e.addEventListener("resize",this),this.isResizeBound=!0},p.unbindResize=function(){e.removeEventListener("resize",this),this.isResizeBound=!1},p.onresize=function(){this.resize()},r.debounceMethod(c,"onresize",100),p.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},p.needsResizeLayout=function(){var e=n(this.element);return this.size&&e&&e.innerWidth!==this.size.innerWidth},p.addItems=function(e){var t=this._itemize(e);return t.length&&(this.items=this.items.concat(t)),t},p.appended=function(e){var t=this.addItems(e);t.length&&(this.layoutItems(t,!0),this.reveal(t))},p.prepended=function(e){var t=this._itemize(e);if(t.length){var n=this.items.slice(0);this.items=t.concat(n),this._resetLayout(),this._manageStamps(),this.layoutItems(t,!0),this.reveal(t),this.layoutItems(n)}},p.reveal=function(e){if(this._emitCompleteOnItems("reveal",e),e&&e.length){var t=this.updateStagger();e.forEach((function(e,n){e.stagger(n*t),e.reveal()}))}},p.hide=function(e){if(this._emitCompleteOnItems("hide",e),e&&e.length){var t=this.updateStagger();e.forEach((function(e,n){e.stagger(n*t),e.hide()}))}},p.revealItemElements=function(e){var t=this.getItems(e);this.reveal(t)},p.hideItemElements=function(e){var t=this.getItems(e);this.hide(t)},p.getItem=function(e){for(var t=0;t<this.items.length;t++){var n=this.items[t];if(n.element==e)return n}},p.getItems=function(e){e=r.makeArray(e);var t=[];return e.forEach((function(e){var n=this.getItem(e);n&&t.push(n)}),this),t},p.remove=function(e){var t=this.getItems(e);this._emitCompleteOnItems("remove",t),t&&t.length&&t.forEach((function(e){e.remove(),r.removeFrom(this.items,e)}),this)},p.destroy=function(){var e=this.element.style;e.height="",e.position="",e.width="",this.items.forEach((function(e){e.destroy()})),this.unbindResize();var t=this.element.outlayerGUID;delete l[t],delete this.element.outlayerGUID,a&&a.removeData(this.element,this.constructor.namespace)},c.data=function(e){var t=(e=r.getQueryElement(e))&&e.outlayerGUID;return t&&l[t]},c.create=function(e,t){var n=d(c);return n.defaults=r.extend({},c.defaults),r.extend(n.defaults,t),n.compatOptions=r.extend({},c.compatOptions),n.namespace=e,n.data=c.data,n.Item=d(o),r.htmlInit(n,e),a&&a.bridget&&a.bridget(e,n),n};var f={ms:1,s:1e3};return c.Item=o,c}(i,e,t,n,r)}.apply(t,r))||(e.exports=o)}(window)},function(e,t,n){var r,o;!function(i,a){r=[n(191)],void 0===(o=function(e){return function(e,t){"use strict";var n={extend:function(e,t){for(var n in t)e[n]=t[n];return e},modulo:function(e,t){return(e%t+t)%t}},r=Array.prototype.slice;n.makeArray=function(e){return Array.isArray(e)?e:null==e?[]:"object"==typeof e&&"number"==typeof e.length?r.call(e):[e]},n.removeFrom=function(e,t){var n=e.indexOf(t);-1!=n&&e.splice(n,1)},n.getParent=function(e,n){for(;e.parentNode&&e!=document.body;)if(e=e.parentNode,t(e,n))return e},n.getQueryElement=function(e){return"string"==typeof e?document.querySelector(e):e},n.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},n.filterFindElements=function(e,r){e=n.makeArray(e);var o=[];return e.forEach((function(e){if(e instanceof HTMLElement)if(r){t(e,r)&&o.push(e);for(var n=e.querySelectorAll(r),i=0;i<n.length;i++)o.push(n[i])}else o.push(e)})),o},n.debounceMethod=function(e,t,n){n=n||100;var r=e.prototype[t],o=t+"Timeout";e.prototype[t]=function(){var e=this[o];clearTimeout(e);var t=arguments,i=this;this[o]=setTimeout((function(){r.apply(i,t),delete i[o]}),n)}},n.docReady=function(e){var t=document.readyState;"complete"==t||"interactive"==t?setTimeout(e):document.addEventListener("DOMContentLoaded",e)},n.toDashed=function(e){return e.replace(/(.)([A-Z])/g,(function(e,t,n){return t+"-"+n})).toLowerCase()};var o=e.console;return n.htmlInit=function(t,r){n.docReady((function(){var i=n.toDashed(r),a="data-"+i,s=document.querySelectorAll("["+a+"]"),u=document.querySelectorAll(".js-"+i),l=n.makeArray(s).concat(n.makeArray(u)),c=a+"-options",p=e.jQuery;l.forEach((function(e){var n,i=e.getAttribute(a)||e.getAttribute(c);try{n=i&&JSON.parse(i)}catch(t){return void(o&&o.error("Error parsing "+a+" on "+e.className+": "+t))}var s=new t(e,n);p&&p.data(e,r,s)}))}))},n}(i,e)}.apply(t,r))||(e.exports=o)}(window)},function(e,t,n){var r,o;!function(i,a){"use strict";void 0===(o="function"==typeof(r=a)?r.call(t,n,t,e):r)||(e.exports=o)}(window,(function(){"use strict";var e=function(){var e=window.Element.prototype;if(e.matches)return"matches";if(e.matchesSelector)return"matchesSelector";for(var t=["webkit","moz","ms","o"],n=0;n<t.length;n++){var r=t[n]+"MatchesSelector";if(e[r])return r}}();return function(t,n){return t[e](n)}}))},function(e,t,n){var r,o,i;window,o=[n(49),n(50)],void 0===(i="function"==typeof(r=function(e,t){"use strict";var n=document.documentElement.style,r="string"==typeof n.transition?"transition":"WebkitTransition",o="string"==typeof n.transform?"transform":"WebkitTransform",i={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[r],a={transform:o,transition:r,transitionDuration:r+"Duration",transitionProperty:r+"Property",transitionDelay:r+"Delay"};function s(e,t){e&&(this.element=e,this.layout=t,this.position={x:0,y:0},this._create())}var u=s.prototype=Object.create(e.prototype);u.constructor=s,u._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},u.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},u.getSize=function(){this.size=t(this.element)},u.css=function(e){var t=this.element.style;for(var n in e)t[a[n]||n]=e[n]},u.getPosition=function(){var e=getComputedStyle(this.element),t=this.layout._getOption("originLeft"),n=this.layout._getOption("originTop"),r=e[t?"left":"right"],o=e[n?"top":"bottom"],i=parseFloat(r),a=parseFloat(o),s=this.layout.size;-1!=r.indexOf("%")&&(i=i/100*s.width),-1!=o.indexOf("%")&&(a=a/100*s.height),i=isNaN(i)?0:i,a=isNaN(a)?0:a,i-=t?s.paddingLeft:s.paddingRight,a-=n?s.paddingTop:s.paddingBottom,this.position.x=i,this.position.y=a},u.layoutPosition=function(){var e=this.layout.size,t={},n=this.layout._getOption("originLeft"),r=this.layout._getOption("originTop"),o=n?"paddingLeft":"paddingRight",i=n?"left":"right",a=n?"right":"left",s=this.position.x+e[o];t[i]=this.getXValue(s),t[a]="";var u=r?"paddingTop":"paddingBottom",l=r?"top":"bottom",c=r?"bottom":"top",p=this.position.y+e[u];t[l]=this.getYValue(p),t[c]="",this.css(t),this.emitEvent("layout",[this])},u.getXValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!t?e/this.layout.size.width*100+"%":e+"px"},u.getYValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&t?e/this.layout.size.height*100+"%":e+"px"},u._transitionTo=function(e,t){this.getPosition();var n=this.position.x,r=this.position.y,o=e==this.position.x&&t==this.position.y;if(this.setPosition(e,t),!o||this.isTransitioning){var i=e-n,a=t-r,s={};s.transform=this.getTranslate(i,a),this.transition({to:s,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})}else this.layoutPosition()},u.getTranslate=function(e,t){return"translate3d("+(e=this.layout._getOption("originLeft")?e:-e)+"px, "+(t=this.layout._getOption("originTop")?t:-t)+"px, 0)"},u.goTo=function(e,t){this.setPosition(e,t),this.layoutPosition()},u.moveTo=u._transitionTo,u.setPosition=function(e,t){this.position.x=parseFloat(e),this.position.y=parseFloat(t)},u._nonTransition=function(e){for(var t in this.css(e.to),e.isCleaning&&this._removeStyles(e.to),e.onTransitionEnd)e.onTransitionEnd[t].call(this)},u.transition=function(e){if(parseFloat(this.layout.options.transitionDuration)){var t=this._transn;for(var n in e.onTransitionEnd)t.onEnd[n]=e.onTransitionEnd[n];for(n in e.to)t.ingProperties[n]=!0,e.isCleaning&&(t.clean[n]=!0);e.from&&(this.css(e.from),this.element.offsetHeight),this.enableTransition(e.to),this.css(e.to),this.isTransitioning=!0}else this._nonTransition(e)};var l="opacity,"+o.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()}));u.enableTransition=function(){if(!this.isTransitioning){var e=this.layout.options.transitionDuration;e="number"==typeof e?e+"ms":e,this.css({transitionProperty:l,transitionDuration:e,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(i,this,!1)}},u.onwebkitTransitionEnd=function(e){this.ontransitionend(e)},u.onotransitionend=function(e){this.ontransitionend(e)};var c={"-webkit-transform":"transform"};u.ontransitionend=function(e){if(e.target===this.element){var t=this._transn,n=c[e.propertyName]||e.propertyName;delete t.ingProperties[n],function(e){for(var t in e)return!1;return!0}(t.ingProperties)&&this.disableTransition(),n in t.clean&&(this.element.style[e.propertyName]="",delete t.clean[n]),n in t.onEnd&&(t.onEnd[n].call(this),delete t.onEnd[n]),this.emitEvent("transitionEnd",[this])}},u.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(i,this,!1),this.isTransitioning=!1},u._removeStyles=function(e){var t={};for(var n in e)t[n]="";this.css(t)};var p={transitionProperty:"",transitionDuration:"",transitionDelay:""};return u.removeTransitionStyles=function(){this.css(p)},u.stagger=function(e){e=isNaN(e)?0:e,this.staggerDelay=e+"ms"},u.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},u.remove=function(){r&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",(function(){this.removeElem()})),this.hide()):this.removeElem()},u.reveal=function(){delete this.isHidden,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("visibleStyle")]=this.onRevealTransitionEnd,this.transition({from:e.hiddenStyle,to:e.visibleStyle,isCleaning:!0,onTransitionEnd:t})},u.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},u.getHideRevealTransitionEndProperty=function(e){var t=this.layout.options[e];if(t.opacity)return"opacity";for(var n in t)return n},u.hide=function(){this.isHidden=!0,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("hiddenStyle")]=this.onHideTransitionEnd,this.transition({from:e.visibleStyle,to:e.hiddenStyle,isCleaning:!0,onTransitionEnd:t})},u.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},u.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},s})?r.apply(t,o):r)||(e.exports=i)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=s(n(29)),i=s(n(51)),a=s(n(194));function s(e){return e&&e.__esModule?e:{default:e}}var u=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.id=n.props.result.id,n.thumb=n.props.result.urls.thumb,n.img=n.props.result.urls.small,n.full_size=n.props.result.urls.full,n.author=n.props.result.user.name,n.img_title=instant_img_localize.photo_by+" "+n.author,n.filename=n.props.result.id,n.title=n.img_title,n.alt=n.props.result.alt_description,n.caption="",n.user=n.props.result.user.username,n.user_photo=n.props.result.user.profile_image.small,n.link=n.props.result.links.html,n.likes=n.props.result.likes,n.view_all=instant_img_localize.view_all,n.inProgress=!1,n.container=document.querySelector(".instant-img-container"),n.showTooltip=n.props.showTooltip,n.hideTooltip=n.props.hideTooltip,n.setAsFeaturedImage=!1,n.insertIntoPost=!1,n.is_media_router=n.props.mediaRouter,n.is_block_editor=n.props.blockEditor,n.SetFeaturedImage=n.props.SetFeaturedImage,n.InsertImage=n.props.InsertImage,n.displayGutenbergControl=!!n.is_block_editor,n.state={filename:n.filename,title:n.title,alt:n.alt,caption:n.caption},n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),r(t,[{key:"download",value:function(e){e.preventDefault();var t=this,n=e.currentTarget,r=n.parentElement.parentElement.parentElement,o=r.querySelector(".notice-msg");if(n.classList.contains("upload")||(n=r.querySelector("a.upload")),n.classList.contains("success")||this.inProgress)return!1;this.inProgress=!0,n.classList.add("uploading"),r.classList.add("in-progress"),o.innerHTML=instant_img_localize.saving,setTimeout((function(){o.innerHTML=instant_img_localize.resizing,setTimeout((function(){o.innerHTML=instant_img_localize.resizing_still}),5e3)}),3e3);var i=instant_img_localize.root+"instant-images/download/",s={id:n.getAttribute("data-id"),image_url:n.getAttribute("data-url"),filename:n.getAttribute("data-id")+".jpg",custom_filename:n.getAttribute("data-filename"),title:n.getAttribute("data-title"),alt:n.getAttribute("data-alt"),caption:n.getAttribute("data-caption"),parent_id:instant_img_localize.parent_id},u={headers:{"X-WP-Nonce":instant_img_localize.nonce,"Content-Type":"application/json"}};a.default.post(i,JSON.stringify(s),u).then((function(e){var i=e.data;if(i){var a=i.success,s=i.id,u=i.attachment,l=i.admin_url,c=i.msg;if(a){var p=l+"post.php?post="+u.id+"&action=edit";t.uploadComplete(n,r,c,p,u.id),t.triggerUnsplashDownload(s),t.displayGutenbergControl&&t.setAsFeaturedImage&&(t.SetFeaturedImage(u.id),t.setAsFeaturedImage=!1,t.closeMediaModal()),t.displayGutenbergControl&&t.insertIntoPost&&(u.url&&(t.InsertImage(u.url,u.caption,u.alt),t.closeMediaModal()),t.insertIntoPost=!1),"true"!==t.container.dataset.mediaPopup||t.is_block_editor||(window.location="media-upload.php?type=image&tab=library&attachment_id="+u.id)}else t.uploadError(n,r,o,c)}else t.uploadError(n,r,o,instant_img_localize.error_upload)})).catch((function(e){console.log(e)}))}},{key:"triggerUnsplashDownload",value:function(e){var t=i.default.photo_api+"/"+e+"/download/"+i.default.app_id;fetch(t).then((function(e){return e.json()})).then((function(e){})).catch((function(e){console.log(e)}))}},{key:"setFeaturedImageClick",value:function(e){var t=e.currentTarget;if(!t)return!1;this.hideTooltip(e);var n=t.parentNode.parentNode.parentNode.querySelector("a.upload");n&&(this.setAsFeaturedImage=!0,n.click())}},{key:"insertImageIntoPost",value:function(e){var t=e.currentTarget;if(!t)return!1;this.hideTooltip(e);var n=t.parentNode.parentNode.parentNode.querySelector("a.upload");n&&(this.insertIntoPost=!0,n.click())}},{key:"uploadComplete",value:function(e,t,n,r,o){this.setImageTitle(e,n),t.classList.remove("in-progress"),t.classList.add("uploaded"),t.querySelector(".edit-photo").style.display="none",t.querySelector(".edit-photo-admin").style.display="inline-block",t.querySelector(".edit-photo-admin").href=r,t.querySelector(".edit-photo-admin").target="_balnk",e.classList.remove("uploading"),e.classList.remove("resizing"),e.classList.add("success"),this.inProgress=!1,setTimeout((function(){t.classList.remove("uploaded"),e.classList.remove("success")}),7500),this.is_block_editor&&(t.querySelector(".insert").style.display="none",t.querySelector(".set-featured").style.display="none"),this.mediaRouter(o),this.container.classList.contains("editor")&&void 0!==wp.media&&(null!==wp.media.frame.content.get()?(wp.media.frame.content.get().collection.props.set({ignore:+new Date}),wp.media.frame.content.get().options.selection.reset()):wp.media.frame.library.props.set({ignore:+new Date}))}},{key:"mediaRouter",value:function(e){if(this.is_media_router&&wp.media&&wp.media.frame&&wp.media.frame.el){var t=wp.media.frame.el.querySelector("#menu-item-browse");t&&t.click(),setTimeout((function(){null!==wp.media.frame.content.get()&&wp.media.frame.content.get().collection._requery(!0);var t=wp.media.frame.state().get("selection"),n=parseInt(e);t.reset(n?[wp.media.attachment(n)]:[])}),150)}}},{key:"uploadError",value:function(e,t,n,r){e.classList.remove("uploading"),e.classList.remove("resizing"),e.classList.add("errors"),this.setImageTitle(e,r),this.inProgress=!1,n.classList.add("has-error"),console.warn(r)}},{key:"setImageTitle",value:function(e,t){e.setAttribute("title",t)}},{key:"showEditScreen",value:function(e){e.preventDefault();var t=e.currentTarget;this.hideTooltip(e);var n=t.closest(".photo"),r=(n.querySelector('input[name="filename"]'),n.querySelector(".edit-screen"));r.classList.add("editing"),setTimeout((function(){r.focus()}),150)}},{key:"handleEditChange",value:function(e){var t=e.target.name;"filename"===t&&this.setState({filename:e.target.value}),"title"===t&&this.setState({title:e.target.value}),"alt"===t&&this.setState({alt:e.target.value}),"caption"===t&&this.setState({caption:e.target.value})}},{key:"saveEditChange",value:function(e){var t=e.currentTarget.closest(".photo"),n=t.querySelector('input[name="filename"]');this.filename=n.value;var r=t.querySelector('input[name="title"]');this.title=r.value;var o=t.querySelector('input[name="alt"]');this.alt=o.value;var i=t.querySelector('textarea[name="caption"]');this.caption=i.value,t.querySelector(".edit-screen").classList.remove("editing"),t.querySelector("a.upload").click()}},{key:"cancelEditChange",value:function(e){var t=e.currentTarget.closest(".photo");if(t){var n=t.querySelector("a.upload"),r=t.querySelector('input[name="filename"]');r.value=r.dataset.original,this.setState({filename:r.value});var o=t.querySelector('input[name="title"]');o.value=o.dataset.original,this.setState({title:o.value});var i=t.querySelector('input[name="alt"]');i.value=i.dataset.original,this.setState({alt:i.value});var a=t.querySelector('textarea[name="caption"]');a.value=a.dataset.original,this.setState({caption:a.value}),t.querySelector(".edit-screen").classList.remove("editing"),n.focus()}}},{key:"closeMediaModal",value:function(){var e=document.querySelector(".media-modal");if(e){var t=e.querySelector("button.media-modal-close");if(!t)return!1;t.click()}}},{key:"render",value:function(){var e=this,t=parseInt(this.likes)>1?instant_img_localize.likes_plural:instant_img_localize.likes;return o.default.createElement("article",{className:"photo"},o.default.createElement("div",{className:"photo--wrap"},o.default.createElement("div",{className:"img-wrap"},o.default.createElement("a",{className:"upload loaded",href:this.full_size,"data-id":this.id,"data-url":this.full_size,"data-filename":this.state.filename,"data-title":this.state.title,"data-alt":this.state.alt,"data-caption":this.state.caption,title:instant_img_localize.upload,onClick:function(t){return e.download(t)}},o.default.createElement("img",{src:this.img,alt:""}),o.default.createElement("div",{className:"status"})),o.default.createElement("div",{className:"notice-msg"}),o.default.createElement("div",{className:"user-controls"},o.default.createElement("a",{className:"user fade",href:"https://unsplash.com/@"+this.user+"?utm_source=wordpress-instant-images&utm_medium=referral",target:"_blank",title:this.view_all+" @"+this.user},o.default.createElement("div",{className:"user-wrap"},this.user_photo.length>0&&o.default.createElement("img",{src:this.user_photo}),this.user)),o.default.createElement("div",{className:"photo-options"},this.displayGutenbergControl&&o.default.createElement("button",{type:"button",className:"set-featured fade","data-title":instant_img_localize.set_as_featured,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.setFeaturedImageClick(t)}},o.default.createElement("i",{className:"fa fa-picture-o","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.set_as_featured)),this.displayGutenbergControl&&o.default.createElement("button",{type:"button",className:"insert fade","data-title":instant_img_localize.insert_into_post,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.insertImageIntoPost(t)}},o.default.createElement("i",{className:"fa fa-plus","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.insert_into_post)),o.default.createElement("a",{href:"#",className:"edit-photo-admin fade","data-title":instant_img_localize.edit_upload,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)}},o.default.createElement("i",{className:"fa fa-pencil","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.edit_upload)),o.default.createElement("button",{type:"button",className:"edit-photo fade","data-title":instant_img_localize.edit_details,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},onClick:function(t){return e.showEditScreen(t)}},o.default.createElement("i",{className:"fa fa-cog","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.edit_details)))),o.default.createElement("div",{className:"options"},o.default.createElement("span",{className:"likes tooltip--above","data-title":this.likes+" "+t,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)}},o.default.createElement("i",{className:"fa fa-heart heart-like","aria-hidden":"true"})," ",this.likes),o.default.createElement("a",{className:"tooltip--above",href:this.link,"data-title":instant_img_localize.view_on_unsplash,onMouseEnter:function(t){return e.showTooltip(t)},onMouseLeave:function(t){return e.hideTooltip(t)},target:"_blank"},o.default.createElement("i",{className:"fa fa-external-link","aria-hidden":"true"}),o.default.createElement("span",{className:"offscreen"},instant_img_localize.view_on_unsplash)))),o.default.createElement("div",{className:"edit-screen",tabIndex:"0"},o.default.createElement("div",{className:"edit-screen--title"},o.default.createElement("p",{className:"heading"},instant_img_localize.edit_details),o.default.createElement("p",null,instant_img_localize.edit_details_intro,".")),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_filename,":"),o.default.createElement("input",{type:"text",name:"filename","data-original":this.filename,placeholder:this.filename,value:this.state.filename,onChange:function(t){return e.handleEditChange(t)}}),o.default.createElement("em",null,".jpg")),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_title,":"),o.default.createElement("input",{type:"text",name:"title","data-original":this.title,placeholder:this.title,value:this.state.title||"",onChange:function(t){return e.handleEditChange(t)}})),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_alt,":"),o.default.createElement("input",{type:"text",name:"alt","data-original":this.alt,value:this.state.alt||"",onChange:function(t){return e.handleEditChange(t)}})),o.default.createElement("label",null,o.default.createElement("span",null,instant_img_localize.edit_caption,":"),o.default.createElement("textarea",{rows:"3",name:"caption","data-original":"",onChange:function(t){return e.handleEditChange(t)},value:this.state.caption||""})),o.default.createElement("div",{className:"edit-screen--controls"},o.default.createElement("button",{type:"button",className:"button",onClick:function(t){return e.cancelEditChange(t)}},instant_img_localize.cancel)," "," ",o.default.createElement("button",{type:"button",className:"button button-primary",onClick:function(t){return e.saveEditChange(t)}},instant_img_localize.upload_now)))))}}]),t}(o.default.Component);t.default=u},function(e,t,n){e.exports=n(195)},function(e,t,n){"use strict";var r=n(6),o=n(87),i=n(196),a=n(93);function s(e){var t=new i(e),n=o(i.prototype.request,t);return r.extend(n,i.prototype,t),r.extend(n,t),n}var u=s(n(90));u.Axios=i,u.create=function(e){return s(a(u.defaults,e))},u.Cancel=n(94),u.CancelToken=n(209),u.isCancel=n(89),u.all=function(e){return Promise.all(e)},u.spread=n(210),u.isAxiosError=n(211),e.exports=u,e.exports.default=u},function(e,t,n){"use strict";var r=n(6),o=n(88),i=n(197),a=n(198),s=n(93);function u(e){this.defaults=e,this.interceptors={request:new i,response:new i}}u.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{}).url=arguments[0]:e=e||{},(e=s(this.defaults,e)).method?e.method=e.method.toLowerCase():this.defaults.method?e.method=this.defaults.method.toLowerCase():e.method="get";var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));t.length;)n=n.then(t.shift(),t.shift());return n},u.prototype.getUri=function(e){return e=s(this.defaults,e),o(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(e){u.prototype[e]=function(t,n){return this.request(s(n||{},{method:e,url:t,data:(n||{}).data}))}})),r.forEach(["post","put","patch"],(function(e){u.prototype[e]=function(t,n,r){return this.request(s(r||{},{method:e,url:t,data:n}))}})),e.exports=u},function(e,t,n){"use strict";var r=n(6);function o(){this.handlers=[]}o.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},o.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},o.prototype.forEach=function(e){r.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=o},function(e,t,n){"use strict";var r=n(6),o=n(199),i=n(89),a=n(90);function s(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){return s(e),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=r.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||a.adapter)(e).then((function(t){return s(e),t.data=o(t.data,t.headers,e.transformResponse),t}),(function(t){return i(t)||(s(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},function(e,t,n){"use strict";var r=n(6);e.exports=function(e,t,n){return r.forEach(n,(function(n){e=n(e,t)})),e}},function(e,t,n){"use strict";var r=n(6);e.exports=function(e,t){r.forEach(e,(function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])}))}},function(e,t,n){"use strict";var r=n(92);e.exports=function(e,t,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?t(r("Request failed with status code "+n.status,n.config,null,n.request,n)):e(n)}},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o){return e.config=t,n&&(e.code=n),e.request=r,e.response=o,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},function(e,t,n){"use strict";var r=n(6);e.exports=r.isStandardBrowserEnv()?{write:function(e,t,n,o,i,a){var s=[];s.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(e,t,n){"use strict";var r=n(205),o=n(206);e.exports=function(e,t){return e&&!r(t)?o(e,t):t}},function(e,t,n){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t,n){"use strict";var r=n(6),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,i,a={};return e?(r.forEach(e.split("\n"),(function(e){if(i=e.indexOf(":"),t=r.trim(e.substr(0,i)).toLowerCase(),n=r.trim(e.substr(i+1)),t){if(a[t]&&o.indexOf(t)>=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([n]):a[t]?a[t]+", "+n:n}})),a):a}},function(e,t,n){"use strict";var r=n(6);e.exports=r.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(e){var r=e;return t&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return e=o(window.location.href),function(t){var n=r.isString(t)?o(t):t;return n.protocol===e.protocol&&n.host===e.host}}():function(){return!0}},function(e,t,n){"use strict";var r=n(94);function o(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var n=this;e((function(e){n.reason||(n.reason=new r(e),t(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var e;return{token:new o((function(t){e=t})),cancel:e}},e.exports=o},function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},function(e,t,n){"use strict";e.exports=function(e){return"object"==typeof e&&!0===e.isAxiosError}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=n(29),a=(r=i)&&r.__esModule?r:{default:r};var s=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),o(t,[{key:"resetSearch",value:function(){this.props.container.querySelector(".control-nav").querySelector("li button.latest").click()}},{key:"render",value:function(){var e=this;return a.default.createElement("div",{className:this.props.isSearch?"searchResults":"searchResults hide"},a.default.createElement("span",{title:this.props.title},this.props.total),a.default.createElement("button",{type:"button",title:instant_img_localize.clear_search,onClick:function(t){return e.resetSearch()}},"x",a.default.createElement("span",{className:"offscreen"},instant_img_localize.clear_search)))}}]),t}(a.default.Component);t.default=s},function(e,t,n){var r,o;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
/*!
|
47 |
+
* imagesLoaded v4.1.4
|
48 |
* JavaScript is all like "You images are done yet or what?"
|
49 |
* MIT License
|
50 |
+
*/!function(i,a){"use strict";r=[n(49)],void 0===(o=function(e){return function(e,t){var n=e.jQuery,r=e.console;function o(e,t){for(var n in t)e[n]=t[n];return e}var i=Array.prototype.slice;function a(e,t,s){if(!(this instanceof a))return new a(e,t,s);var u,l=e;("string"==typeof e&&(l=document.querySelectorAll(e)),l)?(this.elements=(u=l,Array.isArray(u)?u:"object"==typeof u&&"number"==typeof u.length?i.call(u):[u]),this.options=o({},this.options),"function"==typeof t?s=t:o(this.options,t),s&&this.on("always",s),this.getImages(),n&&(this.jqDeferred=new n.Deferred),setTimeout(this.check.bind(this))):r.error("Bad element for imagesLoaded "+(l||e))}a.prototype=Object.create(t.prototype),a.prototype.options={},a.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},a.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&s[t]){for(var n=e.querySelectorAll("img"),r=0;r<n.length;r++){var o=n[r];this.addImage(o)}if("string"==typeof this.options.background){var i=e.querySelectorAll(this.options.background);for(r=0;r<i.length;r++){var a=i[r];this.addElementBackgroundImages(a)}}}};var s={1:!0,9:!0,11:!0};function u(e){this.img=e}function l(e,t){this.url=e,this.element=t,this.img=new Image}return a.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var n=/url\((['"])?(.*?)\1\)/gi,r=n.exec(t.backgroundImage);null!==r;){var o=r&&r[2];o&&this.addBackground(o,e),r=n.exec(t.backgroundImage)}},a.prototype.addImage=function(e){var t=new u(e);this.images.push(t)},a.prototype.addBackground=function(e,t){var n=new l(e,t);this.images.push(n)},a.prototype.check=function(){var e=this;function t(t,n,r){setTimeout((function(){e.progress(t,n,r)}))}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach((function(e){e.once("progress",t),e.check()})):this.complete()},a.prototype.progress=function(e,t,n){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+n,e,t)},a.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},u.prototype=Object.create(t.prototype),u.prototype.check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},u.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},u.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},u.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},u.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},u.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},u.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},l.prototype=Object.create(u.prototype),l.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},l.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},l.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},a.makeJQueryPlugin=function(t){(t=t||e.jQuery)&&((n=t).fn.imagesLoaded=function(e,t){return new a(this,e,t).jqDeferred.promise(n(this))})},a.makeJQueryPlugin(),a}(i,e)}.apply(t,r))||(e.exports=o)}("undefined"!=typeof window?window:this)},,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,o=n(220),i=(r=o)&&r.__esModule?r:{default:r};t.default=function(e){var t=e.color,n=void 0===t?"unsplash":t;return React.createElement("span",{className:(0,i.default)("instant-images-sidebar-icon","color-"+n)},React.createElement("svg",{viewBox:"0 0 31 58",width:"13px",height:"24px"},React.createElement("title",null,"Instant Images Logo"),React.createElement("polygon",{points:"20 0 20 23 31 23 11 58 11 34 0 34 20 0",fill:"#4a7bc5"})))}},function(e,t,n){var r;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
/*!
|
52 |
Copyright (c) 2017 Jed Watson.
|
53 |
Licensed under the MIT License (MIT), see
|
54 |
http://jedwatson.github.io/classnames
|
55 |
+
*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else if("object"===i)for(var s in r)n.call(r,s)&&r[s]&&e.push(s)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},,,function(e,t,n){"use strict";var r=i(n(224)),o=i(n(227));function i(e){return e&&e.__esModule?e:{default:e}}var a=wp.element.Fragment;(0,wp.plugins.registerPlugin)("instant-images",{render:function(){return React.createElement(a,null,React.createElement(o.default,null),React.createElement(r.default,null))}})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=s(n(219)),o=s(n(225)),i=s(n(226)),a=s(n(183));function s(e){return e&&e.__esModule?e:{default:e}}var u=wp.editPost.PluginSidebar;t.default=function(){return React.createElement(u,{icon:React.createElement(r.default,{borderless:!0,color:"unsplash"}),name:"instant-images-sidebar",title:"Instant Images"},React.createElement("div",{className:"instant-img-container"},React.createElement(a.default,{editor:"gutenberg",page:"1",orderby:"latest",service:"unsplash",SetFeaturedImage:o.default,InsertImage:i.default})))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=wp.data.dispatch;t.default=function(e){if(null===e)return!1;r("core/editor").editPost({featured_media:e})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=wp.blocks.createBlock;t.default=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";if(""===e)return!1;var o=r("core/image",{url:e,caption:t,alt:n});wp.data.dispatch("core/editor").insertBlocks(o)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});o(n(220));var r=o(n(219));function o(e){return e&&e.__esModule?e:{default:e}}var i=wp.editPost.PluginSidebarMoreMenuItem;t.default=function(){return React.createElement(i,{icon:React.createElement(r.default,{color:"unsplash"}),target:"instant-images-sidebar",className:"instant-images-menu-item"},"Instant Images")}}]);
|
|
dist/js/instant-images-media.js
CHANGED
@@ -109,11 +109,12 @@ module.exports = __webpack_require__(/*! ./lib/axios */ "./node_modules/axios/li
|
|
109 |
|
110 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
111 |
var settle = __webpack_require__(/*! ./../core/settle */ "./node_modules/axios/lib/core/settle.js");
|
|
|
112 |
var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
|
|
113 |
var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./node_modules/axios/lib/helpers/parseHeaders.js");
|
114 |
var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
115 |
var createError = __webpack_require__(/*! ../core/createError */ "./node_modules/axios/lib/core/createError.js");
|
116 |
-
var btoa = (typeof window !== 'undefined' && window.btoa && window.btoa.bind(window)) || __webpack_require__(/*! ./../helpers/btoa */ "./node_modules/axios/lib/helpers/btoa.js");
|
117 |
|
118 |
module.exports = function xhrAdapter(config) {
|
119 |
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
@@ -125,38 +126,23 @@ module.exports = function xhrAdapter(config) {
|
|
125 |
}
|
126 |
|
127 |
var request = new XMLHttpRequest();
|
128 |
-
var loadEvent = 'onreadystatechange';
|
129 |
-
var xDomain = false;
|
130 |
-
|
131 |
-
// For IE 8/9 CORS support
|
132 |
-
// Only supports POST and GET calls and doesn't returns the response headers.
|
133 |
-
// DON'T do this for testing b/c XMLHttpRequest is mocked, not XDomainRequest.
|
134 |
-
if ( true &&
|
135 |
-
typeof window !== 'undefined' &&
|
136 |
-
window.XDomainRequest && !('withCredentials' in request) &&
|
137 |
-
!isURLSameOrigin(config.url)) {
|
138 |
-
request = new window.XDomainRequest();
|
139 |
-
loadEvent = 'onload';
|
140 |
-
xDomain = true;
|
141 |
-
request.onprogress = function handleProgress() {};
|
142 |
-
request.ontimeout = function handleTimeout() {};
|
143 |
-
}
|
144 |
|
145 |
// HTTP basic authentication
|
146 |
if (config.auth) {
|
147 |
var username = config.auth.username || '';
|
148 |
-
var password = config.auth.password
|
149 |
requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
|
150 |
}
|
151 |
|
152 |
-
|
|
|
153 |
|
154 |
// Set the request timeout in MS
|
155 |
request.timeout = config.timeout;
|
156 |
|
157 |
// Listen for ready state
|
158 |
-
request
|
159 |
-
if (!request ||
|
160 |
return;
|
161 |
}
|
162 |
|
@@ -173,9 +159,8 @@ module.exports = function xhrAdapter(config) {
|
|
173 |
var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;
|
174 |
var response = {
|
175 |
data: responseData,
|
176 |
-
|
177 |
-
|
178 |
-
statusText: request.status === 1223 ? 'No Content' : request.statusText,
|
179 |
headers: responseHeaders,
|
180 |
config: config,
|
181 |
request: request
|
@@ -187,6 +172,18 @@ module.exports = function xhrAdapter(config) {
|
|
187 |
request = null;
|
188 |
};
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
// Handle low level network errors
|
191 |
request.onerror = function handleError() {
|
192 |
// Real errors are hidden from us by the browser
|
@@ -199,7 +196,11 @@ module.exports = function xhrAdapter(config) {
|
|
199 |
|
200 |
// Handle timeout
|
201 |
request.ontimeout = function handleTimeout() {
|
202 |
-
|
|
|
|
|
|
|
|
|
203 |
request));
|
204 |
|
205 |
// Clean up request
|
@@ -210,12 +211,10 @@ module.exports = function xhrAdapter(config) {
|
|
210 |
// This is only done if running in a standard browser environment.
|
211 |
// Specifically not if we're in a web worker, or react-native.
|
212 |
if (utils.isStandardBrowserEnv()) {
|
213 |
-
var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./node_modules/axios/lib/helpers/cookies.js");
|
214 |
-
|
215 |
// Add xsrf header
|
216 |
-
var xsrfValue = (config.withCredentials || isURLSameOrigin(
|
217 |
-
|
218 |
-
|
219 |
|
220 |
if (xsrfValue) {
|
221 |
requestHeaders[config.xsrfHeaderName] = xsrfValue;
|
@@ -236,8 +235,8 @@ module.exports = function xhrAdapter(config) {
|
|
236 |
}
|
237 |
|
238 |
// Add withCredentials to request if needed
|
239 |
-
if (config.withCredentials) {
|
240 |
-
request.withCredentials =
|
241 |
}
|
242 |
|
243 |
// Add responseType to request if needed
|
@@ -277,7 +276,7 @@ module.exports = function xhrAdapter(config) {
|
|
277 |
});
|
278 |
}
|
279 |
|
280 |
-
if (requestData
|
281 |
requestData = null;
|
282 |
}
|
283 |
|
@@ -302,6 +301,7 @@ module.exports = function xhrAdapter(config) {
|
|
302 |
var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js");
|
303 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
304 |
var Axios = __webpack_require__(/*! ./core/Axios */ "./node_modules/axios/lib/core/Axios.js");
|
|
|
305 |
var defaults = __webpack_require__(/*! ./defaults */ "./node_modules/axios/lib/defaults.js");
|
306 |
|
307 |
/**
|
@@ -331,7 +331,7 @@ axios.Axios = Axios;
|
|
331 |
|
332 |
// Factory for creating new instances
|
333 |
axios.create = function create(instanceConfig) {
|
334 |
-
return createInstance(
|
335 |
};
|
336 |
|
337 |
// Expose Cancel & CancelToken
|
@@ -345,6 +345,9 @@ axios.all = function all(promises) {
|
|
345 |
};
|
346 |
axios.spread = __webpack_require__(/*! ./helpers/spread */ "./node_modules/axios/lib/helpers/spread.js");
|
347 |
|
|
|
|
|
|
|
348 |
module.exports = axios;
|
349 |
|
350 |
// Allow use of default import syntax in TypeScript
|
@@ -480,10 +483,11 @@ module.exports = function isCancel(value) {
|
|
480 |
"use strict";
|
481 |
|
482 |
|
483 |
-
var defaults = __webpack_require__(/*! ./../defaults */ "./node_modules/axios/lib/defaults.js");
|
484 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
|
|
485 |
var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./node_modules/axios/lib/core/InterceptorManager.js");
|
486 |
var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./node_modules/axios/lib/core/dispatchRequest.js");
|
|
|
487 |
|
488 |
/**
|
489 |
* Create a new instance of Axios
|
@@ -507,13 +511,22 @@ Axios.prototype.request = function request(config) {
|
|
507 |
/*eslint no-param-reassign:0*/
|
508 |
// Allow for axios('example/url'[, config]) a la fetch API
|
509 |
if (typeof config === 'string') {
|
510 |
-
config =
|
511 |
-
|
512 |
-
|
|
|
513 |
}
|
514 |
|
515 |
-
config =
|
516 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
|
518 |
// Hook up interceptors middleware
|
519 |
var chain = [dispatchRequest, undefined];
|
@@ -534,13 +547,19 @@ Axios.prototype.request = function request(config) {
|
|
534 |
return promise;
|
535 |
};
|
536 |
|
|
|
|
|
|
|
|
|
|
|
537 |
// Provide aliases for supported request methods
|
538 |
utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
539 |
/*eslint func-names:0*/
|
540 |
Axios.prototype[method] = function(url, config) {
|
541 |
-
return this.request(
|
542 |
method: method,
|
543 |
-
url: url
|
|
|
544 |
}));
|
545 |
};
|
546 |
});
|
@@ -548,7 +567,7 @@ utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData
|
|
548 |
utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
549 |
/*eslint func-names:0*/
|
550 |
Axios.prototype[method] = function(url, data, config) {
|
551 |
-
return this.request(
|
552 |
method: method,
|
553 |
url: url,
|
554 |
data: data
|
@@ -623,6 +642,38 @@ InterceptorManager.prototype.forEach = function forEach(fn) {
|
|
623 |
module.exports = InterceptorManager;
|
624 |
|
625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
/***/ }),
|
627 |
|
628 |
/***/ "./node_modules/axios/lib/core/createError.js":
|
@@ -669,8 +720,6 @@ var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/util
|
|
669 |
var transformData = __webpack_require__(/*! ./transformData */ "./node_modules/axios/lib/core/transformData.js");
|
670 |
var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js");
|
671 |
var defaults = __webpack_require__(/*! ../defaults */ "./node_modules/axios/lib/defaults.js");
|
672 |
-
var isAbsoluteURL = __webpack_require__(/*! ./../helpers/isAbsoluteURL */ "./node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
673 |
-
var combineURLs = __webpack_require__(/*! ./../helpers/combineURLs */ "./node_modules/axios/lib/helpers/combineURLs.js");
|
674 |
|
675 |
/**
|
676 |
* Throws a `Cancel` if cancellation has been requested.
|
@@ -690,11 +739,6 @@ function throwIfCancellationRequested(config) {
|
|
690 |
module.exports = function dispatchRequest(config) {
|
691 |
throwIfCancellationRequested(config);
|
692 |
|
693 |
-
// Support baseURL config
|
694 |
-
if (config.baseURL && !isAbsoluteURL(config.url)) {
|
695 |
-
config.url = combineURLs(config.baseURL, config.url);
|
696 |
-
}
|
697 |
-
|
698 |
// Ensure headers exist
|
699 |
config.headers = config.headers || {};
|
700 |
|
@@ -709,7 +753,7 @@ module.exports = function dispatchRequest(config) {
|
|
709 |
config.headers = utils.merge(
|
710 |
config.headers.common || {},
|
711 |
config.headers[config.method] || {},
|
712 |
-
config.headers
|
713 |
);
|
714 |
|
715 |
utils.forEach(
|
@@ -778,12 +822,132 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
778 |
if (code) {
|
779 |
error.code = code;
|
780 |
}
|
|
|
781 |
error.request = request;
|
782 |
error.response = response;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
return error;
|
784 |
};
|
785 |
|
786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
/***/ }),
|
788 |
|
789 |
/***/ "./node_modules/axios/lib/core/settle.js":
|
@@ -807,7 +971,6 @@ var createError = __webpack_require__(/*! ./createError */ "./node_modules/axios
|
|
807 |
*/
|
808 |
module.exports = function settle(resolve, reject, response) {
|
809 |
var validateStatus = response.config.validateStatus;
|
810 |
-
// Note: status is not exposed by XDomainRequest
|
811 |
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
812 |
resolve(response);
|
813 |
} else {
|
@@ -884,7 +1047,7 @@ function getDefaultAdapter() {
|
|
884 |
if (typeof XMLHttpRequest !== 'undefined') {
|
885 |
// For browsers use XHR adapter
|
886 |
adapter = __webpack_require__(/*! ./adapters/xhr */ "./node_modules/axios/lib/adapters/xhr.js");
|
887 |
-
} else if (typeof process !== 'undefined') {
|
888 |
// For node use HTTP adapter
|
889 |
adapter = __webpack_require__(/*! ./adapters/http */ "./node_modules/axios/lib/adapters/xhr.js");
|
890 |
}
|
@@ -895,6 +1058,7 @@ var defaults = {
|
|
895 |
adapter: getDefaultAdapter(),
|
896 |
|
897 |
transformRequest: [function transformRequest(data, headers) {
|
|
|
898 |
normalizeHeaderName(headers, 'Content-Type');
|
899 |
if (utils.isFormData(data) ||
|
900 |
utils.isArrayBuffer(data) ||
|
@@ -939,6 +1103,7 @@ var defaults = {
|
|
939 |
xsrfHeaderName: 'X-XSRF-TOKEN',
|
940 |
|
941 |
maxContentLength: -1,
|
|
|
942 |
|
943 |
validateStatus: function validateStatus(status) {
|
944 |
return status >= 200 && status < 300;
|
@@ -986,54 +1151,6 @@ module.exports = function bind(fn, thisArg) {
|
|
986 |
};
|
987 |
|
988 |
|
989 |
-
/***/ }),
|
990 |
-
|
991 |
-
/***/ "./node_modules/axios/lib/helpers/btoa.js":
|
992 |
-
/*!************************************************!*\
|
993 |
-
!*** ./node_modules/axios/lib/helpers/btoa.js ***!
|
994 |
-
\************************************************/
|
995 |
-
/*! no static exports found */
|
996 |
-
/***/ (function(module, exports, __webpack_require__) {
|
997 |
-
|
998 |
-
"use strict";
|
999 |
-
|
1000 |
-
|
1001 |
-
// btoa polyfill for IE<10 courtesy https://github.com/davidchambers/Base64.js
|
1002 |
-
|
1003 |
-
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
1004 |
-
|
1005 |
-
function E() {
|
1006 |
-
this.message = 'String contains an invalid character';
|
1007 |
-
}
|
1008 |
-
E.prototype = new Error;
|
1009 |
-
E.prototype.code = 5;
|
1010 |
-
E.prototype.name = 'InvalidCharacterError';
|
1011 |
-
|
1012 |
-
function btoa(input) {
|
1013 |
-
var str = String(input);
|
1014 |
-
var output = '';
|
1015 |
-
for (
|
1016 |
-
// initialize result and counter
|
1017 |
-
var block, charCode, idx = 0, map = chars;
|
1018 |
-
// if the next str index does not exist:
|
1019 |
-
// change the mapping table to "="
|
1020 |
-
// check if d has no fractional digits
|
1021 |
-
str.charAt(idx | 0) || (map = '=', idx % 1);
|
1022 |
-
// "8 - idx % 1 * 8" generates the sequence 2, 4, 6, 8
|
1023 |
-
output += map.charAt(63 & block >> 8 - idx % 1 * 8)
|
1024 |
-
) {
|
1025 |
-
charCode = str.charCodeAt(idx += 3 / 4);
|
1026 |
-
if (charCode > 0xFF) {
|
1027 |
-
throw new E();
|
1028 |
-
}
|
1029 |
-
block = block << 8 | charCode;
|
1030 |
-
}
|
1031 |
-
return output;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
module.exports = btoa;
|
1035 |
-
|
1036 |
-
|
1037 |
/***/ }),
|
1038 |
|
1039 |
/***/ "./node_modules/axios/lib/helpers/buildURL.js":
|
@@ -1050,7 +1167,6 @@ var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/util
|
|
1050 |
|
1051 |
function encode(val) {
|
1052 |
return encodeURIComponent(val).
|
1053 |
-
replace(/%40/gi, '@').
|
1054 |
replace(/%3A/gi, ':').
|
1055 |
replace(/%24/g, '$').
|
1056 |
replace(/%2C/gi, ',').
|
@@ -1105,6 +1221,11 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
1105 |
}
|
1106 |
|
1107 |
if (serializedParams) {
|
|
|
|
|
|
|
|
|
|
|
1108 |
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
|
1109 |
}
|
1110 |
|
@@ -1156,50 +1277,50 @@ module.exports = (
|
|
1156 |
utils.isStandardBrowserEnv() ?
|
1157 |
|
1158 |
// Standard browser envs support document.cookie
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
|
1181 |
-
|
1182 |
-
|
1183 |
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
|
1195 |
// Non standard browser env (web workers, react-native) lack needed support.
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
);
|
1204 |
|
1205 |
|
@@ -1229,6 +1350,29 @@ module.exports = function isAbsoluteURL(url) {
|
|
1229 |
};
|
1230 |
|
1231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1232 |
/***/ }),
|
1233 |
|
1234 |
/***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
@@ -1248,64 +1392,64 @@ module.exports = (
|
|
1248 |
|
1249 |
// Standard browser envs have full support of the APIs needed to test
|
1250 |
// whether the request URL is of the same origin as current location.
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
|
1256 |
-
|
1257 |
* Parse a URL to discover it's components
|
1258 |
*
|
1259 |
* @param {String} url The URL to be parsed
|
1260 |
* @returns {Object}
|
1261 |
*/
|
1262 |
-
|
1263 |
-
|
1264 |
|
1265 |
-
|
1266 |
// IE needs attribute set twice to normalize properties
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
|
1271 |
-
|
1272 |
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
|
1288 |
-
|
1289 |
|
1290 |
-
|
1291 |
* Determine if a URL shares the same origin as the current location
|
1292 |
*
|
1293 |
* @param {String} requestURL The URL to test
|
1294 |
* @returns {boolean} True if URL shares the same origin, otherwise false
|
1295 |
*/
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
parsed.host === originURL.host);
|
1300 |
-
|
1301 |
-
|
1302 |
|
1303 |
// Non standard browser envs (web workers, react-native) lack needed support.
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
);
|
1310 |
|
1311 |
|
@@ -1450,7 +1594,6 @@ module.exports = function spread(callback) {
|
|
1450 |
|
1451 |
|
1452 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
1453 |
-
var isBuffer = __webpack_require__(/*! is-buffer */ "./node_modules/is-buffer/index.js");
|
1454 |
|
1455 |
/*global toString:true*/
|
1456 |
|
@@ -1468,6 +1611,27 @@ function isArray(val) {
|
|
1468 |
return toString.call(val) === '[object Array]';
|
1469 |
}
|
1470 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1471 |
/**
|
1472 |
* Determine if a value is an ArrayBuffer
|
1473 |
*
|
@@ -1525,23 +1689,28 @@ function isNumber(val) {
|
|
1525 |
}
|
1526 |
|
1527 |
/**
|
1528 |
-
* Determine if a value is
|
1529 |
*
|
1530 |
* @param {Object} val The value to test
|
1531 |
-
* @returns {boolean} True if
|
1532 |
*/
|
1533 |
-
function
|
1534 |
-
return typeof val === '
|
1535 |
}
|
1536 |
|
1537 |
/**
|
1538 |
-
* Determine if a value is
|
1539 |
*
|
1540 |
* @param {Object} val The value to test
|
1541 |
-
* @
|
1542 |
*/
|
1543 |
-
function
|
1544 |
-
|
|
|
|
|
|
|
|
|
|
|
1545 |
}
|
1546 |
|
1547 |
/**
|
@@ -1626,9 +1795,13 @@ function trim(str) {
|
|
1626 |
*
|
1627 |
* react-native:
|
1628 |
* navigator.product -> 'ReactNative'
|
|
|
|
|
1629 |
*/
|
1630 |
function isStandardBrowserEnv() {
|
1631 |
-
if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative'
|
|
|
|
|
1632 |
return false;
|
1633 |
}
|
1634 |
return (
|
@@ -1696,8 +1869,12 @@ function forEach(obj, fn) {
|
|
1696 |
function merge(/* obj1, obj2, obj3, ... */) {
|
1697 |
var result = {};
|
1698 |
function assignValue(val, key) {
|
1699 |
-
if (
|
1700 |
result[key] = merge(result[key], val);
|
|
|
|
|
|
|
|
|
1701 |
} else {
|
1702 |
result[key] = val;
|
1703 |
}
|
@@ -1728,6 +1905,19 @@ function extend(a, b, thisArg) {
|
|
1728 |
return a;
|
1729 |
}
|
1730 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1731 |
module.exports = {
|
1732 |
isArray: isArray,
|
1733 |
isArrayBuffer: isArrayBuffer,
|
@@ -1737,6 +1927,7 @@ module.exports = {
|
|
1737 |
isString: isString,
|
1738 |
isNumber: isNumber,
|
1739 |
isObject: isObject,
|
|
|
1740 |
isUndefined: isUndefined,
|
1741 |
isDate: isDate,
|
1742 |
isFile: isFile,
|
@@ -1748,7 +1939,8 @@ module.exports = {
|
|
1748 |
forEach: forEach,
|
1749 |
merge: merge,
|
1750 |
extend: extend,
|
1751 |
-
trim: trim
|
|
|
1752 |
};
|
1753 |
|
1754 |
|
@@ -6087,38 +6279,6 @@ return ImagesLoaded;
|
|
6087 |
});
|
6088 |
|
6089 |
|
6090 |
-
/***/ }),
|
6091 |
-
|
6092 |
-
/***/ "./node_modules/is-buffer/index.js":
|
6093 |
-
/*!*****************************************!*\
|
6094 |
-
!*** ./node_modules/is-buffer/index.js ***!
|
6095 |
-
\*****************************************/
|
6096 |
-
/*! no static exports found */
|
6097 |
-
/***/ (function(module, exports) {
|
6098 |
-
|
6099 |
-
/*!
|
6100 |
-
* Determine if an object is a Buffer
|
6101 |
-
*
|
6102 |
-
* @author Feross Aboukhadijeh <https://feross.org>
|
6103 |
-
* @license MIT
|
6104 |
-
*/
|
6105 |
-
|
6106 |
-
// The _isBuffer check is for Safari 5-7 support, because it's missing
|
6107 |
-
// Object.prototype.constructor. Remove this eventually
|
6108 |
-
module.exports = function (obj) {
|
6109 |
-
return obj != null && (isBuffer(obj) || isSlowBuffer(obj) || !!obj._isBuffer)
|
6110 |
-
}
|
6111 |
-
|
6112 |
-
function isBuffer (obj) {
|
6113 |
-
return !!obj.constructor && typeof obj.constructor.isBuffer === 'function' && obj.constructor.isBuffer(obj)
|
6114 |
-
}
|
6115 |
-
|
6116 |
-
// For Node v0.10 support. Remove this eventually.
|
6117 |
-
function isSlowBuffer (obj) {
|
6118 |
-
return typeof obj.readFloatLE === 'function' && typeof obj.slice === 'function' && isBuffer(obj.slice(0, 0))
|
6119 |
-
}
|
6120 |
-
|
6121 |
-
|
6122 |
/***/ }),
|
6123 |
|
6124 |
/***/ "./node_modules/isomorphic-fetch/fetch-npm-browserify.js":
|
@@ -29197,10 +29357,11 @@ module.exports = g;
|
|
29197 |
|
29198 |
|
29199 |
module.exports = {
|
29200 |
-
photo_api:
|
29201 |
-
|
29202 |
-
|
29203 |
-
|
|
|
29204 |
};
|
29205 |
|
29206 |
/***/ }),
|
@@ -29312,7 +29473,7 @@ if (!Array.from) {
|
|
29312 |
|
29313 |
|
29314 |
Object.defineProperty(exports, "__esModule", {
|
29315 |
-
|
29316 |
});
|
29317 |
|
29318 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -29338,821 +29499,864 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
29338 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
29339 |
|
29340 |
var Photo = function (_React$Component) {
|
29341 |
-
|
29342 |
-
|
29343 |
-
|
29344 |
-
|
29345 |
-
|
29346 |
-
|
29347 |
-
|
29348 |
-
|
29349 |
-
|
29350 |
-
|
29351 |
-
|
29352 |
-
|
29353 |
-
|
29354 |
-
|
29355 |
-
|
29356 |
-
|
29357 |
-
|
29358 |
-
|
29359 |
-
|
29360 |
-
|
29361 |
-
|
29362 |
-
|
29363 |
-
|
29364 |
-
|
29365 |
-
|
29366 |
-
|
29367 |
-
|
29368 |
-
|
29369 |
-
|
29370 |
-
|
29371 |
-
|
29372 |
-
|
29373 |
-
|
29374 |
-
|
29375 |
-
|
29376 |
-
|
29377 |
-
|
29378 |
-
|
29379 |
-
|
29380 |
-
|
29381 |
-
|
29382 |
-
|
29383 |
-
|
29384 |
-
|
29385 |
-
|
29386 |
-
|
29387 |
-
|
29388 |
-
|
29389 |
-
|
29390 |
-
return _this;
|
29391 |
-
}
|
29392 |
|
29393 |
-
|
29394 |
-
|
29395 |
-
|
29396 |
-
|
29397 |
-
|
29398 |
-
*/
|
29399 |
|
29400 |
|
29401 |
-
|
29402 |
-
|
29403 |
-
|
29404 |
-
|
29405 |
-
|
29406 |
-
var self = this;
|
29407 |
-
|
29408 |
-
var target = e.currentTarget; // get current <a/>
|
29409 |
-
var photo = target.parentElement.parentElement.parentElement; // Get parent .photo el
|
29410 |
-
var notice = photo.querySelector('.notice-msg'); // Locate .notice-msg div
|
29411 |
-
|
29412 |
-
if (!target.classList.contains('upload')) {
|
29413 |
-
// If target is .download-photo, switch target definition
|
29414 |
-
target = photo.querySelector('a.upload');
|
29415 |
-
}
|
29416 |
-
|
29417 |
-
if (target.classList.contains('success') || this.inProgress) {
|
29418 |
-
return false; // Exit if already uploaded or in progress.
|
29419 |
-
}
|
29420 |
-
this.inProgress = true;
|
29421 |
-
|
29422 |
-
target.classList.add('uploading');
|
29423 |
-
photo.classList.add('in-progress');
|
29424 |
-
|
29425 |
-
// Status messaging
|
29426 |
-
notice.innerHTML = instant_img_localize.saving;
|
29427 |
-
setTimeout(function () {
|
29428 |
-
// Change notice after 3 seconds
|
29429 |
-
notice.innerHTML = instant_img_localize.resizing;
|
29430 |
-
setTimeout(function () {
|
29431 |
-
// Change notice again after 5 seconds (Still resizing...)
|
29432 |
-
notice.innerHTML = instant_img_localize.resizing_still;
|
29433 |
-
}, 5000);
|
29434 |
-
}, 3000);
|
29435 |
-
|
29436 |
-
// API URL
|
29437 |
-
var api = instant_img_localize.root + 'instant-images/download/';
|
29438 |
-
|
29439 |
-
// Data Params
|
29440 |
-
var data = {
|
29441 |
-
id: target.getAttribute('data-id'),
|
29442 |
-
image_url: target.getAttribute('data-url'),
|
29443 |
-
filename: target.getAttribute('data-id') + '.jpg',
|
29444 |
-
custom_filename: target.getAttribute('data-filename'),
|
29445 |
-
title: target.getAttribute('data-title'),
|
29446 |
-
alt: target.getAttribute('data-alt'),
|
29447 |
-
caption: target.getAttribute('data-caption'),
|
29448 |
-
parent_id: instant_img_localize.parent_id
|
29449 |
-
|
29450 |
-
// Config Params
|
29451 |
-
};var config = {
|
29452 |
-
headers: {
|
29453 |
-
'X-WP-Nonce': instant_img_localize.nonce,
|
29454 |
-
'Content-Type': 'application/json'
|
29455 |
-
}
|
29456 |
-
};
|
29457 |
-
|
29458 |
-
_axios2.default.post(api, JSON.stringify(data), config).then(function (res) {
|
29459 |
-
|
29460 |
-
var response = res.data;
|
29461 |
-
|
29462 |
-
if (response) {
|
29463 |
-
|
29464 |
-
// Successful response from server
|
29465 |
-
var success = response.success;
|
29466 |
-
var id = response.id;
|
29467 |
-
var attachment = response.attachment;
|
29468 |
-
var admin_url = response.admin_url;
|
29469 |
-
var msg = response.msg;
|
29470 |
-
|
29471 |
-
if (success) {
|
29472 |
-
|
29473 |
-
// Edit URL
|
29474 |
-
var edit_url = admin_url + 'post.php?post=' + attachment.id + '&action=edit';
|
29475 |
-
|
29476 |
-
// Success/Upload Complete
|
29477 |
-
self.uploadComplete(target, photo, msg, edit_url, attachment.id);
|
29478 |
-
|
29479 |
-
// Trigger Download Counter at Unsplash
|
29480 |
-
self.triggerUnsplashDownload(id);
|
29481 |
-
|
29482 |
-
// Set Featured Image [Gutenberg Sidebar]
|
29483 |
-
if (self.displayGutenbergControl && self.setAsFeaturedImage) {
|
29484 |
-
self.SetFeaturedImage(attachment.id);
|
29485 |
-
self.setAsFeaturedImage = false;
|
29486 |
-
self.closeMediaModal();
|
29487 |
-
}
|
29488 |
-
|
29489 |
-
// Insert Image [Gutenberg Sidebar]
|
29490 |
-
if (self.displayGutenbergControl && self.insertIntoPost) {
|
29491 |
-
if (attachment.url) {
|
29492 |
-
self.InsertImage(attachment.url, attachment.caption, attachment.alt);
|
29493 |
-
self.closeMediaModal();
|
29494 |
-
}
|
29495 |
-
self.insertIntoPost = false;
|
29496 |
-
}
|
29497 |
-
|
29498 |
-
// If is media popup, redirect user to media-upload settings
|
29499 |
-
if (self.container.dataset.mediaPopup === 'true' && !self.is_block_editor) {
|
29500 |
-
window.location = 'media-upload.php?type=image&tab=library&attachment_id=' + attachment.id;
|
29501 |
-
}
|
29502 |
-
} else {
|
29503 |
-
// Error
|
29504 |
-
self.uploadError(target, photo, notice, msg);
|
29505 |
-
}
|
29506 |
-
} else {
|
29507 |
-
// Error
|
29508 |
-
self.uploadError(target, photo, notice, instant_img_localize.error_upload);
|
29509 |
-
}
|
29510 |
-
}).catch(function (error) {
|
29511 |
-
console.log(error);
|
29512 |
-
});
|
29513 |
-
}
|
29514 |
-
|
29515 |
-
/*
|
29516 |
-
* triggerUnsplashDownload
|
29517 |
-
* Function to trigger download action at unsplash.com
|
29518 |
-
* This is used to give authors download credits and nothing more
|
29519 |
-
*
|
29520 |
-
* @param id string The ID of the image
|
29521 |
-
* @since 3.1
|
29522 |
-
*/
|
29523 |
-
|
29524 |
-
}, {
|
29525 |
-
key: 'triggerUnsplashDownload',
|
29526 |
-
value: function triggerUnsplashDownload(id) {
|
29527 |
-
|
29528 |
-
var url = _API2.default.photo_api + '/' + id + '/download/' + _API2.default.app_id;
|
29529 |
-
|
29530 |
-
fetch(url).then(function (data) {
|
29531 |
-
return data.json();
|
29532 |
-
}).then(function (data) {
|
29533 |
-
// Success, nothing else happens here
|
29534 |
-
}).catch(function (error) {
|
29535 |
-
console.log(error);
|
29536 |
-
});
|
29537 |
-
}
|
29538 |
-
|
29539 |
-
/*
|
29540 |
-
* setFeaturedImageClick
|
29541 |
-
* Function used to trigger a download and then set as featured image
|
29542 |
-
*
|
29543 |
-
* @since 4.0
|
29544 |
-
*/
|
29545 |
-
|
29546 |
-
}, {
|
29547 |
-
key: 'setFeaturedImageClick',
|
29548 |
-
value: function setFeaturedImageClick(e) {
|
29549 |
-
var target = e.currentTarget;
|
29550 |
-
if (!target) {
|
29551 |
-
return false;
|
29552 |
-
}
|
29553 |
-
|
29554 |
-
this.hideTooltip(e);
|
29555 |
-
var parent = target.parentNode.parentNode.parentNode;
|
29556 |
-
var photo = parent.querySelector('a.upload');
|
29557 |
-
if (photo) {
|
29558 |
-
this.setAsFeaturedImage = true;
|
29559 |
-
photo.click();
|
29560 |
-
}
|
29561 |
-
}
|
29562 |
-
|
29563 |
-
/*
|
29564 |
-
* insertImageIntoPost
|
29565 |
-
* Function used to insert an image directly into the block (Gutenberg) editor.
|
29566 |
-
*
|
29567 |
-
* @since 4.0
|
29568 |
-
*/
|
29569 |
-
|
29570 |
-
}, {
|
29571 |
-
key: 'insertImageIntoPost',
|
29572 |
-
value: function insertImageIntoPost(e) {
|
29573 |
-
var target = e.currentTarget;
|
29574 |
-
if (!target) {
|
29575 |
-
return false;
|
29576 |
-
}
|
29577 |
-
|
29578 |
-
this.hideTooltip(e);
|
29579 |
-
var parent = target.parentNode.parentNode.parentNode;
|
29580 |
-
var photo = parent.querySelector('a.upload');
|
29581 |
-
if (photo) {
|
29582 |
-
this.insertIntoPost = true;
|
29583 |
-
photo.click();
|
29584 |
-
}
|
29585 |
-
}
|
29586 |
-
|
29587 |
-
/*
|
29588 |
-
* uploadComplete
|
29589 |
-
* Function runs when upload has completed
|
29590 |
-
*
|
29591 |
-
* @param target element clicked item
|
29592 |
-
* @param photo element Nearest parent .photo
|
29593 |
-
* @param msg string Success Msg
|
29594 |
-
* @param url string The attachment edit link
|
29595 |
-
* @param id string The attachment id
|
29596 |
-
* @since 3.0
|
29597 |
-
*/
|
29598 |
-
|
29599 |
-
}, {
|
29600 |
-
key: 'uploadComplete',
|
29601 |
-
value: function uploadComplete(target, photo, msg, url, id) {
|
29602 |
-
|
29603 |
-
this.setImageTitle(target, msg);
|
29604 |
-
|
29605 |
-
photo.classList.remove('in-progress');
|
29606 |
-
photo.classList.add('uploaded');
|
29607 |
-
|
29608 |
-
photo.querySelector('.edit-photo').style.display = 'none'; // Hide edit-photo button
|
29609 |
-
photo.querySelector('.edit-photo-admin').style.display = 'inline-block'; // Show edit-photo-admin button
|
29610 |
-
photo.querySelector('.edit-photo-admin').href = url; // Add admin edit link
|
29611 |
-
photo.querySelector('.edit-photo-admin').target = '_balnk'; // Add new window
|
29612 |
-
|
29613 |
-
target.classList.remove('uploading');
|
29614 |
-
target.classList.remove('resizing');
|
29615 |
-
target.classList.add('success');
|
29616 |
-
this.inProgress = false;
|
29617 |
-
|
29618 |
-
// Gutenberg Sidebar
|
29619 |
-
if (this.is_block_editor) {
|
29620 |
-
photo.querySelector('.insert').style.display = 'none'; // Hide insert button
|
29621 |
-
photo.querySelector('.set-featured').style.display = 'none'; // Hide set-featured button
|
29622 |
-
}
|
29623 |
-
|
29624 |
-
// Media Router
|
29625 |
-
this.mediaRouter(id);
|
29626 |
-
|
29627 |
-
// Deprecated in 4.3
|
29628 |
-
// Was previously used in the Media Popup Context.
|
29629 |
-
// Refresh Media Library contents on edit pages
|
29630 |
-
if (this.container.classList.contains('editor')) {
|
29631 |
-
if (typeof wp.media != 'undefined') {
|
29632 |
-
if (wp.media.frame.content.get() !== null) {
|
29633 |
-
wp.media.frame.content.get().collection.props.set({ ignore: +new Date() });
|
29634 |
-
wp.media.frame.content.get().options.selection.reset();
|
29635 |
-
} else {
|
29636 |
-
wp.media.frame.library.props.set({ ignore: +new Date() });
|
29637 |
-
}
|
29638 |
-
}
|
29639 |
-
}
|
29640 |
-
}
|
29641 |
|
29642 |
-
|
29643 |
-
|
29644 |
-
|
29645 |
-
*
|
29646 |
-
* @since 4.3
|
29647 |
-
*/
|
29648 |
-
|
29649 |
-
}, {
|
29650 |
-
key: 'mediaRouter',
|
29651 |
-
value: function mediaRouter(id) {
|
29652 |
-
|
29653 |
-
if (this.is_media_router && wp.media && wp.media.frame && wp.media.frame.el) {
|
29654 |
-
|
29655 |
-
var mediaModal = wp.media.frame.el;
|
29656 |
-
var mediaTab = mediaModal.querySelector('#menu-item-browse');
|
29657 |
-
if (mediaTab) {
|
29658 |
-
// Open the 'Media Library' tab
|
29659 |
-
mediaTab.click();
|
29660 |
-
}
|
29661 |
|
29662 |
-
|
29663 |
-
|
29664 |
-
|
29665 |
-
|
29666 |
-
wp.media.frame.content.get().collection._requery(true);
|
29667 |
-
|
29668 |
-
//optional: reset selection
|
29669 |
-
//wp.media.frame.content.get().options.selection.reset();
|
29670 |
-
}
|
29671 |
-
|
29672 |
-
// Select the attached that was just uploaded.
|
29673 |
-
var selection = wp.media.frame.state().get('selection');
|
29674 |
-
var selected = parseInt(id);
|
29675 |
-
selection.reset(selected ? [wp.media.attachment(selected)] : []);
|
29676 |
-
}, 150);
|
29677 |
-
}
|
29678 |
-
}
|
29679 |
-
|
29680 |
-
/*
|
29681 |
-
* uploadError
|
29682 |
-
* Function runs when error occurs on upload or resize
|
29683 |
-
*
|
29684 |
-
* @param target element Current clicked item
|
29685 |
-
* @param photo element Nearest parent .photo
|
29686 |
-
* @param notice element The message area
|
29687 |
-
* @param msg string Error Msg
|
29688 |
-
* @since 3.0
|
29689 |
-
*/
|
29690 |
-
|
29691 |
-
}, {
|
29692 |
-
key: 'uploadError',
|
29693 |
-
value: function uploadError(target, photo, notice, msg) {
|
29694 |
-
target.classList.remove('uploading');
|
29695 |
-
target.classList.remove('resizing');
|
29696 |
-
target.classList.add('errors');
|
29697 |
-
this.setImageTitle(target, msg);
|
29698 |
-
this.inProgress = false;
|
29699 |
-
notice.classList.add('has-error');
|
29700 |
-
console.warn(msg);
|
29701 |
-
}
|
29702 |
-
|
29703 |
-
/*
|
29704 |
-
* setImageTitle
|
29705 |
-
* Set the title attribute of target
|
29706 |
-
*
|
29707 |
-
* @param target element Current clicked item
|
29708 |
-
* @param msg string Title Msg from JSON
|
29709 |
-
* @since 3.0
|
29710 |
-
*/
|
29711 |
-
|
29712 |
-
}, {
|
29713 |
-
key: 'setImageTitle',
|
29714 |
-
value: function setImageTitle(target, msg) {
|
29715 |
-
target.setAttribute("title", msg); // Remove 'Click to upload...', set new value
|
29716 |
-
}
|
29717 |
-
|
29718 |
-
/*
|
29719 |
-
* showEditScreen
|
29720 |
-
* Displays the edit screen
|
29721 |
-
*
|
29722 |
-
* @since 3.2
|
29723 |
-
*/
|
29724 |
-
|
29725 |
-
}, {
|
29726 |
-
key: 'showEditScreen',
|
29727 |
-
value: function showEditScreen(e) {
|
29728 |
-
e.preventDefault();
|
29729 |
-
var el = e.currentTarget;
|
29730 |
-
this.hideTooltip(e);
|
29731 |
-
var photo = el.closest('.photo');
|
29732 |
-
var filename = photo.querySelector('input[name="filename"]');
|
29733 |
-
var editScreen = photo.querySelector('.edit-screen');
|
29734 |
-
|
29735 |
-
editScreen.classList.add('editing'); // Show edit screen
|
29736 |
-
|
29737 |
-
// Set focus on edit screen
|
29738 |
-
setTimeout(function () {
|
29739 |
-
editScreen.focus();
|
29740 |
-
}, 150);
|
29741 |
-
}
|
29742 |
-
|
29743 |
-
/*
|
29744 |
-
* handleEditChange
|
29745 |
-
* Handles the change event for the edit screen
|
29746 |
-
*
|
29747 |
-
* @since 3.2
|
29748 |
-
*/
|
29749 |
-
|
29750 |
-
}, {
|
29751 |
-
key: 'handleEditChange',
|
29752 |
-
value: function handleEditChange(e) {
|
29753 |
-
var target = e.target.name;
|
29754 |
-
|
29755 |
-
if (target === 'filename') {
|
29756 |
-
this.setState({
|
29757 |
-
filename: e.target.value
|
29758 |
-
});
|
29759 |
-
}
|
29760 |
-
if (target === 'title') {
|
29761 |
-
this.setState({
|
29762 |
-
title: e.target.value
|
29763 |
-
});
|
29764 |
-
}
|
29765 |
-
if (target === 'alt') {
|
29766 |
-
this.setState({
|
29767 |
-
alt: e.target.value
|
29768 |
-
});
|
29769 |
-
}
|
29770 |
-
if (target === 'caption') {
|
29771 |
-
this.setState({
|
29772 |
-
caption: e.target.value
|
29773 |
-
});
|
29774 |
-
}
|
29775 |
-
}
|
29776 |
|
29777 |
-
|
29778 |
-
|
29779 |
-
|
29780 |
-
|
29781 |
-
* @since 3.2
|
29782 |
-
*/
|
29783 |
|
29784 |
-
|
29785 |
-
|
29786 |
-
value: function saveEditChange(e) {
|
29787 |
|
29788 |
-
|
29789 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29790 |
|
29791 |
-
|
29792 |
-
|
29793 |
-
|
|
|
|
|
|
|
|
|
29794 |
|
29795 |
-
|
29796 |
-
|
29797 |
-
this.title = title.value;
|
29798 |
|
29799 |
-
|
29800 |
-
|
29801 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29802 |
|
29803 |
-
|
29804 |
-
|
29805 |
-
|
|
|
|
|
|
|
|
|
29806 |
|
29807 |
-
|
29808 |
-
|
29809 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29810 |
|
29811 |
-
|
29812 |
-
|
29813 |
-
|
29814 |
-
|
29815 |
-
|
29816 |
-
|
29817 |
|
29818 |
-
|
29819 |
-
|
29820 |
-
|
|
|
|
|
|
|
|
|
29821 |
|
29822 |
-
|
29823 |
-
|
29824 |
-
|
29825 |
-
|
|
|
|
|
|
|
|
|
29826 |
|
29827 |
-
|
29828 |
-
|
29829 |
-
|
29830 |
-
|
29831 |
-
|
29832 |
-
|
29833 |
|
29834 |
-
|
29835 |
-
|
29836 |
-
|
29837 |
-
|
29838 |
-
|
29839 |
-
|
|
|
29840 |
|
29841 |
-
|
29842 |
-
|
29843 |
-
|
29844 |
-
|
29845 |
-
|
29846 |
-
|
|
|
|
|
29847 |
|
29848 |
-
|
29849 |
-
|
29850 |
-
|
29851 |
-
|
29852 |
-
|
29853 |
-
|
|
|
|
|
|
|
|
|
|
|
29854 |
|
29855 |
-
|
29856 |
-
|
29857 |
-
|
29858 |
-
|
29859 |
-
|
29860 |
-
|
29861 |
-
|
29862 |
-
|
29863 |
-
|
29864 |
-
|
29865 |
-
|
29866 |
-
|
29867 |
-
|
29868 |
-
|
29869 |
-
|
29870 |
-
|
29871 |
-
|
29872 |
-
|
29873 |
-
|
29874 |
-
|
29875 |
-
|
29876 |
-
|
29877 |
-
|
29878 |
-
|
29879 |
-
|
29880 |
-
|
29881 |
-
|
29882 |
-
|
29883 |
-
|
29884 |
-
|
29885 |
-
|
29886 |
-
|
29887 |
-
|
29888 |
-
|
29889 |
-
|
29890 |
-
|
29891 |
-
|
29892 |
-
|
29893 |
-
|
29894 |
-
|
29895 |
-
|
29896 |
-
|
29897 |
-
|
29898 |
-
|
29899 |
-
|
29900 |
-
|
29901 |
-
|
29902 |
-
|
29903 |
-
|
29904 |
-
|
29905 |
-
|
29906 |
-
|
29907 |
-
|
29908 |
-
|
29909 |
-
|
29910 |
-
|
29911 |
-
|
29912 |
-
|
29913 |
-
|
29914 |
-
|
29915 |
-
|
29916 |
-
|
29917 |
-
|
29918 |
-
|
29919 |
-
|
29920 |
-
|
29921 |
-
|
29922 |
-
|
29923 |
-
|
29924 |
-
|
29925 |
-
|
29926 |
-
|
29927 |
-
|
29928 |
-
|
29929 |
-
|
29930 |
-
|
29931 |
-
|
29932 |
-
|
29933 |
-
|
29934 |
-
|
29935 |
-
|
29936 |
-
|
29937 |
-
|
29938 |
-
|
29939 |
-
|
29940 |
-
|
29941 |
-
|
29942 |
-
|
29943 |
-
|
29944 |
-
|
29945 |
-
|
29946 |
-
|
29947 |
-
|
29948 |
-
|
29949 |
-
|
29950 |
-
|
29951 |
-
|
29952 |
-
|
29953 |
-
|
29954 |
-
|
29955 |
-
|
29956 |
-
|
29957 |
-
|
29958 |
-
|
29959 |
-
|
29960 |
-
|
29961 |
-
|
29962 |
-
|
29963 |
-
|
29964 |
-
|
29965 |
-
|
29966 |
-
|
29967 |
-
|
29968 |
-
|
29969 |
-
|
29970 |
-
|
29971 |
-
|
29972 |
-
|
29973 |
-
|
29974 |
-
|
29975 |
-
|
29976 |
-
|
29977 |
-
|
29978 |
-
|
29979 |
-
|
29980 |
-
|
29981 |
-
|
29982 |
-
|
29983 |
-
|
29984 |
-
|
29985 |
-
|
29986 |
-
|
29987 |
-
|
29988 |
-
|
29989 |
-
|
29990 |
-
|
29991 |
-
|
29992 |
-
|
29993 |
-
|
29994 |
-
|
29995 |
-
|
29996 |
-
|
29997 |
-
|
29998 |
-
|
29999 |
-
|
30000 |
-
|
30001 |
-
|
30002 |
-
|
30003 |
-
|
30004 |
-
|
30005 |
-
|
30006 |
-
|
30007 |
-
|
30008 |
-
|
30009 |
-
|
30010 |
-
|
30011 |
-
|
30012 |
-
|
30013 |
-
|
30014 |
-
|
30015 |
-
|
30016 |
-
|
30017 |
-
|
30018 |
-
|
30019 |
-
|
30020 |
-
|
30021 |
-
|
30022 |
-
|
30023 |
-
|
30024 |
-
|
30025 |
-
|
30026 |
-
|
30027 |
-
|
30028 |
-
|
30029 |
-
|
30030 |
-
|
30031 |
-
|
30032 |
-
|
30033 |
-
|
30034 |
-
|
30035 |
-
|
30036 |
-
|
30037 |
-
|
30038 |
-
|
30039 |
-
|
30040 |
-
|
30041 |
-
|
30042 |
-
|
30043 |
-
|
30044 |
-
|
30045 |
-
|
30046 |
-
|
30047 |
-
|
30048 |
-
|
30049 |
-
|
30050 |
-
|
30051 |
-
|
30052 |
-
|
30053 |
-
|
30054 |
-
|
30055 |
-
|
30056 |
-
|
30057 |
-
|
30058 |
-
|
30059 |
-
|
30060 |
-
|
30061 |
-
|
30062 |
-
|
30063 |
-
|
30064 |
-
|
30065 |
-
|
30066 |
-
|
30067 |
-
|
30068 |
-
|
30069 |
-
|
30070 |
-
|
30071 |
-
|
30072 |
-
|
30073 |
-
|
30074 |
-
|
30075 |
-
|
30076 |
-
|
30077 |
-
|
30078 |
-
|
30079 |
-
|
30080 |
-
|
30081 |
-
|
30082 |
-
|
30083 |
-
|
30084 |
-
|
30085 |
-
|
30086 |
-
|
30087 |
-
|
30088 |
-
|
30089 |
-
|
30090 |
-
|
30091 |
-
|
30092 |
-
|
30093 |
-
|
30094 |
-
|
30095 |
-
|
30096 |
-
|
30097 |
-
|
30098 |
-
|
30099 |
-
|
30100 |
-
|
30101 |
-
|
30102 |
-
|
30103 |
-
|
30104 |
-
|
30105 |
-
|
30106 |
-
|
30107 |
-
|
30108 |
-
|
30109 |
-
|
30110 |
-
|
30111 |
-
|
30112 |
-
|
30113 |
-
|
30114 |
-
|
30115 |
-
|
30116 |
-
|
30117 |
-
|
30118 |
-
|
30119 |
-
|
30120 |
-
|
30121 |
-
|
30122 |
-
|
30123 |
-
|
30124 |
-
|
30125 |
-
|
30126 |
-
|
30127 |
-
|
30128 |
-
|
30129 |
-
|
30130 |
-
|
30131 |
-
|
30132 |
-
|
30133 |
-
|
30134 |
-
|
30135 |
-
|
30136 |
-
|
30137 |
-
|
30138 |
-
|
30139 |
-
|
30140 |
-
|
30141 |
-
|
30142 |
-
|
30143 |
-
|
30144 |
-
|
30145 |
-
|
30146 |
-
|
30147 |
-
|
30148 |
-
|
30149 |
-
|
30150 |
-
|
30151 |
-
|
30152 |
-
|
30153 |
-
|
30154 |
-
|
30155 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30156 |
}(_react2.default.Component);
|
30157 |
|
30158 |
exports.default = Photo;
|
@@ -30231,59 +30435,56 @@ var PhotoList = function (_React$Component) {
|
|
30231 |
_this.page = _this.props.page; // Page
|
30232 |
|
30233 |
_this.is_search = false;
|
30234 |
-
_this.search_term =
|
30235 |
_this.total_results = 0;
|
30236 |
-
_this.orientation =
|
30237 |
|
30238 |
_this.isLoading = false; // loading flag
|
30239 |
_this.isDone = false; // Done flag - no photos remain
|
30240 |
|
30241 |
-
_this.errorMsg =
|
30242 |
-
_this.msnry =
|
30243 |
-
_this.tooltipInterval =
|
30244 |
|
30245 |
-
_this.editor = _this.props.editor ? _this.props.editor :
|
30246 |
-
_this.is_block_editor = _this.props.editor ===
|
30247 |
-
_this.is_media_router = _this.props.editor ===
|
30248 |
-
_this.SetFeaturedImage = _this.props.SetFeaturedImage ? _this.props.SetFeaturedImage.bind(_this) :
|
30249 |
-
_this.InsertImage = _this.props.InsertImage ? _this.props.InsertImage.bind(_this) :
|
30250 |
|
30251 |
if (_this.is_block_editor) {
|
30252 |
// Gutenberg Sidebar Only
|
30253 |
-
_this.container = document.querySelector(
|
30254 |
-
_this.container.classList.add(
|
30255 |
-
_this.wrapper = document.querySelector(
|
30256 |
} else {
|
30257 |
// Post Edit Screens and Plugin Screen
|
30258 |
-
_this.container = _this.props.container.closest(
|
30259 |
-
_this.wrapper = _this.props.container.closest(
|
30260 |
-
_this.container.classList.add(
|
30261 |
}
|
30262 |
-
|
30263 |
return _this;
|
30264 |
}
|
30265 |
|
30266 |
/**
|
30267 |
-
|
30268 |
-
|
30269 |
-
|
30270 |
-
|
30271 |
-
*/
|
30272 |
|
30273 |
|
30274 |
_createClass(PhotoList, [{
|
30275 |
-
key:
|
30276 |
value: function test() {
|
30277 |
-
|
30278 |
var self = this;
|
30279 |
|
30280 |
-
var target = this.container.querySelector(
|
30281 |
|
30282 |
-
var testURL = instant_img_localize.root +
|
30283 |
var restAPITest = new XMLHttpRequest();
|
30284 |
-
restAPITest.open(
|
30285 |
-
restAPITest.setRequestHeader(
|
30286 |
-
restAPITest.setRequestHeader(
|
30287 |
restAPITest.send();
|
30288 |
|
30289 |
restAPITest.onload = function () {
|
@@ -30308,31 +30509,29 @@ var PhotoList = function (_React$Component) {
|
|
30308 |
};
|
30309 |
}
|
30310 |
}, {
|
30311 |
-
key:
|
30312 |
value: function renderTestError(target) {
|
30313 |
-
target.classList.add(
|
30314 |
target.innerHTML = instant_img_localize.error_restapi + instant_img_localize.error_restapi_desc;
|
30315 |
}
|
30316 |
|
30317 |
/**
|
30318 |
-
|
30319 |
-
|
30320 |
-
|
30321 |
-
|
30322 |
-
|
30323 |
-
*/
|
30324 |
|
30325 |
}, {
|
30326 |
-
key:
|
30327 |
value: function search(e) {
|
30328 |
-
|
30329 |
e.preventDefault();
|
30330 |
-
var input = this.container.querySelector(
|
30331 |
var term = input.value;
|
30332 |
|
30333 |
if (term.length > 2) {
|
30334 |
-
input.classList.add(
|
30335 |
-
this.container.classList.add(
|
30336 |
this.search_term = term;
|
30337 |
this.is_search = true;
|
30338 |
this.doSearch(this.search_term);
|
@@ -30342,113 +30541,105 @@ var PhotoList = function (_React$Component) {
|
|
30342 |
}
|
30343 |
|
30344 |
/**
|
30345 |
-
|
30346 |
-
|
30347 |
-
|
30348 |
-
|
30349 |
-
*/
|
30350 |
|
30351 |
}, {
|
30352 |
-
key:
|
30353 |
value: function setOrientation(orientation, e) {
|
30354 |
-
|
30355 |
if (e && e.target) {
|
30356 |
var target = e.target;
|
30357 |
|
30358 |
-
if (target.classList.contains(
|
30359 |
// Clear orientation
|
30360 |
-
target.classList.remove(
|
30361 |
-
this.orientation =
|
30362 |
} else {
|
30363 |
-
// Set orientation
|
30364 |
-
var siblings = target.parentNode.querySelectorAll(
|
30365 |
[].concat(_toConsumableArray(siblings)).forEach(function (el) {
|
30366 |
-
return el.classList.remove(
|
30367 |
}); // remove active classes
|
30368 |
|
30369 |
-
target.classList.add(
|
30370 |
this.orientation = orientation;
|
30371 |
}
|
30372 |
|
30373 |
-
if (this.search_term !==
|
30374 |
this.doSearch(this.search_term);
|
30375 |
}
|
30376 |
}
|
30377 |
}
|
30378 |
|
30379 |
/**
|
30380 |
-
|
30381 |
-
|
30382 |
-
|
30383 |
-
|
30384 |
-
*/
|
30385 |
|
30386 |
}, {
|
30387 |
-
key:
|
30388 |
value: function hasOrientation() {
|
30389 |
-
return this.orientation ===
|
30390 |
}
|
30391 |
|
30392 |
/**
|
30393 |
-
|
30394 |
-
|
30395 |
-
|
30396 |
-
|
30397 |
-
*/
|
30398 |
|
30399 |
}, {
|
30400 |
-
key:
|
30401 |
value: function clearOrientation() {
|
30402 |
-
var items = this.container.querySelectorAll(
|
30403 |
[].concat(_toConsumableArray(items)).forEach(function (el) {
|
30404 |
-
return el.classList.remove(
|
30405 |
}); // remove active classes
|
30406 |
-
this.orientation =
|
30407 |
}
|
30408 |
|
30409 |
/**
|
30410 |
-
|
30411 |
-
|
30412 |
-
|
30413 |
-
|
30414 |
-
|
30415 |
-
|
30416 |
-
|
30417 |
-
*/
|
30418 |
|
30419 |
}, {
|
30420 |
-
key:
|
30421 |
value: function doSearch(term) {
|
30422 |
-
|
30423 |
var self = this;
|
30424 |
-
var type =
|
30425 |
this.page = 1; // reset page num
|
30426 |
|
30427 |
-
var url =
|
30428 |
|
30429 |
if (this.hasOrientation()) {
|
30430 |
// Set orientation
|
30431 |
-
url = url +
|
30432 |
}
|
30433 |
|
30434 |
// Search by ID
|
30435 |
// allow users to search by photo by prepending id:{photo_id} to search terms
|
30436 |
var search_type = term.substring(0, 3);
|
30437 |
-
if (search_type ===
|
30438 |
-
type =
|
30439 |
-
term = term.replace(
|
30440 |
-
url = _API2.default.photo_api +
|
30441 |
}
|
30442 |
|
30443 |
-
var input = this.container.querySelector(
|
30444 |
|
30445 |
fetch(url).then(function (data) {
|
30446 |
return data.json();
|
30447 |
}).then(function (data) {
|
30448 |
-
|
30449 |
// Term Search
|
30450 |
-
if (type ===
|
30451 |
-
|
30452 |
self.total_results = data.total;
|
30453 |
|
30454 |
// Check for returned data
|
@@ -30460,30 +30651,29 @@ var PhotoList = function (_React$Component) {
|
|
30460 |
}
|
30461 |
|
30462 |
// Search by photo ID
|
30463 |
-
if (type ===
|
30464 |
-
|
30465 |
-
// Convert return data to array
|
30466 |
var photoArray = [];
|
30467 |
|
30468 |
if (data.errors) {
|
30469 |
// If error was returned
|
30470 |
|
30471 |
self.total_results = 0;
|
30472 |
-
self.checkTotalResults(
|
30473 |
} else {
|
30474 |
// No errors, display results
|
30475 |
|
30476 |
photoArray.push(data);
|
30477 |
|
30478 |
self.total_results = 1;
|
30479 |
-
self.checkTotalResults(
|
30480 |
}
|
30481 |
|
30482 |
self.results = photoArray;
|
30483 |
self.setState({ results: self.results });
|
30484 |
}
|
30485 |
|
30486 |
-
input.classList.remove(
|
30487 |
}).catch(function (error) {
|
30488 |
console.log(error);
|
30489 |
self.isLoading = false;
|
@@ -30491,53 +30681,49 @@ var PhotoList = function (_React$Component) {
|
|
30491 |
}
|
30492 |
|
30493 |
/**
|
30494 |
-
|
30495 |
-
|
30496 |
-
|
30497 |
-
|
30498 |
-
*/
|
30499 |
|
30500 |
}, {
|
30501 |
-
key:
|
30502 |
value: function clearSearch() {
|
30503 |
-
var input = this.container.querySelector(
|
30504 |
-
input.value =
|
30505 |
this.total_results = 0;
|
30506 |
this.is_search = false;
|
30507 |
-
this.search_term =
|
30508 |
this.clearOrientation();
|
30509 |
}
|
30510 |
|
30511 |
/**
|
30512 |
-
|
30513 |
-
|
30514 |
-
|
30515 |
-
|
30516 |
-
*/
|
30517 |
|
30518 |
}, {
|
30519 |
-
key:
|
30520 |
value: function getPhotos() {
|
30521 |
-
|
30522 |
var self = this;
|
30523 |
this.page = parseInt(this.page) + 1;
|
30524 |
-
this.container.classList.add(
|
30525 |
this.isLoading = true;
|
30526 |
|
30527 |
-
var url =
|
30528 |
|
30529 |
if (this.is_search) {
|
30530 |
-
url =
|
30531 |
if (this.hasOrientation()) {
|
30532 |
// Set orientation
|
30533 |
-
url = url +
|
30534 |
}
|
30535 |
}
|
30536 |
|
30537 |
fetch(url).then(function (data) {
|
30538 |
return data.json();
|
30539 |
}).then(function (data) {
|
30540 |
-
|
30541 |
if (self.is_search) {
|
30542 |
data = data.results; // Search results are recieved in different JSON format
|
30543 |
}
|
@@ -30559,22 +30745,20 @@ var PhotoList = function (_React$Component) {
|
|
30559 |
}
|
30560 |
|
30561 |
/**
|
30562 |
-
|
30563 |
-
|
30564 |
-
|
30565 |
-
|
30566 |
-
|
30567 |
-
|
30568 |
-
*/
|
30569 |
|
30570 |
}, {
|
30571 |
-
key:
|
30572 |
value: function togglePhotoList(view, e) {
|
30573 |
-
|
30574 |
var el = e.target;
|
30575 |
-
if (el.classList.contains(
|
30576 |
|
30577 |
-
el.classList.add(
|
30578 |
this.isLoading = true;
|
30579 |
var self = this;
|
30580 |
this.page = 1;
|
@@ -30582,11 +30766,10 @@ var PhotoList = function (_React$Component) {
|
|
30582 |
this.results = [];
|
30583 |
this.clearSearch();
|
30584 |
|
30585 |
-
var url =
|
30586 |
fetch(url).then(function (data) {
|
30587 |
return data.json();
|
30588 |
}).then(function (data) {
|
30589 |
-
|
30590 |
// Check for returned data
|
30591 |
self.checkTotalResults(data.length);
|
30592 |
|
@@ -30594,7 +30777,7 @@ var PhotoList = function (_React$Component) {
|
|
30594 |
self.results = data;
|
30595 |
self.setState({ results: data });
|
30596 |
|
30597 |
-
el.classList.remove(
|
30598 |
}).catch(function (error) {
|
30599 |
console.log(error);
|
30600 |
self.isLoading = false;
|
@@ -30602,39 +30785,37 @@ var PhotoList = function (_React$Component) {
|
|
30602 |
}
|
30603 |
|
30604 |
/**
|
30605 |
-
|
30606 |
-
|
30607 |
-
|
30608 |
-
|
30609 |
-
*/
|
30610 |
|
30611 |
}, {
|
30612 |
-
key:
|
30613 |
value: function renderLayout() {
|
30614 |
if (this.is_block_editor) {
|
30615 |
return false;
|
30616 |
}
|
30617 |
var self = this;
|
30618 |
-
var photoListWrapper = self.container.querySelector(
|
30619 |
imagesLoaded(photoListWrapper, function () {
|
30620 |
self.msnry = new _masonryLayout2.default(photoListWrapper, {
|
30621 |
-
itemSelector:
|
30622 |
});
|
30623 |
-
[].concat(_toConsumableArray(self.container.querySelectorAll(
|
30624 |
-
return el.classList.add(
|
30625 |
});
|
30626 |
});
|
30627 |
}
|
30628 |
|
30629 |
/**
|
30630 |
-
|
30631 |
-
|
30632 |
-
|
30633 |
-
|
30634 |
-
*/
|
30635 |
|
30636 |
}, {
|
30637 |
-
key:
|
30638 |
value: function onScroll() {
|
30639 |
var wHeight = window.innerHeight;
|
30640 |
var scrollTop = window.pageYOffset;
|
@@ -30645,68 +30826,65 @@ var PhotoList = function (_React$Component) {
|
|
30645 |
}
|
30646 |
|
30647 |
/**
|
30648 |
-
|
30649 |
-
|
30650 |
-
|
30651 |
-
|
30652 |
-
|
30653 |
-
*/
|
30654 |
|
30655 |
}, {
|
30656 |
-
key:
|
30657 |
value: function checkTotalResults(num) {
|
30658 |
this.isDone = num == 0 ? true : false;
|
30659 |
}
|
30660 |
|
30661 |
/**
|
30662 |
-
|
30663 |
-
|
30664 |
-
|
30665 |
-
|
30666 |
-
*/
|
30667 |
|
30668 |
}, {
|
30669 |
-
key:
|
30670 |
value: function setActiveState() {
|
30671 |
var self = this;
|
30672 |
// Remove .active class
|
30673 |
-
[].concat(_toConsumableArray(this.container.querySelectorAll(
|
30674 |
-
return el.classList.remove(
|
30675 |
});
|
30676 |
|
30677 |
// Set active item, if not search
|
30678 |
if (!this.is_search) {
|
30679 |
-
var active = this.container.querySelector(
|
30680 |
-
active.classList.add(
|
30681 |
}
|
30682 |
setTimeout(function () {
|
30683 |
self.isLoading = false;
|
30684 |
-
self.container.classList.remove(
|
30685 |
}, 1000);
|
30686 |
}
|
30687 |
|
30688 |
/**
|
30689 |
-
|
30690 |
-
|
30691 |
-
|
30692 |
-
|
30693 |
-
*/
|
30694 |
|
30695 |
}, {
|
30696 |
-
key:
|
30697 |
value: function showTooltip(e) {
|
30698 |
var self = this;
|
30699 |
var target = e.currentTarget;
|
30700 |
var rect = target.getBoundingClientRect();
|
30701 |
var left = Math.round(rect.left);
|
30702 |
var top = Math.round(rect.top);
|
30703 |
-
var tooltip = this.container.querySelector(
|
30704 |
-
tooltip.classList.remove(
|
30705 |
|
30706 |
-
if (target.classList.contains(
|
30707 |
-
tooltip.classList.add(
|
30708 |
} else {
|
30709 |
-
tooltip.classList.remove(
|
30710 |
}
|
30711 |
|
30712 |
// Get Content
|
@@ -30714,217 +30892,265 @@ var PhotoList = function (_React$Component) {
|
|
30714 |
|
30715 |
// Delay reveal
|
30716 |
this.tooltipInterval = setInterval(function () {
|
30717 |
-
|
30718 |
clearInterval(self.tooltipInterval);
|
30719 |
tooltip.innerHTML = title;
|
30720 |
|
30721 |
// Position Tooltip
|
30722 |
left = left - tooltip.offsetWidth + target.offsetWidth + 5;
|
30723 |
-
tooltip.style.left = left +
|
30724 |
-
tooltip.style.top = top +
|
30725 |
|
30726 |
setTimeout(function () {
|
30727 |
-
tooltip.classList.add(
|
30728 |
}, 150);
|
30729 |
}, 500);
|
30730 |
}
|
30731 |
|
30732 |
/**
|
30733 |
-
|
30734 |
-
|
30735 |
-
|
30736 |
-
|
30737 |
-
*/
|
30738 |
|
30739 |
}, {
|
30740 |
-
key:
|
30741 |
value: function hideTooltip(e) {
|
30742 |
clearInterval(this.tooltipInterval);
|
30743 |
-
var tooltip = this.container.querySelector(
|
30744 |
-
tooltip.classList.remove(
|
30745 |
}
|
30746 |
|
30747 |
-
// Component Updated
|
30748 |
|
30749 |
}, {
|
30750 |
-
key:
|
30751 |
value: function componentDidUpdate() {
|
30752 |
this.renderLayout();
|
30753 |
this.setActiveState();
|
30754 |
}
|
30755 |
|
30756 |
-
// Component Init
|
30757 |
|
30758 |
}, {
|
30759 |
-
key:
|
30760 |
value: function componentDidMount() {
|
30761 |
var _this2 = this;
|
30762 |
|
30763 |
this.renderLayout();
|
30764 |
this.setActiveState();
|
30765 |
this.test();
|
30766 |
-
this.container.classList.remove(
|
30767 |
-
this.wrapper.classList.add(
|
30768 |
|
30769 |
if (this.is_block_editor || this.is_media_router) {
|
30770 |
// Gutenberg || Media Popup
|
30771 |
this.page = 0;
|
30772 |
this.getPhotos();
|
30773 |
} else {
|
30774 |
-
// Add scroll event
|
30775 |
-
window.addEventListener(
|
30776 |
return _this2.onScroll();
|
30777 |
});
|
30778 |
}
|
30779 |
}
|
30780 |
}, {
|
30781 |
-
key:
|
30782 |
value: function render() {
|
30783 |
var _this3 = this;
|
30784 |
|
30785 |
// Show/Hide orientation listing
|
30786 |
-
var orientationStyle = this.is_search ? { display:
|
30787 |
|
30788 |
return _react2.default.createElement(
|
30789 |
-
|
30790 |
-
{ id:
|
30791 |
_react2.default.createElement(
|
30792 |
-
|
30793 |
-
{ className:
|
30794 |
_react2.default.createElement(
|
30795 |
-
|
30796 |
null,
|
30797 |
_react2.default.createElement(
|
30798 |
-
|
30799 |
-
{
|
30800 |
-
|
30801 |
-
|
|
|
|
|
|
|
|
|
30802 |
instant_img_localize.latest
|
30803 |
)
|
30804 |
),
|
30805 |
_react2.default.createElement(
|
30806 |
-
|
30807 |
-
{ id:
|
30808 |
_react2.default.createElement(
|
30809 |
-
|
30810 |
-
{
|
30811 |
-
|
30812 |
-
|
|
|
|
|
|
|
|
|
30813 |
instant_img_localize.popular
|
30814 |
)
|
30815 |
),
|
30816 |
_react2.default.createElement(
|
30817 |
-
|
30818 |
null,
|
30819 |
_react2.default.createElement(
|
30820 |
-
|
30821 |
-
{
|
30822 |
-
|
30823 |
-
|
|
|
|
|
|
|
|
|
30824 |
instant_img_localize.oldest
|
30825 |
)
|
30826 |
),
|
30827 |
_react2.default.createElement(
|
30828 |
-
|
30829 |
-
{ className:
|
30830 |
_react2.default.createElement(
|
30831 |
-
|
30832 |
{ onSubmit: function onSubmit(e) {
|
30833 |
return _this3.search(e);
|
30834 |
-
}, autoComplete:
|
30835 |
-
_react2.default.createElement(
|
|
|
|
|
|
|
|
|
30836 |
_react2.default.createElement(
|
30837 |
-
|
30838 |
-
{ type:
|
30839 |
-
_react2.default.createElement(
|
30840 |
),
|
30841 |
-
_react2.default.createElement(_ResultsToolTip2.default, {
|
|
|
|
|
|
|
|
|
|
|
30842 |
)
|
30843 |
)
|
30844 |
),
|
30845 |
-
_react2.default.createElement(
|
30846 |
_react2.default.createElement(
|
30847 |
-
|
30848 |
-
{ className:
|
30849 |
_react2.default.createElement(
|
30850 |
-
|
30851 |
null,
|
30852 |
-
_react2.default.createElement(
|
30853 |
-
|
30854 |
instant_img_localize.orientation,
|
30855 |
-
|
30856 |
),
|
30857 |
_react2.default.createElement(
|
30858 |
-
|
30859 |
null,
|
30860 |
_react2.default.createElement(
|
30861 |
-
|
30862 |
-
{
|
30863 |
-
|
30864 |
-
|
30865 |
-
return _this3.setOrientation(
|
30866 |
-
}
|
|
|
|
|
|
|
|
|
30867 |
instant_img_localize.landscape
|
30868 |
),
|
30869 |
_react2.default.createElement(
|
30870 |
-
|
30871 |
-
{
|
30872 |
-
|
30873 |
-
|
30874 |
-
return _this3.setOrientation(
|
30875 |
-
}
|
|
|
|
|
|
|
|
|
30876 |
instant_img_localize.portrait
|
30877 |
),
|
30878 |
_react2.default.createElement(
|
30879 |
-
|
30880 |
-
{
|
30881 |
-
|
30882 |
-
|
30883 |
-
return _this3.setOrientation(
|
30884 |
-
}
|
|
|
|
|
|
|
|
|
30885 |
instant_img_localize.squarish
|
30886 |
)
|
30887 |
)
|
30888 |
),
|
30889 |
_react2.default.createElement(
|
30890 |
-
|
30891 |
-
{ id:
|
30892 |
this.state.results.map(function (result, iterator) {
|
30893 |
-
return _react2.default.createElement(_Photo2.default, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30894 |
})
|
30895 |
),
|
30896 |
_react2.default.createElement(
|
30897 |
-
|
30898 |
-
{
|
|
|
|
|
|
|
30899 |
_react2.default.createElement(
|
30900 |
-
|
30901 |
null,
|
30902 |
instant_img_localize.no_results,
|
30903 |
-
|
30904 |
),
|
30905 |
_react2.default.createElement(
|
30906 |
-
|
30907 |
null,
|
30908 |
instant_img_localize.no_results_desc,
|
30909 |
-
|
30910 |
)
|
30911 |
),
|
30912 |
-
_react2.default.createElement(
|
30913 |
_react2.default.createElement(
|
30914 |
-
|
30915 |
-
{ className:
|
30916 |
_react2.default.createElement(
|
30917 |
-
|
30918 |
-
{
|
|
|
|
|
|
|
30919 |
return _this3.getPhotos();
|
30920 |
-
}
|
|
|
30921 |
instant_img_localize.load_more
|
30922 |
)
|
30923 |
),
|
30924 |
_react2.default.createElement(
|
30925 |
-
|
30926 |
-
{ id:
|
30927 |
-
|
30928 |
)
|
30929 |
);
|
30930 |
}
|
@@ -30948,7 +31174,7 @@ exports.default = PhotoList;
|
|
30948 |
|
30949 |
|
30950 |
Object.defineProperty(exports, "__esModule", {
|
30951 |
-
|
30952 |
});
|
30953 |
|
30954 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -30966,51 +31192,57 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
30966 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
30967 |
|
30968 |
var ResultsToolTip = function (_React$Component) {
|
30969 |
-
|
30970 |
-
|
30971 |
-
|
30972 |
-
|
30973 |
-
|
30974 |
-
|
30975 |
-
|
30976 |
-
|
30977 |
-
|
30978 |
-
|
30979 |
-
|
30980 |
-
|
30981 |
-
|
30982 |
-
|
30983 |
-
|
30984 |
-
|
30985 |
-
|
30986 |
-
|
30987 |
-
|
30988 |
-
|
30989 |
-
|
30990 |
-
|
30991 |
-
|
30992 |
-
|
30993 |
-
|
30994 |
-
|
30995 |
-
|
30996 |
-
|
30997 |
-
|
30998 |
-
|
30999 |
-
|
31000 |
-
|
31001 |
-
|
31002 |
-
|
31003 |
-
|
31004 |
-
|
31005 |
-
|
31006 |
-
|
31007 |
-
|
31008 |
-
|
31009 |
-
|
31010 |
-
|
31011 |
-
|
31012 |
-
|
31013 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
31014 |
}(_react2.default.Component);
|
31015 |
|
31016 |
exports.default = ResultsToolTip;
|
@@ -31050,8 +31282,8 @@ __webpack_require__(/*! isomorphic-fetch */ "./node_modules/isomorphic-fetch/fet
|
|
31050 |
__webpack_require__(/*! ./components/Helpers */ "./src/js/components/Helpers.js");
|
31051 |
|
31052 |
// Global vars
|
31053 |
-
var activeFrameId =
|
31054 |
-
var activeFrame =
|
31055 |
|
31056 |
// Load MediaFrame deps
|
31057 |
var oldMediaFrame = wp.media.view.MediaFrame.Post;
|
@@ -31059,7 +31291,6 @@ var oldMediaFrameSelect = wp.media.view.MediaFrame.Select;
|
|
31059 |
|
31060 |
// Create Instant Images Tabs
|
31061 |
wp.media.view.MediaFrame.Select = oldMediaFrameSelect.extend({
|
31062 |
-
|
31063 |
// Tab / Router
|
31064 |
browseRouter: function browseRouter(routerView) {
|
31065 |
oldMediaFrameSelect.prototype.browseRouter.apply(this, arguments);
|
@@ -31075,7 +31306,7 @@ wp.media.view.MediaFrame.Select = oldMediaFrameSelect.extend({
|
|
31075 |
// Handlers
|
31076 |
bindHandlers: function bindHandlers() {
|
31077 |
oldMediaFrameSelect.prototype.bindHandlers.apply(this, arguments);
|
31078 |
-
this.on(
|
31079 |
},
|
31080 |
|
31081 |
|
@@ -31098,7 +31329,6 @@ wp.media.view.MediaFrame.Select = oldMediaFrameSelect.extend({
|
|
31098 |
});
|
31099 |
|
31100 |
wp.media.view.MediaFrame.Post = oldMediaFrame.extend({
|
31101 |
-
|
31102 |
// Tab / Router
|
31103 |
browseRouter: function browseRouter(routerView) {
|
31104 |
oldMediaFrameSelect.prototype.browseRouter.apply(this, arguments);
|
@@ -31114,7 +31344,7 @@ wp.media.view.MediaFrame.Post = oldMediaFrame.extend({
|
|
31114 |
// Handlers
|
31115 |
bindHandlers: function bindHandlers() {
|
31116 |
oldMediaFrame.prototype.bindHandlers.apply(this, arguments);
|
31117 |
-
this.on(
|
31118 |
},
|
31119 |
|
31120 |
|
@@ -31138,39 +31368,45 @@ wp.media.view.MediaFrame.Post = oldMediaFrame.extend({
|
|
31138 |
|
31139 |
// Render Instant Images
|
31140 |
var instantImagesMediaTab = function instantImagesMediaTab() {
|
31141 |
-
|
31142 |
var html = createMediaWrapper(); // Create HTML wrapper
|
31143 |
|
31144 |
if (!activeFrame) {
|
31145 |
return false;
|
31146 |
}
|
31147 |
|
31148 |
-
var modal = activeFrame.querySelector(
|
31149 |
if (!modal) {
|
31150 |
// Exit if not modal
|
31151 |
return false;
|
31152 |
}
|
31153 |
|
31154 |
-
modal.innerHTML =
|
31155 |
modal.appendChild(html); // Append Instant Images
|
31156 |
|
31157 |
-
var element = modal.querySelector(
|
31158 |
if (!element) {
|
31159 |
// Exit if not element
|
31160 |
return false;
|
31161 |
}
|
31162 |
|
31163 |
-
_reactDom2.default.render(_react2.default.createElement(_PhotoList2.default, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31164 |
};
|
31165 |
|
31166 |
// Create HTML markup
|
31167 |
var createMediaWrapper = function createMediaWrapper() {
|
31168 |
-
var wrapper = document.createElement(
|
31169 |
-
wrapper.classList.add(
|
31170 |
-
var container = document.createElement(
|
31171 |
-
container.classList.add(
|
31172 |
-
var frame = document.createElement(
|
31173 |
-
frame.setAttribute(
|
31174 |
|
31175 |
container.appendChild(frame);
|
31176 |
wrapper.appendChild(container);
|
@@ -31180,25 +31416,23 @@ var createMediaWrapper = function createMediaWrapper() {
|
|
31180 |
|
31181 |
// Document Ready
|
31182 |
jQuery(document).ready(function ($) {
|
31183 |
-
|
31184 |
if (wp.media) {
|
31185 |
-
|
31186 |
// Open
|
31187 |
wp.media.view.Modal.prototype.on("open", function () {
|
31188 |
//console.log(wp.media.frame);
|
31189 |
if (!activeFrame) {
|
31190 |
return false;
|
31191 |
}
|
31192 |
-
var selectedTab = activeFrame.querySelector(
|
31193 |
-
if (selectedTab.id ===
|
31194 |
instantImagesMediaTab();
|
31195 |
}
|
31196 |
});
|
31197 |
|
31198 |
// Live Click Handler
|
31199 |
-
$(document).on(
|
31200 |
-
var selectedTab = activeFrame.querySelector(
|
31201 |
-
if (selectedTab.id ===
|
31202 |
instantImagesMediaTab();
|
31203 |
}
|
31204 |
});
|
109 |
|
110 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
111 |
var settle = __webpack_require__(/*! ./../core/settle */ "./node_modules/axios/lib/core/settle.js");
|
112 |
+
var cookies = __webpack_require__(/*! ./../helpers/cookies */ "./node_modules/axios/lib/helpers/cookies.js");
|
113 |
var buildURL = __webpack_require__(/*! ./../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
114 |
+
var buildFullPath = __webpack_require__(/*! ../core/buildFullPath */ "./node_modules/axios/lib/core/buildFullPath.js");
|
115 |
var parseHeaders = __webpack_require__(/*! ./../helpers/parseHeaders */ "./node_modules/axios/lib/helpers/parseHeaders.js");
|
116 |
var isURLSameOrigin = __webpack_require__(/*! ./../helpers/isURLSameOrigin */ "./node_modules/axios/lib/helpers/isURLSameOrigin.js");
|
117 |
var createError = __webpack_require__(/*! ../core/createError */ "./node_modules/axios/lib/core/createError.js");
|
|
|
118 |
|
119 |
module.exports = function xhrAdapter(config) {
|
120 |
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
126 |
}
|
127 |
|
128 |
var request = new XMLHttpRequest();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
// HTTP basic authentication
|
131 |
if (config.auth) {
|
132 |
var username = config.auth.username || '';
|
133 |
+
var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
|
134 |
requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);
|
135 |
}
|
136 |
|
137 |
+
var fullPath = buildFullPath(config.baseURL, config.url);
|
138 |
+
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
139 |
|
140 |
// Set the request timeout in MS
|
141 |
request.timeout = config.timeout;
|
142 |
|
143 |
// Listen for ready state
|
144 |
+
request.onreadystatechange = function handleLoad() {
|
145 |
+
if (!request || request.readyState !== 4) {
|
146 |
return;
|
147 |
}
|
148 |
|
159 |
var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;
|
160 |
var response = {
|
161 |
data: responseData,
|
162 |
+
status: request.status,
|
163 |
+
statusText: request.statusText,
|
|
|
164 |
headers: responseHeaders,
|
165 |
config: config,
|
166 |
request: request
|
172 |
request = null;
|
173 |
};
|
174 |
|
175 |
+
// Handle browser request cancellation (as opposed to a manual cancellation)
|
176 |
+
request.onabort = function handleAbort() {
|
177 |
+
if (!request) {
|
178 |
+
return;
|
179 |
+
}
|
180 |
+
|
181 |
+
reject(createError('Request aborted', config, 'ECONNABORTED', request));
|
182 |
+
|
183 |
+
// Clean up request
|
184 |
+
request = null;
|
185 |
+
};
|
186 |
+
|
187 |
// Handle low level network errors
|
188 |
request.onerror = function handleError() {
|
189 |
// Real errors are hidden from us by the browser
|
196 |
|
197 |
// Handle timeout
|
198 |
request.ontimeout = function handleTimeout() {
|
199 |
+
var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';
|
200 |
+
if (config.timeoutErrorMessage) {
|
201 |
+
timeoutErrorMessage = config.timeoutErrorMessage;
|
202 |
+
}
|
203 |
+
reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',
|
204 |
request));
|
205 |
|
206 |
// Clean up request
|
211 |
// This is only done if running in a standard browser environment.
|
212 |
// Specifically not if we're in a web worker, or react-native.
|
213 |
if (utils.isStandardBrowserEnv()) {
|
|
|
|
|
214 |
// Add xsrf header
|
215 |
+
var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?
|
216 |
+
cookies.read(config.xsrfCookieName) :
|
217 |
+
undefined;
|
218 |
|
219 |
if (xsrfValue) {
|
220 |
requestHeaders[config.xsrfHeaderName] = xsrfValue;
|
235 |
}
|
236 |
|
237 |
// Add withCredentials to request if needed
|
238 |
+
if (!utils.isUndefined(config.withCredentials)) {
|
239 |
+
request.withCredentials = !!config.withCredentials;
|
240 |
}
|
241 |
|
242 |
// Add responseType to request if needed
|
276 |
});
|
277 |
}
|
278 |
|
279 |
+
if (!requestData) {
|
280 |
requestData = null;
|
281 |
}
|
282 |
|
301 |
var utils = __webpack_require__(/*! ./utils */ "./node_modules/axios/lib/utils.js");
|
302 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
303 |
var Axios = __webpack_require__(/*! ./core/Axios */ "./node_modules/axios/lib/core/Axios.js");
|
304 |
+
var mergeConfig = __webpack_require__(/*! ./core/mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js");
|
305 |
var defaults = __webpack_require__(/*! ./defaults */ "./node_modules/axios/lib/defaults.js");
|
306 |
|
307 |
/**
|
331 |
|
332 |
// Factory for creating new instances
|
333 |
axios.create = function create(instanceConfig) {
|
334 |
+
return createInstance(mergeConfig(axios.defaults, instanceConfig));
|
335 |
};
|
336 |
|
337 |
// Expose Cancel & CancelToken
|
345 |
};
|
346 |
axios.spread = __webpack_require__(/*! ./helpers/spread */ "./node_modules/axios/lib/helpers/spread.js");
|
347 |
|
348 |
+
// Expose isAxiosError
|
349 |
+
axios.isAxiosError = __webpack_require__(/*! ./helpers/isAxiosError */ "./node_modules/axios/lib/helpers/isAxiosError.js");
|
350 |
+
|
351 |
module.exports = axios;
|
352 |
|
353 |
// Allow use of default import syntax in TypeScript
|
483 |
"use strict";
|
484 |
|
485 |
|
|
|
486 |
var utils = __webpack_require__(/*! ./../utils */ "./node_modules/axios/lib/utils.js");
|
487 |
+
var buildURL = __webpack_require__(/*! ../helpers/buildURL */ "./node_modules/axios/lib/helpers/buildURL.js");
|
488 |
var InterceptorManager = __webpack_require__(/*! ./InterceptorManager */ "./node_modules/axios/lib/core/InterceptorManager.js");
|
489 |
var dispatchRequest = __webpack_require__(/*! ./dispatchRequest */ "./node_modules/axios/lib/core/dispatchRequest.js");
|
490 |
+
var mergeConfig = __webpack_require__(/*! ./mergeConfig */ "./node_modules/axios/lib/core/mergeConfig.js");
|
491 |
|
492 |
/**
|
493 |
* Create a new instance of Axios
|
511 |
/*eslint no-param-reassign:0*/
|
512 |
// Allow for axios('example/url'[, config]) a la fetch API
|
513 |
if (typeof config === 'string') {
|
514 |
+
config = arguments[1] || {};
|
515 |
+
config.url = arguments[0];
|
516 |
+
} else {
|
517 |
+
config = config || {};
|
518 |
}
|
519 |
|
520 |
+
config = mergeConfig(this.defaults, config);
|
521 |
+
|
522 |
+
// Set config.method
|
523 |
+
if (config.method) {
|
524 |
+
config.method = config.method.toLowerCase();
|
525 |
+
} else if (this.defaults.method) {
|
526 |
+
config.method = this.defaults.method.toLowerCase();
|
527 |
+
} else {
|
528 |
+
config.method = 'get';
|
529 |
+
}
|
530 |
|
531 |
// Hook up interceptors middleware
|
532 |
var chain = [dispatchRequest, undefined];
|
547 |
return promise;
|
548 |
};
|
549 |
|
550 |
+
Axios.prototype.getUri = function getUri(config) {
|
551 |
+
config = mergeConfig(this.defaults, config);
|
552 |
+
return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\?/, '');
|
553 |
+
};
|
554 |
+
|
555 |
// Provide aliases for supported request methods
|
556 |
utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
557 |
/*eslint func-names:0*/
|
558 |
Axios.prototype[method] = function(url, config) {
|
559 |
+
return this.request(mergeConfig(config || {}, {
|
560 |
method: method,
|
561 |
+
url: url,
|
562 |
+
data: (config || {}).data
|
563 |
}));
|
564 |
};
|
565 |
});
|
567 |
utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
568 |
/*eslint func-names:0*/
|
569 |
Axios.prototype[method] = function(url, data, config) {
|
570 |
+
return this.request(mergeConfig(config || {}, {
|
571 |
method: method,
|
572 |
url: url,
|
573 |
data: data
|
642 |
module.exports = InterceptorManager;
|
643 |
|
644 |
|
645 |
+
/***/ }),
|
646 |
+
|
647 |
+
/***/ "./node_modules/axios/lib/core/buildFullPath.js":
|
648 |
+
/*!******************************************************!*\
|
649 |
+
!*** ./node_modules/axios/lib/core/buildFullPath.js ***!
|
650 |
+
\******************************************************/
|
651 |
+
/*! no static exports found */
|
652 |
+
/***/ (function(module, exports, __webpack_require__) {
|
653 |
+
|
654 |
+
"use strict";
|
655 |
+
|
656 |
+
|
657 |
+
var isAbsoluteURL = __webpack_require__(/*! ../helpers/isAbsoluteURL */ "./node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
658 |
+
var combineURLs = __webpack_require__(/*! ../helpers/combineURLs */ "./node_modules/axios/lib/helpers/combineURLs.js");
|
659 |
+
|
660 |
+
/**
|
661 |
+
* Creates a new URL by combining the baseURL with the requestedURL,
|
662 |
+
* only when the requestedURL is not already an absolute URL.
|
663 |
+
* If the requestURL is absolute, this function returns the requestedURL untouched.
|
664 |
+
*
|
665 |
+
* @param {string} baseURL The base URL
|
666 |
+
* @param {string} requestedURL Absolute or relative URL to combine
|
667 |
+
* @returns {string} The combined full path
|
668 |
+
*/
|
669 |
+
module.exports = function buildFullPath(baseURL, requestedURL) {
|
670 |
+
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
671 |
+
return combineURLs(baseURL, requestedURL);
|
672 |
+
}
|
673 |
+
return requestedURL;
|
674 |
+
};
|
675 |
+
|
676 |
+
|
677 |
/***/ }),
|
678 |
|
679 |
/***/ "./node_modules/axios/lib/core/createError.js":
|
720 |
var transformData = __webpack_require__(/*! ./transformData */ "./node_modules/axios/lib/core/transformData.js");
|
721 |
var isCancel = __webpack_require__(/*! ../cancel/isCancel */ "./node_modules/axios/lib/cancel/isCancel.js");
|
722 |
var defaults = __webpack_require__(/*! ../defaults */ "./node_modules/axios/lib/defaults.js");
|
|
|
|
|
723 |
|
724 |
/**
|
725 |
* Throws a `Cancel` if cancellation has been requested.
|
739 |
module.exports = function dispatchRequest(config) {
|
740 |
throwIfCancellationRequested(config);
|
741 |
|
|
|
|
|
|
|
|
|
|
|
742 |
// Ensure headers exist
|
743 |
config.headers = config.headers || {};
|
744 |
|
753 |
config.headers = utils.merge(
|
754 |
config.headers.common || {},
|
755 |
config.headers[config.method] || {},
|
756 |
+
config.headers
|
757 |
);
|
758 |
|
759 |
utils.forEach(
|
822 |
if (code) {
|
823 |
error.code = code;
|
824 |
}
|
825 |
+
|
826 |
error.request = request;
|
827 |
error.response = response;
|
828 |
+
error.isAxiosError = true;
|
829 |
+
|
830 |
+
error.toJSON = function toJSON() {
|
831 |
+
return {
|
832 |
+
// Standard
|
833 |
+
message: this.message,
|
834 |
+
name: this.name,
|
835 |
+
// Microsoft
|
836 |
+
description: this.description,
|
837 |
+
number: this.number,
|
838 |
+
// Mozilla
|
839 |
+
fileName: this.fileName,
|
840 |
+
lineNumber: this.lineNumber,
|
841 |
+
columnNumber: this.columnNumber,
|
842 |
+
stack: this.stack,
|
843 |
+
// Axios
|
844 |
+
config: this.config,
|
845 |
+
code: this.code
|
846 |
+
};
|
847 |
+
};
|
848 |
return error;
|
849 |
};
|
850 |
|
851 |
|
852 |
+
/***/ }),
|
853 |
+
|
854 |
+
/***/ "./node_modules/axios/lib/core/mergeConfig.js":
|
855 |
+
/*!****************************************************!*\
|
856 |
+
!*** ./node_modules/axios/lib/core/mergeConfig.js ***!
|
857 |
+
\****************************************************/
|
858 |
+
/*! no static exports found */
|
859 |
+
/***/ (function(module, exports, __webpack_require__) {
|
860 |
+
|
861 |
+
"use strict";
|
862 |
+
|
863 |
+
|
864 |
+
var utils = __webpack_require__(/*! ../utils */ "./node_modules/axios/lib/utils.js");
|
865 |
+
|
866 |
+
/**
|
867 |
+
* Config-specific merge-function which creates a new config-object
|
868 |
+
* by merging two configuration objects together.
|
869 |
+
*
|
870 |
+
* @param {Object} config1
|
871 |
+
* @param {Object} config2
|
872 |
+
* @returns {Object} New object resulting from merging config2 to config1
|
873 |
+
*/
|
874 |
+
module.exports = function mergeConfig(config1, config2) {
|
875 |
+
// eslint-disable-next-line no-param-reassign
|
876 |
+
config2 = config2 || {};
|
877 |
+
var config = {};
|
878 |
+
|
879 |
+
var valueFromConfig2Keys = ['url', 'method', 'data'];
|
880 |
+
var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];
|
881 |
+
var defaultToConfig2Keys = [
|
882 |
+
'baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer',
|
883 |
+
'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',
|
884 |
+
'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress',
|
885 |
+
'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent',
|
886 |
+
'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'
|
887 |
+
];
|
888 |
+
var directMergeKeys = ['validateStatus'];
|
889 |
+
|
890 |
+
function getMergedValue(target, source) {
|
891 |
+
if (utils.isPlainObject(target) && utils.isPlainObject(source)) {
|
892 |
+
return utils.merge(target, source);
|
893 |
+
} else if (utils.isPlainObject(source)) {
|
894 |
+
return utils.merge({}, source);
|
895 |
+
} else if (utils.isArray(source)) {
|
896 |
+
return source.slice();
|
897 |
+
}
|
898 |
+
return source;
|
899 |
+
}
|
900 |
+
|
901 |
+
function mergeDeepProperties(prop) {
|
902 |
+
if (!utils.isUndefined(config2[prop])) {
|
903 |
+
config[prop] = getMergedValue(config1[prop], config2[prop]);
|
904 |
+
} else if (!utils.isUndefined(config1[prop])) {
|
905 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
906 |
+
}
|
907 |
+
}
|
908 |
+
|
909 |
+
utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {
|
910 |
+
if (!utils.isUndefined(config2[prop])) {
|
911 |
+
config[prop] = getMergedValue(undefined, config2[prop]);
|
912 |
+
}
|
913 |
+
});
|
914 |
+
|
915 |
+
utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);
|
916 |
+
|
917 |
+
utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {
|
918 |
+
if (!utils.isUndefined(config2[prop])) {
|
919 |
+
config[prop] = getMergedValue(undefined, config2[prop]);
|
920 |
+
} else if (!utils.isUndefined(config1[prop])) {
|
921 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
922 |
+
}
|
923 |
+
});
|
924 |
+
|
925 |
+
utils.forEach(directMergeKeys, function merge(prop) {
|
926 |
+
if (prop in config2) {
|
927 |
+
config[prop] = getMergedValue(config1[prop], config2[prop]);
|
928 |
+
} else if (prop in config1) {
|
929 |
+
config[prop] = getMergedValue(undefined, config1[prop]);
|
930 |
+
}
|
931 |
+
});
|
932 |
+
|
933 |
+
var axiosKeys = valueFromConfig2Keys
|
934 |
+
.concat(mergeDeepPropertiesKeys)
|
935 |
+
.concat(defaultToConfig2Keys)
|
936 |
+
.concat(directMergeKeys);
|
937 |
+
|
938 |
+
var otherKeys = Object
|
939 |
+
.keys(config1)
|
940 |
+
.concat(Object.keys(config2))
|
941 |
+
.filter(function filterAxiosKeys(key) {
|
942 |
+
return axiosKeys.indexOf(key) === -1;
|
943 |
+
});
|
944 |
+
|
945 |
+
utils.forEach(otherKeys, mergeDeepProperties);
|
946 |
+
|
947 |
+
return config;
|
948 |
+
};
|
949 |
+
|
950 |
+
|
951 |
/***/ }),
|
952 |
|
953 |
/***/ "./node_modules/axios/lib/core/settle.js":
|
971 |
*/
|
972 |
module.exports = function settle(resolve, reject, response) {
|
973 |
var validateStatus = response.config.validateStatus;
|
|
|
974 |
if (!response.status || !validateStatus || validateStatus(response.status)) {
|
975 |
resolve(response);
|
976 |
} else {
|
1047 |
if (typeof XMLHttpRequest !== 'undefined') {
|
1048 |
// For browsers use XHR adapter
|
1049 |
adapter = __webpack_require__(/*! ./adapters/xhr */ "./node_modules/axios/lib/adapters/xhr.js");
|
1050 |
+
} else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
|
1051 |
// For node use HTTP adapter
|
1052 |
adapter = __webpack_require__(/*! ./adapters/http */ "./node_modules/axios/lib/adapters/xhr.js");
|
1053 |
}
|
1058 |
adapter: getDefaultAdapter(),
|
1059 |
|
1060 |
transformRequest: [function transformRequest(data, headers) {
|
1061 |
+
normalizeHeaderName(headers, 'Accept');
|
1062 |
normalizeHeaderName(headers, 'Content-Type');
|
1063 |
if (utils.isFormData(data) ||
|
1064 |
utils.isArrayBuffer(data) ||
|
1103 |
xsrfHeaderName: 'X-XSRF-TOKEN',
|
1104 |
|
1105 |
maxContentLength: -1,
|
1106 |
+
maxBodyLength: -1,
|
1107 |
|
1108 |
validateStatus: function validateStatus(status) {
|
1109 |
return status >= 200 && status < 300;
|
1151 |
};
|
1152 |
|
1153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1154 |
/***/ }),
|
1155 |
|
1156 |
/***/ "./node_modules/axios/lib/helpers/buildURL.js":
|
1167 |
|
1168 |
function encode(val) {
|
1169 |
return encodeURIComponent(val).
|
|
|
1170 |
replace(/%3A/gi, ':').
|
1171 |
replace(/%24/g, '$').
|
1172 |
replace(/%2C/gi, ',').
|
1221 |
}
|
1222 |
|
1223 |
if (serializedParams) {
|
1224 |
+
var hashmarkIndex = url.indexOf('#');
|
1225 |
+
if (hashmarkIndex !== -1) {
|
1226 |
+
url = url.slice(0, hashmarkIndex);
|
1227 |
+
}
|
1228 |
+
|
1229 |
url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
|
1230 |
}
|
1231 |
|
1277 |
utils.isStandardBrowserEnv() ?
|
1278 |
|
1279 |
// Standard browser envs support document.cookie
|
1280 |
+
(function standardBrowserEnv() {
|
1281 |
+
return {
|
1282 |
+
write: function write(name, value, expires, path, domain, secure) {
|
1283 |
+
var cookie = [];
|
1284 |
+
cookie.push(name + '=' + encodeURIComponent(value));
|
1285 |
|
1286 |
+
if (utils.isNumber(expires)) {
|
1287 |
+
cookie.push('expires=' + new Date(expires).toGMTString());
|
1288 |
+
}
|
1289 |
|
1290 |
+
if (utils.isString(path)) {
|
1291 |
+
cookie.push('path=' + path);
|
1292 |
+
}
|
1293 |
|
1294 |
+
if (utils.isString(domain)) {
|
1295 |
+
cookie.push('domain=' + domain);
|
1296 |
+
}
|
1297 |
|
1298 |
+
if (secure === true) {
|
1299 |
+
cookie.push('secure');
|
1300 |
+
}
|
1301 |
|
1302 |
+
document.cookie = cookie.join('; ');
|
1303 |
+
},
|
1304 |
|
1305 |
+
read: function read(name) {
|
1306 |
+
var match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
1307 |
+
return (match ? decodeURIComponent(match[3]) : null);
|
1308 |
+
},
|
1309 |
|
1310 |
+
remove: function remove(name) {
|
1311 |
+
this.write(name, '', Date.now() - 86400000);
|
1312 |
+
}
|
1313 |
+
};
|
1314 |
+
})() :
|
1315 |
|
1316 |
// Non standard browser env (web workers, react-native) lack needed support.
|
1317 |
+
(function nonStandardBrowserEnv() {
|
1318 |
+
return {
|
1319 |
+
write: function write() {},
|
1320 |
+
read: function read() { return null; },
|
1321 |
+
remove: function remove() {}
|
1322 |
+
};
|
1323 |
+
})()
|
1324 |
);
|
1325 |
|
1326 |
|
1350 |
};
|
1351 |
|
1352 |
|
1353 |
+
/***/ }),
|
1354 |
+
|
1355 |
+
/***/ "./node_modules/axios/lib/helpers/isAxiosError.js":
|
1356 |
+
/*!********************************************************!*\
|
1357 |
+
!*** ./node_modules/axios/lib/helpers/isAxiosError.js ***!
|
1358 |
+
\********************************************************/
|
1359 |
+
/*! no static exports found */
|
1360 |
+
/***/ (function(module, exports, __webpack_require__) {
|
1361 |
+
|
1362 |
+
"use strict";
|
1363 |
+
|
1364 |
+
|
1365 |
+
/**
|
1366 |
+
* Determines whether the payload is an error thrown by Axios
|
1367 |
+
*
|
1368 |
+
* @param {*} payload The value to test
|
1369 |
+
* @returns {boolean} True if the payload is an error thrown by Axios, otherwise false
|
1370 |
+
*/
|
1371 |
+
module.exports = function isAxiosError(payload) {
|
1372 |
+
return (typeof payload === 'object') && (payload.isAxiosError === true);
|
1373 |
+
};
|
1374 |
+
|
1375 |
+
|
1376 |
/***/ }),
|
1377 |
|
1378 |
/***/ "./node_modules/axios/lib/helpers/isURLSameOrigin.js":
|
1392 |
|
1393 |
// Standard browser envs have full support of the APIs needed to test
|
1394 |
// whether the request URL is of the same origin as current location.
|
1395 |
+
(function standardBrowserEnv() {
|
1396 |
+
var msie = /(msie|trident)/i.test(navigator.userAgent);
|
1397 |
+
var urlParsingNode = document.createElement('a');
|
1398 |
+
var originURL;
|
1399 |
|
1400 |
+
/**
|
1401 |
* Parse a URL to discover it's components
|
1402 |
*
|
1403 |
* @param {String} url The URL to be parsed
|
1404 |
* @returns {Object}
|
1405 |
*/
|
1406 |
+
function resolveURL(url) {
|
1407 |
+
var href = url;
|
1408 |
|
1409 |
+
if (msie) {
|
1410 |
// IE needs attribute set twice to normalize properties
|
1411 |
+
urlParsingNode.setAttribute('href', href);
|
1412 |
+
href = urlParsingNode.href;
|
1413 |
+
}
|
1414 |
|
1415 |
+
urlParsingNode.setAttribute('href', href);
|
1416 |
|
1417 |
+
// urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils
|
1418 |
+
return {
|
1419 |
+
href: urlParsingNode.href,
|
1420 |
+
protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',
|
1421 |
+
host: urlParsingNode.host,
|
1422 |
+
search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '',
|
1423 |
+
hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',
|
1424 |
+
hostname: urlParsingNode.hostname,
|
1425 |
+
port: urlParsingNode.port,
|
1426 |
+
pathname: (urlParsingNode.pathname.charAt(0) === '/') ?
|
1427 |
+
urlParsingNode.pathname :
|
1428 |
+
'/' + urlParsingNode.pathname
|
1429 |
+
};
|
1430 |
+
}
|
1431 |
|
1432 |
+
originURL = resolveURL(window.location.href);
|
1433 |
|
1434 |
+
/**
|
1435 |
* Determine if a URL shares the same origin as the current location
|
1436 |
*
|
1437 |
* @param {String} requestURL The URL to test
|
1438 |
* @returns {boolean} True if URL shares the same origin, otherwise false
|
1439 |
*/
|
1440 |
+
return function isURLSameOrigin(requestURL) {
|
1441 |
+
var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;
|
1442 |
+
return (parsed.protocol === originURL.protocol &&
|
1443 |
parsed.host === originURL.host);
|
1444 |
+
};
|
1445 |
+
})() :
|
1446 |
|
1447 |
// Non standard browser envs (web workers, react-native) lack needed support.
|
1448 |
+
(function nonStandardBrowserEnv() {
|
1449 |
+
return function isURLSameOrigin() {
|
1450 |
+
return true;
|
1451 |
+
};
|
1452 |
+
})()
|
1453 |
);
|
1454 |
|
1455 |
|
1594 |
|
1595 |
|
1596 |
var bind = __webpack_require__(/*! ./helpers/bind */ "./node_modules/axios/lib/helpers/bind.js");
|
|
|
1597 |
|
1598 |
/*global toString:true*/
|
1599 |
|
1611 |
return toString.call(val) === '[object Array]';
|
1612 |
}
|
1613 |
|
1614 |
+
/**
|
1615 |
+
* Determine if a value is undefined
|
1616 |
+
*
|
1617 |
+
* @param {Object} val The value to test
|
1618 |
+
* @returns {boolean} True if the value is undefined, otherwise false
|
1619 |
+
*/
|
1620 |
+
function isUndefined(val) {
|
1621 |
+
return typeof val === 'undefined';
|
1622 |
+
}
|
1623 |
+
|
1624 |
+
/**
|
1625 |
+
* Determine if a value is a Buffer
|
1626 |
+
*
|
1627 |
+
* @param {Object} val The value to test
|
1628 |
+
* @returns {boolean} True if value is a Buffer, otherwise false
|
1629 |
+
*/
|
1630 |
+
function isBuffer(val) {
|
1631 |
+
return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
|
1632 |
+
&& typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);
|
1633 |
+
}
|
1634 |
+
|
1635 |
/**
|
1636 |
* Determine if a value is an ArrayBuffer
|
1637 |
*
|
1689 |
}
|
1690 |
|
1691 |
/**
|
1692 |
+
* Determine if a value is an Object
|
1693 |
*
|
1694 |
* @param {Object} val The value to test
|
1695 |
+
* @returns {boolean} True if value is an Object, otherwise false
|
1696 |
*/
|
1697 |
+
function isObject(val) {
|
1698 |
+
return val !== null && typeof val === 'object';
|
1699 |
}
|
1700 |
|
1701 |
/**
|
1702 |
+
* Determine if a value is a plain Object
|
1703 |
*
|
1704 |
* @param {Object} val The value to test
|
1705 |
+
* @return {boolean} True if value is a plain Object, otherwise false
|
1706 |
*/
|
1707 |
+
function isPlainObject(val) {
|
1708 |
+
if (toString.call(val) !== '[object Object]') {
|
1709 |
+
return false;
|
1710 |
+
}
|
1711 |
+
|
1712 |
+
var prototype = Object.getPrototypeOf(val);
|
1713 |
+
return prototype === null || prototype === Object.prototype;
|
1714 |
}
|
1715 |
|
1716 |
/**
|
1795 |
*
|
1796 |
* react-native:
|
1797 |
* navigator.product -> 'ReactNative'
|
1798 |
+
* nativescript
|
1799 |
+
* navigator.product -> 'NativeScript' or 'NS'
|
1800 |
*/
|
1801 |
function isStandardBrowserEnv() {
|
1802 |
+
if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||
|
1803 |
+
navigator.product === 'NativeScript' ||
|
1804 |
+
navigator.product === 'NS')) {
|
1805 |
return false;
|
1806 |
}
|
1807 |
return (
|
1869 |
function merge(/* obj1, obj2, obj3, ... */) {
|
1870 |
var result = {};
|
1871 |
function assignValue(val, key) {
|
1872 |
+
if (isPlainObject(result[key]) && isPlainObject(val)) {
|
1873 |
result[key] = merge(result[key], val);
|
1874 |
+
} else if (isPlainObject(val)) {
|
1875 |
+
result[key] = merge({}, val);
|
1876 |
+
} else if (isArray(val)) {
|
1877 |
+
result[key] = val.slice();
|
1878 |
} else {
|
1879 |
result[key] = val;
|
1880 |
}
|
1905 |
return a;
|
1906 |
}
|
1907 |
|
1908 |
+
/**
|
1909 |
+
* Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
1910 |
+
*
|
1911 |
+
* @param {string} content with BOM
|
1912 |
+
* @return {string} content value without BOM
|
1913 |
+
*/
|
1914 |
+
function stripBOM(content) {
|
1915 |
+
if (content.charCodeAt(0) === 0xFEFF) {
|
1916 |
+
content = content.slice(1);
|
1917 |
+
}
|
1918 |
+
return content;
|
1919 |
+
}
|
1920 |
+
|
1921 |
module.exports = {
|
1922 |
isArray: isArray,
|
1923 |
isArrayBuffer: isArrayBuffer,
|
1927 |
isString: isString,
|
1928 |
isNumber: isNumber,
|
1929 |
isObject: isObject,
|
1930 |
+
isPlainObject: isPlainObject,
|
1931 |
isUndefined: isUndefined,
|
1932 |
isDate: isDate,
|
1933 |
isFile: isFile,
|
1939 |
forEach: forEach,
|
1940 |
merge: merge,
|
1941 |
extend: extend,
|
1942 |
+
trim: trim,
|
1943 |
+
stripBOM: stripBOM
|
1944 |
};
|
1945 |
|
1946 |
|
6279 |
});
|
6280 |
|
6281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6282 |
/***/ }),
|
6283 |
|
6284 |
/***/ "./node_modules/isomorphic-fetch/fetch-npm-browserify.js":
|
29357 |
|
29358 |
|
29359 |
module.exports = {
|
29360 |
+
photo_api: "https://api.unsplash.com/photos",
|
29361 |
+
collections_api: "https://api.unsplash.com/collections",
|
29362 |
+
search_api: "https://api.unsplash.com/search/photos",
|
29363 |
+
app_id: "/?client_id=" + instant_img_localize.unsplash_app_id,
|
29364 |
+
posts_per_page: "&per_page=20"
|
29365 |
};
|
29366 |
|
29367 |
/***/ }),
|
29473 |
|
29474 |
|
29475 |
Object.defineProperty(exports, "__esModule", {
|
29476 |
+
value: true
|
29477 |
});
|
29478 |
|
29479 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
29499 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
29500 |
|
29501 |
var Photo = function (_React$Component) {
|
29502 |
+
_inherits(Photo, _React$Component);
|
29503 |
+
|
29504 |
+
function Photo(props) {
|
29505 |
+
_classCallCheck(this, Photo);
|
29506 |
+
|
29507 |
+
var _this = _possibleConstructorReturn(this, (Photo.__proto__ || Object.getPrototypeOf(Photo)).call(this, props));
|
29508 |
+
|
29509 |
+
_this.id = _this.props.result.id;
|
29510 |
+
_this.thumb = _this.props.result.urls.thumb;
|
29511 |
+
_this.img = _this.props.result.urls.small;
|
29512 |
+
//this.full_size = this.props.result.urls.raw;
|
29513 |
+
_this.full_size = _this.props.result.urls.full;
|
29514 |
+
_this.author = _this.props.result.user.name;
|
29515 |
+
_this.img_title = instant_img_localize.photo_by + " " + _this.author;
|
29516 |
+
_this.filename = _this.props.result.id;
|
29517 |
+
_this.title = _this.img_title;
|
29518 |
+
_this.alt = _this.props.result.alt_description;
|
29519 |
+
_this.caption = "";
|
29520 |
+
_this.user = _this.props.result.user.username;
|
29521 |
+
_this.user_photo = _this.props.result.user.profile_image.small;
|
29522 |
+
_this.link = _this.props.result.links.html;
|
29523 |
+
_this.likes = _this.props.result.likes;
|
29524 |
+
_this.view_all = instant_img_localize.view_all;
|
29525 |
+
_this.inProgress = false;
|
29526 |
+
_this.container = document.querySelector(".instant-img-container");
|
29527 |
+
_this.showTooltip = _this.props.showTooltip;
|
29528 |
+
_this.hideTooltip = _this.props.hideTooltip;
|
29529 |
+
|
29530 |
+
// Gutenberg Sidebar
|
29531 |
+
_this.setAsFeaturedImage = false;
|
29532 |
+
_this.insertIntoPost = false;
|
29533 |
+
_this.is_media_router = _this.props.mediaRouter;
|
29534 |
+
_this.is_block_editor = _this.props.blockEditor;
|
29535 |
+
_this.SetFeaturedImage = _this.props.SetFeaturedImage;
|
29536 |
+
_this.InsertImage = _this.props.InsertImage;
|
29537 |
+
|
29538 |
+
// Display controls in Gutenberg Sidebar Only
|
29539 |
+
_this.displayGutenbergControl = _this.is_block_editor ? true : false;
|
29540 |
+
|
29541 |
+
// Photo state
|
29542 |
+
_this.state = {
|
29543 |
+
filename: _this.filename,
|
29544 |
+
title: _this.title,
|
29545 |
+
alt: _this.alt,
|
29546 |
+
caption: _this.caption
|
29547 |
+
};
|
29548 |
+
return _this;
|
29549 |
+
}
|
|
|
|
|
|
|
29550 |
|
29551 |
+
/**
|
29552 |
+
* Function to trigger the image download
|
29553 |
+
*
|
29554 |
+
* @since 4.3
|
29555 |
+
*/
|
|
|
29556 |
|
29557 |
|
29558 |
+
_createClass(Photo, [{
|
29559 |
+
key: "download",
|
29560 |
+
value: function download(e) {
|
29561 |
+
e.preventDefault();
|
29562 |
+
var self = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29563 |
|
29564 |
+
var target = e.currentTarget; // get current <a/>
|
29565 |
+
var photo = target.parentElement.parentElement.parentElement; // Get parent .photo el
|
29566 |
+
var notice = photo.querySelector(".notice-msg"); // Locate .notice-msg div
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29567 |
|
29568 |
+
if (!target.classList.contains("upload")) {
|
29569 |
+
// If target is .download-photo, switch target definition
|
29570 |
+
target = photo.querySelector("a.upload");
|
29571 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29572 |
|
29573 |
+
if (target.classList.contains("success") || this.inProgress) {
|
29574 |
+
return false; // Exit if already uploaded or in progress.
|
29575 |
+
}
|
29576 |
+
this.inProgress = true;
|
|
|
|
|
29577 |
|
29578 |
+
target.classList.add("uploading");
|
29579 |
+
photo.classList.add("in-progress");
|
|
|
29580 |
|
29581 |
+
// Status messaging
|
29582 |
+
notice.innerHTML = instant_img_localize.saving;
|
29583 |
+
setTimeout(function () {
|
29584 |
+
// Change notice after 3 seconds
|
29585 |
+
notice.innerHTML = instant_img_localize.resizing;
|
29586 |
+
setTimeout(function () {
|
29587 |
+
// Change notice again after 5 seconds (Still resizing...)
|
29588 |
+
notice.innerHTML = instant_img_localize.resizing_still;
|
29589 |
+
}, 5000);
|
29590 |
+
}, 3000);
|
29591 |
+
|
29592 |
+
// API URL
|
29593 |
+
var api = instant_img_localize.root + "instant-images/download/";
|
29594 |
+
|
29595 |
+
// Data Params
|
29596 |
+
var data = {
|
29597 |
+
id: target.getAttribute("data-id"),
|
29598 |
+
image_url: target.getAttribute("data-url"),
|
29599 |
+
filename: target.getAttribute("data-id") + ".jpg",
|
29600 |
+
custom_filename: target.getAttribute("data-filename"),
|
29601 |
+
title: target.getAttribute("data-title"),
|
29602 |
+
alt: target.getAttribute("data-alt"),
|
29603 |
+
caption: target.getAttribute("data-caption"),
|
29604 |
+
parent_id: instant_img_localize.parent_id
|
29605 |
+
};
|
29606 |
|
29607 |
+
// Config Params
|
29608 |
+
var config = {
|
29609 |
+
headers: {
|
29610 |
+
"X-WP-Nonce": instant_img_localize.nonce,
|
29611 |
+
"Content-Type": "application/json"
|
29612 |
+
}
|
29613 |
+
};
|
29614 |
|
29615 |
+
_axios2.default.post(api, JSON.stringify(data), config).then(function (res) {
|
29616 |
+
var response = res.data;
|
|
|
29617 |
|
29618 |
+
if (response) {
|
29619 |
+
// Successful response from server
|
29620 |
+
var success = response.success;
|
29621 |
+
var id = response.id;
|
29622 |
+
var attachment = response.attachment;
|
29623 |
+
var admin_url = response.admin_url;
|
29624 |
+
var msg = response.msg;
|
29625 |
+
|
29626 |
+
if (success) {
|
29627 |
+
// Edit URL
|
29628 |
+
var edit_url = admin_url + "post.php?post=" + attachment.id + "&action=edit";
|
29629 |
+
|
29630 |
+
// Success/Upload Complete
|
29631 |
+
self.uploadComplete(target, photo, msg, edit_url, attachment.id);
|
29632 |
+
|
29633 |
+
// Trigger Download Counter at Unsplash
|
29634 |
+
self.triggerUnsplashDownload(id);
|
29635 |
+
|
29636 |
+
// Set Featured Image [Gutenberg Sidebar]
|
29637 |
+
if (self.displayGutenbergControl && self.setAsFeaturedImage) {
|
29638 |
+
self.SetFeaturedImage(attachment.id);
|
29639 |
+
self.setAsFeaturedImage = false;
|
29640 |
+
self.closeMediaModal();
|
29641 |
+
}
|
29642 |
+
|
29643 |
+
// Insert Image [Gutenberg Sidebar]
|
29644 |
+
if (self.displayGutenbergControl && self.insertIntoPost) {
|
29645 |
+
if (attachment.url) {
|
29646 |
+
self.InsertImage(attachment.url, attachment.caption, attachment.alt);
|
29647 |
+
self.closeMediaModal();
|
29648 |
+
}
|
29649 |
+
self.insertIntoPost = false;
|
29650 |
+
}
|
29651 |
+
|
29652 |
+
// If is media popup, redirect user to media-upload settings
|
29653 |
+
if (self.container.dataset.mediaPopup === "true" && !self.is_block_editor) {
|
29654 |
+
window.location = "media-upload.php?type=image&tab=library&attachment_id=" + attachment.id;
|
29655 |
+
}
|
29656 |
+
} else {
|
29657 |
+
// Error
|
29658 |
+
self.uploadError(target, photo, notice, msg);
|
29659 |
+
}
|
29660 |
+
} else {
|
29661 |
+
// Error
|
29662 |
+
self.uploadError(target, photo, notice, instant_img_localize.error_upload);
|
29663 |
+
}
|
29664 |
+
}).catch(function (error) {
|
29665 |
+
console.log(error);
|
29666 |
+
});
|
29667 |
+
}
|
29668 |
|
29669 |
+
/**
|
29670 |
+
* Function to trigger download action at unsplash.com
|
29671 |
+
* This is used to give authors download credits and nothing more
|
29672 |
+
*
|
29673 |
+
* @param id string The ID of the image
|
29674 |
+
* @since 3.1
|
29675 |
+
*/
|
29676 |
|
29677 |
+
}, {
|
29678 |
+
key: "triggerUnsplashDownload",
|
29679 |
+
value: function triggerUnsplashDownload(id) {
|
29680 |
+
var url = _API2.default.photo_api + "/" + id + "/download/" + _API2.default.app_id;
|
29681 |
+
|
29682 |
+
fetch(url).then(function (data) {
|
29683 |
+
return data.json();
|
29684 |
+
}).then(function (data) {
|
29685 |
+
// Success, nothing else happens here
|
29686 |
+
}).catch(function (error) {
|
29687 |
+
console.log(error);
|
29688 |
+
});
|
29689 |
+
}
|
29690 |
|
29691 |
+
/*
|
29692 |
+
* setFeaturedImageClick
|
29693 |
+
* Function used to trigger a download and then set as featured image
|
29694 |
+
*
|
29695 |
+
* @since 4.0
|
29696 |
+
*/
|
29697 |
|
29698 |
+
}, {
|
29699 |
+
key: "setFeaturedImageClick",
|
29700 |
+
value: function setFeaturedImageClick(e) {
|
29701 |
+
var target = e.currentTarget;
|
29702 |
+
if (!target) {
|
29703 |
+
return false;
|
29704 |
+
}
|
29705 |
|
29706 |
+
this.hideTooltip(e);
|
29707 |
+
var parent = target.parentNode.parentNode.parentNode;
|
29708 |
+
var photo = parent.querySelector("a.upload");
|
29709 |
+
if (photo) {
|
29710 |
+
this.setAsFeaturedImage = true;
|
29711 |
+
photo.click();
|
29712 |
+
}
|
29713 |
+
}
|
29714 |
|
29715 |
+
/*
|
29716 |
+
* insertImageIntoPost
|
29717 |
+
* Function used to insert an image directly into the block (Gutenberg) editor.
|
29718 |
+
*
|
29719 |
+
* @since 4.0
|
29720 |
+
*/
|
29721 |
|
29722 |
+
}, {
|
29723 |
+
key: "insertImageIntoPost",
|
29724 |
+
value: function insertImageIntoPost(e) {
|
29725 |
+
var target = e.currentTarget;
|
29726 |
+
if (!target) {
|
29727 |
+
return false;
|
29728 |
+
}
|
29729 |
|
29730 |
+
this.hideTooltip(e);
|
29731 |
+
var parent = target.parentNode.parentNode.parentNode;
|
29732 |
+
var photo = parent.querySelector("a.upload");
|
29733 |
+
if (photo) {
|
29734 |
+
this.insertIntoPost = true;
|
29735 |
+
photo.click();
|
29736 |
+
}
|
29737 |
+
}
|
29738 |
|
29739 |
+
/*
|
29740 |
+
* uploadComplete
|
29741 |
+
* Function runs when upload has completed
|
29742 |
+
*
|
29743 |
+
* @param target element clicked item
|
29744 |
+
* @param photo element Nearest parent .photo
|
29745 |
+
* @param msg string Success Msg
|
29746 |
+
* @param url string The attachment edit link
|
29747 |
+
* @param id string The attachment id
|
29748 |
+
* @since 3.0
|
29749 |
+
*/
|
29750 |
|
29751 |
+
}, {
|
29752 |
+
key: "uploadComplete",
|
29753 |
+
value: function uploadComplete(target, photo, msg, url, id) {
|
29754 |
+
this.setImageTitle(target, msg);
|
29755 |
+
|
29756 |
+
photo.classList.remove("in-progress");
|
29757 |
+
photo.classList.add("uploaded");
|
29758 |
+
|
29759 |
+
photo.querySelector(".edit-photo").style.display = "none"; // Hide edit-photo button
|
29760 |
+
photo.querySelector(".edit-photo-admin").style.display = "inline-block"; // Show edit-photo-admin button
|
29761 |
+
photo.querySelector(".edit-photo-admin").href = url; // Add admin edit link
|
29762 |
+
photo.querySelector(".edit-photo-admin").target = "_balnk"; // Add new window
|
29763 |
+
|
29764 |
+
target.classList.remove("uploading");
|
29765 |
+
target.classList.remove("resizing");
|
29766 |
+
target.classList.add("success");
|
29767 |
+
this.inProgress = false;
|
29768 |
+
|
29769 |
+
// Remove uploaded and success states after 7.5 seconds.
|
29770 |
+
setTimeout(function () {
|
29771 |
+
photo.classList.remove("uploaded");
|
29772 |
+
target.classList.remove("success");
|
29773 |
+
}, 7500);
|
29774 |
+
|
29775 |
+
// Gutenberg Sidebar
|
29776 |
+
if (this.is_block_editor) {
|
29777 |
+
photo.querySelector(".insert").style.display = "none"; // Hide insert button
|
29778 |
+
photo.querySelector(".set-featured").style.display = "none"; // Hide set-featured button
|
29779 |
+
}
|
29780 |
+
|
29781 |
+
// Media Router
|
29782 |
+
this.mediaRouter(id);
|
29783 |
+
|
29784 |
+
// Deprecated in 4.3
|
29785 |
+
// Was previously used in the Media Popup Context.
|
29786 |
+
// Refresh Media Library contents on edit pages
|
29787 |
+
if (this.container.classList.contains("editor")) {
|
29788 |
+
if (typeof wp.media != "undefined") {
|
29789 |
+
if (wp.media.frame.content.get() !== null) {
|
29790 |
+
wp.media.frame.content.get().collection.props.set({ ignore: +new Date() });
|
29791 |
+
wp.media.frame.content.get().options.selection.reset();
|
29792 |
+
} else {
|
29793 |
+
wp.media.frame.library.props.set({ ignore: +new Date() });
|
29794 |
+
}
|
29795 |
+
}
|
29796 |
+
}
|
29797 |
+
}
|
29798 |
+
|
29799 |
+
/**
|
29800 |
+
* mediaRouter
|
29801 |
+
* Refresh Media Modal and select item after it's been uploaded
|
29802 |
+
*
|
29803 |
+
* @since 4.3
|
29804 |
+
*/
|
29805 |
+
|
29806 |
+
}, {
|
29807 |
+
key: "mediaRouter",
|
29808 |
+
value: function mediaRouter(id) {
|
29809 |
+
if (this.is_media_router && wp.media && wp.media.frame && wp.media.frame.el) {
|
29810 |
+
var mediaModal = wp.media.frame.el;
|
29811 |
+
var mediaTab = mediaModal.querySelector("#menu-item-browse");
|
29812 |
+
if (mediaTab) {
|
29813 |
+
// Open the 'Media Library' tab
|
29814 |
+
mediaTab.click();
|
29815 |
+
}
|
29816 |
+
|
29817 |
+
// Delay to allow for tab switching
|
29818 |
+
setTimeout(function () {
|
29819 |
+
if (wp.media.frame.content.get() !== null) {
|
29820 |
+
//this forces a refresh of the content
|
29821 |
+
wp.media.frame.content.get().collection._requery(true);
|
29822 |
+
|
29823 |
+
//optional: reset selection
|
29824 |
+
//wp.media.frame.content.get().options.selection.reset();
|
29825 |
+
}
|
29826 |
+
|
29827 |
+
// Select the attached that was just uploaded.
|
29828 |
+
var selection = wp.media.frame.state().get("selection");
|
29829 |
+
var selected = parseInt(id);
|
29830 |
+
selection.reset(selected ? [wp.media.attachment(selected)] : []);
|
29831 |
+
}, 150);
|
29832 |
+
}
|
29833 |
+
}
|
29834 |
+
|
29835 |
+
/*
|
29836 |
+
* Function runs when error occurs on upload or resize.
|
29837 |
+
*
|
29838 |
+
* @param target element Current clicked item
|
29839 |
+
* @param photo element Nearest parent .photo
|
29840 |
+
* @param notice element The message area
|
29841 |
+
* @param msg string Error Msg
|
29842 |
+
* @since 3.0
|
29843 |
+
*/
|
29844 |
+
|
29845 |
+
}, {
|
29846 |
+
key: "uploadError",
|
29847 |
+
value: function uploadError(target, photo, notice, msg) {
|
29848 |
+
target.classList.remove("uploading");
|
29849 |
+
target.classList.remove("resizing");
|
29850 |
+
target.classList.add("errors");
|
29851 |
+
this.setImageTitle(target, msg);
|
29852 |
+
this.inProgress = false;
|
29853 |
+
notice.classList.add("has-error");
|
29854 |
+
console.warn(msg);
|
29855 |
+
}
|
29856 |
+
|
29857 |
+
/*
|
29858 |
+
* Set the title attribute of target.
|
29859 |
+
*
|
29860 |
+
* @param target element Current clicked item
|
29861 |
+
* @param msg string Title Msg from JSON
|
29862 |
+
* @since 3.0
|
29863 |
+
*/
|
29864 |
+
|
29865 |
+
}, {
|
29866 |
+
key: "setImageTitle",
|
29867 |
+
value: function setImageTitle(target, msg) {
|
29868 |
+
target.setAttribute("title", msg); // Remove 'Click to upload...', set new value
|
29869 |
+
}
|
29870 |
+
|
29871 |
+
/*
|
29872 |
+
* Displays the edit screen
|
29873 |
+
*
|
29874 |
+
* @since 3.2
|
29875 |
+
*/
|
29876 |
+
|
29877 |
+
}, {
|
29878 |
+
key: "showEditScreen",
|
29879 |
+
value: function showEditScreen(e) {
|
29880 |
+
e.preventDefault();
|
29881 |
+
var el = e.currentTarget;
|
29882 |
+
this.hideTooltip(e);
|
29883 |
+
var photo = el.closest(".photo");
|
29884 |
+
var filename = photo.querySelector('input[name="filename"]');
|
29885 |
+
var editScreen = photo.querySelector(".edit-screen");
|
29886 |
+
|
29887 |
+
editScreen.classList.add("editing"); // Show edit screen
|
29888 |
+
|
29889 |
+
// Set focus on edit screen
|
29890 |
+
setTimeout(function () {
|
29891 |
+
editScreen.focus();
|
29892 |
+
}, 150);
|
29893 |
+
}
|
29894 |
+
|
29895 |
+
/*
|
29896 |
+
* Handles the change event for the edit screen
|
29897 |
+
*
|
29898 |
+
* @since 3.2
|
29899 |
+
*/
|
29900 |
+
|
29901 |
+
}, {
|
29902 |
+
key: "handleEditChange",
|
29903 |
+
value: function handleEditChange(e) {
|
29904 |
+
var target = e.target.name;
|
29905 |
+
|
29906 |
+
if (target === "filename") {
|
29907 |
+
this.setState({
|
29908 |
+
filename: e.target.value
|
29909 |
+
});
|
29910 |
+
}
|
29911 |
+
if (target === "title") {
|
29912 |
+
this.setState({
|
29913 |
+
title: e.target.value
|
29914 |
+
});
|
29915 |
+
}
|
29916 |
+
if (target === "alt") {
|
29917 |
+
this.setState({
|
29918 |
+
alt: e.target.value
|
29919 |
+
});
|
29920 |
+
}
|
29921 |
+
if (target === "caption") {
|
29922 |
+
this.setState({
|
29923 |
+
caption: e.target.value
|
29924 |
+
});
|
29925 |
+
}
|
29926 |
+
}
|
29927 |
+
|
29928 |
+
/**
|
29929 |
+
* Handles the save event for the edit screen
|
29930 |
+
*
|
29931 |
+
* @since 3.2
|
29932 |
+
*/
|
29933 |
+
|
29934 |
+
}, {
|
29935 |
+
key: "saveEditChange",
|
29936 |
+
value: function saveEditChange(e) {
|
29937 |
+
var el = e.currentTarget;
|
29938 |
+
var photo = el.closest(".photo");
|
29939 |
+
|
29940 |
+
// Filename
|
29941 |
+
var filename = photo.querySelector('input[name="filename"]');
|
29942 |
+
this.filename = filename.value;
|
29943 |
+
|
29944 |
+
// Title
|
29945 |
+
var title = photo.querySelector('input[name="title"]');
|
29946 |
+
this.title = title.value;
|
29947 |
+
|
29948 |
+
// Alt
|
29949 |
+
var alt = photo.querySelector('input[name="alt"]');
|
29950 |
+
this.alt = alt.value;
|
29951 |
+
|
29952 |
+
// Caption
|
29953 |
+
var caption = photo.querySelector('textarea[name="caption"]');
|
29954 |
+
this.caption = caption.value;
|
29955 |
+
|
29956 |
+
photo.querySelector(".edit-screen").classList.remove("editing"); // Hide edit screen
|
29957 |
+
photo.querySelector("a.upload").click();
|
29958 |
+
}
|
29959 |
+
|
29960 |
+
/**
|
29961 |
+
* Handles the cancel event for the edit screen.
|
29962 |
+
*
|
29963 |
+
* @since 3.2
|
29964 |
+
*/
|
29965 |
+
|
29966 |
+
}, {
|
29967 |
+
key: "cancelEditChange",
|
29968 |
+
value: function cancelEditChange(e) {
|
29969 |
+
var el = e.currentTarget;
|
29970 |
+
var photo = el.closest(".photo");
|
29971 |
+
if (photo) {
|
29972 |
+
var target = photo.querySelector("a.upload");
|
29973 |
+
|
29974 |
+
// Filename
|
29975 |
+
var filename = photo.querySelector('input[name="filename"]');
|
29976 |
+
filename.value = filename.dataset.original;
|
29977 |
+
this.setState({
|
29978 |
+
filename: filename.value
|
29979 |
+
});
|
29980 |
+
|
29981 |
+
// Title
|
29982 |
+
var title = photo.querySelector('input[name="title"]');
|
29983 |
+
title.value = title.dataset.original;
|
29984 |
+
this.setState({
|
29985 |
+
title: title.value
|
29986 |
+
});
|
29987 |
+
|
29988 |
+
// Alt
|
29989 |
+
var alt = photo.querySelector('input[name="alt"]');
|
29990 |
+
alt.value = alt.dataset.original;
|
29991 |
+
this.setState({
|
29992 |
+
alt: alt.value
|
29993 |
+
});
|
29994 |
+
|
29995 |
+
// Caption
|
29996 |
+
var caption = photo.querySelector('textarea[name="caption"]');
|
29997 |
+
caption.value = caption.dataset.original;
|
29998 |
+
this.setState({
|
29999 |
+
caption: caption.value
|
30000 |
+
});
|
30001 |
+
|
30002 |
+
photo.querySelector(".edit-screen").classList.remove("editing"); // Hide edit screen
|
30003 |
+
target.focus();
|
30004 |
+
}
|
30005 |
+
}
|
30006 |
+
|
30007 |
+
/**
|
30008 |
+
* Close the media modal after an action
|
30009 |
+
*
|
30010 |
+
* @since 4.3
|
30011 |
+
*/
|
30012 |
+
|
30013 |
+
}, {
|
30014 |
+
key: "closeMediaModal",
|
30015 |
+
value: function closeMediaModal() {
|
30016 |
+
var mediaModal = document.querySelector(".media-modal");
|
30017 |
+
if (mediaModal) {
|
30018 |
+
var closeBtn = mediaModal.querySelector("button.media-modal-close");
|
30019 |
+
if (!closeBtn) {
|
30020 |
+
return false;
|
30021 |
+
}
|
30022 |
+
closeBtn.click();
|
30023 |
+
}
|
30024 |
+
}
|
30025 |
+
}, {
|
30026 |
+
key: "render",
|
30027 |
+
value: function render() {
|
30028 |
+
var _this2 = this;
|
30029 |
+
|
30030 |
+
var likeTxt = parseInt(this.likes) > 1 ? instant_img_localize.likes_plural : instant_img_localize.likes;
|
30031 |
+
|
30032 |
+
return _react2.default.createElement(
|
30033 |
+
"article",
|
30034 |
+
{ className: "photo" },
|
30035 |
+
_react2.default.createElement(
|
30036 |
+
"div",
|
30037 |
+
{ className: "photo--wrap" },
|
30038 |
+
_react2.default.createElement(
|
30039 |
+
"div",
|
30040 |
+
{ className: "img-wrap" },
|
30041 |
+
_react2.default.createElement(
|
30042 |
+
"a",
|
30043 |
+
{
|
30044 |
+
className: "upload loaded",
|
30045 |
+
href: this.full_size,
|
30046 |
+
"data-id": this.id,
|
30047 |
+
"data-url": this.full_size,
|
30048 |
+
"data-filename": this.state.filename,
|
30049 |
+
"data-title": this.state.title,
|
30050 |
+
"data-alt": this.state.alt,
|
30051 |
+
"data-caption": this.state.caption,
|
30052 |
+
title: instant_img_localize.upload,
|
30053 |
+
onClick: function onClick(e) {
|
30054 |
+
return _this2.download(e);
|
30055 |
+
}
|
30056 |
+
},
|
30057 |
+
_react2.default.createElement("img", { src: this.img, alt: "" }),
|
30058 |
+
_react2.default.createElement("div", { className: "status" })
|
30059 |
+
),
|
30060 |
+
_react2.default.createElement("div", { className: "notice-msg" }),
|
30061 |
+
_react2.default.createElement(
|
30062 |
+
"div",
|
30063 |
+
{ className: "user-controls" },
|
30064 |
+
_react2.default.createElement(
|
30065 |
+
"a",
|
30066 |
+
{
|
30067 |
+
className: "user fade",
|
30068 |
+
href: "https://unsplash.com/@" + this.user + "?utm_source=wordpress-instant-images&utm_medium=referral",
|
30069 |
+
target: "_blank",
|
30070 |
+
title: this.view_all + " @" + this.user
|
30071 |
+
},
|
30072 |
+
_react2.default.createElement(
|
30073 |
+
"div",
|
30074 |
+
{ className: "user-wrap" },
|
30075 |
+
this.user_photo.length > 0 && _react2.default.createElement("img", { src: this.user_photo }),
|
30076 |
+
this.user
|
30077 |
+
)
|
30078 |
+
),
|
30079 |
+
_react2.default.createElement(
|
30080 |
+
"div",
|
30081 |
+
{ className: "photo-options" },
|
30082 |
+
this.displayGutenbergControl && _react2.default.createElement(
|
30083 |
+
"button",
|
30084 |
+
{
|
30085 |
+
type: "button",
|
30086 |
+
className: "set-featured fade",
|
30087 |
+
"data-title": instant_img_localize.set_as_featured,
|
30088 |
+
onMouseEnter: function onMouseEnter(e) {
|
30089 |
+
return _this2.showTooltip(e);
|
30090 |
+
},
|
30091 |
+
onMouseLeave: function onMouseLeave(e) {
|
30092 |
+
return _this2.hideTooltip(e);
|
30093 |
+
},
|
30094 |
+
onClick: function onClick(e) {
|
30095 |
+
return _this2.setFeaturedImageClick(e);
|
30096 |
+
}
|
30097 |
+
},
|
30098 |
+
_react2.default.createElement("i", {
|
30099 |
+
className: "fa fa-picture-o",
|
30100 |
+
"aria-hidden": "true"
|
30101 |
+
}),
|
30102 |
+
_react2.default.createElement(
|
30103 |
+
"span",
|
30104 |
+
{ className: "offscreen" },
|
30105 |
+
instant_img_localize.set_as_featured
|
30106 |
+
)
|
30107 |
+
),
|
30108 |
+
this.displayGutenbergControl && _react2.default.createElement(
|
30109 |
+
"button",
|
30110 |
+
{
|
30111 |
+
type: "button",
|
30112 |
+
className: "insert fade",
|
30113 |
+
"data-title": instant_img_localize.insert_into_post,
|
30114 |
+
onMouseEnter: function onMouseEnter(e) {
|
30115 |
+
return _this2.showTooltip(e);
|
30116 |
+
},
|
30117 |
+
onMouseLeave: function onMouseLeave(e) {
|
30118 |
+
return _this2.hideTooltip(e);
|
30119 |
+
},
|
30120 |
+
onClick: function onClick(e) {
|
30121 |
+
return _this2.insertImageIntoPost(e);
|
30122 |
+
}
|
30123 |
+
},
|
30124 |
+
_react2.default.createElement("i", { className: "fa fa-plus", "aria-hidden": "true" }),
|
30125 |
+
_react2.default.createElement(
|
30126 |
+
"span",
|
30127 |
+
{ className: "offscreen" },
|
30128 |
+
instant_img_localize.insert_into_post
|
30129 |
+
)
|
30130 |
+
),
|
30131 |
+
_react2.default.createElement(
|
30132 |
+
"a",
|
30133 |
+
{
|
30134 |
+
href: "#",
|
30135 |
+
className: "edit-photo-admin fade",
|
30136 |
+
"data-title": instant_img_localize.edit_upload,
|
30137 |
+
onMouseEnter: function onMouseEnter(e) {
|
30138 |
+
return _this2.showTooltip(e);
|
30139 |
+
},
|
30140 |
+
onMouseLeave: function onMouseLeave(e) {
|
30141 |
+
return _this2.hideTooltip(e);
|
30142 |
+
}
|
30143 |
+
},
|
30144 |
+
_react2.default.createElement("i", { className: "fa fa-pencil", "aria-hidden": "true" }),
|
30145 |
+
_react2.default.createElement(
|
30146 |
+
"span",
|
30147 |
+
{ className: "offscreen" },
|
30148 |
+
instant_img_localize.edit_upload
|
30149 |
+
)
|
30150 |
+
),
|
30151 |
+
_react2.default.createElement(
|
30152 |
+
"button",
|
30153 |
+
{
|
30154 |
+
type: "button",
|
30155 |
+
className: "edit-photo fade",
|
30156 |
+
"data-title": instant_img_localize.edit_details,
|
30157 |
+
onMouseEnter: function onMouseEnter(e) {
|
30158 |
+
return _this2.showTooltip(e);
|
30159 |
+
},
|
30160 |
+
onMouseLeave: function onMouseLeave(e) {
|
30161 |
+
return _this2.hideTooltip(e);
|
30162 |
+
},
|
30163 |
+
onClick: function onClick(e) {
|
30164 |
+
return _this2.showEditScreen(e);
|
30165 |
+
}
|
30166 |
+
},
|
30167 |
+
_react2.default.createElement("i", { className: "fa fa-cog", "aria-hidden": "true" }),
|
30168 |
+
_react2.default.createElement(
|
30169 |
+
"span",
|
30170 |
+
{ className: "offscreen" },
|
30171 |
+
instant_img_localize.edit_details
|
30172 |
+
)
|
30173 |
+
)
|
30174 |
+
)
|
30175 |
+
),
|
30176 |
+
_react2.default.createElement(
|
30177 |
+
"div",
|
30178 |
+
{ className: "options" },
|
30179 |
+
_react2.default.createElement(
|
30180 |
+
"span",
|
30181 |
+
{
|
30182 |
+
className: "likes tooltip--above",
|
30183 |
+
"data-title": this.likes + " " + likeTxt,
|
30184 |
+
onMouseEnter: function onMouseEnter(e) {
|
30185 |
+
return _this2.showTooltip(e);
|
30186 |
+
},
|
30187 |
+
onMouseLeave: function onMouseLeave(e) {
|
30188 |
+
return _this2.hideTooltip(e);
|
30189 |
+
}
|
30190 |
+
},
|
30191 |
+
_react2.default.createElement("i", {
|
30192 |
+
className: "fa fa-heart heart-like",
|
30193 |
+
"aria-hidden": "true"
|
30194 |
+
}),
|
30195 |
+
" ",
|
30196 |
+
this.likes
|
30197 |
+
),
|
30198 |
+
_react2.default.createElement(
|
30199 |
+
"a",
|
30200 |
+
{
|
30201 |
+
className: "tooltip--above",
|
30202 |
+
href: this.link,
|
30203 |
+
"data-title": instant_img_localize.view_on_unsplash,
|
30204 |
+
onMouseEnter: function onMouseEnter(e) {
|
30205 |
+
return _this2.showTooltip(e);
|
30206 |
+
},
|
30207 |
+
onMouseLeave: function onMouseLeave(e) {
|
30208 |
+
return _this2.hideTooltip(e);
|
30209 |
+
},
|
30210 |
+
target: "_blank"
|
30211 |
+
},
|
30212 |
+
_react2.default.createElement("i", {
|
30213 |
+
className: "fa fa-external-link",
|
30214 |
+
"aria-hidden": "true"
|
30215 |
+
}),
|
30216 |
+
_react2.default.createElement(
|
30217 |
+
"span",
|
30218 |
+
{ className: "offscreen" },
|
30219 |
+
instant_img_localize.view_on_unsplash
|
30220 |
+
)
|
30221 |
+
)
|
30222 |
+
)
|
30223 |
+
),
|
30224 |
+
_react2.default.createElement(
|
30225 |
+
"div",
|
30226 |
+
{ className: "edit-screen", tabIndex: "0" },
|
30227 |
+
_react2.default.createElement(
|
30228 |
+
"div",
|
30229 |
+
{ className: "edit-screen--title" },
|
30230 |
+
_react2.default.createElement(
|
30231 |
+
"p",
|
30232 |
+
{ className: "heading" },
|
30233 |
+
instant_img_localize.edit_details
|
30234 |
+
),
|
30235 |
+
_react2.default.createElement(
|
30236 |
+
"p",
|
30237 |
+
null,
|
30238 |
+
instant_img_localize.edit_details_intro,
|
30239 |
+
"."
|
30240 |
+
)
|
30241 |
+
),
|
30242 |
+
_react2.default.createElement(
|
30243 |
+
"label",
|
30244 |
+
null,
|
30245 |
+
_react2.default.createElement(
|
30246 |
+
"span",
|
30247 |
+
null,
|
30248 |
+
instant_img_localize.edit_filename,
|
30249 |
+
":"
|
30250 |
+
),
|
30251 |
+
_react2.default.createElement("input", {
|
30252 |
+
type: "text",
|
30253 |
+
name: "filename",
|
30254 |
+
"data-original": this.filename,
|
30255 |
+
placeholder: this.filename,
|
30256 |
+
value: this.state.filename,
|
30257 |
+
onChange: function onChange(e) {
|
30258 |
+
return _this2.handleEditChange(e);
|
30259 |
+
}
|
30260 |
+
}),
|
30261 |
+
_react2.default.createElement(
|
30262 |
+
"em",
|
30263 |
+
null,
|
30264 |
+
".jpg"
|
30265 |
+
)
|
30266 |
+
),
|
30267 |
+
_react2.default.createElement(
|
30268 |
+
"label",
|
30269 |
+
null,
|
30270 |
+
_react2.default.createElement(
|
30271 |
+
"span",
|
30272 |
+
null,
|
30273 |
+
instant_img_localize.edit_title,
|
30274 |
+
":"
|
30275 |
+
),
|
30276 |
+
_react2.default.createElement("input", {
|
30277 |
+
type: "text",
|
30278 |
+
name: "title",
|
30279 |
+
"data-original": this.title,
|
30280 |
+
placeholder: this.title,
|
30281 |
+
value: this.state.title || "",
|
30282 |
+
onChange: function onChange(e) {
|
30283 |
+
return _this2.handleEditChange(e);
|
30284 |
+
}
|
30285 |
+
})
|
30286 |
+
),
|
30287 |
+
_react2.default.createElement(
|
30288 |
+
"label",
|
30289 |
+
null,
|
30290 |
+
_react2.default.createElement(
|
30291 |
+
"span",
|
30292 |
+
null,
|
30293 |
+
instant_img_localize.edit_alt,
|
30294 |
+
":"
|
30295 |
+
),
|
30296 |
+
_react2.default.createElement("input", {
|
30297 |
+
type: "text",
|
30298 |
+
name: "alt",
|
30299 |
+
"data-original": this.alt,
|
30300 |
+
value: this.state.alt || "",
|
30301 |
+
onChange: function onChange(e) {
|
30302 |
+
return _this2.handleEditChange(e);
|
30303 |
+
}
|
30304 |
+
})
|
30305 |
+
),
|
30306 |
+
_react2.default.createElement(
|
30307 |
+
"label",
|
30308 |
+
null,
|
30309 |
+
_react2.default.createElement(
|
30310 |
+
"span",
|
30311 |
+
null,
|
30312 |
+
instant_img_localize.edit_caption,
|
30313 |
+
":"
|
30314 |
+
),
|
30315 |
+
_react2.default.createElement("textarea", {
|
30316 |
+
rows: "3",
|
30317 |
+
name: "caption",
|
30318 |
+
"data-original": "",
|
30319 |
+
onChange: function onChange(e) {
|
30320 |
+
return _this2.handleEditChange(e);
|
30321 |
+
},
|
30322 |
+
value: this.state.caption || ""
|
30323 |
+
})
|
30324 |
+
),
|
30325 |
+
_react2.default.createElement(
|
30326 |
+
"div",
|
30327 |
+
{ className: "edit-screen--controls" },
|
30328 |
+
_react2.default.createElement(
|
30329 |
+
"button",
|
30330 |
+
{
|
30331 |
+
type: "button",
|
30332 |
+
className: "button",
|
30333 |
+
onClick: function onClick(e) {
|
30334 |
+
return _this2.cancelEditChange(e);
|
30335 |
+
}
|
30336 |
+
},
|
30337 |
+
instant_img_localize.cancel
|
30338 |
+
),
|
30339 |
+
" ",
|
30340 |
+
"\xA0",
|
30341 |
+
_react2.default.createElement(
|
30342 |
+
"button",
|
30343 |
+
{
|
30344 |
+
type: "button",
|
30345 |
+
className: "button button-primary",
|
30346 |
+
onClick: function onClick(e) {
|
30347 |
+
return _this2.saveEditChange(e);
|
30348 |
+
}
|
30349 |
+
},
|
30350 |
+
instant_img_localize.upload_now
|
30351 |
+
)
|
30352 |
+
)
|
30353 |
+
)
|
30354 |
+
)
|
30355 |
+
);
|
30356 |
+
}
|
30357 |
+
}]);
|
30358 |
+
|
30359 |
+
return Photo;
|
30360 |
}(_react2.default.Component);
|
30361 |
|
30362 |
exports.default = Photo;
|
30435 |
_this.page = _this.props.page; // Page
|
30436 |
|
30437 |
_this.is_search = false;
|
30438 |
+
_this.search_term = "";
|
30439 |
_this.total_results = 0;
|
30440 |
+
_this.orientation = "";
|
30441 |
|
30442 |
_this.isLoading = false; // loading flag
|
30443 |
_this.isDone = false; // Done flag - no photos remain
|
30444 |
|
30445 |
+
_this.errorMsg = "";
|
30446 |
+
_this.msnry = "";
|
30447 |
+
_this.tooltipInterval = "";
|
30448 |
|
30449 |
+
_this.editor = _this.props.editor ? _this.props.editor : "classic";
|
30450 |
+
_this.is_block_editor = _this.props.editor === "gutenberg" ? true : false;
|
30451 |
+
_this.is_media_router = _this.props.editor === "media-router" ? true : false;
|
30452 |
+
_this.SetFeaturedImage = _this.props.SetFeaturedImage ? _this.props.SetFeaturedImage.bind(_this) : "";
|
30453 |
+
_this.InsertImage = _this.props.InsertImage ? _this.props.InsertImage.bind(_this) : "";
|
30454 |
|
30455 |
if (_this.is_block_editor) {
|
30456 |
// Gutenberg Sidebar Only
|
30457 |
+
_this.container = document.querySelector("body");
|
30458 |
+
_this.container.classList.add("loading");
|
30459 |
+
_this.wrapper = document.querySelector("body");
|
30460 |
} else {
|
30461 |
// Post Edit Screens and Plugin Screen
|
30462 |
+
_this.container = _this.props.container.closest(".instant-img-container");
|
30463 |
+
_this.wrapper = _this.props.container.closest(".instant-images-wrapper");
|
30464 |
+
_this.container.classList.add("loading");
|
30465 |
}
|
|
|
30466 |
return _this;
|
30467 |
}
|
30468 |
|
30469 |
/**
|
30470 |
+
* Test access to the REST API.
|
30471 |
+
*
|
30472 |
+
* @since 3.2
|
30473 |
+
*/
|
|
|
30474 |
|
30475 |
|
30476 |
_createClass(PhotoList, [{
|
30477 |
+
key: "test",
|
30478 |
value: function test() {
|
|
|
30479 |
var self = this;
|
30480 |
|
30481 |
+
var target = this.container.querySelector(".error-messaging"); // Target element
|
30482 |
|
30483 |
+
var testURL = instant_img_localize.root + "instant-images/test/"; // REST Route
|
30484 |
var restAPITest = new XMLHttpRequest();
|
30485 |
+
restAPITest.open("POST", testURL, true);
|
30486 |
+
restAPITest.setRequestHeader("X-WP-Nonce", instant_img_localize.nonce);
|
30487 |
+
restAPITest.setRequestHeader("Content-Type", "application/json");
|
30488 |
restAPITest.send();
|
30489 |
|
30490 |
restAPITest.onload = function () {
|
30509 |
};
|
30510 |
}
|
30511 |
}, {
|
30512 |
+
key: "renderTestError",
|
30513 |
value: function renderTestError(target) {
|
30514 |
+
target.classList.add("active");
|
30515 |
target.innerHTML = instant_img_localize.error_restapi + instant_img_localize.error_restapi_desc;
|
30516 |
}
|
30517 |
|
30518 |
/**
|
30519 |
+
* Trigger Unsplash Search.
|
30520 |
+
*
|
30521 |
+
* @param e element the search form
|
30522 |
+
* @since 3.0
|
30523 |
+
*/
|
|
|
30524 |
|
30525 |
}, {
|
30526 |
+
key: "search",
|
30527 |
value: function search(e) {
|
|
|
30528 |
e.preventDefault();
|
30529 |
+
var input = this.container.querySelector("#photo-search");
|
30530 |
var term = input.value;
|
30531 |
|
30532 |
if (term.length > 2) {
|
30533 |
+
input.classList.add("searching");
|
30534 |
+
this.container.classList.add("loading");
|
30535 |
this.search_term = term;
|
30536 |
this.is_search = true;
|
30537 |
this.doSearch(this.search_term);
|
30541 |
}
|
30542 |
|
30543 |
/**
|
30544 |
+
* Orientation filter. Availlable during a search only.
|
30545 |
+
*
|
30546 |
+
* @since 4.2
|
30547 |
+
*/
|
|
|
30548 |
|
30549 |
}, {
|
30550 |
+
key: "setOrientation",
|
30551 |
value: function setOrientation(orientation, e) {
|
|
|
30552 |
if (e && e.target) {
|
30553 |
var target = e.target;
|
30554 |
|
30555 |
+
if (target.classList.contains("active")) {
|
30556 |
// Clear orientation
|
30557 |
+
target.classList.remove("active");
|
30558 |
+
this.orientation = "";
|
30559 |
} else {
|
30560 |
+
// Set orientation
|
30561 |
+
var siblings = target.parentNode.querySelectorAll("li");
|
30562 |
[].concat(_toConsumableArray(siblings)).forEach(function (el) {
|
30563 |
+
return el.classList.remove("active");
|
30564 |
}); // remove active classes
|
30565 |
|
30566 |
+
target.classList.add("active");
|
30567 |
this.orientation = orientation;
|
30568 |
}
|
30569 |
|
30570 |
+
if (this.search_term !== "") {
|
30571 |
this.doSearch(this.search_term);
|
30572 |
}
|
30573 |
}
|
30574 |
}
|
30575 |
|
30576 |
/**
|
30577 |
+
* Is their an orientation set.
|
30578 |
+
*
|
30579 |
+
* @since 4.2
|
30580 |
+
*/
|
|
|
30581 |
|
30582 |
}, {
|
30583 |
+
key: "hasOrientation",
|
30584 |
value: function hasOrientation() {
|
30585 |
+
return this.orientation === "" ? false : true;
|
30586 |
}
|
30587 |
|
30588 |
/**
|
30589 |
+
* Clear the orientation.
|
30590 |
+
*
|
30591 |
+
* @since 4.2
|
30592 |
+
*/
|
|
|
30593 |
|
30594 |
}, {
|
30595 |
+
key: "clearOrientation",
|
30596 |
value: function clearOrientation() {
|
30597 |
+
var items = this.container.querySelectorAll(".orientation-list li");
|
30598 |
[].concat(_toConsumableArray(items)).forEach(function (el) {
|
30599 |
+
return el.classList.remove("active");
|
30600 |
}); // remove active classes
|
30601 |
+
this.orientation = "";
|
30602 |
}
|
30603 |
|
30604 |
/**
|
30605 |
+
* Run the search.
|
30606 |
+
*
|
30607 |
+
* @param term string the search term
|
30608 |
+
* @param type string the type of search, standard or by ID
|
30609 |
+
* @since 3.0
|
30610 |
+
* @updated 3.1
|
30611 |
+
*/
|
|
|
30612 |
|
30613 |
}, {
|
30614 |
+
key: "doSearch",
|
30615 |
value: function doSearch(term) {
|
|
|
30616 |
var self = this;
|
30617 |
+
var type = "term";
|
30618 |
this.page = 1; // reset page num
|
30619 |
|
30620 |
+
var url = "" + _API2.default.search_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&query=" + this.search_term;
|
30621 |
|
30622 |
if (this.hasOrientation()) {
|
30623 |
// Set orientation
|
30624 |
+
url = url + "&orientation=" + this.orientation;
|
30625 |
}
|
30626 |
|
30627 |
// Search by ID
|
30628 |
// allow users to search by photo by prepending id:{photo_id} to search terms
|
30629 |
var search_type = term.substring(0, 3);
|
30630 |
+
if (search_type === "id:") {
|
30631 |
+
type = "id";
|
30632 |
+
term = term.replace("id:", "");
|
30633 |
+
url = _API2.default.photo_api + "/" + term + _API2.default.app_id;
|
30634 |
}
|
30635 |
|
30636 |
+
var input = this.container.querySelector("#photo-search");
|
30637 |
|
30638 |
fetch(url).then(function (data) {
|
30639 |
return data.json();
|
30640 |
}).then(function (data) {
|
|
|
30641 |
// Term Search
|
30642 |
+
if (type === "term") {
|
|
|
30643 |
self.total_results = data.total;
|
30644 |
|
30645 |
// Check for returned data
|
30651 |
}
|
30652 |
|
30653 |
// Search by photo ID
|
30654 |
+
if (type === "id" && data) {
|
30655 |
+
// Convert return data to array
|
|
|
30656 |
var photoArray = [];
|
30657 |
|
30658 |
if (data.errors) {
|
30659 |
// If error was returned
|
30660 |
|
30661 |
self.total_results = 0;
|
30662 |
+
self.checkTotalResults("0");
|
30663 |
} else {
|
30664 |
// No errors, display results
|
30665 |
|
30666 |
photoArray.push(data);
|
30667 |
|
30668 |
self.total_results = 1;
|
30669 |
+
self.checkTotalResults("1");
|
30670 |
}
|
30671 |
|
30672 |
self.results = photoArray;
|
30673 |
self.setState({ results: self.results });
|
30674 |
}
|
30675 |
|
30676 |
+
input.classList.remove("searching");
|
30677 |
}).catch(function (error) {
|
30678 |
console.log(error);
|
30679 |
self.isLoading = false;
|
30681 |
}
|
30682 |
|
30683 |
/**
|
30684 |
+
* Reset search results and results view.
|
30685 |
+
*
|
30686 |
+
* @since 3.0
|
30687 |
+
*/
|
|
|
30688 |
|
30689 |
}, {
|
30690 |
+
key: "clearSearch",
|
30691 |
value: function clearSearch() {
|
30692 |
+
var input = this.container.querySelector("#photo-search");
|
30693 |
+
input.value = "";
|
30694 |
this.total_results = 0;
|
30695 |
this.is_search = false;
|
30696 |
+
this.search_term = "";
|
30697 |
this.clearOrientation();
|
30698 |
}
|
30699 |
|
30700 |
/**
|
30701 |
+
* Load next set of photos, infinite scroll style.
|
30702 |
+
*
|
30703 |
+
* @since 3.0
|
30704 |
+
*/
|
|
|
30705 |
|
30706 |
}, {
|
30707 |
+
key: "getPhotos",
|
30708 |
value: function getPhotos() {
|
|
|
30709 |
var self = this;
|
30710 |
this.page = parseInt(this.page) + 1;
|
30711 |
+
this.container.classList.add("loading");
|
30712 |
this.isLoading = true;
|
30713 |
|
30714 |
+
var url = "" + _API2.default.photo_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&order_by=" + this.orderby;
|
30715 |
|
30716 |
if (this.is_search) {
|
30717 |
+
url = "" + _API2.default.search_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&query=" + this.search_term;
|
30718 |
if (this.hasOrientation()) {
|
30719 |
// Set orientation
|
30720 |
+
url = url + "&orientation=" + this.orientation;
|
30721 |
}
|
30722 |
}
|
30723 |
|
30724 |
fetch(url).then(function (data) {
|
30725 |
return data.json();
|
30726 |
}).then(function (data) {
|
|
|
30727 |
if (self.is_search) {
|
30728 |
data = data.results; // Search results are recieved in different JSON format
|
30729 |
}
|
30745 |
}
|
30746 |
|
30747 |
/**
|
30748 |
+
* Toogles the photo view (New/Popular/Old).
|
30749 |
+
*
|
30750 |
+
* @param view string Current view
|
30751 |
+
* @param e element Clicked element
|
30752 |
+
* @since 3.0
|
30753 |
+
*/
|
|
|
30754 |
|
30755 |
}, {
|
30756 |
+
key: "togglePhotoList",
|
30757 |
value: function togglePhotoList(view, e) {
|
|
|
30758 |
var el = e.target;
|
30759 |
+
if (el.classList.contains("active")) return false; // exit if active
|
30760 |
|
30761 |
+
el.classList.add("loading"); // Add class to nav btn
|
30762 |
this.isLoading = true;
|
30763 |
var self = this;
|
30764 |
this.page = 1;
|
30766 |
this.results = [];
|
30767 |
this.clearSearch();
|
30768 |
|
30769 |
+
var url = "" + _API2.default.photo_api + _API2.default.app_id + _API2.default.posts_per_page + "&page=" + this.page + "&order_by=" + this.orderby;
|
30770 |
fetch(url).then(function (data) {
|
30771 |
return data.json();
|
30772 |
}).then(function (data) {
|
|
|
30773 |
// Check for returned data
|
30774 |
self.checkTotalResults(data.length);
|
30775 |
|
30777 |
self.results = data;
|
30778 |
self.setState({ results: data });
|
30779 |
|
30780 |
+
el.classList.remove("loading"); // Remove class from nav btn
|
30781 |
}).catch(function (error) {
|
30782 |
console.log(error);
|
30783 |
self.isLoading = false;
|
30785 |
}
|
30786 |
|
30787 |
/**
|
30788 |
+
* Renders the Masonry layout.
|
30789 |
+
*
|
30790 |
+
* @since 3.0
|
30791 |
+
*/
|
|
|
30792 |
|
30793 |
}, {
|
30794 |
+
key: "renderLayout",
|
30795 |
value: function renderLayout() {
|
30796 |
if (this.is_block_editor) {
|
30797 |
return false;
|
30798 |
}
|
30799 |
var self = this;
|
30800 |
+
var photoListWrapper = self.container.querySelector(".photo-target");
|
30801 |
imagesLoaded(photoListWrapper, function () {
|
30802 |
self.msnry = new _masonryLayout2.default(photoListWrapper, {
|
30803 |
+
itemSelector: ".photo"
|
30804 |
});
|
30805 |
+
[].concat(_toConsumableArray(self.container.querySelectorAll(".photo-target .photo"))).forEach(function (el) {
|
30806 |
+
return el.classList.add("in-view");
|
30807 |
});
|
30808 |
});
|
30809 |
}
|
30810 |
|
30811 |
/**
|
30812 |
+
* Scrolling function.
|
30813 |
+
*
|
30814 |
+
* @since 3.0
|
30815 |
+
*/
|
|
|
30816 |
|
30817 |
}, {
|
30818 |
+
key: "onScroll",
|
30819 |
value: function onScroll() {
|
30820 |
var wHeight = window.innerHeight;
|
30821 |
var scrollTop = window.pageYOffset;
|
30826 |
}
|
30827 |
|
30828 |
/**
|
30829 |
+
* A checker to determine is there are remaining search results.
|
30830 |
+
*
|
30831 |
+
* @param num int Total search results
|
30832 |
+
* @since 3.0
|
30833 |
+
*/
|
|
|
30834 |
|
30835 |
}, {
|
30836 |
+
key: "checkTotalResults",
|
30837 |
value: function checkTotalResults(num) {
|
30838 |
this.isDone = num == 0 ? true : false;
|
30839 |
}
|
30840 |
|
30841 |
/**
|
30842 |
+
* Sets the main navigation active state.
|
30843 |
+
*
|
30844 |
+
* @since 3.0
|
30845 |
+
*/
|
|
|
30846 |
|
30847 |
}, {
|
30848 |
+
key: "setActiveState",
|
30849 |
value: function setActiveState() {
|
30850 |
var self = this;
|
30851 |
// Remove .active class
|
30852 |
+
[].concat(_toConsumableArray(this.container.querySelectorAll(".control-nav button"))).forEach(function (el) {
|
30853 |
+
return el.classList.remove("active");
|
30854 |
});
|
30855 |
|
30856 |
// Set active item, if not search
|
30857 |
if (!this.is_search) {
|
30858 |
+
var active = this.container.querySelector(".control-nav li button." + this.orderby);
|
30859 |
+
active.classList.add("active");
|
30860 |
}
|
30861 |
setTimeout(function () {
|
30862 |
self.isLoading = false;
|
30863 |
+
self.container.classList.remove("loading");
|
30864 |
}, 1000);
|
30865 |
}
|
30866 |
|
30867 |
/**
|
30868 |
+
* Show the tooltip.
|
30869 |
+
*
|
30870 |
+
* @since 4.3.0
|
30871 |
+
*/
|
|
|
30872 |
|
30873 |
}, {
|
30874 |
+
key: "showTooltip",
|
30875 |
value: function showTooltip(e) {
|
30876 |
var self = this;
|
30877 |
var target = e.currentTarget;
|
30878 |
var rect = target.getBoundingClientRect();
|
30879 |
var left = Math.round(rect.left);
|
30880 |
var top = Math.round(rect.top);
|
30881 |
+
var tooltip = this.container.querySelector("#tooltip");
|
30882 |
+
tooltip.classList.remove("over");
|
30883 |
|
30884 |
+
if (target.classList.contains("tooltip--above")) {
|
30885 |
+
tooltip.classList.add("above");
|
30886 |
} else {
|
30887 |
+
tooltip.classList.remove("above");
|
30888 |
}
|
30889 |
|
30890 |
// Get Content
|
30892 |
|
30893 |
// Delay reveal
|
30894 |
this.tooltipInterval = setInterval(function () {
|
|
|
30895 |
clearInterval(self.tooltipInterval);
|
30896 |
tooltip.innerHTML = title;
|
30897 |
|
30898 |
// Position Tooltip
|
30899 |
left = left - tooltip.offsetWidth + target.offsetWidth + 5;
|
30900 |
+
tooltip.style.left = left + "px";
|
30901 |
+
tooltip.style.top = top + "px";
|
30902 |
|
30903 |
setTimeout(function () {
|
30904 |
+
tooltip.classList.add("over");
|
30905 |
}, 150);
|
30906 |
}, 500);
|
30907 |
}
|
30908 |
|
30909 |
/**
|
30910 |
+
* Hide the tooltip.
|
30911 |
+
*
|
30912 |
+
* @since 4.3.0
|
30913 |
+
*/
|
|
|
30914 |
|
30915 |
}, {
|
30916 |
+
key: "hideTooltip",
|
30917 |
value: function hideTooltip(e) {
|
30918 |
clearInterval(this.tooltipInterval);
|
30919 |
+
var tooltip = this.container.querySelector("#tooltip");
|
30920 |
+
tooltip.classList.remove("over");
|
30921 |
}
|
30922 |
|
30923 |
+
// Component Updated
|
30924 |
|
30925 |
}, {
|
30926 |
+
key: "componentDidUpdate",
|
30927 |
value: function componentDidUpdate() {
|
30928 |
this.renderLayout();
|
30929 |
this.setActiveState();
|
30930 |
}
|
30931 |
|
30932 |
+
// Component Init
|
30933 |
|
30934 |
}, {
|
30935 |
+
key: "componentDidMount",
|
30936 |
value: function componentDidMount() {
|
30937 |
var _this2 = this;
|
30938 |
|
30939 |
this.renderLayout();
|
30940 |
this.setActiveState();
|
30941 |
this.test();
|
30942 |
+
this.container.classList.remove("loading");
|
30943 |
+
this.wrapper.classList.add("loaded");
|
30944 |
|
30945 |
if (this.is_block_editor || this.is_media_router) {
|
30946 |
// Gutenberg || Media Popup
|
30947 |
this.page = 0;
|
30948 |
this.getPhotos();
|
30949 |
} else {
|
30950 |
+
// Add scroll event
|
30951 |
+
window.addEventListener("scroll", function () {
|
30952 |
return _this2.onScroll();
|
30953 |
});
|
30954 |
}
|
30955 |
}
|
30956 |
}, {
|
30957 |
+
key: "render",
|
30958 |
value: function render() {
|
30959 |
var _this3 = this;
|
30960 |
|
30961 |
// Show/Hide orientation listing
|
30962 |
+
var orientationStyle = this.is_search ? { display: "flex" } : { display: "none" };
|
30963 |
|
30964 |
return _react2.default.createElement(
|
30965 |
+
"div",
|
30966 |
+
{ id: "photo-listing", className: this.service },
|
30967 |
_react2.default.createElement(
|
30968 |
+
"ul",
|
30969 |
+
{ className: "control-nav" },
|
30970 |
_react2.default.createElement(
|
30971 |
+
"li",
|
30972 |
null,
|
30973 |
_react2.default.createElement(
|
30974 |
+
"button",
|
30975 |
+
{
|
30976 |
+
type: "button",
|
30977 |
+
className: "latest",
|
30978 |
+
onClick: function onClick(e) {
|
30979 |
+
return _this3.togglePhotoList("latest", e);
|
30980 |
+
}
|
30981 |
+
},
|
30982 |
instant_img_localize.latest
|
30983 |
)
|
30984 |
),
|
30985 |
_react2.default.createElement(
|
30986 |
+
"li",
|
30987 |
+
{ id: "nav-target" },
|
30988 |
_react2.default.createElement(
|
30989 |
+
"button",
|
30990 |
+
{
|
30991 |
+
type: "button",
|
30992 |
+
className: "popular",
|
30993 |
+
onClick: function onClick(e) {
|
30994 |
+
return _this3.togglePhotoList("popular", e);
|
30995 |
+
}
|
30996 |
+
},
|
30997 |
instant_img_localize.popular
|
30998 |
)
|
30999 |
),
|
31000 |
_react2.default.createElement(
|
31001 |
+
"li",
|
31002 |
null,
|
31003 |
_react2.default.createElement(
|
31004 |
+
"button",
|
31005 |
+
{
|
31006 |
+
type: "button",
|
31007 |
+
className: "oldest",
|
31008 |
+
onClick: function onClick(e) {
|
31009 |
+
return _this3.togglePhotoList("oldest", e);
|
31010 |
+
}
|
31011 |
+
},
|
31012 |
instant_img_localize.oldest
|
31013 |
)
|
31014 |
),
|
31015 |
_react2.default.createElement(
|
31016 |
+
"li",
|
31017 |
+
{ className: "search-field", id: "search-bar" },
|
31018 |
_react2.default.createElement(
|
31019 |
+
"form",
|
31020 |
{ onSubmit: function onSubmit(e) {
|
31021 |
return _this3.search(e);
|
31022 |
+
}, autoComplete: "off" },
|
31023 |
+
_react2.default.createElement("input", {
|
31024 |
+
type: "search",
|
31025 |
+
id: "photo-search",
|
31026 |
+
placeholder: instant_img_localize.search
|
31027 |
+
}),
|
31028 |
_react2.default.createElement(
|
31029 |
+
"button",
|
31030 |
+
{ type: "submit", id: "photo-search-submit" },
|
31031 |
+
_react2.default.createElement("i", { className: "fa fa-search" })
|
31032 |
),
|
31033 |
+
_react2.default.createElement(_ResultsToolTip2.default, {
|
31034 |
+
container: this.container,
|
31035 |
+
isSearch: this.is_search,
|
31036 |
+
total: this.total_results,
|
31037 |
+
title: this.total_results + " " + instant_img_localize.search_results + " " + this.search_term
|
31038 |
+
})
|
31039 |
)
|
31040 |
)
|
31041 |
),
|
31042 |
+
_react2.default.createElement("div", { className: "error-messaging" }),
|
31043 |
_react2.default.createElement(
|
31044 |
+
"div",
|
31045 |
+
{ className: "orientation-list", style: orientationStyle },
|
31046 |
_react2.default.createElement(
|
31047 |
+
"span",
|
31048 |
null,
|
31049 |
+
_react2.default.createElement("i", { className: "fa fa-filter", "aria-hidden": "true" }),
|
31050 |
+
" ",
|
31051 |
instant_img_localize.orientation,
|
31052 |
+
":"
|
31053 |
),
|
31054 |
_react2.default.createElement(
|
31055 |
+
"ul",
|
31056 |
null,
|
31057 |
_react2.default.createElement(
|
31058 |
+
"li",
|
31059 |
+
{
|
31060 |
+
tabIndex: "0",
|
31061 |
+
onClick: function onClick(e) {
|
31062 |
+
return _this3.setOrientation("landscape", e);
|
31063 |
+
},
|
31064 |
+
onKeyPress: function onKeyPress(e) {
|
31065 |
+
return _this3.setOrientation("landscape", e);
|
31066 |
+
}
|
31067 |
+
},
|
31068 |
instant_img_localize.landscape
|
31069 |
),
|
31070 |
_react2.default.createElement(
|
31071 |
+
"li",
|
31072 |
+
{
|
31073 |
+
tabIndex: "0",
|
31074 |
+
onClick: function onClick(e) {
|
31075 |
+
return _this3.setOrientation("portrait", e);
|
31076 |
+
},
|
31077 |
+
onKeyPress: function onKeyPress(e) {
|
31078 |
+
return _this3.setOrientation("portrait", e);
|
31079 |
+
}
|
31080 |
+
},
|
31081 |
instant_img_localize.portrait
|
31082 |
),
|
31083 |
_react2.default.createElement(
|
31084 |
+
"li",
|
31085 |
+
{
|
31086 |
+
tabIndex: "0",
|
31087 |
+
onClick: function onClick(e) {
|
31088 |
+
return _this3.setOrientation("squarish", e);
|
31089 |
+
},
|
31090 |
+
onKeyPress: function onKeyPress(e) {
|
31091 |
+
return _this3.setOrientation("squarish", e);
|
31092 |
+
}
|
31093 |
+
},
|
31094 |
instant_img_localize.squarish
|
31095 |
)
|
31096 |
)
|
31097 |
),
|
31098 |
_react2.default.createElement(
|
31099 |
+
"div",
|
31100 |
+
{ id: "photos", className: "photo-target" },
|
31101 |
this.state.results.map(function (result, iterator) {
|
31102 |
+
return _react2.default.createElement(_Photo2.default, {
|
31103 |
+
result: result,
|
31104 |
+
key: result.id + iterator,
|
31105 |
+
editor: _this3.editor,
|
31106 |
+
mediaRouter: _this3.is_media_router,
|
31107 |
+
blockEditor: _this3.is_block_editor,
|
31108 |
+
SetFeaturedImage: _this3.SetFeaturedImage,
|
31109 |
+
InsertImage: _this3.InsertImage,
|
31110 |
+
showTooltip: _this3.showTooltip,
|
31111 |
+
hideTooltip: _this3.hideTooltip
|
31112 |
+
});
|
31113 |
})
|
31114 |
),
|
31115 |
_react2.default.createElement(
|
31116 |
+
"div",
|
31117 |
+
{
|
31118 |
+
className: this.total_results == 0 && this.is_search === true ? "no-results show" : "no-results",
|
31119 |
+
title: this.props.title
|
31120 |
+
},
|
31121 |
_react2.default.createElement(
|
31122 |
+
"h3",
|
31123 |
null,
|
31124 |
instant_img_localize.no_results,
|
31125 |
+
" "
|
31126 |
),
|
31127 |
_react2.default.createElement(
|
31128 |
+
"p",
|
31129 |
null,
|
31130 |
instant_img_localize.no_results_desc,
|
31131 |
+
" "
|
31132 |
)
|
31133 |
),
|
31134 |
+
_react2.default.createElement("div", { className: "loading-block" }),
|
31135 |
_react2.default.createElement(
|
31136 |
+
"div",
|
31137 |
+
{ className: "load-more-wrap" },
|
31138 |
_react2.default.createElement(
|
31139 |
+
"button",
|
31140 |
+
{
|
31141 |
+
type: "button",
|
31142 |
+
className: "button",
|
31143 |
+
onClick: function onClick() {
|
31144 |
return _this3.getPhotos();
|
31145 |
+
}
|
31146 |
+
},
|
31147 |
instant_img_localize.load_more
|
31148 |
)
|
31149 |
),
|
31150 |
_react2.default.createElement(
|
31151 |
+
"div",
|
31152 |
+
{ id: "tooltip" },
|
31153 |
+
"Meow"
|
31154 |
)
|
31155 |
);
|
31156 |
}
|
31174 |
|
31175 |
|
31176 |
Object.defineProperty(exports, "__esModule", {
|
31177 |
+
value: true
|
31178 |
});
|
31179 |
|
31180 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
31192 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
31193 |
|
31194 |
var ResultsToolTip = function (_React$Component) {
|
31195 |
+
_inherits(ResultsToolTip, _React$Component);
|
31196 |
+
|
31197 |
+
function ResultsToolTip(props) {
|
31198 |
+
_classCallCheck(this, ResultsToolTip);
|
31199 |
+
|
31200 |
+
return _possibleConstructorReturn(this, (ResultsToolTip.__proto__ || Object.getPrototypeOf(ResultsToolTip)).call(this, props));
|
31201 |
+
}
|
31202 |
+
|
31203 |
+
_createClass(ResultsToolTip, [{
|
31204 |
+
key: "resetSearch",
|
31205 |
+
value: function resetSearch() {
|
31206 |
+
var nav = this.props.container.querySelector(".control-nav");
|
31207 |
+
var navItem = nav.querySelector("li button.latest");
|
31208 |
+
navItem.click();
|
31209 |
+
}
|
31210 |
+
}, {
|
31211 |
+
key: "render",
|
31212 |
+
value: function render() {
|
31213 |
+
var _this2 = this;
|
31214 |
+
|
31215 |
+
return _react2.default.createElement(
|
31216 |
+
"div",
|
31217 |
+
{
|
31218 |
+
className: this.props.isSearch ? "searchResults" : "searchResults hide"
|
31219 |
+
},
|
31220 |
+
_react2.default.createElement(
|
31221 |
+
"span",
|
31222 |
+
{ title: this.props.title },
|
31223 |
+
this.props.total
|
31224 |
+
),
|
31225 |
+
_react2.default.createElement(
|
31226 |
+
"button",
|
31227 |
+
{
|
31228 |
+
type: "button",
|
31229 |
+
title: instant_img_localize.clear_search,
|
31230 |
+
onClick: function onClick(e) {
|
31231 |
+
return _this2.resetSearch();
|
31232 |
+
}
|
31233 |
+
},
|
31234 |
+
"x",
|
31235 |
+
_react2.default.createElement(
|
31236 |
+
"span",
|
31237 |
+
{ className: "offscreen" },
|
31238 |
+
instant_img_localize.clear_search
|
31239 |
+
)
|
31240 |
+
)
|
31241 |
+
);
|
31242 |
+
}
|
31243 |
+
}]);
|
31244 |
+
|
31245 |
+
return ResultsToolTip;
|
31246 |
}(_react2.default.Component);
|
31247 |
|
31248 |
exports.default = ResultsToolTip;
|
31282 |
__webpack_require__(/*! ./components/Helpers */ "./src/js/components/Helpers.js");
|
31283 |
|
31284 |
// Global vars
|
31285 |
+
var activeFrameId = "";
|
31286 |
+
var activeFrame = "";
|
31287 |
|
31288 |
// Load MediaFrame deps
|
31289 |
var oldMediaFrame = wp.media.view.MediaFrame.Post;
|
31291 |
|
31292 |
// Create Instant Images Tabs
|
31293 |
wp.media.view.MediaFrame.Select = oldMediaFrameSelect.extend({
|
|
|
31294 |
// Tab / Router
|
31295 |
browseRouter: function browseRouter(routerView) {
|
31296 |
oldMediaFrameSelect.prototype.browseRouter.apply(this, arguments);
|
31306 |
// Handlers
|
31307 |
bindHandlers: function bindHandlers() {
|
31308 |
oldMediaFrameSelect.prototype.bindHandlers.apply(this, arguments);
|
31309 |
+
this.on("content:create:instantimages", this.frameContent, this);
|
31310 |
},
|
31311 |
|
31312 |
|
31329 |
});
|
31330 |
|
31331 |
wp.media.view.MediaFrame.Post = oldMediaFrame.extend({
|
|
|
31332 |
// Tab / Router
|
31333 |
browseRouter: function browseRouter(routerView) {
|
31334 |
oldMediaFrameSelect.prototype.browseRouter.apply(this, arguments);
|
31344 |
// Handlers
|
31345 |
bindHandlers: function bindHandlers() {
|
31346 |
oldMediaFrame.prototype.bindHandlers.apply(this, arguments);
|
31347 |
+
this.on("content:create:instantimages", this.frameContent, this);
|
31348 |
},
|
31349 |
|
31350 |
|
31368 |
|
31369 |
// Render Instant Images
|
31370 |
var instantImagesMediaTab = function instantImagesMediaTab() {
|
|
|
31371 |
var html = createMediaWrapper(); // Create HTML wrapper
|
31372 |
|
31373 |
if (!activeFrame) {
|
31374 |
return false;
|
31375 |
}
|
31376 |
|
31377 |
+
var modal = activeFrame.querySelector(".media-frame-content"); // Get all media modals
|
31378 |
if (!modal) {
|
31379 |
// Exit if not modal
|
31380 |
return false;
|
31381 |
}
|
31382 |
|
31383 |
+
modal.innerHTML = ""; // Clear Modal
|
31384 |
modal.appendChild(html); // Append Instant Images
|
31385 |
|
31386 |
+
var element = modal.querySelector("#instant-images-media-router-" + activeFrameId);
|
31387 |
if (!element) {
|
31388 |
// Exit if not element
|
31389 |
return false;
|
31390 |
}
|
31391 |
|
31392 |
+
_reactDom2.default.render(_react2.default.createElement(_PhotoList2.default, {
|
31393 |
+
container: element,
|
31394 |
+
editor: "media-router",
|
31395 |
+
results: "",
|
31396 |
+
page: "1",
|
31397 |
+
orderby: "latest",
|
31398 |
+
service: "unsplash"
|
31399 |
+
}), element);
|
31400 |
};
|
31401 |
|
31402 |
// Create HTML markup
|
31403 |
var createMediaWrapper = function createMediaWrapper() {
|
31404 |
+
var wrapper = document.createElement("div");
|
31405 |
+
wrapper.classList.add("instant-img-container");
|
31406 |
+
var container = document.createElement("div");
|
31407 |
+
container.classList.add("instant-images-wrapper");
|
31408 |
+
var frame = document.createElement("div");
|
31409 |
+
frame.setAttribute("id", "instant-images-media-router-" + activeFrameId);
|
31410 |
|
31411 |
container.appendChild(frame);
|
31412 |
wrapper.appendChild(container);
|
31416 |
|
31417 |
// Document Ready
|
31418 |
jQuery(document).ready(function ($) {
|
|
|
31419 |
if (wp.media) {
|
|
|
31420 |
// Open
|
31421 |
wp.media.view.Modal.prototype.on("open", function () {
|
31422 |
//console.log(wp.media.frame);
|
31423 |
if (!activeFrame) {
|
31424 |
return false;
|
31425 |
}
|
31426 |
+
var selectedTab = activeFrame.querySelector(".media-router button.media-menu-item.active");
|
31427 |
+
if (selectedTab.id === "menu-item-instantimages") {
|
31428 |
instantImagesMediaTab();
|
31429 |
}
|
31430 |
});
|
31431 |
|
31432 |
// Live Click Handler
|
31433 |
+
$(document).on("click", ".media-router button.media-menu-item", function (e) {
|
31434 |
+
var selectedTab = activeFrame.querySelector(".media-router button.media-menu-item.active");
|
31435 |
+
if (selectedTab.id === "menu-item-instantimages") {
|
31436 |
instantImagesMediaTab();
|
31437 |
}
|
31438 |
});
|
dist/js/instant-images-media.min.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=
|
2 |
/*
|
3 |
object-assign
|
4 |
(c) Sindre Sorhus
|
5 |
@license MIT
|
6 |
-
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach(function(e){r[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,a,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),u=1;u<arguments.length;u++){for(var l in n=Object(arguments[u]))o.call(n,l)&&(s[l]=n[l]);if(r){a=r(n);for(var c=0;c<a.length;c++)i.call(n,a[c])&&(s[a[c]]=n[a[c]])}}return s}},function(e,t,n){"use strict";var r=n(1),o=n(16),i=n(58),a=(n(0),o.ID_ATTRIBUTE_NAME),s=i,u="__reactInternalInstance$"+Math.random().toString(36).slice(2);function l(e,t){return 1===e.nodeType&&e.getAttribute(a)===String(t)||8===e.nodeType&&e.nodeValue===" react-text: "+t+" "||8===e.nodeType&&e.nodeValue===" react-empty: "+t+" "}function c(e){for(var t;t=e._renderedComponent;)e=t;return e}function p(e,t){var n=c(e);n._hostNode=t,t[u]=n}function d(e,t){if(!(e._flags&s.hasCachedChildNodes)){var n=e._renderedChildren,o=t.firstChild;e:for(var i in n)if(n.hasOwnProperty(i)){var a=n[i],u=c(a)._domID;if(0!==u){for(;null!==o;o=o.nextSibling)if(l(o,u)){p(a,o);continue e}r("32",u)}}e._flags|=s.hasCachedChildNodes}}function f(e){if(e[u])return e[u];for(var t,n,r=[];!e[u];){if(r.push(e),!e.parentNode)return null;e=e.parentNode}for(;e&&(n=e[u]);e=r.pop())t=n,r.length&&d(n,e);return t}var h={getClosestInstanceFromNode:f,getInstanceFromNode:function(e){var t=f(e);return null!=t&&t._hostNode===e?t:null},getNodeFromInstance:function(e){if(void 0===e._hostNode&&r("33"),e._hostNode)return e._hostNode;for(var t=[];!e._hostNode;)t.push(e),e._hostParent||r("34"),e=e._hostParent;for(;t.length;e=t.pop())d(e,e._hostNode);return e._hostNode},precacheChildNodes:d,precacheNode:p,uncacheNode:function(e){var t=e._hostNode;t&&(delete t[u],e._hostNode=null)}};e.exports=h},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=o},function(e,t,n){"use strict";e.exports={debugTool:null}},function(e,t,n){"use strict";var r=n(88),o=n(192),i=Object.prototype.toString;function a(e){return"[object Array]"===i.call(e)}function s(e){return null!==e&&"object"==typeof e}function u(e){return"[object Function]"===i.call(e)}function l(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),a(e))for(var n=0,r=e.length;n<r;n++)t.call(null,e[n],n,e);else for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.call(null,e[o],o,e)}e.exports={isArray:a,isArrayBuffer:function(e){return"[object ArrayBuffer]"===i.call(e)},isBuffer:o,isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:s,isUndefined:function(e){return void 0===e},isDate:function(e){return"[object Date]"===i.call(e)},isFile:function(e){return"[object File]"===i.call(e)},isBlob:function(e){return"[object Blob]"===i.call(e)},isFunction:u,isStream:function(e){return s(e)&&u(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:l,merge:function e(){var t={};function n(n,r){"object"==typeof t[r]&&"object"==typeof n?t[r]=e(t[r],n):t[r]=n}for(var r=0,o=arguments.length;r<o;r++)l(arguments[r],n);return t},extend:function(e,t,n){return l(t,function(t,o){e[o]=n&&"function"==typeof t?r(t,n):t}),e},trim:function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}}},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(63),a=n(13),s=n(64),u=n(14),l=n(24),c=n(0),p=[],d=0,f=i.getPooled(),h=!1,m=null;function v(){C.ReactReconcileTransaction&&m||r("123")}var g=[{initialize:function(){this.dirtyComponentsLength=p.length},close:function(){this.dirtyComponentsLength!==p.length?(p.splice(0,this.dirtyComponentsLength),E()):p.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function y(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=i.getPooled(),this.reconcileTransaction=C.ReactReconcileTransaction.getPooled(!0)}function _(e,t){return e._mountOrder-t._mountOrder}function b(e){var t=e.dirtyComponentsLength;t!==p.length&&r("124",t,p.length),p.sort(_),d++;for(var n=0;n<t;n++){var o,i=p[n],a=i._pendingCallbacks;if(i._pendingCallbacks=null,s.logTopLevelRenders){var l=i;i._currentElement.type.isReactTopLevelWrapper&&(l=i._renderedComponent),o="React update: "+l.getName(),console.time(o)}if(u.performUpdateIfNecessary(i,e.reconcileTransaction,d),o&&console.timeEnd(o),a)for(var c=0;c<a.length;c++)e.callbackQueue.enqueue(a[c],i.getPublicInstance())}}o(y.prototype,l,{getTransactionWrappers:function(){return g},destructor:function(){this.dirtyComponentsLength=null,i.release(this.callbackQueue),this.callbackQueue=null,C.ReactReconcileTransaction.release(this.reconcileTransaction),this.reconcileTransaction=null},perform:function(e,t,n){return l.perform.call(this,this.reconcileTransaction.perform,this.reconcileTransaction,e,t,n)}}),a.addPoolingTo(y);var E=function(){for(;p.length||h;){if(p.length){var e=y.getPooled();e.perform(b,null,e),y.release(e)}if(h){h=!1;var t=f;f=i.getPooled(),t.notifyAll(),i.release(t)}}};var C={ReactReconcileTransaction:null,batchedUpdates:function(e,t,n,r,o,i){return v(),m.batchedUpdates(e,t,n,r,o,i)},enqueueUpdate:function e(t){v(),m.isBatchingUpdates?(p.push(t),null==t._updateBatchNumber&&(t._updateBatchNumber=d+1)):m.batchedUpdates(e,t)},flushBatchedUpdates:E,injection:{injectReconcileTransaction:function(e){e||r("126"),C.ReactReconcileTransaction=e},injectBatchingStrategy:function(e){e||r("127"),"function"!=typeof e.batchedUpdates&&r("128"),"boolean"!=typeof e.isBatchingUpdates&&r("129"),m=e}},asap:function(e,t){c(m.isBatchingUpdates,"ReactUpdates.asap: Can't enqueue an asap callback in a context whereupdates are not being batched."),f.enqueue(e,t),h=!0}};e.exports=C},function(e,t,n){"use strict";e.exports={current:null}},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(8),a=(n(2),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),s={type:null,target:null,currentTarget:i.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};function u(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n;var o=this.constructor.Interface;for(var a in o)if(o.hasOwnProperty(a)){0;var s=o[a];s?this[a]=s(n):"target"===a?this.target=r:this[a]=n[a]}var u=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue;return this.isDefaultPrevented=u?i.thatReturnsTrue:i.thatReturnsFalse,this.isPropagationStopped=i.thatReturnsFalse,this}r(u.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=i.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=i.thatReturnsTrue)},persist:function(){this.isPersistent=i.thatReturnsTrue},isPersistent:i.thatReturnsFalse,destructor:function(){var e=this.constructor.Interface;for(var t in e)this[t]=null;for(var n=0;n<a.length;n++)this[a[n]]=null}}),u.Interface=s,u.augmentClass=function(e,t){var n=function(){};n.prototype=this.prototype;var i=new n;r(i,e.prototype),e.prototype=i,e.prototype.constructor=e,e.Interface=r({},this.Interface,t),e.augmentClass=this.augmentClass,o.addPoolingTo(e,o.fourArgumentPooler)},o.addPoolingTo(u,o.fourArgumentPooler),e.exports=u},function(e,t,n){"use strict";var r=n(3),o=n(53),i=n(95),a=n(100),s=n(15),u=n(101),l=n(105),c=n(106),p=n(108),d=s.createElement,f=s.createFactory,h=s.cloneElement,m=r,v={Children:{map:i.map,forEach:i.forEach,count:i.count,toArray:i.toArray,only:p},Component:o.Component,PureComponent:o.PureComponent,createElement:d,cloneElement:h,isValidElement:s.isValidElement,PropTypes:u,createClass:c,createFactory:f,createMixin:function(e){return e},DOM:a,version:l,__spread:m};e.exports=v},function(e,t,n){"use strict";var r=n(1),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(116);n(6),n(2);function o(){r.attachRefs(this,this._currentElement)}var i={mountComponent:function(e,t,n,r,i,a){var s=e.mountComponent(t,n,r,i,a);return e._currentElement&&null!=e._currentElement.ref&&t.getReactMountReady().enqueue(o,e),s},getHostNode:function(e){return e.getHostNode()},unmountComponent:function(e,t){r.detachRefs(e,e._currentElement),e.unmountComponent(t)},receiveComponent:function(e,t,n,i){var a=e._currentElement;if(t!==a||i!==e._context){0;var s=r.shouldUpdateRefs(a,t);s&&r.detachRefs(e,a),e.receiveComponent(t,n,i),s&&e._currentElement&&null!=e._currentElement.ref&&n.getReactMountReady().enqueue(o,e)}},performUpdateIfNecessary:function(e,t,n){e._updateBatchNumber===n&&e.performUpdateIfNecessary(t)}};e.exports=i},function(e,t,n){"use strict";var r=n(3),o=n(10),i=(n(2),n(55),Object.prototype.hasOwnProperty),a=n(56),s={key:!0,ref:!0,__self:!0,__source:!0};function u(e){return void 0!==e.ref}function l(e){return void 0!==e.key}var c=function(e,t,n,r,o,i,s){return{$$typeof:a,type:e,key:t,ref:n,props:s,_owner:i}};c.createElement=function(e,t,n){var r,a={},p=null,d=null;if(null!=t)for(r in u(t)&&(d=t.ref),l(t)&&(p=""+t.key),void 0===t.__self?null:t.__self,void 0===t.__source?null:t.__source,t)i.call(t,r)&&!s.hasOwnProperty(r)&&(a[r]=t[r]);var f=arguments.length-2;if(1===f)a.children=n;else if(f>1){for(var h=Array(f),m=0;m<f;m++)h[m]=arguments[m+2];0,a.children=h}if(e&&e.defaultProps){var v=e.defaultProps;for(r in v)void 0===a[r]&&(a[r]=v[r])}return c(e,p,d,0,0,o.current,a)},c.createFactory=function(e){var t=c.createElement.bind(null,e);return t.type=e,t},c.cloneAndReplaceKey=function(e,t){return c(e.type,t,e.ref,e._self,e._source,e._owner,e.props)},c.cloneElement=function(e,t,n){var a,p,d=r({},e.props),f=e.key,h=e.ref,m=(e._self,e._source,e._owner);if(null!=t)for(a in u(t)&&(h=t.ref,m=o.current),l(t)&&(f=""+t.key),e.type&&e.type.defaultProps&&(p=e.type.defaultProps),t)i.call(t,a)&&!s.hasOwnProperty(a)&&(void 0===t[a]&&void 0!==p?d[a]=p[a]:d[a]=t[a]);var v=arguments.length-2;if(1===v)d.children=n;else if(v>1){for(var g=Array(v),y=0;y<v;y++)g[y]=arguments[y+2];d.children=g}return c(e.type,f,h,0,0,m,d)},c.isValidElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},e.exports=c},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){return(e&t)===t}var i={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,injectDOMPropertyConfig:function(e){var t=i,n=e.Properties||{},a=e.DOMAttributeNamespaces||{},u=e.DOMAttributeNames||{},l=e.DOMPropertyNames||{},c=e.DOMMutationMethods||{};for(var p in e.isCustomAttribute&&s._isCustomAttributeFunctions.push(e.isCustomAttribute),n){s.properties.hasOwnProperty(p)&&r("48",p);var d=p.toLowerCase(),f=n[p],h={attributeName:d,attributeNamespace:null,propertyName:p,mutationMethod:null,mustUseProperty:o(f,t.MUST_USE_PROPERTY),hasBooleanValue:o(f,t.HAS_BOOLEAN_VALUE),hasNumericValue:o(f,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:o(f,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:o(f,t.HAS_OVERLOADED_BOOLEAN_VALUE)};if(h.hasBooleanValue+h.hasNumericValue+h.hasOverloadedBooleanValue<=1||r("50",p),u.hasOwnProperty(p)){var m=u[p];h.attributeName=m}a.hasOwnProperty(p)&&(h.attributeNamespace=a[p]),l.hasOwnProperty(p)&&(h.propertyName=l[p]),c.hasOwnProperty(p)&&(h.mutationMethod=c[p]),s.properties[p]=h}}},a=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",s={ID_ATTRIBUTE_NAME:"data-reactid",ROOT_ATTRIBUTE_NAME:"data-reactroot",ATTRIBUTE_NAME_START_CHAR:a,ATTRIBUTE_NAME_CHAR:a+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",properties:{},getPossibleStandardName:null,_isCustomAttributeFunctions:[],isCustomAttribute:function(e){for(var t=0;t<s._isCustomAttributeFunctions.length;t++){if((0,s._isCustomAttributeFunctions[t])(e))return!0}return!1},injection:i};e.exports=s},function(e,t,n){"use strict";var r=n(38),o=n(26),i=n(39),a=n(68),s="undefined"!=typeof document&&"number"==typeof document.documentMode||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&/\bEdge\/\d/.test(navigator.userAgent);function u(e){if(s){var t=e.node,n=e.children;if(n.length)for(var r=0;r<n.length;r++)l(t,n[r],null);else null!=e.html?o(t,e.html):null!=e.text&&a(t,e.text)}}var l=i(function(e,t,n){11===t.node.nodeType||1===t.node.nodeType&&"object"===t.node.nodeName.toLowerCase()&&(null==t.node.namespaceURI||t.node.namespaceURI===r.html)?(u(t),e.insertBefore(t.node,n)):(e.insertBefore(t.node,n),u(t))});function c(){return this.node.nodeName}function p(e){return{node:e,children:[],html:null,text:null,toString:c}}p.insertTreeBefore=l,p.replaceChildWithTree=function(e,t){e.parentNode.replaceChild(t.node,e),u(t)},p.queueChild=function(e,t){s?e.children.push(t):e.node.appendChild(t.node)},p.queueHTML=function(e,t){s?e.html=t:o(e.node,t)},p.queueText=function(e,t){s?e.text=t:a(e.node,t)},e.exports=p},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";e.exports={}},function(e,t,n){"use strict";var r=n(21),o=n(32),i=n(60),a=n(61),s=(n(2),r.getListener);function u(e,t,n){var r=function(e,t,n){var r=t.dispatchConfig.phasedRegistrationNames[n];return s(e,r)}(e,n,t);r&&(n._dispatchListeners=i(n._dispatchListeners,r),n._dispatchInstances=i(n._dispatchInstances,e))}function l(e){e&&e.dispatchConfig.phasedRegistrationNames&&o.traverseTwoPhase(e._targetInst,u,e)}function c(e){if(e&&e.dispatchConfig.phasedRegistrationNames){var t=e._targetInst,n=t?o.getParentInstance(t):null;o.traverseTwoPhase(n,u,e)}}function p(e,t,n){if(n&&n.dispatchConfig.registrationName){var r=n.dispatchConfig.registrationName,o=s(e,r);o&&(n._dispatchListeners=i(n._dispatchListeners,o),n._dispatchInstances=i(n._dispatchInstances,e))}}function d(e){e&&e.dispatchConfig.registrationName&&p(e._targetInst,0,e)}var f={accumulateTwoPhaseDispatches:function(e){a(e,l)},accumulateTwoPhaseDispatchesSkipTarget:function(e){a(e,c)},accumulateDirectDispatches:function(e){a(e,d)},accumulateEnterLeaveDispatches:function(e,t,n,r){o.traverseEnterLeave(n,r,p,e,t)}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=n(31),i=n(32),a=n(33),s=n(60),u=n(61),l=(n(0),{}),c=null,p=function(e,t){e&&(i.executeDispatchesInOrder(e,t),e.isPersistent()||e.constructor.release(e))},d=function(e){return p(e,!0)},f=function(e){return p(e,!1)},h=function(e){return"."+e._rootNodeID};var m={injection:{injectEventPluginOrder:o.injectEventPluginOrder,injectEventPluginsByName:o.injectEventPluginsByName},putListener:function(e,t,n){"function"!=typeof n&&r("94",t,typeof n);var i=h(e);(l[t]||(l[t]={}))[i]=n;var a=o.registrationNameModules[t];a&&a.didPutListener&&a.didPutListener(e,t,n)},getListener:function(e,t){var n=l[t];if(function(e,t,n){switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||(r=t,"button"!==r&&"input"!==r&&"select"!==r&&"textarea"!==r));default:return!1}var r}(t,e._currentElement.type,e._currentElement.props))return null;var r=h(e);return n&&n[r]},deleteListener:function(e,t){var n=o.registrationNameModules[t];n&&n.willDeleteListener&&n.willDeleteListener(e,t);var r=l[t];r&&delete r[h(e)]},deleteAllListeners:function(e){var t=h(e);for(var n in l)if(l.hasOwnProperty(n)&&l[n][t]){var r=o.registrationNameModules[n];r&&r.willDeleteListener&&r.willDeleteListener(e,n),delete l[n][t]}},extractEvents:function(e,t,n,r){for(var i,a=o.plugins,u=0;u<a.length;u++){var l=a[u];if(l){var c=l.extractEvents(e,t,n,r);c&&(i=s(i,c))}}return i},enqueueEvents:function(e){e&&(c=s(c,e))},processEventQueue:function(e){var t=c;c=null,u(t,e?d:f),c&&r("95"),a.rethrowCaughtError()},__purge:function(){l={}},__getListenerBank:function(){return l}};e.exports=m},function(e,t,n){"use strict";var r=n(11),o=n(34),i={view:function(e){if(e.view)return e.view;var t=o(e);if(t.window===t)return t;var n=t.ownerDocument;return n?n.defaultView||n.parentWindow:window},detail:function(e){return e.detail||0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r={remove:function(e){e._reactInternalInstance=void 0},get:function(e){return e._reactInternalInstance},has:function(e){return void 0!==e._reactInternalInstance},set:function(e,t){e._reactInternalInstance=t}};e.exports=r},function(e,t,n){"use strict";var r=n(1),o=(n(0),{}),i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,n,o,i,a,s,u){var l,c;this.isInTransaction()&&r("27");try{this._isInTransaction=!0,l=!0,this.initializeAll(0),c=e.call(t,n,o,i,a,s,u),l=!1}finally{try{if(l)try{this.closeAll(0)}catch(e){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return c},initializeAll:function(e){for(var t=this.transactionWrappers,n=e;n<t.length;n++){var r=t[n];try{this.wrapperInitData[n]=o,this.wrapperInitData[n]=r.initialize?r.initialize.call(this):null}finally{if(this.wrapperInitData[n]===o)try{this.initializeAll(n+1)}catch(e){}}}},closeAll:function(e){this.isInTransaction()||r("28");for(var t=this.transactionWrappers,n=e;n<t.length;n++){var i,a=t[n],s=this.wrapperInitData[n];try{i=!0,s!==o&&a.close&&a.close.call(this,s),i=!1}finally{if(i)try{this.closeAll(n+1)}catch(e){}}}this.wrapperInitData.length=0}};e.exports=i},function(e,t,n){"use strict";var r=n(22),o=n(67),i={screenX:null,screenY:null,clientX:null,clientY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:n(36),button:function(e){var t=e.button;return"which"in e?t:2===t?2:4===t?1:0},buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},pageX:function(e){return"pageX"in e?e.pageX:e.clientX+o.currentScrollLeft},pageY:function(e){return"pageY"in e?e.pageY:e.clientY+o.currentScrollTop}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r,o=n(5),i=n(38),a=/^[ \r\n\t\f]/,s=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,u=n(39)(function(e,t){if(e.namespaceURI!==i.svg||"innerHTML"in e)e.innerHTML=t;else{(r=r||document.createElement("div")).innerHTML="<svg>"+t+"</svg>";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}});if(o.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(u=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),a.test(t)||"<"===t[0]&&s.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),l=null}e.exports=u},function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){return"boolean"==typeof e||"number"==typeof e?""+e:function(e){var t,n=""+e,o=r.exec(n);if(!o)return n;var i="",a=0,s=0;for(a=o.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==a&&(i+=n.substring(s,a)),s=a+1,i+=t}return s!==a?i+n.substring(s,a):i}(e)}},function(e,t,n){"use strict";var r,o=n(3),i=n(31),a=n(137),s=n(67),u=n(138),l=n(35),c={},p=!1,d=0,f={topAbort:"abort",topAnimationEnd:u("animationend")||"animationend",topAnimationIteration:u("animationiteration")||"animationiteration",topAnimationStart:u("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:u("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},h="_reactListenersID"+String(Math.random()).slice(2);var m=o({},a,{ReactEventListener:null,injection:{injectReactEventListener:function(e){e.setHandleTopLevel(m.handleTopLevel),m.ReactEventListener=e}},setEnabled:function(e){m.ReactEventListener&&m.ReactEventListener.setEnabled(e)},isEnabled:function(){return!(!m.ReactEventListener||!m.ReactEventListener.isEnabled())},listenTo:function(e,t){for(var n=t,r=function(e){return Object.prototype.hasOwnProperty.call(e,h)||(e[h]=d++,c[e[h]]={}),c[e[h]]}(n),o=i.registrationNameDependencies[e],a=0;a<o.length;a++){var s=o[a];r.hasOwnProperty(s)&&r[s]||("topWheel"===s?l("wheel")?m.ReactEventListener.trapBubbledEvent("topWheel","wheel",n):l("mousewheel")?m.ReactEventListener.trapBubbledEvent("topWheel","mousewheel",n):m.ReactEventListener.trapBubbledEvent("topWheel","DOMMouseScroll",n):"topScroll"===s?l("scroll",!0)?m.ReactEventListener.trapCapturedEvent("topScroll","scroll",n):m.ReactEventListener.trapBubbledEvent("topScroll","scroll",m.ReactEventListener.WINDOW_HANDLE):"topFocus"===s||"topBlur"===s?(l("focus",!0)?(m.ReactEventListener.trapCapturedEvent("topFocus","focus",n),m.ReactEventListener.trapCapturedEvent("topBlur","blur",n)):l("focusin")&&(m.ReactEventListener.trapBubbledEvent("topFocus","focusin",n),m.ReactEventListener.trapBubbledEvent("topBlur","focusout",n)),r.topBlur=!0,r.topFocus=!0):f.hasOwnProperty(s)&&m.ReactEventListener.trapBubbledEvent(s,f[s],n),r[s]=!0)}},trapBubbledEvent:function(e,t,n){return m.ReactEventListener.trapBubbledEvent(e,t,n)},trapCapturedEvent:function(e,t,n){return m.ReactEventListener.trapCapturedEvent(e,t,n)},supportsEventPageXY:function(){if(!document.createEvent)return!1;var e=document.createEvent("MouseEvent");return null!=e&&"pageX"in e},ensureScrollValueMonitoring:function(){if(void 0===r&&(r=m.supportsEventPageXY()),!r&&!p){var e=s.refreshScrollValues;m.ReactEventListener.monitorScrollValue(e),p=!0}}});e.exports=m},function(e,t,n){"use strict";e.exports=n(12)},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var u,l=[],c=!1,p=-1;function d(){c&&u&&(c=!1,u.length?l=u.concat(l):p=-1,l.length&&f())}function f(){if(!c){var e=s(d);c=!0;for(var t=l.length;t;){for(u=l,l=[];++p<t;)u&&u[p].run();p=-1,t=l.length}u=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new h(e,t)),1!==l.length||c||s(f)},h.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=m,o.addListener=m,o.once=m,o.off=m,o.removeListener=m,o.removeAllListeners=m,o.emit=m,o.prependListener=m,o.prependOnceListener=m,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i={};function a(){if(o)for(var e in i){var t=i[e],n=o.indexOf(e);if(n>-1||r("96",e),!l.plugins[n]){t.extractEvents||r("97",e),l.plugins[n]=t;var a=t.eventTypes;for(var u in a)s(a[u],t,u)||r("98",u,e)}}}function s(e,t,n){l.eventNameDispatchConfigs.hasOwnProperty(n)&&r("99",n),l.eventNameDispatchConfigs[n]=e;var o=e.phasedRegistrationNames;if(o){for(var i in o){if(o.hasOwnProperty(i))u(o[i],t,n)}return!0}return!!e.registrationName&&(u(e.registrationName,t,n),!0)}function u(e,t,n){l.registrationNameModules[e]&&r("100",e),l.registrationNameModules[e]=t,l.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var l={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){o&&r("101"),o=Array.prototype.slice.call(e),a()},injectEventPluginsByName:function(e){var t=!1;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];i.hasOwnProperty(n)&&i[n]===o||(i[n]&&r("102",n),i[n]=o,t=!0)}t&&a()},getPluginModuleForEvent:function(e){var t=e.dispatchConfig;if(t.registrationName)return l.registrationNameModules[t.registrationName]||null;if(void 0!==t.phasedRegistrationNames){var n=t.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var o=l.registrationNameModules[n[r]];if(o)return o}}return null},_resetEventPlugins:function(){for(var e in o=null,i)i.hasOwnProperty(e)&&delete i[e];l.plugins.length=0;var t=l.eventNameDispatchConfigs;for(var n in t)t.hasOwnProperty(n)&&delete t[n];var r=l.registrationNameModules;for(var a in r)r.hasOwnProperty(a)&&delete r[a]}};e.exports=l},function(e,t,n){"use strict";var r,o,i=n(1),a=n(33);n(0),n(2);function s(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=u.getNodeFromInstance(r),t?a.invokeGuardedCallbackWithCatch(o,n,e):a.invokeGuardedCallback(o,n,e),e.currentTarget=null}var u={isEndish:function(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e},isMoveish:function(e){return"topMouseMove"===e||"topTouchMove"===e},isStartish:function(e){return"topMouseDown"===e||"topTouchStart"===e},executeDirectDispatch:function(e){var t=e._dispatchListeners,n=e._dispatchInstances;Array.isArray(t)&&i("103"),e.currentTarget=t?u.getNodeFromInstance(n):null;var r=t?t(e):null;return e.currentTarget=null,e._dispatchListeners=null,e._dispatchInstances=null,r},executeDispatchesInOrder:function(e,t){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var o=0;o<n.length&&!e.isPropagationStopped();o++)s(e,t,n[o],r[o]);else n&&s(e,t,n,r);e._dispatchListeners=null,e._dispatchInstances=null},executeDispatchesInOrderStopAtTrue:function(e){var t=function(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t)){for(var r=0;r<t.length&&!e.isPropagationStopped();r++)if(t[r](e,n[r]))return n[r]}else if(t&&t(e,n))return n;return null}(e);return e._dispatchInstances=null,e._dispatchListeners=null,t},hasDispatches:function(e){return!!e._dispatchListeners},getInstanceFromNode:function(e){return r.getInstanceFromNode(e)},getNodeFromInstance:function(e){return r.getNodeFromInstance(e)},isAncestor:function(e,t){return o.isAncestor(e,t)},getLowestCommonAncestor:function(e,t){return o.getLowestCommonAncestor(e,t)},getParentInstance:function(e){return o.getParentInstance(e)},traverseTwoPhase:function(e,t,n){return o.traverseTwoPhase(e,t,n)},traverseEnterLeave:function(e,t,n,r,i){return o.traverseEnterLeave(e,t,n,r,i)},injection:{injectComponentTree:function(e){r=e},injectTreeTraversal:function(e){o=e}}};e.exports=u},function(e,t,n){"use strict";var r=null;function o(e,t,n){try{t(n)}catch(e){null===r&&(r=e)}}var i={invokeGuardedCallback:o,invokeGuardedCallbackWithCatch:o,rethrowCaughtError:function(){if(r){var e=r;throw r=null,e}}};e.exports=i},function(e,t,n){"use strict";e.exports=function(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}},function(e,t,n){"use strict";var r,o=n(5);o.canUseDOM&&(r=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""))
|
7 |
/**
|
8 |
* Checks if an event is supported in the current execution environment.
|
9 |
*
|
@@ -17,60 +17,41 @@ object-assign
|
|
17 |
* @return {boolean} True if the event is supported.
|
18 |
* @internal
|
19 |
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
20 |
-
*/,e.exports=function(e,t){if(!o.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,i=n in document;if(!i){var a=document.createElement("div");a.setAttribute(n,"return;"),i="function"==typeof a[n]}return!i&&r&&"wheel"===e&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}},function(e,t,n){"use strict";var r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function o(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=r[e];return!!n&&!!t[n]}e.exports=function(e){return o}},function(e,t,n){"use strict";var r=n(17),o=n(
|
21 |
/*!
|
22 |
* getSize v2.0.3
|
23 |
* measure size of elements
|
24 |
* MIT license
|
25 |
-
*/window,void 0===(o="function"==typeof(r=function(){"use strict";function e(e){var t=parseFloat(e),n=-1==e.indexOf("%")&&!isNaN(t);return n&&t}var t="undefined"==typeof console?function(){}:function(e){console.error(e)},n=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],r=n.length;function o(e){var n=getComputedStyle(e);return n||t("Style returned "+n+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),n}var i,a=!1;function s(t){if(function(){if(!a){a=!0;var t=document.createElement("div");t.style.width="200px",t.style.padding="1px 2px 3px 4px",t.style.borderStyle="solid",t.style.borderWidth="1px 2px 3px 4px",t.style.boxSizing="border-box";var n=document.body||document.documentElement;n.appendChild(t);var r=o(t);i=200==Math.round(e(r.width)),s.isBoxSizeOuter=i,n.removeChild(t)}}(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var u=o(t);if("none"==u.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<r;t++){var o=n[t];e[o]=0}return e}();var l={};l.width=t.offsetWidth,l.height=t.offsetHeight;for(var c=l.isBorderBox="border-box"==u.boxSizing,p=0;p<r;p++){var d=n[p],f=u[d],h=parseFloat(f);l[d]=isNaN(h)?0:h}var m=l.paddingLeft+l.paddingRight,v=l.paddingTop+l.paddingBottom,g=l.marginLeft+l.marginRight,y=l.marginTop+l.marginBottom,_=l.borderLeftWidth+l.borderRightWidth,b=l.borderTopWidth+l.borderBottomWidth,E=c&&i,C=e(u.width);!1!==C&&(l.width=C+(E?0:m+_));var w=e(u.height);return!1!==w&&(l.height=w+(E?0:v+b)),l.innerWidth=l.width-(m+_),l.innerHeight=l.height-(v+b),l.outerWidth=l.width+g,l.outerHeight=l.height+y,l}}return s})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){"use strict";(function(t){var r=n(7),o=n(194),i={"Content-Type":"application/x-www-form-urlencoded"};function a(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var s,u={adapter:("undefined"!=typeof XMLHttpRequest?s=n(89):void 0!==t&&(s=n(89)),s),transformRequest:[function(e,t){return o(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e)?e:r.isArrayBufferView(e)?e.buffer:r.isURLSearchParams(e)?(a(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):r.isObject(e)?(a(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],function(e){u.headers[e]={}}),r.forEach(["post","put","patch"],function(e){u.headers[e]=r.merge(i)}),e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";e.exports={photo_api:"https://api.unsplash.com/photos",search_api:"https://api.unsplash.com/search/photos",app_id:"/?client_id="+instant_img_localize.unsplash_app_id,posts_per_page:"&per_page=20"}},function(e,t,n){"use strict";var r=n(18),o=n(3),i=n(54),a=(n(55),n(19));n(0),n(94);function s(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function u(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function l(){}s.prototype.isReactComponent={},s.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e),t&&this.updater.enqueueCallback(this,t,"setState")},s.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this),e&&this.updater.enqueueCallback(this,e,"forceUpdate")},l.prototype=s.prototype,u.prototype=new l,u.prototype.constructor=u,o(u.prototype,s.prototype),u.prototype.isPureReactComponent=!0,e.exports={Component:s,PureComponent:u}},function(e,t,n){"use strict";n(2);var r={isMounted:function(e){return!1},enqueueCallback:function(e,t){},enqueueForceUpdate:function(e){},enqueueReplaceState:function(e,t){},enqueueSetState:function(e,t){}};e.exports=r},function(e,t,n){"use strict";e.exports=!1},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r=n(102);e.exports=function(e){return r(e,!1)}},function(e,t,n){"use strict";e.exports={hasCachedChildNodes:1}},function(e,t,n){"use strict";var r=n(110),o=n(111),i=n(115),a=n(118),s=n(119),u=n(120),l=n(121),c=n(127),p=n(4),d=n(151),f=n(152),h=n(153),m=n(79),v=n(154),g=n(156),y=n(157),_=n(163),b=n(164),E=n(165),C=!1;e.exports={inject:function(){C||(C=!0,g.EventEmitter.injectReactEventListener(v),g.EventPluginHub.injectEventPluginOrder(a),g.EventPluginUtils.injectComponentTree(p),g.EventPluginUtils.injectTreeTraversal(f),g.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:E,EnterLeaveEventPlugin:s,ChangeEventPlugin:i,SelectEventPlugin:b,BeforeInputEventPlugin:o}),g.HostComponent.injectGenericComponentClass(c),g.HostComponent.injectTextComponentClass(h),g.DOMProperty.injectDOMPropertyConfig(r),g.DOMProperty.injectDOMPropertyConfig(u),g.DOMProperty.injectDOMPropertyConfig(_),g.EmptyComponent.injectEmptyComponentFactory(function(e){return new d(e)}),g.Updates.injectReconcileTransaction(y),g.Updates.injectBatchingStrategy(m),g.Component.injectEnvironment(l))}}},function(e,t,n){"use strict";var r=n(1);n(0);e.exports=function(e,t){return null==t&&r("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}},function(e,t,n){"use strict";e.exports=function(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}},function(e,t,n){"use strict";var r=n(5),o=null;e.exports=function(){return!o&&r.canUseDOM&&(o="textContent"in document.documentElement?"textContent":"innerText"),o}},function(e,t,n){"use strict";var r=n(1);var o=n(13),i=(n(0),function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._callbacks=null,this._contexts=null,this._arg=t}return e.prototype.enqueue=function(e,t){this._callbacks=this._callbacks||[],this._callbacks.push(e),this._contexts=this._contexts||[],this._contexts.push(t)},e.prototype.notifyAll=function(){var e=this._callbacks,t=this._contexts,n=this._arg;if(e&&t){e.length!==t.length&&r("24"),this._callbacks=null,this._contexts=null;for(var o=0;o<e.length;o++)e[o].call(t[o],n);e.length=0,t.length=0}},e.prototype.checkpoint=function(){return this._callbacks?this._callbacks.length:0},e.prototype.rollback=function(e){this._callbacks&&this._contexts&&(this._callbacks.length=e,this._contexts.length=e)},e.prototype.reset=function(){this._callbacks=null,this._contexts=null},e.prototype.destructor=function(){this.reset()},e}());e.exports=o.addPoolingTo(i)},function(e,t,n){"use strict";e.exports={logTopLevelRenders:!1}},function(e,t,n){"use strict";var r=n(4);function o(e){var t=e.type,n=e.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===t||"radio"===t)}function i(e){return e._wrapperState.valueTracker}var a={_getTrackerFromNode:function(e){return i(r.getInstanceFromNode(e))},track:function(e){if(!i(e)){var t=r.getNodeFromInstance(e),n=o(t)?"checked":"value",a=Object.getOwnPropertyDescriptor(t.constructor.prototype,n),s=""+t[n];t.hasOwnProperty(n)||"function"!=typeof a.get||"function"!=typeof a.set||(Object.defineProperty(t,n,{enumerable:a.enumerable,configurable:!0,get:function(){return a.get.call(this)},set:function(e){s=""+e,a.set.call(this,e)}}),function(e,t){e._wrapperState.valueTracker=t}(e,{getValue:function(){return s},setValue:function(e){s=""+e},stopTracking:function(){!function(e){e._wrapperState.valueTracker=null}(e),delete t[n]}}))}},updateValueIfChanged:function(e){if(!e)return!1;var t=i(e);if(!t)return a.track(e),!0;var n,s,u=t.getValue(),l=((n=r.getNodeFromInstance(e))&&(s=o(n)?""+n.checked:n.value),s);return l!==u&&(t.setValue(l),!0)},stopTracking:function(e){var t=i(e);t&&t.stopTracking()}};e.exports=a},function(e,t,n){"use strict";var r={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};e.exports=function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!r[e.type]:"textarea"===t}},function(e,t,n){"use strict";var r={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(e){r.currentScrollLeft=e.x,r.currentScrollTop=e.y}};e.exports=r},function(e,t,n){"use strict";var r=n(5),o=n(27),i=n(26),a=function(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t};r.canUseDOM&&("textContent"in document.documentElement||(a=function(e,t){3!==e.nodeType?i(e,o(t)):e.nodeValue=t})),e.exports=a},function(e,t,n){"use strict";e.exports=function(e){try{e.focus()}catch(e){}}},function(e,t,n){"use strict";var r={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};var o=["Webkit","ms","Moz","O"];Object.keys(r).forEach(function(e){o.forEach(function(t){r[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=r[e]})});var i={isUnitlessNumber:r,shorthandPropertyExpansions:{background:{backgroundAttachment:!0,backgroundColor:!0,backgroundImage:!0,backgroundPositionX:!0,backgroundPositionY:!0,backgroundRepeat:!0},backgroundPosition:{backgroundPositionX:!0,backgroundPositionY:!0},border:{borderWidth:!0,borderStyle:!0,borderColor:!0},borderBottom:{borderBottomWidth:!0,borderBottomStyle:!0,borderBottomColor:!0},borderLeft:{borderLeftWidth:!0,borderLeftStyle:!0,borderLeftColor:!0},borderRight:{borderRightWidth:!0,borderRightStyle:!0,borderRightColor:!0},borderTop:{borderTopWidth:!0,borderTopStyle:!0,borderTopColor:!0},font:{fontStyle:!0,fontVariant:!0,fontWeight:!0,fontSize:!0,lineHeight:!0,fontFamily:!0},outline:{outlineWidth:!0,outlineStyle:!0,outlineColor:!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(16),o=(n(4),n(6),n(136)),i=(n(2),new RegExp("^["+r.ATTRIBUTE_NAME_START_CHAR+"]["+r.ATTRIBUTE_NAME_CHAR+"]*$")),a={},s={};function u(e){return!!s.hasOwnProperty(e)||!a.hasOwnProperty(e)&&(i.test(e)?(s[e]=!0,!0):(a[e]=!0,!1))}function l(e,t){return null==t||e.hasBooleanValue&&!t||e.hasNumericValue&&isNaN(t)||e.hasPositiveNumericValue&&t<1||e.hasOverloadedBooleanValue&&!1===t}var c={createMarkupForID:function(e){return r.ID_ATTRIBUTE_NAME+"="+o(e)},setAttributeForID:function(e,t){e.setAttribute(r.ID_ATTRIBUTE_NAME,t)},createMarkupForRoot:function(){return r.ROOT_ATTRIBUTE_NAME+'=""'},setAttributeForRoot:function(e){e.setAttribute(r.ROOT_ATTRIBUTE_NAME,"")},createMarkupForProperty:function(e,t){var n=r.properties.hasOwnProperty(e)?r.properties[e]:null;if(n){if(l(n,t))return"";var i=n.attributeName;return n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===t?i+'=""':i+"="+o(t)}return r.isCustomAttribute(e)?null==t?"":e+"="+o(t):null},createMarkupForCustomAttribute:function(e,t){return u(e)&&null!=t?e+"="+o(t):""},setValueForProperty:function(e,t,n){var o=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(o){var i=o.mutationMethod;if(i)i(e,n);else{if(l(o,n))return void this.deleteValueForProperty(e,t);if(o.mustUseProperty)e[o.propertyName]=n;else{var a=o.attributeName,s=o.attributeNamespace;s?e.setAttributeNS(s,a,""+n):o.hasBooleanValue||o.hasOverloadedBooleanValue&&!0===n?e.setAttribute(a,""):e.setAttribute(a,""+n)}}}else if(r.isCustomAttribute(t))return void c.setValueForAttribute(e,t,n)},setValueForAttribute:function(e,t,n){u(t)&&(null==n?e.removeAttribute(t):e.setAttribute(t,""+n))},deleteValueForAttribute:function(e,t){e.removeAttribute(t)},deleteValueForProperty:function(e,t){var n=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(n){var o=n.mutationMethod;if(o)o(e,void 0);else if(n.mustUseProperty){var i=n.propertyName;n.hasBooleanValue?e[i]=!1:e[i]=""}else e.removeAttribute(n.attributeName)}else r.isCustomAttribute(t)&&e.removeAttribute(t)}};e.exports=c},function(e,t,n){"use strict";var r=n(3),o=n(40),i=n(4),a=n(9),s=(n(2),!1);function u(){if(this._rootNodeID&&this._wrapperState.pendingUpdate){this._wrapperState.pendingUpdate=!1;var e=this._currentElement.props,t=o.getValue(e);null!=t&&l(this,Boolean(e.multiple),t)}}function l(e,t,n){var r,o,a=i.getNodeFromInstance(e).options;if(t){for(r={},o=0;o<n.length;o++)r[""+n[o]]=!0;for(o=0;o<a.length;o++){var s=r.hasOwnProperty(a[o].value);a[o].selected!==s&&(a[o].selected=s)}}else{for(r=""+n,o=0;o<a.length;o++)if(a[o].value===r)return void(a[o].selected=!0);a.length&&(a[0].selected=!0)}}var c={getHostProps:function(e,t){return r({},t,{onChange:e._wrapperState.onChange,value:void 0})},mountWrapper:function(e,t){var n=o.getValue(t);e._wrapperState={pendingUpdate:!1,initialValue:null!=n?n:t.defaultValue,listeners:null,onChange:p.bind(e),wasMultiple:Boolean(t.multiple)},void 0===t.value||void 0===t.defaultValue||s||(s=!0)},getSelectValueContext:function(e){return e._wrapperState.initialValue},postUpdateWrapper:function(e){var t=e._currentElement.props;e._wrapperState.initialValue=void 0;var n=e._wrapperState.wasMultiple;e._wrapperState.wasMultiple=Boolean(t.multiple);var r=o.getValue(t);null!=r?(e._wrapperState.pendingUpdate=!1,l(e,Boolean(t.multiple),r)):n!==Boolean(t.multiple)&&(null!=t.defaultValue?l(e,Boolean(t.multiple),t.defaultValue):l(e,Boolean(t.multiple),t.multiple?[]:""))}};function p(e){var t=this._currentElement.props,n=o.executeOnChange(t,e);return this._rootNodeID&&(this._wrapperState.pendingUpdate=!0),a.asap(u,this),n}e.exports=c},function(e,t,n){"use strict";var r=n(1),o=n(12),i=(n(0),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(e){return null===e||!1===e?i.EMPTY:o.isValidElement(e)?"function"==typeof e.type?i.COMPOSITE:i.HOST:void r("26",e)}});e.exports=i},function(e,t,n){"use strict";var r,o={injectEmptyComponentFactory:function(e){r=e}},i={create:function(e){return r(e)}};i.injection=o,e.exports=i},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i=null;var a={createInternalComponent:function(e){return o||r("111",e.type),new o(e)},createInstanceForText:function(e){return new i(e)},isTextComponent:function(e){return e instanceof i},injection:{injectGenericComponentClass:function(e){o=e},injectTextComponentClass:function(e){i=e}}};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(147)),i=n(148),a=(n(0),n(45)),s=(n(2),"."),u=":";function l(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,c,p){var d,f=typeof t;if("undefined"!==f&&"boolean"!==f||(t=null),null===t||"string"===f||"number"===f||"object"===f&&t.$$typeof===o)return c(p,t,""===n?s+l(t,0):n),1;var h=0,m=""===n?s:n+u;if(Array.isArray(t))for(var v=0;v<t.length;v++)h+=e(d=t[v],m+l(d,v),c,p);else{var g=i(t);if(g){var y,_=g.call(t);if(g!==t.entries)for(var b=0;!(y=_.next()).done;)h+=e(d=y.value,m+l(d,b++),c,p);else for(;!(y=_.next()).done;){var E=y.value;E&&(h+=e(d=E[1],m+a.escape(E[0])+u+l(d,0),c,p))}}else if("object"===f){var C=String(t);r("31","[object Object]"===C?"object with keys {"+Object.keys(t).join(", ")+"}":C,"")}}return h}(e,"",t,n)}},function(e,t,n){"use strict";var r,o,i,a,s,u,l,c=n(18),p=n(10);n(0),n(2);function d(e){var t=Function.prototype.toString,n=Object.prototype.hasOwnProperty,r=RegExp("^"+t.call(n).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");try{var o=t.call(e);return r.test(o)}catch(e){return!1}}if("function"==typeof Array.from&&"function"==typeof Map&&d(Map)&&null!=Map.prototype&&"function"==typeof Map.prototype.keys&&d(Map.prototype.keys)&&"function"==typeof Set&&d(Set)&&null!=Set.prototype&&"function"==typeof Set.prototype.keys&&d(Set.prototype.keys)){var f=new Map,h=new Set;r=function(e,t){f.set(e,t)},o=function(e){return f.get(e)},i=function(e){f.delete(e)},a=function(){return Array.from(f.keys())},s=function(e){h.add(e)},u=function(e){h.delete(e)},l=function(){return Array.from(h.keys())}}else{var m={},v={},g=function(e){return"."+e},y=function(e){return parseInt(e.substr(1),10)};r=function(e,t){var n=g(e);m[n]=t},o=function(e){var t=g(e);return m[t]},i=function(e){var t=g(e);delete m[t]},a=function(){return Object.keys(m).map(y)},s=function(e){var t=g(e);v[t]=!0},u=function(e){var t=g(e);delete v[t]},l=function(){return Object.keys(v).map(y)}}var _=[];function b(e){var t=o(e);if(t){var n=t.childIDs;i(e),n.forEach(b)}}function E(e,t,n){return"\n in "+(e||"Unknown")+(t?" (at "+t.fileName.replace(/^.*[\\\/]/,"")+":"+t.lineNumber+")":n?" (created by "+n+")":"")}function C(e){return null==e?"#empty":"string"==typeof e||"number"==typeof e?"#text":"string"==typeof e.type?e.type:e.type.displayName||e.type.name||"Unknown"}function w(e){var t,n=x.getDisplayName(e),r=x.getElement(e),o=x.getOwnerID(e);return o&&(t=x.getDisplayName(o)),E(n,r&&r._source,t)}var x={onSetChildren:function(e,t){var n=o(e);n||c("144"),n.childIDs=t;for(var r=0;r<t.length;r++){var i=t[r],a=o(i);a||c("140"),null==a.childIDs&&"object"==typeof a.element&&null!=a.element&&c("141"),a.isMounted||c("71"),null==a.parentID&&(a.parentID=e),a.parentID!==e&&c("142",i,a.parentID,e)}},onBeforeMountComponent:function(e,t,n){r(e,{element:t,parentID:n,text:null,childIDs:[],isMounted:!1,updateCount:0})},onBeforeUpdateComponent:function(e,t){var n=o(e);n&&n.isMounted&&(n.element=t)},onMountComponent:function(e){var t=o(e);t||c("144"),t.isMounted=!0,0===t.parentID&&s(e)},onUpdateComponent:function(e){var t=o(e);t&&t.isMounted&&t.updateCount++},onUnmountComponent:function(e){var t=o(e);t&&(t.isMounted=!1,0===t.parentID&&u(e));_.push(e)},purgeUnmountedComponents:function(){if(!x._preventPurging){for(var e=0;e<_.length;e++){b(_[e])}_.length=0}},isMounted:function(e){var t=o(e);return!!t&&t.isMounted},getCurrentStackAddendum:function(e){var t="";if(e){var n=C(e),r=e._owner;t+=E(n,e._source,r&&r.getName())}var o=p.current,i=o&&o._debugID;return t+=x.getStackAddendumByID(i)},getStackAddendumByID:function(e){for(var t="";e;)t+=w(e),e=x.getParentID(e);return t},getChildIDs:function(e){var t=o(e);return t?t.childIDs:[]},getDisplayName:function(e){var t=x.getElement(e);return t?C(t):null},getElement:function(e){var t=o(e);return t?t.element:null},getOwnerID:function(e){var t=x.getElement(e);return t&&t._owner?t._owner._debugID:null},getParentID:function(e){var t=o(e);return t?t.parentID:null},getSource:function(e){var t=o(e),n=t?t.element:null;return null!=n?n._source:null},getText:function(e){var t=x.getElement(e);return"string"==typeof t?t:"number"==typeof t?""+t:null},getUpdateCount:function(e){var t=o(e);return t?t.updateCount:0},getRootIDs:l,getRegisteredIDs:a,pushNonStandardWarningStack:function(e,t){if("function"==typeof console.reactStack){var n=[],r=p.current,o=r&&r._debugID;try{for(e&&n.push({name:o?x.getDisplayName(o):null,fileName:t?t.fileName:null,lineNumber:t?t.lineNumber:null});o;){var i=x.getElement(o),a=x.getParentID(o),s=x.getOwnerID(o),u=s?x.getDisplayName(s):null,l=i&&i._source;n.push({name:u,fileName:l?l.fileName:null,lineNumber:l?l.lineNumber:null}),o=a}}catch(e){}console.reactStack(n)}},popNonStandardWarningStack:function(){"function"==typeof console.reactStackEnd&&console.reactStackEnd()}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(24),a=(n(6),n(150)),s=[];var u={enqueue:function(){}};function l(e){this.reinitializeTransaction(),this.renderToStaticMarkup=e,this.useCreateElement=!1,this.updateQueue=new a(this)}var c={getTransactionWrappers:function(){return s},getReactMountReady:function(){return u},getUpdateQueue:function(){return this.updateQueue},destructor:function(){},checkpoint:function(){},rollback:function(){}};r(l.prototype,i,c),o.addPoolingTo(l),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(9),i=n(24),a=n(8),s={initialize:a,close:function(){p.isBatchingUpdates=!1}},u=[{initialize:a,close:o.flushBatchedUpdates.bind(o)},s];function l(){this.reinitializeTransaction()}r(l.prototype,i,{getTransactionWrappers:function(){return u}});var c=new l,p={isBatchingUpdates:!1,batchedUpdates:function(e,t,n,r,o,i){var a=p.isBatchingUpdates;return p.isBatchingUpdates=!0,a?e(t,n,r,o,i):c.perform(e,null,t,n,r,o,i)}};e.exports=p},function(e,t,n){"use strict";var r=n(8),o={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=o},function(e,t,n){"use strict";var r=n(158),o=n(160),i=n(69),a=n(82);var s={hasSelectionCapabilities:function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&"text"===e.type||"textarea"===t||"true"===e.contentEditable)},getSelectionInformation:function(){var e=a();return{focusedElem:e,selectionRange:s.hasSelectionCapabilities(e)?s.getSelection(e):null}},restoreSelection:function(e){var t,n=a(),r=e.focusedElem,u=e.selectionRange;n!==r&&(t=r,o(document.documentElement,t))&&(s.hasSelectionCapabilities(r)&&s.setSelection(r,u),i(r))},getSelection:function(e){var t;if("selectionStart"in e)t={start:e.selectionStart,end:e.selectionEnd};else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var n=document.selection.createRange();n.parentElement()===e&&(t={start:-n.moveStart("character",-e.value.length),end:-n.moveEnd("character",-e.value.length)})}else t=r.getOffsets(e);return t||{start:0,end:0}},setSelection:function(e,t){var n=t.start,o=t.end;if(void 0===o&&(o=n),"selectionStart"in e)e.selectionStart=n,e.selectionEnd=Math.min(o,e.value.length);else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var i=e.createTextRange();i.collapse(!0),i.moveStart("character",n),i.moveEnd("character",o-n),i.select()}else r.setOffsets(e,t)}};e.exports=s},function(e,t,n){"use strict";e.exports=function(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(16),a=n(12),s=n(28),u=(n(10),n(4)),l=n(84),c=n(175),p=n(64),d=n(23),f=(n(6),n(85)),h=n(14),m=n(46),v=n(9),g=n(19),y=n(42),_=(n(0),n(26)),b=n(44),E=(n(2),i.ID_ATTRIBUTE_NAME),C=i.ROOT_ATTRIBUTE_NAME,w=1,x=9,T=11,k={};function S(e){return e?e.nodeType===x?e.documentElement:e.firstChild:null}function P(e,t,n,r,o){var i;if(p.logTopLevelRenders){var a=e._currentElement.props.child.type;i="React mount: "+("string"==typeof a?a:a.displayName||a.name),console.time(i)}var s=h.mountComponent(e,n,null,l(e,t),o,0);i&&console.timeEnd(i),e._renderedComponent._topLevelWrapper=e,D._mountImageIntoNode(s,t,e,r,n)}function I(e,t,n,r){var o=v.ReactReconcileTransaction.getPooled(!n&&c.useCreateElement);o.perform(P,null,e,t,o,n,r),v.ReactReconcileTransaction.release(o)}function N(e,t,n){for(0,h.unmountComponent(e,n),t.nodeType===x&&(t=t.documentElement);t.lastChild;)t.removeChild(t.lastChild)}function A(e){var t=S(e);if(t){var n=u.getInstanceFromNode(t);return!(!n||!n._hostParent)}}function M(e){return!(!e||e.nodeType!==w&&e.nodeType!==x&&e.nodeType!==T)}function O(e){var t=function(e){var t=S(e),n=t&&u.getInstanceFromNode(t);return n&&!n._hostParent?n:null}(e);return t?t._hostContainerInfo._topLevelWrapper:null}var R=1,L=function(){this.rootID=R++};L.prototype.isReactComponent={},L.prototype.render=function(){return this.props.child},L.isReactTopLevelWrapper=!0;var D={TopLevelWrapper:L,_instancesByReactRootID:k,scrollMonitor:function(e,t){t()},_updateRootComponent:function(e,t,n,r,o){return D.scrollMonitor(r,function(){m.enqueueElementInternal(e,t,n),o&&m.enqueueCallbackInternal(e,o)}),e},_renderNewRootComponent:function(e,t,n,o){M(t)||r("37"),s.ensureScrollValueMonitoring();var i=y(e,!1);v.batchedUpdates(I,i,t,n,o);var a=i._instance.rootID;return k[a]=i,i},renderSubtreeIntoContainer:function(e,t,n,o){return null!=e&&d.has(e)||r("38"),D._renderSubtreeIntoContainer(e,t,n,o)},_renderSubtreeIntoContainer:function(e,t,n,o){m.validateCallback(o,"ReactDOM.render"),a.isValidElement(t)||r("39","string"==typeof t?" Instead of passing a string like 'div', pass React.createElement('div') or <div />.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or <Foo />.":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":"");var i,s=a.createElement(L,{child:t});if(e){var u=d.get(e);i=u._processChildContext(u._context)}else i=g;var l=O(n);if(l){var c=l._currentElement.props.child;if(b(c,t)){var p=l._renderedComponent.getPublicInstance(),f=o&&function(){o.call(p)};return D._updateRootComponent(l,s,i,n,f),p}D.unmountComponentAtNode(n)}var h,v=S(n),y=v&&!(!(h=v).getAttribute||!h.getAttribute(E)),_=A(n),C=y&&!l&&!_,w=D._renderNewRootComponent(s,n,C,i)._renderedComponent.getPublicInstance();return o&&o.call(w),w},render:function(e,t,n){return D._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){M(e)||r("40");var t=O(e);if(!t){A(e),1===e.nodeType&&e.hasAttribute(C);return!1}return delete k[t._instance.rootID],v.batchedUpdates(N,t,e,!1),!0},_mountImageIntoNode:function(e,t,n,i,a){if(M(t)||r("41"),i){var s=S(t);if(f.canReuseMarkup(e,s))return void u.precacheNode(n,s);var l=s.getAttribute(f.CHECKSUM_ATTR_NAME);s.removeAttribute(f.CHECKSUM_ATTR_NAME);var c=s.outerHTML;s.setAttribute(f.CHECKSUM_ATTR_NAME,l);var p=e,d=function(e,t){for(var n=Math.min(e.length,t.length),r=0;r<n;r++)if(e.charAt(r)!==t.charAt(r))return r;return e.length===t.length?-1:n}(p,c),h=" (client) "+p.substring(d-20,d+20)+"\n (server) "+c.substring(d-20,d+20);t.nodeType===x&&r("42",h)}if(t.nodeType===x&&r("43"),a.useCreateElement){for(;t.lastChild;)t.removeChild(t.lastChild);o.insertTreeBefore(t,e,null)}else _(t,e),u.precacheNode(n,t.firstChild)}};e.exports=D},function(e,t,n){"use strict";n(47);var r=9;e.exports=function(e,t){return{_topLevelWrapper:e,_idCounter:1,_ownerDocument:t?t.nodeType===r?t:t.ownerDocument:null,_node:t,_tag:t?t.nodeName.toLowerCase():null,_namespaceURI:t?t.namespaceURI:null}}},function(e,t,n){"use strict";var r=n(176),o=/\/?>/,i=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(e){var t=r(e);return i.test(e)?e:e.replace(o," "+a.CHECKSUM_ATTR_NAME+'="'+t+'"$&')},canReuseMarkup:function(e,t){var n=t.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(e)===n}};e.exports=a},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(73);e.exports=function(e){for(var t;(t=e._renderedNodeType)===r.COMPOSITE;)e=e._renderedComponent;return t===r.HOST?e._renderedComponent:t===r.EMPTY?null:void 0}},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},function(e,t,n){"use strict";var r=n(7),o=n(195),i=n(197),a=n(198),s=n(199),u=n(90),l="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(200);e.exports=function(e){return new Promise(function(t,c){var p=e.data,d=e.headers;r.isFormData(p)&&delete d["Content-Type"];var f=new XMLHttpRequest,h="onreadystatechange",m=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in f||s(e.url)||(f=new window.XDomainRequest,h="onload",m=!0,f.onprogress=function(){},f.ontimeout=function(){}),e.auth){var v=e.auth.username||"",g=e.auth.password||"";d.Authorization="Basic "+l(v+":"+g)}if(f.open(e.method.toUpperCase(),i(e.url,e.params,e.paramsSerializer),!0),f.timeout=e.timeout,f[h]=function(){if(f&&(4===f.readyState||m)&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in f?a(f.getAllResponseHeaders()):null,r={data:e.responseType&&"text"!==e.responseType?f.response:f.responseText,status:1223===f.status?204:f.status,statusText:1223===f.status?"No Content":f.statusText,headers:n,config:e,request:f};o(t,c,r),f=null}},f.onerror=function(){c(u("Network Error",e,null,f)),f=null},f.ontimeout=function(){c(u("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var y=n(201),_=(e.withCredentials||s(e.url))&&e.xsrfCookieName?y.read(e.xsrfCookieName):void 0;_&&(d[e.xsrfHeaderName]=_)}if("setRequestHeader"in f&&r.forEach(d,function(e,t){void 0===p&&"content-type"===t.toLowerCase()?delete d[t]:f.setRequestHeader(t,e)}),e.withCredentials&&(f.withCredentials=!0),e.responseType)try{f.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&f.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){f&&(f.abort(),c(e),f=null)}),void 0===p&&(p=null),f.send(p)})}},function(e,t,n){"use strict";var r=n(196);e.exports=function(e,t,n,o,i){var a=new Error(e);return r(a,t,n,o,i)}},function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";function r(e){this.message=e}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,e.exports=r},function(e,t,n){"use strict";e.exports=n(109)},function(e,t,n){"use strict";e.exports=function(){}},function(e,t,n){"use strict";var r=n(96),o=n(15),i=n(8),a=n(97),s=r.twoArgumentPooler,u=r.fourArgumentPooler,l=/\/+/g;function c(e){return(""+e).replace(l,"$&/")}function p(e,t){this.func=e,this.context=t,this.count=0}function d(e,t,n){var r=e.func,o=e.context;r.call(o,t,e.count++)}function f(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function h(e,t,n){var r=e.result,a=e.keyPrefix,s=e.func,u=e.context,l=s.call(u,t,e.count++);Array.isArray(l)?m(l,r,n,i.thatReturnsArgument):null!=l&&(o.isValidElement(l)&&(l=o.cloneAndReplaceKey(l,a+(!l.key||t&&t.key===l.key?"":c(l.key)+"/")+n)),r.push(l))}function m(e,t,n,r,o){var i="";null!=n&&(i=c(n)+"/");var s=f.getPooled(t,i,r,o);a(e,h,s),f.release(s)}function v(e,t,n){return null}p.prototype.destructor=function(){this.func=null,this.context=null,this.count=0},r.addPoolingTo(p,s),f.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},r.addPoolingTo(f,u);var g={forEach:function(e,t,n){if(null==e)return e;var r=p.getPooled(t,n);a(e,d,r),p.release(r)},map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},mapIntoWithKeyPrefixInternal:m,count:function(e,t){return a(e,v,null)},toArray:function(e){var t=[];return m(e,t,null,i.thatReturnsArgument),t}};e.exports=g},function(e,t,n){"use strict";var r=n(18),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(18),o=(n(10),n(56)),i=n(98),a=(n(0),n(99)),s=(n(2),"."),u=":";function l(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,c,p){var d,f=typeof t;if("undefined"!==f&&"boolean"!==f||(t=null),null===t||"string"===f||"number"===f||"object"===f&&t.$$typeof===o)return c(p,t,""===n?s+l(t,0):n),1;var h=0,m=""===n?s:n+u;if(Array.isArray(t))for(var v=0;v<t.length;v++)h+=e(d=t[v],m+l(d,v),c,p);else{var g=i(t);if(g){var y,_=g.call(t);if(g!==t.entries)for(var b=0;!(y=_.next()).done;)h+=e(d=y.value,m+l(d,b++),c,p);else for(;!(y=_.next()).done;){var E=y.value;E&&(h+=e(d=E[1],m+a.escape(E[0])+u+l(d,0),c,p))}}else if("object"===f){var C=String(t);r("31","[object Object]"===C?"object with keys {"+Object.keys(t).join(", ")+"}":C,"")}}return h}(e,"",t,n)}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";e.exports=function(e){var t=e&&(r&&e[r]||e[o]);if("function"==typeof t)return t}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,function(e){return t[e]})},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,function(e){return t[e]})}};e.exports=r},function(e,t,n){"use strict";var r=n(15).createFactory,o={a:r("a"),abbr:r("abbr"),address:r("address"),area:r("area"),article:r("article"),aside:r("aside"),audio:r("audio"),b:r("b"),base:r("base"),bdi:r("bdi"),bdo:r("bdo"),big:r("big"),blockquote:r("blockquote"),body:r("body"),br:r("br"),button:r("button"),canvas:r("canvas"),caption:r("caption"),cite:r("cite"),code:r("code"),col:r("col"),colgroup:r("colgroup"),data:r("data"),datalist:r("datalist"),dd:r("dd"),del:r("del"),details:r("details"),dfn:r("dfn"),dialog:r("dialog"),div:r("div"),dl:r("dl"),dt:r("dt"),em:r("em"),embed:r("embed"),fieldset:r("fieldset"),figcaption:r("figcaption"),figure:r("figure"),footer:r("footer"),form:r("form"),h1:r("h1"),h2:r("h2"),h3:r("h3"),h4:r("h4"),h5:r("h5"),h6:r("h6"),head:r("head"),header:r("header"),hgroup:r("hgroup"),hr:r("hr"),html:r("html"),i:r("i"),iframe:r("iframe"),img:r("img"),input:r("input"),ins:r("ins"),kbd:r("kbd"),keygen:r("keygen"),label:r("label"),legend:r("legend"),li:r("li"),link:r("link"),main:r("main"),map:r("map"),mark:r("mark"),menu:r("menu"),menuitem:r("menuitem"),meta:r("meta"),meter:r("meter"),nav:r("nav"),noscript:r("noscript"),object:r("object"),ol:r("ol"),optgroup:r("optgroup"),option:r("option"),output:r("output"),p:r("p"),param:r("param"),picture:r("picture"),pre:r("pre"),progress:r("progress"),q:r("q"),rp:r("rp"),rt:r("rt"),ruby:r("ruby"),s:r("s"),samp:r("samp"),script:r("script"),section:r("section"),select:r("select"),small:r("small"),source:r("source"),span:r("span"),strong:r("strong"),style:r("style"),sub:r("sub"),summary:r("summary"),sup:r("sup"),table:r("table"),tbody:r("tbody"),td:r("td"),textarea:r("textarea"),tfoot:r("tfoot"),th:r("th"),thead:r("thead"),time:r("time"),title:r("title"),tr:r("tr"),track:r("track"),u:r("u"),ul:r("ul"),var:r("var"),video:r("video"),wbr:r("wbr"),circle:r("circle"),clipPath:r("clipPath"),defs:r("defs"),ellipse:r("ellipse"),g:r("g"),image:r("image"),line:r("line"),linearGradient:r("linearGradient"),mask:r("mask"),path:r("path"),pattern:r("pattern"),polygon:r("polygon"),polyline:r("polyline"),radialGradient:r("radialGradient"),rect:r("rect"),stop:r("stop"),svg:r("svg"),text:r("text"),tspan:r("tspan")};e.exports=o},function(e,t,n){"use strict";var r=n(15).isValidElement,o=n(57);e.exports=o(r)},function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(2),a=n(3),s=n(103),u=n(104);e.exports=function(e,t){var n="function"==typeof Symbol&&Symbol.iterator,l="@@iterator";var c="<<anonymous>>",p={array:m("array"),bool:m("boolean"),func:m("function"),number:m("number"),object:m("object"),string:m("string"),symbol:m("symbol"),any:h(r.thatReturnsNull),arrayOf:function(e){return h(function(t,n,r,o,i){if("function"!=typeof e)return new f("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var a=t[n];if(!Array.isArray(a)){var u=g(a);return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected an array.")}for(var l=0;l<a.length;l++){var c=e(a,l,r,o,i+"["+l+"]",s);if(c instanceof Error)return c}return null})},element:function(){return h(function(t,n,r,o,i){var a=t[n];if(!e(a)){var s=g(a);return new f("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+r+"`, expected a single ReactElement.")}return null})}(),instanceOf:function(e){return h(function(t,n,r,o,i){if(!(t[n]instanceof e)){var a=e.name||c,s=function(e){if(!e.constructor||!e.constructor.name)return c;return e.constructor.name}(t[n]);return new f("Invalid "+o+" `"+i+"` of type `"+s+"` supplied to `"+r+"`, expected instance of `"+a+"`.")}return null})},node:function(){return h(function(e,t,n,r,o){if(!v(e[t]))return new f("Invalid "+r+" `"+o+"` supplied to `"+n+"`, expected a ReactNode.");return null})}(),objectOf:function(e){return h(function(t,n,r,o,i){if("function"!=typeof e)return new f("Property `"+i+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var a=t[n],u=g(a);if("object"!==u)return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected an object.");for(var l in a)if(a.hasOwnProperty(l)){var c=e(a,l,r,o,i+"."+l,s);if(c instanceof Error)return c}return null})},oneOf:function(e){if(!Array.isArray(e))return r.thatReturnsNull;return h(function(t,n,r,o,i){for(var a=t[n],s=0;s<e.length;s++)if(d(a,e[s]))return null;var u=JSON.stringify(e);return new f("Invalid "+o+" `"+i+"` of value `"+a+"` supplied to `"+r+"`, expected one of "+u+".")})},oneOfType:function(e){if(!Array.isArray(e))return r.thatReturnsNull;for(var t=0;t<e.length;t++){var n=e[t];if("function"!=typeof n)return i(!1,"Invalid argument supplied to oneOfType. Expected an array of check functions, but received %s at index %s.",_(n),t),r.thatReturnsNull}return h(function(t,n,r,o,i){for(var a=0;a<e.length;a++){var u=e[a];if(null==u(t,n,r,o,i,s))return null}return new f("Invalid "+o+" `"+i+"` supplied to `"+r+"`.")})},shape:function(e){return h(function(t,n,r,o,i){var a=t[n],u=g(a);if("object"!==u)return new f("Invalid "+o+" `"+i+"` of type `"+u+"` supplied to `"+r+"`, expected `object`.");for(var l in e){var c=e[l];if(c){var p=c(a,l,r,o,i+"."+l,s);if(p)return p}}return null})},exact:function(e){return h(function(t,n,r,o,i){var u=t[n],l=g(u);if("object"!==l)return new f("Invalid "+o+" `"+i+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");var c=a({},t[n],e);for(var p in c){var d=e[p];if(!d)return new f("Invalid "+o+" `"+i+"` key `"+p+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=d(u,p,r,o,i+"."+p,s);if(h)return h}return null})}};function d(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function f(e){this.message=e,this.stack=""}function h(e){function n(n,r,i,a,u,l,p){(a=a||c,l=l||i,p!==s)&&(t&&o(!1,"Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"));return null==r[i]?n?null===r[i]?new f("The "+u+" `"+l+"` is marked as required in `"+a+"`, but its value is `null`."):new f("The "+u+" `"+l+"` is marked as required in `"+a+"`, but its value is `undefined`."):null:e(r,i,a,u,l)}var r=n.bind(null,!1);return r.isRequired=n.bind(null,!0),r}function m(e){return h(function(t,n,r,o,i,a){var s=t[n];return g(s)!==e?new f("Invalid "+o+" `"+i+"` of type `"+y(s)+"` supplied to `"+r+"`, expected `"+e+"`."):null})}function v(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(v);if(null===t||e(t))return!0;var r=function(e){var t=e&&(n&&e[n]||e[l]);if("function"==typeof t)return t}(t);if(!r)return!1;var o,i=r.call(t);if(r!==t.entries){for(;!(o=i.next()).done;)if(!v(o.value))return!1}else for(;!(o=i.next()).done;){var a=o.value;if(a&&!v(a[1]))return!1}return!0;default:return!1}}function g(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||"Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol}(t,e)?"symbol":t}function y(e){if(null==e)return""+e;var t=g(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function _(e){var t=y(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return f.prototype=Error.prototype,p.checkPropTypes=u,p.PropTypes=p,p}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";e.exports=function(e,t,n,r,o){}},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(53).Component,o=n(15).isValidElement,i=n(54),a=n(107);e.exports=a(r,o,i)},function(e,t,n){"use strict";var r=n(3),o=n(19),i=n(0),a="mixins";e.exports=function(e,t,n){var s=[],u={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},l={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var n=0;n<t.length;n++)p(e,t[n])},childContextTypes:function(e,t){e.childContextTypes=r({},e.childContextTypes,t)},contextTypes:function(e,t){e.contextTypes=r({},e.contextTypes,t)},getDefaultProps:function(e,t){e.getDefaultProps?e.getDefaultProps=f(e.getDefaultProps,t):e.getDefaultProps=t},propTypes:function(e,t){e.propTypes=r({},e.propTypes,t)},statics:function(e,t){!function(e,t){if(t)for(var n in t){var r=t[n];if(t.hasOwnProperty(n)){var o=n in l;i(!o,'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n);var a=n in e;i(!a,"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),e[n]=r}}}(e,t)},autobind:function(){}};function c(e,t){var n=u.hasOwnProperty(t)?u[t]:null;y.hasOwnProperty(t)&&i("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&i("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function p(e,n){if(n){i("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),i(!t(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var r=e.prototype,o=r.__reactAutoBindPairs;for(var s in n.hasOwnProperty(a)&&l.mixins(e,n.mixins),n)if(n.hasOwnProperty(s)&&s!==a){var p=n[s],d=r.hasOwnProperty(s);if(c(d,s),l.hasOwnProperty(s))l[s](e,p);else{var m=u.hasOwnProperty(s);if("function"!=typeof p||m||d||!1===n.autobind)if(d){var v=u[s];i(m&&("DEFINE_MANY_MERGED"===v||"DEFINE_MANY"===v),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",v,s),"DEFINE_MANY_MERGED"===v?r[s]=f(r[s],p):"DEFINE_MANY"===v&&(r[s]=h(r[s],p))}else r[s]=p;else o.push(s,p),r[s]=p}}}}function d(e,t){for(var n in i(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects."),t)t.hasOwnProperty(n)&&(i(void 0===e[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),e[n]=t[n]);return e}function f(e,t){return function(){var n=e.apply(this,arguments),r=t.apply(this,arguments);if(null==n)return r;if(null==r)return n;var o={};return d(o,n),d(o,r),o}}function h(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function m(e,t){return t.bind(e)}var v={componentDidMount:function(){this.__isMounted=!0}},g={componentWillUnmount:function(){this.__isMounted=!1}},y={replaceState:function(e,t){this.updater.enqueueReplaceState(this,e,t)},isMounted:function(){return!!this.__isMounted}},_=function(){};return r(_.prototype,e.prototype,y),function(e){var t=function(e,r,a){this.__reactAutoBindPairs.length&&function(e){for(var t=e.__reactAutoBindPairs,n=0;n<t.length;n+=2){var r=t[n],o=t[n+1];e[r]=m(e,o)}}(this),this.props=e,this.context=r,this.refs=o,this.updater=a||n,this.state=null;var s=this.getInitialState?this.getInitialState():null;i("object"==typeof s&&!Array.isArray(s),"%s.getInitialState(): must return an object or null",t.displayName||"ReactCompositeComponent"),this.state=s};for(var r in t.prototype=new _,t.prototype.constructor=t,t.prototype.__reactAutoBindPairs=[],s.forEach(p.bind(null,t)),p(t,v),p(t,e),p(t,g),t.getDefaultProps&&(t.defaultProps=t.getDefaultProps()),i(t.prototype.render,"createClass(...): Class specification must implement a `render` method."),u)t.prototype[r]||(t.prototype[r]=null);return t}}},function(e,t,n){"use strict";var r=n(18),o=n(15);n(0);e.exports=function(e){return o.isValidElement(e)||r("143"),e}},function(e,t,n){"use strict";var r=n(4),o=n(59),i=n(83),a=n(14),s=n(9),u=n(86),l=n(177),c=n(87),p=n(178);n(2);o.inject();var d={findDOMNode:l,render:i.render,unmountComponentAtNode:i.unmountComponentAtNode,version:u,unstable_batchedUpdates:s.batchedUpdates,unstable_renderSubtreeIntoContainer:p};"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject&&__REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ComponentTree:{getClosestInstanceFromNode:r.getClosestInstanceFromNode,getNodeFromInstance:function(e){return e._renderedComponent&&(e=c(e)),e?r.getNodeFromInstance(e):null}},Mount:i,Reconciler:a}),e.exports=d},function(e,t,n){"use strict";e.exports={Properties:{"aria-current":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},DOMAttributeNames:{},DOMPropertyNames:{}}},function(e,t,n){"use strict";var r=n(20),o=n(5),i=n(112),a=n(113),s=n(114),u=[9,13,27,32],l=229,c=o.canUseDOM&&"CompositionEvent"in window,p=null;o.canUseDOM&&"documentMode"in document&&(p=document.documentMode);var d,f=o.canUseDOM&&"TextEvent"in window&&!p&&!("object"==typeof(d=window.opera)&&"function"==typeof d.version&&parseInt(d.version(),10)<=12),h=o.canUseDOM&&(!c||p&&p>8&&p<=11);var m=32,v=String.fromCharCode(m),g={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},y=!1;function _(e,t){switch(e){case"topKeyUp":return-1!==u.indexOf(t.keyCode);case"topKeyDown":return t.keyCode!==l;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function b(e){var t=e.detail;return"object"==typeof t&&"data"in t?t.data:null}var E=null;function C(e,t,n,o){var s,u;if(c?s=function(e){switch(e){case"topCompositionStart":return g.compositionStart;case"topCompositionEnd":return g.compositionEnd;case"topCompositionUpdate":return g.compositionUpdate}}(e):E?_(e,n)&&(s=g.compositionEnd):function(e,t){return"topKeyDown"===e&&t.keyCode===l}(e,n)&&(s=g.compositionStart),!s)return null;h&&(E||s!==g.compositionStart?s===g.compositionEnd&&E&&(u=E.getData()):E=i.getPooled(o));var p=a.getPooled(s,t,n,o);if(u)p.data=u;else{var d=b(n);null!==d&&(p.data=d)}return r.accumulateTwoPhaseDispatches(p),p}function w(e,t,n,o){var a;if(!(a=f?function(e,t){switch(e){case"topCompositionEnd":return b(t);case"topKeyPress":return t.which!==m?null:(y=!0,v);case"topTextInput":var n=t.data;return n===v&&y?null:n;default:return null}}(e,n):function(e,t){if(E){if("topCompositionEnd"===e||!c&&_(e,t)){var n=E.getData();return i.release(E),E=null,n}return null}switch(e){case"topPaste":return null;case"topKeyPress":return t.which&&!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&&!(e.ctrlKey&&e.altKey)}(t)?String.fromCharCode(t.which):null;case"topCompositionEnd":return h?null:t.data;default:return null}}(e,n)))return null;var u=s.getPooled(g.beforeInput,t,n,o);return u.data=a,r.accumulateTwoPhaseDispatches(u),u}var x={eventTypes:g,extractEvents:function(e,t,n,r){return[C(e,t,n,r),w(e,t,n,r)]}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(62);function a(e){this._root=e,this._startText=this.getText(),this._fallbackText=null}r(a.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[i()]},getData:function(){if(this._fallbackText)return this._fallbackText;var e,t,n=this._startText,r=n.length,o=this.getText(),i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);var s=t>1?1-t:void 0;return this._fallbackText=o.slice(e,s),this._fallbackText}}),o.addPoolingTo(a),e.exports=a},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(21),o=n(20),i=n(5),a=n(4),s=n(9),u=n(11),l=n(65),c=n(34),p=n(35),d=n(66),f={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}};function h(e,t,n){var r=u.getPooled(f.change,e,t,n);return r.type="change",o.accumulateTwoPhaseDispatches(r),r}var m=null,v=null;var g=!1;function y(e){var t=h(v,e,c(e));s.batchedUpdates(_,t)}function _(e){r.enqueueEvents(e),r.processEventQueue(!1)}function b(){m&&(m.detachEvent("onchange",y),m=null,v=null)}function E(e,t){var n=l.updateValueIfChanged(e),r=!0===t.simulated&&A._allowSimulatedPassThrough;if(n||r)return e}function C(e,t){if("topChange"===e)return t}function w(e,t,n){"topFocus"===e?(b(),function(e,t){v=t,(m=e).attachEvent("onchange",y)}(t,n)):"topBlur"===e&&b()}i.canUseDOM&&(g=p("change")&&(!document.documentMode||document.documentMode>8));var x=!1;function T(){m&&(m.detachEvent("onpropertychange",k),m=null,v=null)}function k(e){"value"===e.propertyName&&E(v,e)&&y(e)}function S(e,t,n){"topFocus"===e?(T(),function(e,t){v=t,(m=e).attachEvent("onpropertychange",k)}(t,n)):"topBlur"===e&&T()}function P(e,t,n){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return E(v,n)}function I(e,t,n){if("topClick"===e)return E(t,n)}function N(e,t,n){if("topInput"===e||"topChange"===e)return E(t,n)}i.canUseDOM&&(x=p("input")&&(!document.documentMode||document.documentMode>9));var A={eventTypes:f,_allowSimulatedPassThrough:!0,_isInputEventSupported:x,extractEvents:function(e,t,n,r){var o,i,s,u,l=t?a.getNodeFromInstance(t):window;if("select"===(u=(s=l).nodeName&&s.nodeName.toLowerCase())||"input"===u&&"file"===s.type?g?o=C:i=w:d(l)?x?o=N:(o=P,i=S):function(e){var t=e.nodeName;return t&&"input"===t.toLowerCase()&&("checkbox"===e.type||"radio"===e.type)}(l)&&(o=I),o){var c=o(e,t,n);if(c)return h(c,n,r)}i&&i(e,l,t),"topBlur"===e&&function(e,t){if(null!=e){var n=e._wrapperState||t._wrapperState;if(n&&n.controlled&&"number"===t.type){var r=""+t.value;t.getAttribute("value")!==r&&t.setAttribute("value",r)}}}(t,l)}};e.exports=A},function(e,t,n){"use strict";var r=n(117),o={};o.attachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(t.getPublicInstance()):r.addComponentAsRefTo(t,e,n)}(n,e,t._owner)}},o.shouldUpdateRefs=function(e,t){var n=null,r=null;null!==e&&"object"==typeof e&&(n=e.ref,r=e._owner);var o=null,i=null;return null!==t&&"object"==typeof t&&(o=t.ref,i=t._owner),n!==o||"string"==typeof o&&i!==r},o.detachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(null):r.removeComponentAsRefFrom(t,e,n)}(n,e,t._owner)}},e.exports=o},function(e,t,n){"use strict";var r=n(1);n(0);function o(e){return!(!e||"function"!=typeof e.attachRef||"function"!=typeof e.detachRef)}var i={addComponentAsRefTo:function(e,t,n){o(n)||r("119"),n.attachRef(t,e)},removeComponentAsRefFrom:function(e,t,n){o(n)||r("120");var i=n.getPublicInstance();i&&i.refs[t]===e.getPublicInstance()&&n.detachRef(t)}};e.exports=i},function(e,t,n){"use strict";e.exports=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"]},function(e,t,n){"use strict";var r=n(20),o=n(4),i=n(25),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},s={eventTypes:a,extractEvents:function(e,t,n,s){if("topMouseOver"===e&&(n.relatedTarget||n.fromElement))return null;if("topMouseOut"!==e&&"topMouseOver"!==e)return null;var u,l,c;if(s.window===s)u=s;else{var p=s.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if("topMouseOut"===e){l=t;var d=n.relatedTarget||n.toElement;c=d?o.getClosestInstanceFromNode(d):null}else l=null,c=t;if(l===c)return null;var f=null==l?u:o.getNodeFromInstance(l),h=null==c?u:o.getNodeFromInstance(c),m=i.getPooled(a.mouseLeave,l,n,s);m.type="mouseleave",m.target=f,m.relatedTarget=h;var v=i.getPooled(a.mouseEnter,c,n,s);return v.type="mouseenter",v.target=h,v.relatedTarget=f,r.accumulateEnterLeaveDispatches(m,v,l,c),[m,v]}};e.exports=s},function(e,t,n){"use strict";var r=n(16),o=r.injection.MUST_USE_PROPERTY,i=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,s=r.injection.HAS_POSITIVE_NUMERIC_VALUE,u=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,l={isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:i,allowTransparency:0,alt:0,as:0,async:i,autoComplete:0,autoPlay:i,capture:i,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:o|i,cite:0,classID:0,className:0,cols:s,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:i,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:i,defer:i,dir:0,disabled:i,download:u,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:i,formTarget:0,frameBorder:0,headers:0,height:0,hidden:i,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:i,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:o|i,muted:o|i,name:0,nonce:0,noValidate:i,open:i,optimum:0,pattern:0,placeholder:0,playsInline:i,poster:0,preload:0,profile:0,radioGroup:0,readOnly:i,referrerPolicy:0,rel:0,required:i,reversed:i,role:0,rows:s,rowSpan:a,sandbox:0,scope:0,scoped:i,scrolling:0,seamless:i,selected:o|i,shape:0,size:s,sizes:0,span:s,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:i,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");"number"!==e.type||!1===e.hasAttribute("value")?e.setAttribute("value",""+t):e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e&&e.setAttribute("value",""+t)}}};e.exports=l},function(e,t,n){"use strict";var r=n(37),o={processChildrenUpdates:n(126).dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(5),a=n(123),s=n(8),u=(n(0),{dangerouslyReplaceNodeWithMarkup:function(e,t){if(i.canUseDOM||r("56"),t||r("57"),"HTML"===e.nodeName&&r("58"),"string"==typeof t){var n=a(t,s)[0];e.parentNode.replaceChild(n,e)}else o.replaceChildWithTree(e,t)}});e.exports=u},function(e,t,n){"use strict";var r=n(5),o=n(124),i=n(125),a=n(0),s=r.canUseDOM?document.createElement("div"):null,u=/^\s*<(\w+)/;e.exports=function(e,t){var n=s;s||a(!1);var r=function(e){var t=e.match(u);return t&&t[1].toLowerCase()}(e),l=r&&i(r);if(l){n.innerHTML=l[1]+e+l[2];for(var c=l[0];c--;)n=n.lastChild}else n.innerHTML=e;var p=n.getElementsByTagName("script");p.length&&(t||a(!1),o(p).forEach(t));for(var d=Array.from(n.childNodes);n.lastChild;)n.removeChild(n.lastChild);return d}},function(e,t,n){"use strict";var r=n(0);e.exports=function(e){return function(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"length"in e&&!("setInterval"in e)&&"number"!=typeof e.nodeType&&(Array.isArray(e)||"callee"in e||"item"in e)}(e)?Array.isArray(e)?e.slice():function(e){var t=e.length;if((Array.isArray(e)||"object"!=typeof e&&"function"!=typeof e)&&r(!1),"number"!=typeof t&&r(!1),0===t||t-1 in e||r(!1),"function"==typeof e.callee&&r(!1),e.hasOwnProperty)try{return Array.prototype.slice.call(e)}catch(e){}for(var n=Array(t),o=0;o<t;o++)n[o]=e[o];return n}(e):[e]}},function(e,t,n){"use strict";var r=n(5),o=n(0),i=r.canUseDOM?document.createElement("div"):null,a={},s=[1,'<select multiple="true">',"</select>"],u=[1,"<table>","</table>"],l=[3,"<table><tbody><tr>","</tr></tbody></table>"],c=[1,'<svg xmlns="http://www.w3.org/2000/svg">',"</svg>"],p={"*":[1,"?<div>","</div>"],area:[1,"<map>","</map>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],legend:[1,"<fieldset>","</fieldset>"],param:[1,"<object>","</object>"],tr:[2,"<table><tbody>","</tbody></table>"],optgroup:s,option:s,caption:u,colgroup:u,tbody:u,tfoot:u,thead:u,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach(function(e){p[e]=c,a[e]=!0}),e.exports=function(e){return i||o(!1),p.hasOwnProperty(e)||(e="*"),a.hasOwnProperty(e)||(i.innerHTML="*"===e?"<link />":"<"+e+"></"+e+">",a[e]=!i.firstChild),a[e]?p[e]:null}},function(e,t,n){"use strict";var r=n(37),o=n(4),i={dangerouslyProcessChildrenUpdates:function(e,t){var n=o.getNodeFromInstance(e);r.processUpdates(n,t)}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(128),a=n(129),s=n(17),u=n(38),l=n(16),c=n(71),p=n(21),d=n(31),f=n(28),h=n(58),m=n(4),v=n(139),g=n(141),y=n(72),_=n(142),b=(n(6),n(143)),E=n(78),C=(n(8),n(27)),w=(n(0),n(35),n(43),n(65)),x=(n(47),n(2),h),T=p.deleteListener,k=m.getNodeFromInstance,S=f.listenTo,P=d.registrationNameModules,I={string:!0,number:!0},N="__html",A={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null},M=11;function O(e,t){t&&(V[e._tag]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&r("137",e._tag,e._currentElement._owner?" Check the render method of "+e._currentElement._owner.getName()+".":""),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&r("60"),"object"==typeof t.dangerouslySetInnerHTML&&N in t.dangerouslySetInnerHTML||r("61")),null!=t.style&&"object"!=typeof t.style&&r("62",function(e){if(e){var t=e._currentElement._owner||null;if(t){var n=t.getName();if(n)return" This DOM node was rendered by `"+n+"`."}}return""}(e)))}function R(e,t,n,r){if(!(r instanceof E)){0;var o=e._hostContainerInfo,i=o._node&&o._node.nodeType===M?o._node:o._ownerDocument;S(t,i),r.getReactMountReady().enqueue(L,{inst:e,registrationName:t,listener:n})}}function L(){p.putListener(this.inst,this.registrationName,this.listener)}function D(){v.postMountWrapper(this)}function U(){_.postMountWrapper(this)}function j(){g.postMountWrapper(this)}var F={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"};function B(){w.track(this)}function W(){this._rootNodeID||r("63");var e=k(this);switch(e||r("64"),this._tag){case"iframe":case"object":this._wrapperState.listeners=[f.trapBubbledEvent("topLoad","load",e)];break;case"video":case"audio":for(var t in this._wrapperState.listeners=[],F)F.hasOwnProperty(t)&&this._wrapperState.listeners.push(f.trapBubbledEvent(t,F[t],e));break;case"source":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e)];break;case"img":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e),f.trapBubbledEvent("topLoad","load",e)];break;case"form":this._wrapperState.listeners=[f.trapBubbledEvent("topReset","reset",e),f.trapBubbledEvent("topSubmit","submit",e)];break;case"input":case"select":case"textarea":this._wrapperState.listeners=[f.trapBubbledEvent("topInvalid","invalid",e)]}}function q(){y.postUpdateWrapper(this)}var z={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},H={listing:!0,pre:!0,textarea:!0},V=o({menuitem:!0},z),Y=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,K={},G={}.hasOwnProperty;function X(e,t){return e.indexOf("-")>=0||null!=t.is}var Q=1;function $(e){var t=e.type;!function(e){G.call(K,e)||(Y.test(e)||r("65",e),K[e]=!0)}(t),this._currentElement=e,this._tag=t.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null,this._flags=0}$.displayName="ReactDOMComponent",$.Mixin={mountComponent:function(e,t,n,r){this._rootNodeID=Q++,this._domID=n._idCounter++,this._hostParent=t,this._hostContainerInfo=n;var o,a,l,p=this._currentElement.props;switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},e.getReactMountReady().enqueue(W,this);break;case"input":v.mountWrapper(this,p,t),p=v.getHostProps(this,p),e.getReactMountReady().enqueue(B,this),e.getReactMountReady().enqueue(W,this);break;case"option":g.mountWrapper(this,p,t),p=g.getHostProps(this,p);break;case"select":y.mountWrapper(this,p,t),p=y.getHostProps(this,p),e.getReactMountReady().enqueue(W,this);break;case"textarea":_.mountWrapper(this,p,t),p=_.getHostProps(this,p),e.getReactMountReady().enqueue(B,this),e.getReactMountReady().enqueue(W,this)}if(O(this,p),null!=t?(o=t._namespaceURI,a=t._tag):n._tag&&(o=n._namespaceURI,a=n._tag),(null==o||o===u.svg&&"foreignobject"===a)&&(o=u.html),o===u.html&&("svg"===this._tag?o=u.svg:"math"===this._tag&&(o=u.mathml)),this._namespaceURI=o,e.useCreateElement){var d,f=n._ownerDocument;if(o===u.html)if("script"===this._tag){var h=f.createElement("div"),b=this._currentElement.type;h.innerHTML="<"+b+"></"+b+">",d=h.removeChild(h.firstChild)}else d=p.is?f.createElement(this._currentElement.type,p.is):f.createElement(this._currentElement.type);else d=f.createElementNS(o,this._currentElement.type);m.precacheNode(this,d),this._flags|=x.hasCachedChildNodes,this._hostParent||c.setAttributeForRoot(d),this._updateDOMProperties(null,p,e);var E=s(d);this._createInitialChildren(e,p,r,E),l=E}else{var C=this._createOpenTagMarkupAndPutListeners(e,p),w=this._createContentMarkup(e,p,r);l=!w&&z[this._tag]?C+"/>":C+">"+w+"</"+this._currentElement.type+">"}switch(this._tag){case"input":e.getReactMountReady().enqueue(D,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"textarea":e.getReactMountReady().enqueue(U,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"select":case"button":p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"option":e.getReactMountReady().enqueue(j,this)}return l},_createOpenTagMarkupAndPutListeners:function(e,t){var n="<"+this._currentElement.type;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];if(null!=i)if(P.hasOwnProperty(r))i&&R(this,r,i,e);else{"style"===r&&(i&&(i=this._previousStyleCopy=o({},t.style)),i=a.createMarkupForStyles(i,this));var s=null;null!=this._tag&&X(this._tag,t)?A.hasOwnProperty(r)||(s=c.createMarkupForCustomAttribute(r,i)):s=c.createMarkupForProperty(r,i),s&&(n+=" "+s)}}return e.renderToStaticMarkup?n:(this._hostParent||(n+=" "+c.createMarkupForRoot()),n+=" "+c.createMarkupForID(this._domID))},_createContentMarkup:function(e,t,n){var r="",o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&(r=o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)r=C(i);else if(null!=a){r=this.mountChildren(a,e,n).join("")}}return H[this._tag]&&"\n"===r.charAt(0)?"\n"+r:r},_createInitialChildren:function(e,t,n,r){var o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&s.queueHTML(r,o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)""!==i&&s.queueText(r,i);else if(null!=a)for(var u=this.mountChildren(a,e,n),l=0;l<u.length;l++)s.queueChild(r,u[l])}},receiveComponent:function(e,t,n){var r=this._currentElement;this._currentElement=e,this.updateComponent(t,r,e,n)},updateComponent:function(e,t,n,r){var o=t.props,i=this._currentElement.props;switch(this._tag){case"input":o=v.getHostProps(this,o),i=v.getHostProps(this,i);break;case"option":o=g.getHostProps(this,o),i=g.getHostProps(this,i);break;case"select":o=y.getHostProps(this,o),i=y.getHostProps(this,i);break;case"textarea":o=_.getHostProps(this,o),i=_.getHostProps(this,i)}switch(O(this,i),this._updateDOMProperties(o,i,e),this._updateDOMChildren(o,i,e,r),this._tag){case"input":v.updateWrapper(this),w.updateValueIfChanged(this);break;case"textarea":_.updateWrapper(this);break;case"select":e.getReactMountReady().enqueue(q,this)}},_updateDOMProperties:function(e,t,n){var r,i,s;for(r in e)if(!t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&null!=e[r])if("style"===r){var u=this._previousStyleCopy;for(i in u)u.hasOwnProperty(i)&&((s=s||{})[i]="");this._previousStyleCopy=null}else P.hasOwnProperty(r)?e[r]&&T(this,r):X(this._tag,e)?A.hasOwnProperty(r)||c.deleteValueForAttribute(k(this),r):(l.properties[r]||l.isCustomAttribute(r))&&c.deleteValueForProperty(k(this),r);for(r in t){var p=t[r],d="style"===r?this._previousStyleCopy:null!=e?e[r]:void 0;if(t.hasOwnProperty(r)&&p!==d&&(null!=p||null!=d))if("style"===r)if(p?p=this._previousStyleCopy=o({},p):this._previousStyleCopy=null,d){for(i in d)!d.hasOwnProperty(i)||p&&p.hasOwnProperty(i)||((s=s||{})[i]="");for(i in p)p.hasOwnProperty(i)&&d[i]!==p[i]&&((s=s||{})[i]=p[i])}else s=p;else if(P.hasOwnProperty(r))p?R(this,r,p,n):d&&T(this,r);else if(X(this._tag,t))A.hasOwnProperty(r)||c.setValueForAttribute(k(this),r,p);else if(l.properties[r]||l.isCustomAttribute(r)){var f=k(this);null!=p?c.setValueForProperty(f,r,p):c.deleteValueForProperty(f,r)}}s&&a.setValueForStyles(k(this),s,this)},_updateDOMChildren:function(e,t,n,r){var o=I[typeof e.children]?e.children:null,i=I[typeof t.children]?t.children:null,a=e.dangerouslySetInnerHTML&&e.dangerouslySetInnerHTML.__html,s=t.dangerouslySetInnerHTML&&t.dangerouslySetInnerHTML.__html,u=null!=o?null:e.children,l=null!=i?null:t.children,c=null!=o||null!=a,p=null!=i||null!=s;null!=u&&null==l?this.updateChildren(null,n,r):c&&!p&&this.updateTextContent(""),null!=i?o!==i&&this.updateTextContent(""+i):null!=s?a!==s&&this.updateMarkup(""+s):null!=l&&this.updateChildren(l,n,r)},getHostNode:function(){return k(this)},unmountComponent:function(e){switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":var t=this._wrapperState.listeners;if(t)for(var n=0;n<t.length;n++)t[n].remove();break;case"input":case"textarea":w.stopTracking(this);break;case"html":case"head":case"body":r("66",this._tag)}this.unmountChildren(e),m.uncacheNode(this),p.deleteAllListeners(this),this._rootNodeID=0,this._domID=0,this._wrapperState=null},getPublicInstance:function(){return k(this)}},o($.prototype,$.Mixin,b.Mixin),e.exports=$},function(e,t,n){"use strict";var r=n(4),o=n(69),i={focusDOMComponent:function(){o(r.getNodeFromInstance(this))}};e.exports=i},function(e,t,n){"use strict";var r=n(70),o=n(5),i=(n(6),n(130),n(132)),a=n(133),s=n(135),u=(n(2),s(function(e){return a(e)})),l=!1,c="cssFloat";if(o.canUseDOM){var p=document.createElement("div").style;try{p.font=""}catch(e){l=!0}void 0===document.documentElement.style.cssFloat&&(c="styleFloat")}var d={createMarkupForStyles:function(e,t){var n="";for(var r in e)if(e.hasOwnProperty(r)){var o=0===r.indexOf("--"),a=e[r];0,null!=a&&(n+=u(r)+":",n+=i(r,a,t,o)+";")}return n||null},setValueForStyles:function(e,t,n){var o=e.style;for(var a in t)if(t.hasOwnProperty(a)){var s=0===a.indexOf("--");0;var u=i(a,t[a],n,s);if("float"!==a&&"cssFloat"!==a||(a=c),s)o.setProperty(a,u);else if(u)o[a]=u;else{var p=l&&r.shorthandPropertyExpansions[a];if(p)for(var d in p)o[d]="";else o[a]=""}}}};e.exports=d},function(e,t,n){"use strict";var r=n(131),o=/^-ms-/;e.exports=function(e){return r(e.replace(o,"ms-"))}},function(e,t,n){"use strict";var r=/-(.)/g;e.exports=function(e){return e.replace(r,function(e,t){return t.toUpperCase()})}},function(e,t,n){"use strict";var r=n(70),o=(n(2),r.isUnitlessNumber);e.exports=function(e,t,n,r){if(null==t||"boolean"==typeof t||""===t)return"";var i=isNaN(t);return r||i||0===t||o.hasOwnProperty(e)&&o[e]?""+t:("string"==typeof t&&(t=t.trim()),t+"px")}},function(e,t,n){"use strict";var r=n(134),o=/^ms-/;e.exports=function(e){return r(e).replace(o,"-ms-")}},function(e,t,n){"use strict";var r=/([A-Z])/g;e.exports=function(e){return e.replace(r,"-$1").toLowerCase()}},function(e,t,n){"use strict";e.exports=function(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}},function(e,t,n){"use strict";var r=n(27);e.exports=function(e){return'"'+r(e)+'"'}},function(e,t,n){"use strict";var r=n(21);var o={handleTopLevel:function(e,t,n,o){!function(e){r.enqueueEvents(e),r.processEventQueue(!1)}(r.extractEvents(e,t,n,o))}};e.exports=o},function(e,t,n){"use strict";var r=n(5);function o(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}var i={animationend:o("Animation","AnimationEnd"),animationiteration:o("Animation","AnimationIteration"),animationstart:o("Animation","AnimationStart"),transitionend:o("Transition","TransitionEnd")},a={},s={};r.canUseDOM&&(s=document.createElement("div").style,"AnimationEvent"in window||(delete i.animationend.animation,delete i.animationiteration.animation,delete i.animationstart.animation),"TransitionEvent"in window||delete i.transitionend.transition),e.exports=function(e){if(a[e])return a[e];if(!i[e])return e;var t=i[e];for(var n in t)if(t.hasOwnProperty(n)&&n in s)return a[e]=t[n];return""}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(71),a=n(40),s=n(4),u=n(9);n(0),n(2);function l(){this._rootNodeID&&p.updateWrapper(this)}function c(e){return"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}var p={getHostProps:function(e,t){var n=a.getValue(t),r=a.getChecked(t);return o({type:void 0,step:void 0,min:void 0,max:void 0},t,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:e._wrapperState.initialValue,checked:null!=r?r:e._wrapperState.initialChecked,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:null!=t.value?t.value:n,listeners:null,onChange:d.bind(e),controlled:c(t)}},updateWrapper:function(e){var t=e._currentElement.props,n=t.checked;null!=n&&i.setValueForProperty(s.getNodeFromInstance(e),"checked",n||!1);var r=s.getNodeFromInstance(e),o=a.getValue(t);if(null!=o)if(0===o&&""===r.value)r.value="0";else if("number"===t.type){var u=parseFloat(r.value,10)||0;(o!=u||o==u&&r.value!=o)&&(r.value=""+o)}else r.value!==""+o&&(r.value=""+o);else null==t.value&&null!=t.defaultValue&&r.defaultValue!==""+t.defaultValue&&(r.defaultValue=""+t.defaultValue),null==t.checked&&null!=t.defaultChecked&&(r.defaultChecked=!!t.defaultChecked)},postMountWrapper:function(e){var t=e._currentElement.props,n=s.getNodeFromInstance(e);switch(t.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":n.value="",n.value=n.defaultValue;break;default:n.value=n.value}var r=n.name;""!==r&&(n.name=""),n.defaultChecked=!n.defaultChecked,n.defaultChecked=!n.defaultChecked,""!==r&&(n.name=r)}};function d(e){var t=this._currentElement.props,n=a.executeOnChange(t,e);u.asap(l,this);var o=t.name;if("radio"===t.type&&null!=o){for(var i=s.getNodeFromInstance(this),c=i;c.parentNode;)c=c.parentNode;for(var p=c.querySelectorAll("input[name="+JSON.stringify(""+o)+'][type="radio"]'),d=0;d<p.length;d++){var f=p[d];if(f!==i&&f.form===i.form){var h=s.getInstanceFromNode(f);h||r("90"),u.asap(l,h)}}}return n}e.exports=p},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(3),o=n(12),i=n(4),a=n(72),s=(n(2),!1);function u(e){var t="";return o.Children.forEach(e,function(e){null!=e&&("string"==typeof e||"number"==typeof e?t+=e:s||(s=!0))}),t}var l={mountWrapper:function(e,t,n){var r=null;if(null!=n){var o=n;"optgroup"===o._tag&&(o=o._hostParent),null!=o&&"select"===o._tag&&(r=a.getSelectValueContext(o))}var i,s=null;if(null!=r)if(i=null!=t.value?t.value+"":u(t.children),s=!1,Array.isArray(r)){for(var l=0;l<r.length;l++)if(""+r[l]===i){s=!0;break}}else s=""+r===i;e._wrapperState={selected:s}},postMountWrapper:function(e){var t=e._currentElement.props;null!=t.value&&i.getNodeFromInstance(e).setAttribute("value",t.value)},getHostProps:function(e,t){var n=r({selected:void 0,children:void 0},t);null!=e._wrapperState.selected&&(n.selected=e._wrapperState.selected);var o=u(t.children);return o&&(n.children=o),n}};e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(40),a=n(4),s=n(9);n(0),n(2);function u(){this._rootNodeID&&l.updateWrapper(this)}var l={getHostProps:function(e,t){return null!=t.dangerouslySetInnerHTML&&r("91"),o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=i.getValue(t),o=n;if(null==n){var a=t.defaultValue,s=t.children;null!=s&&(null!=a&&r("92"),Array.isArray(s)&&(s.length<=1||r("93"),s=s[0]),a=""+s),null==a&&(a=""),o=a}e._wrapperState={initialValue:""+o,listeners:null,onChange:c.bind(e)}},updateWrapper:function(e){var t=e._currentElement.props,n=a.getNodeFromInstance(e),r=i.getValue(t);if(null!=r){var o=""+r;o!==n.value&&(n.value=o),null==t.defaultValue&&(n.defaultValue=o)}null!=t.defaultValue&&(n.defaultValue=t.defaultValue)},postMountWrapper:function(e){var t=a.getNodeFromInstance(e),n=t.textContent;n===e._wrapperState.initialValue&&(t.value=n)}};function c(e){var t=this._currentElement.props,n=i.executeOnChange(t,e);return s.asap(u,this),n}e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(41),i=(n(23),n(6),n(10),n(14)),a=n(144),s=(n(8),n(149));n(0);function u(e,t){return t&&(e=e||[]).push(t),e}function l(e,t){o.processChildrenUpdates(e,t)}var c={Mixin:{_reconcilerInstantiateChildren:function(e,t,n){return a.instantiateChildren(e,t,n)},_reconcilerUpdateChildren:function(e,t,n,r,o,i){var u;return u=s(t,0),a.updateChildren(e,u,n,r,o,this,this._hostContainerInfo,i,0),u},mountChildren:function(e,t,n){var r=this._reconcilerInstantiateChildren(e,t,n);this._renderedChildren=r;var o=[],a=0;for(var s in r)if(r.hasOwnProperty(s)){var u=r[s];0;var l=i.mountComponent(u,t,this,this._hostContainerInfo,n,0);u._mountIndex=a++,o.push(l)}return o},updateTextContent:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"TEXT_CONTENT",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateMarkup:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"SET_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateChildren:function(e,t,n){this._updateChildren(e,t,n)},_updateChildren:function(e,t,n){var r=this._renderedChildren,o={},a=[],s=this._reconcilerUpdateChildren(r,e,a,o,t,n);if(s||r){var c,p=null,d=0,f=0,h=0,m=null;for(c in s)if(s.hasOwnProperty(c)){var v=r&&r[c],g=s[c];v===g?(p=u(p,this.moveChild(v,m,d,f)),f=Math.max(v._mountIndex,f),v._mountIndex=d):(v&&(f=Math.max(v._mountIndex,f)),p=u(p,this._mountChildAtIndex(g,a[h],m,d,t,n)),h++),d++,m=i.getHostNode(g)}for(c in o)o.hasOwnProperty(c)&&(p=u(p,this._unmountChild(r[c],o[c])));p&&l(this,p),this._renderedChildren=s}},unmountChildren:function(e){var t=this._renderedChildren;a.unmountChildren(t,e),this._renderedChildren=null},moveChild:function(e,t,n,r){if(e._mountIndex<r)return function(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._mountIndex,fromNode:i.getHostNode(e),toIndex:n,afterNode:t}}(e,t,n)},createChild:function(e,t,n){return function(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:n,afterNode:t}}(n,t,e._mountIndex)},removeChild:function(e,t){return function(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._mountIndex,fromNode:t,toIndex:null,afterNode:null}}(e,t)},_mountChildAtIndex:function(e,t,n,r,o,i){return e._mountIndex=r,this.createChild(e,n,t)},_unmountChild:function(e,t){var n=this.removeChild(e,t);return e._mountIndex=null,n}}};e.exports=c},function(e,t,n){"use strict";(function(t){var r=n(14),o=n(42),i=(n(45),n(44)),a=n(76);n(2);function s(e,t,n,r){var i=void 0===e[n];null!=t&&i&&(e[n]=o(t,!0))}void 0!==t&&Object({NODE_ENV:"production"});var u={instantiateChildren:function(e,t,n,r){if(null==e)return null;var o={};return a(e,s,o),o},updateChildren:function(e,t,n,a,s,u,l,c,p){if(t||e){var d,f;for(d in t)if(t.hasOwnProperty(d)){var h=(f=e&&e[d])&&f._currentElement,m=t[d];if(null!=f&&i(h,m))r.receiveComponent(f,m,s,c),t[d]=f;else{f&&(a[d]=r.getHostNode(f),r.unmountComponent(f,!1));var v=o(m,!0);t[d]=v;var g=r.mountComponent(v,s,u,l,c,p);n.push(g)}}for(d in e)!e.hasOwnProperty(d)||t&&t.hasOwnProperty(d)||(f=e[d],a[d]=r.getHostNode(f),r.unmountComponent(f,!1))}},unmountChildren:function(e,t){for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];r.unmountComponent(o,t)}}};e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(12),a=n(41),s=n(10),u=n(33),l=n(23),c=(n(6),n(73)),p=n(14),d=n(19),f=(n(0),n(43)),h=n(44),m=(n(2),0),v=1,g=2;function y(e){}function _(e,t){0}y.prototype.render=function(){var e=l.get(this)._currentElement.type,t=e(this.props,this.context,this.updater);return _(e,t),t};var b=1,E={construct:function(e){this._currentElement=e,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(e,t,n,o){this._context=o,this._mountOrder=b++,this._hostParent=t,this._hostContainerInfo=n;var a,s=this._currentElement.props,u=this._processContext(o),c=this._currentElement.type,p=e.getUpdateQueue(),f=function(e){return!(!e.prototype||!e.prototype.isReactComponent)}(c),h=this._constructComponent(f,s,u,p);f||null!=h&&null!=h.render?!function(e){return!(!e.prototype||!e.prototype.isPureReactComponent)}(c)?this._compositeType=m:this._compositeType=v:(a=h,_(),null===h||!1===h||i.isValidElement(h)||r("105",c.displayName||c.name||"Component"),h=new y(c),this._compositeType=g),h.props=s,h.context=u,h.refs=d,h.updater=p,this._instance=h,l.set(h,this);var E,C=h.state;return void 0===C&&(h.state=C=null),("object"!=typeof C||Array.isArray(C))&&r("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,E=h.unstable_handleError?this.performInitialMountWithErrorHandling(a,t,n,e,o):this.performInitialMount(a,t,n,e,o),h.componentDidMount&&e.getReactMountReady().enqueue(h.componentDidMount,h),E},_constructComponent:function(e,t,n,r){return this._constructComponentWithoutOwner(e,t,n,r)},_constructComponentWithoutOwner:function(e,t,n,r){var o=this._currentElement.type;return e?new o(t,n,r):o(t,n,r)},performInitialMountWithErrorHandling:function(e,t,n,r,o){var i,a=r.checkpoint();try{i=this.performInitialMount(e,t,n,r,o)}catch(s){r.rollback(a),this._instance.unstable_handleError(s),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),i=this.performInitialMount(e,t,n,r,o)}return i},performInitialMount:function(e,t,n,r,o){var i=this._instance;i.componentWillMount&&(i.componentWillMount(),this._pendingStateQueue&&(i.state=this._processPendingState(i.props,i.context))),void 0===e&&(e=this._renderValidatedComponent());var a=c.getType(e);this._renderedNodeType=a;var s=this._instantiateReactComponent(e,a!==c.EMPTY);return this._renderedComponent=s,p.mountComponent(s,r,t,n,this._processChildContext(o),0)},getHostNode:function(){return p.getHostNode(this._renderedComponent)},unmountComponent:function(e){if(this._renderedComponent){var t=this._instance;if(t.componentWillUnmount&&!t._calledComponentWillUnmount)if(t._calledComponentWillUnmount=!0,e){var n=this.getName()+".componentWillUnmount()";u.invokeGuardedCallback(n,t.componentWillUnmount.bind(t))}else t.componentWillUnmount();this._renderedComponent&&(p.unmountComponent(this._renderedComponent,e),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,l.remove(t)}},_maskContext:function(e){var t=this._currentElement.type.contextTypes;if(!t)return d;var n={};for(var r in t)n[r]=e[r];return n},_processContext:function(e){return this._maskContext(e)},_processChildContext:function(e){var t,n=this._currentElement.type,i=this._instance;if(i.getChildContext&&(t=i.getChildContext()),t){for(var a in"object"!=typeof n.childContextTypes&&r("107",this.getName()||"ReactCompositeComponent"),t)a in n.childContextTypes||r("108",this.getName()||"ReactCompositeComponent",a);return o({},e,t)}return e},_checkContextTypes:function(e,t,n){0},receiveComponent:function(e,t,n){var r=this._currentElement,o=this._context;this._pendingElement=null,this.updateComponent(t,r,e,o,n)},performUpdateIfNecessary:function(e){null!=this._pendingElement?p.receiveComponent(this,this._pendingElement,e,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(e,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(e,t,n,o,i){var a=this._instance;null==a&&r("136",this.getName()||"ReactCompositeComponent");var s,u=!1;this._context===i?s=a.context:(s=this._processContext(i),u=!0);var l=t.props,c=n.props;t!==n&&(u=!0),u&&a.componentWillReceiveProps&&a.componentWillReceiveProps(c,s);var p=this._processPendingState(c,s),d=!0;this._pendingForceUpdate||(a.shouldComponentUpdate?d=a.shouldComponentUpdate(c,p,s):this._compositeType===v&&(d=!f(l,c)||!f(a.state,p))),this._updateBatchNumber=null,d?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,c,p,s,e,i)):(this._currentElement=n,this._context=i,a.props=c,a.state=p,a.context=s)},_processPendingState:function(e,t){var n=this._instance,r=this._pendingStateQueue,i=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!r)return n.state;if(i&&1===r.length)return r[0];for(var a=o({},i?r[0]:n.state),s=i?1:0;s<r.length;s++){var u=r[s];o(a,"function"==typeof u?u.call(n,a,e,t):u)}return a},_performComponentUpdate:function(e,t,n,r,o,i){var a,s,u,l=this._instance,c=Boolean(l.componentDidUpdate);c&&(a=l.props,s=l.state,u=l.context),l.componentWillUpdate&&l.componentWillUpdate(t,n,r),this._currentElement=e,this._context=i,l.props=t,l.state=n,l.context=r,this._updateRenderedComponent(o,i),c&&o.getReactMountReady().enqueue(l.componentDidUpdate.bind(l,a,s,u),l)},_updateRenderedComponent:function(e,t){var n=this._renderedComponent,r=n._currentElement,o=this._renderValidatedComponent();if(h(r,o))p.receiveComponent(n,o,e,this._processChildContext(t));else{var i=p.getHostNode(n);p.unmountComponent(n,!1);var a=c.getType(o);this._renderedNodeType=a;var s=this._instantiateReactComponent(o,a!==c.EMPTY);this._renderedComponent=s;var u=p.mountComponent(s,e,this._hostParent,this._hostContainerInfo,this._processChildContext(t),0);this._replaceNodeWithMarkup(i,u,n)}},_replaceNodeWithMarkup:function(e,t,n){a.replaceNodeWithMarkup(e,t,n)},_renderValidatedComponentWithoutOwnerOrContext:function(){return this._instance.render()},_renderValidatedComponent:function(){var e;if(this._compositeType!==g){s.current=this;try{e=this._renderValidatedComponentWithoutOwnerOrContext()}finally{s.current=null}}else e=this._renderValidatedComponentWithoutOwnerOrContext();return null===e||!1===e||i.isValidElement(e)||r("109",this.getName()||"ReactCompositeComponent"),e},attachRef:function(e,t){var n=this.getPublicInstance();null==n&&r("110");var o=t.getPublicInstance();(n.refs===d?n.refs={}:n.refs)[e]=o},detachRef:function(e){delete this.getPublicInstance().refs[e]},getName:function(){var e=this._currentElement.type,t=this._instance&&this._instance.constructor;return e.displayName||t&&t.displayName||e.name||t&&t.name||null},getPublicInstance:function(){var e=this._instance;return this._compositeType===g?null:e},_instantiateReactComponent:null};e.exports=E},function(e,t,n){"use strict";var r=1;e.exports=function(){return r++}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator,o="@@iterator";e.exports=function(e){var t=e&&(r&&e[r]||e[o]);if("function"==typeof t)return t}},function(e,t,n){"use strict";(function(t){n(45);var r=n(76);n(2);function o(e,t,n,r){if(e&&"object"==typeof e){var o=e;0,void 0===o[n]&&null!=t&&(o[n]=t)}}void 0!==t&&Object({NODE_ENV:"production"}),e.exports=function(e,t){if(null==e)return e;var n={};return r(e,o,n),n}}).call(this,n(30))},function(e,t,n){"use strict";var r=n(46);n(2);var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.transaction=t}return e.prototype.isMounted=function(e){return!1},e.prototype.enqueueCallback=function(e,t,n){this.transaction.isInTransaction()&&r.enqueueCallback(e,t,n)},e.prototype.enqueueForceUpdate=function(e){this.transaction.isInTransaction()&&r.enqueueForceUpdate(e)},e.prototype.enqueueReplaceState=function(e,t){this.transaction.isInTransaction()&&r.enqueueReplaceState(e,t)},e.prototype.enqueueSetState=function(e,t){this.transaction.isInTransaction()&&r.enqueueSetState(e,t)},e}();e.exports=o},function(e,t,n){"use strict";var r=n(3),o=n(17),i=n(4),a=function(e){this._currentElement=null,this._hostNode=null,this._hostParent=null,this._hostContainerInfo=null,this._domID=0};r(a.prototype,{mountComponent:function(e,t,n,r){var a=n._idCounter++;this._domID=a,this._hostParent=t,this._hostContainerInfo=n;var s=" react-empty: "+this._domID+" ";if(e.useCreateElement){var u=n._ownerDocument.createComment(s);return i.precacheNode(this,u),o(u)}return e.renderToStaticMarkup?"":"\x3c!--"+s+"--\x3e"},receiveComponent:function(){},getHostNode:function(){return i.getNodeFromInstance(this)},unmountComponent:function(){i.uncacheNode(this)}}),e.exports=a},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){"_hostNode"in e||r("33"),"_hostNode"in t||r("33");for(var n=0,o=e;o;o=o._hostParent)n++;for(var i=0,a=t;a;a=a._hostParent)i++;for(;n-i>0;)e=e._hostParent,n--;for(;i-n>0;)t=t._hostParent,i--;for(var s=n;s--;){if(e===t)return e;e=e._hostParent,t=t._hostParent}return null}e.exports={isAncestor:function(e,t){"_hostNode"in e||r("35"),"_hostNode"in t||r("35");for(;t;){if(t===e)return!0;t=t._hostParent}return!1},getLowestCommonAncestor:o,getParentInstance:function(e){return"_hostNode"in e||r("36"),e._hostParent},traverseTwoPhase:function(e,t,n){for(var r,o=[];e;)o.push(e),e=e._hostParent;for(r=o.length;r-- >0;)t(o[r],"captured",n);for(r=0;r<o.length;r++)t(o[r],"bubbled",n)},traverseEnterLeave:function(e,t,n,r,i){for(var a=e&&t?o(e,t):null,s=[];e&&e!==a;)s.push(e),e=e._hostParent;for(var u,l=[];t&&t!==a;)l.push(t),t=t._hostParent;for(u=0;u<s.length;u++)n(s[u],"bubbled",r);for(u=l.length;u-- >0;)n(l[u],"captured",i)}}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(37),a=n(17),s=n(4),u=n(27),l=(n(0),n(47),function(e){this._currentElement=e,this._stringText=""+e,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});o(l.prototype,{mountComponent:function(e,t,n,r){var o=n._idCounter++,i=" react-text: "+o+" ";if(this._domID=o,this._hostParent=t,e.useCreateElement){var l=n._ownerDocument,c=l.createComment(i),p=l.createComment(" /react-text "),d=a(l.createDocumentFragment());return a.queueChild(d,a(c)),this._stringText&&a.queueChild(d,a(l.createTextNode(this._stringText))),a.queueChild(d,a(p)),s.precacheNode(this,c),this._closingComment=p,d}var f=u(this._stringText);return e.renderToStaticMarkup?f:"\x3c!--"+i+"--\x3e"+f+"\x3c!-- /react-text --\x3e"},receiveComponent:function(e,t){if(e!==this._currentElement){this._currentElement=e;var n=""+e;if(n!==this._stringText){this._stringText=n;var r=this.getHostNode();i.replaceDelimitedText(r[0],r[1],n)}}},getHostNode:function(){var e=this._commentNodes;if(e)return e;if(!this._closingComment)for(var t=s.getNodeFromInstance(this).nextSibling;;){if(null==t&&r("67",this._domID),8===t.nodeType&&" /react-text "===t.nodeValue){this._closingComment=t;break}t=t.nextSibling}return e=[this._hostNode,this._closingComment],this._commentNodes=e,e},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,s.uncacheNode(this)}}),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(80),i=n(5),a=n(13),s=n(4),u=n(9),l=n(34),c=n(155);function p(e){for(;e._hostParent;)e=e._hostParent;var t=s.getNodeFromInstance(e).parentNode;return s.getClosestInstanceFromNode(t)}function d(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]}function f(e){var t=l(e.nativeEvent),n=s.getClosestInstanceFromNode(t),r=n;do{e.ancestors.push(r),r=r&&p(r)}while(r);for(var o=0;o<e.ancestors.length;o++)n=e.ancestors[o],h._handleTopLevel(e.topLevelType,n,e.nativeEvent,l(e.nativeEvent))}r(d.prototype,{destructor:function(){this.topLevelType=null,this.nativeEvent=null,this.ancestors.length=0}}),a.addPoolingTo(d,a.twoArgumentPooler);var h={_enabled:!0,_handleTopLevel:null,WINDOW_HANDLE:i.canUseDOM?window:null,setHandleTopLevel:function(e){h._handleTopLevel=e},setEnabled:function(e){h._enabled=!!e},isEnabled:function(){return h._enabled},trapBubbledEvent:function(e,t,n){return n?o.listen(n,t,h.dispatchEvent.bind(null,e)):null},trapCapturedEvent:function(e,t,n){return n?o.capture(n,t,h.dispatchEvent.bind(null,e)):null},monitorScrollValue:function(e){var t=function(e){e(c(window))}.bind(null,e);o.listen(window,"scroll",t)},dispatchEvent:function(e,t){if(h._enabled){var n=d.getPooled(e,t);try{u.batchedUpdates(f,n)}finally{d.release(n)}}}};e.exports=h},function(e,t,n){"use strict";e.exports=function(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e.document.documentElement.scrollLeft,y:e.pageYOffset||e.document.documentElement.scrollTop}:{x:e.scrollLeft,y:e.scrollTop}}},function(e,t,n){"use strict";var r=n(16),o=n(21),i=n(32),a=n(41),s=n(74),u=n(28),l=n(75),c=n(9),p={Component:a.injection,DOMProperty:r.injection,EmptyComponent:s.injection,EventPluginHub:o.injection,EventPluginUtils:i.injection,EventEmitter:u.injection,HostComponent:l.injection,Updates:c.injection};e.exports=p},function(e,t,n){"use strict";var r=n(3),o=n(63),i=n(13),a=n(28),s=n(81),u=(n(6),n(24)),l=n(46),c=[{initialize:s.getSelectionInformation,close:s.restoreSelection},{initialize:function(){var e=a.isEnabled();return a.setEnabled(!1),e},close:function(e){a.setEnabled(e)}},{initialize:function(){this.reactMountReady.reset()},close:function(){this.reactMountReady.notifyAll()}}];function p(e){this.reinitializeTransaction(),this.renderToStaticMarkup=!1,this.reactMountReady=o.getPooled(null),this.useCreateElement=e}var d={getTransactionWrappers:function(){return c},getReactMountReady:function(){return this.reactMountReady},getUpdateQueue:function(){return l},checkpoint:function(){return this.reactMountReady.checkpoint()},rollback:function(e){this.reactMountReady.rollback(e)},destructor:function(){o.release(this.reactMountReady),this.reactMountReady=null}};r(p.prototype,u,d),i.addPoolingTo(p),e.exports=p},function(e,t,n){"use strict";var r=n(5),o=n(159),i=n(62);function a(e,t,n,r){return e===n&&t===r}var s=r.canUseDOM&&"selection"in document&&!("getSelection"in window),u={getOffsets:s?function(e){var t=document.selection.createRange(),n=t.text.length,r=t.duplicate();r.moveToElementText(e),r.setEndPoint("EndToStart",t);var o=r.text.length;return{start:o,end:o+n}}:function(e){var t=window.getSelection&&window.getSelection();if(!t||0===t.rangeCount)return null;var n=t.anchorNode,r=t.anchorOffset,o=t.focusNode,i=t.focusOffset,s=t.getRangeAt(0);try{s.startContainer.nodeType,s.endContainer.nodeType}catch(e){return null}var u=a(t.anchorNode,t.anchorOffset,t.focusNode,t.focusOffset)?0:s.toString().length,l=s.cloneRange();l.selectNodeContents(e),l.setEnd(s.startContainer,s.startOffset);var c=a(l.startContainer,l.startOffset,l.endContainer,l.endOffset)?0:l.toString().length,p=c+u,d=document.createRange();d.setStart(n,r),d.setEnd(o,i);var f=d.collapsed;return{start:f?p:c,end:f?c:p}},setOffsets:s?function(e,t){var n,r,o=document.selection.createRange().duplicate();void 0===t.end?r=n=t.start:t.start>t.end?(n=t.end,r=t.start):(n=t.start,r=t.end),o.moveToElementText(e),o.moveStart("character",n),o.setEndPoint("EndToStart",o),o.moveEnd("character",r-n),o.select()}:function(e,t){if(window.getSelection){var n=window.getSelection(),r=e[i()].length,a=Math.min(t.start,r),s=void 0===t.end?a:Math.min(t.end,r);if(!n.extend&&a>s){var u=s;s=a,a=u}var l=o(e,a),c=o(e,s);if(l&&c){var p=document.createRange();p.setStart(l.node,l.offset),n.removeAllRanges(),a>s?(n.addRange(p),n.extend(c.node,c.offset)):(p.setEnd(c.node,c.offset),n.addRange(p))}}}};e.exports=u},function(e,t,n){"use strict";function r(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function o(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}e.exports=function(e,t){for(var n=r(e),i=0,a=0;n;){if(3===n.nodeType){if(a=i+n.textContent.length,i<=t&&a>=t)return{node:n,offset:t-i};i=a}n=r(o(n))}}},function(e,t,n){"use strict";var r=n(161);e.exports=function e(t,n){return!(!t||!n)&&(t===n||!r(t)&&(r(n)?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}},function(e,t,n){"use strict";var r=n(162);e.exports=function(e){return r(e)&&3==e.nodeType}},function(e,t,n){"use strict";e.exports=function(e){var t=(e?e.ownerDocument||e:document).defaultView||window;return!(!e||!("function"==typeof t.Node?e instanceof t.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}},function(e,t,n){"use strict";var r="http://www.w3.org/1999/xlink",o="http://www.w3.org/XML/1998/namespace",i={accentHeight:"accent-height",accumulate:0,additive:0,alignmentBaseline:"alignment-baseline",allowReorder:"allowReorder",alphabetic:0,amplitude:0,arabicForm:"arabic-form",ascent:0,attributeName:"attributeName",attributeType:"attributeType",autoReverse:"autoReverse",azimuth:0,baseFrequency:"baseFrequency",baseProfile:"baseProfile",baselineShift:"baseline-shift",bbox:0,begin:0,bias:0,by:0,calcMode:"calcMode",capHeight:"cap-height",clip:0,clipPath:"clip-path",clipRule:"clip-rule",clipPathUnits:"clipPathUnits",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",contentScriptType:"contentScriptType",contentStyleType:"contentStyleType",cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:"diffuseConstant",direction:0,display:0,divisor:0,dominantBaseline:"dominant-baseline",dur:0,dx:0,dy:0,edgeMode:"edgeMode",elevation:0,enableBackground:"enable-background",end:0,exponent:0,externalResourcesRequired:"externalResourcesRequired",fill:0,fillOpacity:"fill-opacity",fillRule:"fill-rule",filter:0,filterRes:"filterRes",filterUnits:"filterUnits",floodColor:"flood-color",floodOpacity:"flood-opacity",focusable:0,fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",glyphRef:"glyphRef",gradientTransform:"gradientTransform",gradientUnits:"gradientUnits",hanging:0,horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",ideographic:0,imageRendering:"image-rendering",in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:"kernelMatrix",kernelUnitLength:"kernelUnitLength",kerning:0,keyPoints:"keyPoints",keySplines:"keySplines",keyTimes:"keyTimes",lengthAdjust:"lengthAdjust",letterSpacing:"letter-spacing",lightingColor:"lighting-color",limitingConeAngle:"limitingConeAngle",local:0,markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",markerHeight:"markerHeight",markerUnits:"markerUnits",markerWidth:"markerWidth",mask:0,maskContentUnits:"maskContentUnits",maskUnits:"maskUnits",mathematical:0,mode:0,numOctaves:"numOctaves",offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pathLength:"pathLength",patternContentUnits:"patternContentUnits",patternTransform:"patternTransform",patternUnits:"patternUnits",pointerEvents:"pointer-events",points:0,pointsAtX:"pointsAtX",pointsAtY:"pointsAtY",pointsAtZ:"pointsAtZ",preserveAlpha:"preserveAlpha",preserveAspectRatio:"preserveAspectRatio",primitiveUnits:"primitiveUnits",r:0,radius:0,refX:"refX",refY:"refY",renderingIntent:"rendering-intent",repeatCount:"repeatCount",repeatDur:"repeatDur",requiredExtensions:"requiredExtensions",requiredFeatures:"requiredFeatures",restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:"shape-rendering",slope:0,spacing:0,specularConstant:"specularConstant",specularExponent:"specularExponent",speed:0,spreadMethod:"spreadMethod",startOffset:"startOffset",stdDeviation:"stdDeviation",stemh:0,stemv:0,stitchTiles:"stitchTiles",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",string:0,stroke:0,strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",surfaceScale:"surfaceScale",systemLanguage:"systemLanguage",tableValues:"tableValues",targetX:"targetX",targetY:"targetY",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",textLength:"textLength",to:0,transform:0,u1:0,u2:0,underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicode:0,unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",values:0,vectorEffect:"vector-effect",version:0,vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",viewBox:"viewBox",viewTarget:"viewTarget",visibility:0,widths:0,wordSpacing:"word-spacing",writingMode:"writing-mode",x:0,xHeight:"x-height",x1:0,x2:0,xChannelSelector:"xChannelSelector",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlns:0,xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space",y:0,y1:0,y2:0,yChannelSelector:"yChannelSelector",z:0,zoomAndPan:"zoomAndPan"},a={Properties:{},DOMAttributeNamespaces:{xlinkActuate:r,xlinkArcrole:r,xlinkHref:r,xlinkRole:r,xlinkShow:r,xlinkTitle:r,xlinkType:r,xmlBase:o,xmlLang:o,xmlSpace:o},DOMAttributeNames:{}};Object.keys(i).forEach(function(e){a.Properties[e]=0,i[e]&&(a.DOMAttributeNames[e]=i[e])}),e.exports=a},function(e,t,n){"use strict";var r=n(20),o=n(5),i=n(4),a=n(81),s=n(11),u=n(82),l=n(66),c=n(43),p=o.canUseDOM&&"documentMode"in document&&document.documentMode<=11,d={select:{phasedRegistrationNames:{bubbled:"onSelect",captured:"onSelectCapture"},dependencies:["topBlur","topContextMenu","topFocus","topKeyDown","topKeyUp","topMouseDown","topMouseUp","topSelectionChange"]}},f=null,h=null,m=null,v=!1,g=!1;function y(e,t){if(v||null==f||f!==u())return null;var n=function(e){if("selectionStart"in e&&a.hasSelectionCapabilities(e))return{start:e.selectionStart,end:e.selectionEnd};if(window.getSelection){var t=window.getSelection();return{anchorNode:t.anchorNode,anchorOffset:t.anchorOffset,focusNode:t.focusNode,focusOffset:t.focusOffset}}if(document.selection){var n=document.selection.createRange();return{parentElement:n.parentElement(),text:n.text,top:n.boundingTop,left:n.boundingLeft}}}(f);if(!m||!c(m,n)){m=n;var o=s.getPooled(d.select,h,e,t);return o.type="select",o.target=f,r.accumulateTwoPhaseDispatches(o),o}return null}var _={eventTypes:d,extractEvents:function(e,t,n,r){if(!g)return null;var o=t?i.getNodeFromInstance(t):window;switch(e){case"topFocus":(l(o)||"true"===o.contentEditable)&&(f=o,h=t,m=null);break;case"topBlur":f=null,h=null,m=null;break;case"topMouseDown":v=!0;break;case"topContextMenu":case"topMouseUp":return v=!1,y(n,r);case"topSelectionChange":if(p)break;case"topKeyDown":case"topKeyUp":return y(n,r)}return null},didPutListener:function(e,t,n){"onSelect"===t&&(g=!0)}};e.exports=_},function(e,t,n){"use strict";var r=n(1),o=n(80),i=n(20),a=n(4),s=n(166),u=n(167),l=n(11),c=n(168),p=n(169),d=n(25),f=n(171),h=n(172),m=n(173),v=n(22),g=n(174),y=n(8),_=n(48),b=(n(0),{}),E={};["abort","animationEnd","animationIteration","animationStart","blur","canPlay","canPlayThrough","click","contextMenu","copy","cut","doubleClick","drag","dragEnd","dragEnter","dragExit","dragLeave","dragOver","dragStart","drop","durationChange","emptied","encrypted","ended","error","focus","input","invalid","keyDown","keyPress","keyUp","load","loadedData","loadedMetadata","loadStart","mouseDown","mouseMove","mouseOut","mouseOver","mouseUp","paste","pause","play","playing","progress","rateChange","reset","scroll","seeked","seeking","stalled","submit","suspend","timeUpdate","touchCancel","touchEnd","touchMove","touchStart","transitionEnd","volumeChange","waiting","wheel"].forEach(function(e){var t=e[0].toUpperCase()+e.slice(1),n="on"+t,r="top"+t,o={phasedRegistrationNames:{bubbled:n,captured:n+"Capture"},dependencies:[r]};b[e]=o,E[r]=o});var C={};function w(e){return"."+e._rootNodeID}function x(e){return"button"===e||"input"===e||"select"===e||"textarea"===e}var T={eventTypes:b,extractEvents:function(e,t,n,o){var a,y=E[e];if(!y)return null;switch(e){case"topAbort":case"topCanPlay":case"topCanPlayThrough":case"topDurationChange":case"topEmptied":case"topEncrypted":case"topEnded":case"topError":case"topInput":case"topInvalid":case"topLoad":case"topLoadedData":case"topLoadedMetadata":case"topLoadStart":case"topPause":case"topPlay":case"topPlaying":case"topProgress":case"topRateChange":case"topReset":case"topSeeked":case"topSeeking":case"topStalled":case"topSubmit":case"topSuspend":case"topTimeUpdate":case"topVolumeChange":case"topWaiting":a=l;break;case"topKeyPress":if(0===_(n))return null;case"topKeyDown":case"topKeyUp":a=p;break;case"topBlur":case"topFocus":a=c;break;case"topClick":if(2===n.button)return null;case"topDoubleClick":case"topMouseDown":case"topMouseMove":case"topMouseUp":case"topMouseOut":case"topMouseOver":case"topContextMenu":a=d;break;case"topDrag":case"topDragEnd":case"topDragEnter":case"topDragExit":case"topDragLeave":case"topDragOver":case"topDragStart":case"topDrop":a=f;break;case"topTouchCancel":case"topTouchEnd":case"topTouchMove":case"topTouchStart":a=h;break;case"topAnimationEnd":case"topAnimationIteration":case"topAnimationStart":a=s;break;case"topTransitionEnd":a=m;break;case"topScroll":a=v;break;case"topWheel":a=g;break;case"topCopy":case"topCut":case"topPaste":a=u}a||r("86",e);var b=a.getPooled(y,t,n,o);return i.accumulateTwoPhaseDispatches(b),b},didPutListener:function(e,t,n){if("onClick"===t&&!x(e._tag)){var r=w(e),i=a.getNodeFromInstance(e);C[r]||(C[r]=o.listen(i,"click",y))}},willDeleteListener:function(e,t){if("onClick"===t&&!x(e._tag)){var n=w(e);C[n].remove(),delete C[n]}}};e.exports=T},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{animationName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11),o={clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(22);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{relatedTarget:null}),e.exports=o},function(e,t,n){"use strict";var r=n(22),o=n(48),i={key:n(170),location:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,repeat:null,locale:null,getModifierState:n(36),charCode:function(e){return"keypress"===e.type?o(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?o(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r=n(48),o={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},i={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"};e.exports=function(e){if(e.key){var t=o[e.key]||e.key;if("Unidentified"!==t)return t}if("keypress"===e.type){var n=r(e);return 13===n?"Enter":String.fromCharCode(n)}return"keydown"===e.type||"keyup"===e.type?i[e.keyCode]||"Unidentified":""}},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{dataTransfer:null}),e.exports=o},function(e,t,n){"use strict";var r=n(22),o={touches:null,targetTouches:null,changedTouches:null,altKey:null,metaKey:null,ctrlKey:null,shiftKey:null,getModifierState:n(36)};function i(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(i,o),e.exports=i},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{propertyName:null,elapsedTime:null,pseudoElement:null}),e.exports=o},function(e,t,n){"use strict";var r=n(25);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:null,deltaMode:null}),e.exports=o},function(e,t,n){"use strict";e.exports={useCreateElement:!0,useFiber:!1}},function(e,t,n){"use strict";var r=65521;e.exports=function(e){for(var t=1,n=0,o=0,i=e.length,a=-4&i;o<a;){for(var s=Math.min(o+4096,a);o<s;o+=4)n+=(t+=e.charCodeAt(o))+(t+=e.charCodeAt(o+1))+(t+=e.charCodeAt(o+2))+(t+=e.charCodeAt(o+3));t%=r,n%=r}for(;o<i;o++)n+=t+=e.charCodeAt(o);return(t%=r)|(n%=r)<<16}},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(4)),i=n(23),a=n(87);n(0),n(2);e.exports=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=i.get(e);if(t)return(t=a(t))?o.getNodeFromInstance(t):null;"function"==typeof e.render?r("44"):r("45",Object.keys(e))}},function(e,t,n){"use strict";var r=n(83);e.exports=r.renderSubtreeIntoContainer},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),o=l(n(29)),i=(l(n(93)),l(n(180)),l(n(184))),a=l(n(189)),s=l(n(209)),u=l(n(52));function l(e){return e&&e.__esModule?e:{default:e}}function c(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}return Array.from(e)}var p=n(210),d=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.results=n.props.results?n.props.results:[],n.state={results:n.results},n.service=n.props.service,n.orderby=n.props.orderby,n.page=n.props.page,n.is_search=!1,n.search_term="",n.total_results=0,n.orientation="",n.isLoading=!1,n.isDone=!1,n.errorMsg="",n.msnry="",n.tooltipInterval="",n.editor=n.props.editor?n.props.editor:"classic",n.is_block_editor="gutenberg"===n.props.editor,n.is_media_router="media-router"===n.props.editor,n.SetFeaturedImage=n.props.SetFeaturedImage?n.props.SetFeaturedImage.bind(n):"",n.InsertImage=n.props.InsertImage?n.props.InsertImage.bind(n):"",n.is_block_editor?(n.container=document.querySelector("body"),n.container.classList.add("loading"),n.wrapper=document.querySelector("body")):(n.container=n.props.container.closest(".instant-img-container"),n.wrapper=n.props.container.closest(".instant-images-wrapper"),n.container.classList.add("loading")),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,o.default.Component),r(t,[{key:"test",value:function(){var e=this,t=this.container.querySelector(".error-messaging"),n=instant_img_localize.root+"instant-images/test/",r=new XMLHttpRequest;r.open("POST",n,!0),r.setRequestHeader("X-WP-Nonce",instant_img_localize.nonce),r.setRequestHeader("Content-Type","application/json"),r.send(),r.onload=function(){r.status>=200&&r.status<400?JSON.parse(r.response).success||e.renderTestError(t):e.renderTestError(t)},r.onerror=function(t){console.log(t),e.renderTestError(errorTarget)}}},{key:"renderTestError",value:function(e){e.classList.add("active"),e.innerHTML=instant_img_localize.error_restapi+instant_img_localize.error_restapi_desc}},{key:"search",value:function(e){e.preventDefault();var t=this.container.querySelector("#photo-search"),n=t.value;n.length>2?(t.classList.add("searching"),this.container.classList.add("loading"),this.search_term=n,this.is_search=!0,this.doSearch(this.search_term)):t.focus()}},{key:"setOrientation",value:function(e,t){if(t&&t.target){var n=t.target;if(n.classList.contains("active"))n.classList.remove("active"),this.orientation="";else{var r=n.parentNode.querySelectorAll("li");[].concat(c(r)).forEach(function(e){return e.classList.remove("active")}),n.classList.add("active"),this.orientation=e}""!==this.search_term&&this.doSearch(this.search_term)}}},{key:"hasOrientation",value:function(){return""!==this.orientation}},{key:"clearOrientation",value:function(){var e=this.container.querySelectorAll(".orientation-list li");[].concat(c(e)).forEach(function(e){return e.classList.remove("active")}),this.orientation=""}},{key:"doSearch",value:function(e){var t=this,n="term";this.page=1;var r=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term;this.hasOrientation()&&(r=r+"&orientation="+this.orientation),"id:"===e.substring(0,3)&&(n="id",e=e.replace("id:",""),r=u.default.photo_api+"/"+e+u.default.app_id);var o=this.container.querySelector("#photo-search");fetch(r).then(function(e){return e.json()}).then(function(e){if("term"===n&&(t.total_results=e.total,t.checkTotalResults(e.results.length),t.results=e.results,t.setState({results:t.results})),"id"===n&&e){var r=[];e.errors?(t.total_results=0,t.checkTotalResults("0")):(r.push(e),t.total_results=1,t.checkTotalResults("1")),t.results=r,t.setState({results:t.results})}o.classList.remove("searching")}).catch(function(e){console.log(e),t.isLoading=!1})}},{key:"clearSearch",value:function(){this.container.querySelector("#photo-search").value="",this.total_results=0,this.is_search=!1,this.search_term="",this.clearOrientation()}},{key:"getPhotos",value:function(){var e=this;this.page=parseInt(this.page)+1,this.container.classList.add("loading"),this.isLoading=!0;var t=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;this.is_search&&(t=""+u.default.search_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&query="+this.search_term,this.hasOrientation()&&(t=t+"&orientation="+this.orientation)),fetch(t).then(function(e){return e.json()}).then(function(t){e.is_search&&(t=t.results),t.map(function(t){e.results.push(t)}),e.checkTotalResults(t.length),e.setState({results:e.results})}).catch(function(t){console.log(t),e.isLoading=!1})}},{key:"togglePhotoList",value:function(e,t){var n=t.target;if(n.classList.contains("active"))return!1;n.classList.add("loading"),this.isLoading=!0;var r=this;this.page=1,this.orderby=e,this.results=[],this.clearSearch();var o=""+u.default.photo_api+u.default.app_id+u.default.posts_per_page+"&page="+this.page+"&order_by="+this.orderby;fetch(o).then(function(e){return e.json()}).then(function(e){r.checkTotalResults(e.length),r.results=e,r.setState({results:e}),n.classList.remove("loading")}).catch(function(e){console.log(e),r.isLoading=!1})}},{key:"renderLayout",value:function(){if(this.is_block_editor)return!1;var e=this,t=e.container.querySelector(".photo-target");p(t,function(){e.msnry=new i.default(t,{itemSelector:".photo"}),[].concat(c(e.container.querySelectorAll(".photo-target .photo"))).forEach(function(e){return e.classList.add("in-view")})})}},{key:"onScroll",value:function(){window.innerHeight+window.pageYOffset>=document.body.scrollHeight-400&&!this.isLoading&&!this.isDone&&this.getPhotos()}},{key:"checkTotalResults",value:function(e){this.isDone=0==e}},{key:"setActiveState",value:function(){var e=this;([].concat(c(this.container.querySelectorAll(".control-nav button"))).forEach(function(e){return e.classList.remove("active")}),this.is_search)||this.container.querySelector(".control-nav li button."+this.orderby).classList.add("active");setTimeout(function(){e.isLoading=!1,e.container.classList.remove("loading")},1e3)}},{key:"showTooltip",value:function(e){var t=this,n=e.currentTarget,r=n.getBoundingClientRect(),o=Math.round(r.left),i=Math.round(r.top),a=this.container.querySelector("#tooltip");a.classList.remove("over"),n.classList.contains("tooltip--above")?a.classList.add("above"):a.classList.remove("above");var s=n.dataset.title;this.tooltipInterval=setInterval(function(){clearInterval(t.tooltipInterval),a.innerHTML=s,o=o-a.offsetWidth+n.offsetWidth+5,a.style.left=o+"px",a.style.top=i+"px",setTimeout(function(){a.classList.add("over")},150)},500)}},{key:"hideTooltip",value:function(e){clearInterval(this.tooltipInterval),this.container.querySelector("#tooltip").classList.remove("over")}},{key:"componentDidUpdate",value:function(){this.renderLayout(),this.setActiveState()}},{key:"componentDidMount",value:function(){var e=this;this.renderLayout(),this.setActiveState(),this.test(),this.container.classList.remove("loading"),this.wrapper.classList.add("loaded"),this.is_block_editor||this.is_media_router?(this.page=0,this.getPhotos()):window.addEventListener("scroll",function(){return e.onScroll()})}},{key:"render",value:function(){var e=this,t=this.is_search?{display:"flex"}:{display:"none"};return o.default.createElement("div",{id:"photo-listing",className:this.service},o.default.createElement("ul",{className:"control-nav"},o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"latest",onClick:function(t){return e.togglePhotoList("latest",t)}},instant_img_localize.latest)),o.default.createElement("li",{id:"nav-target"},o.default.createElement("button",{type:"button",className:"popular",onClick:function(t){return e.togglePhotoList("popular",t)}},instant_img_localize.popular)),o.default.createElement("li",null,o.default.createElement("button",{type:"button",className:"oldest",onClick:function(t){return e.togglePhotoList("oldest",t)}},instant_img_localize.oldest)),o.default.createElement("li",{className:"search-field",id:"search-bar"},o.default.createElement("form",{onSubmit:function(t){return e.search(t)},autoComplete:"off"},o.default.createElement("input",{type:"search",id:"photo-search",placeholder:instant_img_localize.search}),o.default.createElement("button",{type:"submit",id:"photo-search-submit"},o.default.createElement("i",{className:"fa fa-search"})),o.default.createElement(s.default,{container:this.container,isSearch:this.is_search,total:this.total_results,title:this.total_results+" "+instant_img_localize.search_results+" "+this.search_term})))),o.default.createElement("div",{className:"error-messaging"}),o.default.createElement("div",{className:"orientation-list",style:t},o.default.createElement("span",null,o.default.createElement("i",{className:"fa fa-filter","aria-hidden":"true"})," ",instant_img_localize.orientation,":"),o.default.createElement("ul",null,o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("landscape",t)},onKeyPress:function(t){return e.setOrientation("landscape",t)}},instant_img_localize.landscape),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("portrait",t)},onKeyPress:function(t){return e.setOrientation("portrait",t)}},instant_img_localize.portrait),o.default.createElement("li",{tabIndex:"0",onClick:function(t){return e.setOrientation("squarish",t)},onKeyPress:function(t){return e.setOrientation("squarish",t)}},instant_img_localize.squarish))),o.default.createElement("div",{id:"photos",className:"photo-target"},this.state.results.map(function(t,n){return o.default.createElement(a.default,{result:t,key:t.id+n,editor:e.editor,mediaRouter:e.is_media_router,blockEditor:e.is_block_editor,SetFeaturedImage:e.SetFeaturedImage,InsertImage:e.InsertImage,showTooltip:e.showTooltip,hideTooltip:e.hideTooltip})})),o.default.createElement("div",{className:0==this.total_results&&!0===this.is_search?"no-results show":"no-results",title:this.props.title},o.default.createElement("h3",null,instant_img_localize.no_results," "),o.default.createElement("p",null,instant_img_localize.no_results_desc," ")),o.default.createElement("div",{className:"loading-block"}),o.default.createElement("div",{className:"load-more-wrap"},o.default.createElement("button",{type:"button",className:"button",onClick:function(){return e.getPhotos()}},instant_img_localize.load_more)),o.default.createElement("div",{id:"tooltip"},"Meow"))}}]),t}();t.default=d},function(e,t,n){"use strict";e.exports=n(181)},function(e,t,n){"use strict";var r=n(59),o=n(182),i=n(86);r.inject();var a={renderToString:o.renderToString,renderToStaticMarkup:o.renderToStaticMarkup,version:i};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=n(12),i=n(84),a=n(79),s=(n(6),n(85)),u=n(14),l=n(183),c=n(78),p=n(9),d=n(19),f=n(42),h=(n(0),0);function m(e,t){var n;try{return p.injection.injectBatchingStrategy(l),n=c.getPooled(t),h++,n.perform(function(){var r=f(e,!0),o=u.mountComponent(r,n,null,i(),d,0);return t||(o=s.addChecksumToMarkup(o)),o},null)}finally{h--,c.release(n),h||p.injection.injectBatchingStrategy(a)}}e.exports={renderToString:function(e){return o.isValidElement(e)||r("46"),m(e,!1)},renderToStaticMarkup:function(e){return o.isValidElement(e)||r("47"),m(e,!0)}}},function(e,t,n){"use strict";e.exports={isBatchingUpdates:!1,batchedUpdates:function(e){}}},function(e,t,n){var r,o,i;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=222)}([function(e,t,n){"use strict";e.exports=function(e,t,n,r,o,i,a,s){if(!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,s],c=0;(u=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw u.framesToPop=1,u}}},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";var r=n(9);e.exports=r},function(e,t,n){"use strict";
|
2 |
/*
|
3 |
object-assign
|
4 |
(c) Sindre Sorhus
|
5 |
@license MIT
|
6 |
+
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,s,u=a(e),l=1;l<arguments.length;l++){for(var c in n=Object(arguments[l]))o.call(n,c)&&(u[c]=n[c]);if(r){s=r(n);for(var p=0;p<s.length;p++)i.call(n,s[p])&&(u[s[p]]=n[s[p]])}}return u}},function(e,t,n){"use strict";var r=n(1),o=n(16),i=n(57),a=(n(0),o.ID_ATTRIBUTE_NAME),s=i,u="__reactInternalInstance$"+Math.random().toString(36).slice(2);function l(e,t){return 1===e.nodeType&&e.getAttribute(a)===String(t)||8===e.nodeType&&e.nodeValue===" react-text: "+t+" "||8===e.nodeType&&e.nodeValue===" react-empty: "+t+" "}function c(e){for(var t;t=e._renderedComponent;)e=t;return e}function p(e,t){var n=c(e);n._hostNode=t,t[u]=n}function d(e,t){if(!(e._flags&s.hasCachedChildNodes)){var n=e._renderedChildren,o=t.firstChild;e:for(var i in n)if(n.hasOwnProperty(i)){var a=n[i],u=c(a)._domID;if(0!==u){for(;null!==o;o=o.nextSibling)if(l(o,u)){p(a,o);continue e}r("32",u)}}e._flags|=s.hasCachedChildNodes}}function f(e){if(e[u])return e[u];for(var t,n,r=[];!e[u];){if(r.push(e),!e.parentNode)return null;e=e.parentNode}for(;e&&(n=e[u]);e=r.pop())t=n,r.length&&d(n,e);return t}var h={getClosestInstanceFromNode:f,getInstanceFromNode:function(e){var t=f(e);return null!=t&&t._hostNode===e?t:null},getNodeFromInstance:function(e){if(void 0===e._hostNode&&r("33"),e._hostNode)return e._hostNode;for(var t=[];!e._hostNode;)t.push(e),e._hostParent||r("34"),e=e._hostParent;for(;t.length;e=t.pop())d(e,e._hostNode);return e._hostNode},precacheChildNodes:d,precacheNode:p,uncacheNode:function(e){var t=e._hostNode;t&&(delete t[u],e._hostNode=null)}};e.exports=h},function(e,t,n){"use strict";var r=!("undefined"==typeof window||!window.document||!window.document.createElement),o={canUseDOM:r,canUseWorkers:"undefined"!=typeof Worker,canUseEventListeners:r&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:r&&!!window.screen,isInWorker:!r};e.exports=o},function(e,t,n){"use strict";var r=n(87),o=Object.prototype.toString;function i(e){return"[object Array]"===o.call(e)}function a(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function u(e){if("[object Object]"!==o.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function l(e){return"[object Function]"===o.call(e)}function c(e,t){if(null!=e)if("object"!=typeof e&&(e=[e]),i(e))for(var n=0,r=e.length;n<r;n++)t.call(null,e[n],n,e);else for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&t.call(null,e[o],o,e)}e.exports={isArray:i,isArrayBuffer:function(e){return"[object ArrayBuffer]"===o.call(e)},isBuffer:function(e){return null!==e&&!a(e)&&null!==e.constructor&&!a(e.constructor)&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)},isFormData:function(e){return"undefined"!=typeof FormData&&e instanceof FormData},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:s,isPlainObject:u,isUndefined:a,isDate:function(e){return"[object Date]"===o.call(e)},isFile:function(e){return"[object File]"===o.call(e)},isBlob:function(e){return"[object Blob]"===o.call(e)},isFunction:l,isStream:function(e){return s(e)&&l(e.pipe)},isURLSearchParams:function(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)},forEach:c,merge:function e(){var t={};function n(n,r){u(t[r])&&u(n)?t[r]=e(t[r],n):u(n)?t[r]=e({},n):i(n)?t[r]=n.slice():t[r]=n}for(var r=0,o=arguments.length;r<o;r++)c(arguments[r],n);return t},extend:function(e,t,n){return c(t,(function(t,o){e[o]=n&&"function"==typeof t?r(t,n):t})),e},trim:function(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e}}},function(e,t,n){"use strict";e.exports={debugTool:null}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(62),a=n(13),s=n(63),u=n(14),l=n(24),c=n(0),p=[],d=0,f=i.getPooled(),h=!1,m=null;function v(){C.ReactReconcileTransaction&&m||r("123")}var g=[{initialize:function(){this.dirtyComponentsLength=p.length},close:function(){this.dirtyComponentsLength!==p.length?(p.splice(0,this.dirtyComponentsLength),E()):p.length=0}},{initialize:function(){this.callbackQueue.reset()},close:function(){this.callbackQueue.notifyAll()}}];function y(){this.reinitializeTransaction(),this.dirtyComponentsLength=null,this.callbackQueue=i.getPooled(),this.reconcileTransaction=C.ReactReconcileTransaction.getPooled(!0)}function _(e,t){return e._mountOrder-t._mountOrder}function b(e){var t=e.dirtyComponentsLength;t!==p.length&&r("124",t,p.length),p.sort(_),d++;for(var n=0;n<t;n++){var o,i=p[n],a=i._pendingCallbacks;if(i._pendingCallbacks=null,s.logTopLevelRenders){var l=i;i._currentElement.type.isReactTopLevelWrapper&&(l=i._renderedComponent),o="React update: "+l.getName(),console.time(o)}if(u.performUpdateIfNecessary(i,e.reconcileTransaction,d),o&&console.timeEnd(o),a)for(var c=0;c<a.length;c++)e.callbackQueue.enqueue(a[c],i.getPublicInstance())}}o(y.prototype,l,{getTransactionWrappers:function(){return g},destructor:function(){this.dirtyComponentsLength=null,i.release(this.callbackQueue),this.callbackQueue=null,C.ReactReconcileTransaction.release(this.reconcileTransaction),this.reconcileTransaction=null},perform:function(e,t,n){return l.perform.call(this,this.reconcileTransaction.perform,this.reconcileTransaction,e,t,n)}}),a.addPoolingTo(y);var E=function(){for(;p.length||h;){if(p.length){var e=y.getPooled();e.perform(b,null,e),y.release(e)}if(h){h=!1;var t=f;f=i.getPooled(),t.notifyAll(),i.release(t)}}};var C={ReactReconcileTransaction:null,batchedUpdates:function(e,t,n,r,o,i){return v(),m.batchedUpdates(e,t,n,r,o,i)},enqueueUpdate:function e(t){v(),m.isBatchingUpdates?(p.push(t),null==t._updateBatchNumber&&(t._updateBatchNumber=d+1)):m.batchedUpdates(e,t)},flushBatchedUpdates:E,injection:{injectReconcileTransaction:function(e){e||r("126"),C.ReactReconcileTransaction=e},injectBatchingStrategy:function(e){e||r("127"),"function"!=typeof e.batchedUpdates&&r("128"),"boolean"!=typeof e.isBatchingUpdates&&r("129"),m=e}},asap:function(e,t){c(m.isBatchingUpdates,"ReactUpdates.asap: Can't enqueue an asap callback in a context whereupdates are not being batched."),f.enqueue(e,t),h=!0}};e.exports=C},function(e,t,n){"use strict";function r(e){return function(){return e}}var o=function(){};o.thatReturns=r,o.thatReturnsFalse=r(!1),o.thatReturnsTrue=r(!0),o.thatReturnsNull=r(null),o.thatReturnsThis=function(){return this},o.thatReturnsArgument=function(e){return e},e.exports=o},function(e,t,n){"use strict";e.exports={current:null}},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(9),a=(n(2),["dispatchConfig","_targetInst","nativeEvent","isDefaultPrevented","isPropagationStopped","_dispatchListeners","_dispatchInstances"]),s={type:null,target:null,currentTarget:i.thatReturnsNull,eventPhase:null,bubbles:null,cancelable:null,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:null,isTrusted:null};function u(e,t,n,r){this.dispatchConfig=e,this._targetInst=t,this.nativeEvent=n;var o=this.constructor.Interface;for(var a in o)if(o.hasOwnProperty(a)){0;var s=o[a];s?this[a]=s(n):"target"===a?this.target=r:this[a]=n[a]}var u=null!=n.defaultPrevented?n.defaultPrevented:!1===n.returnValue;return this.isDefaultPrevented=u?i.thatReturnsTrue:i.thatReturnsFalse,this.isPropagationStopped=i.thatReturnsFalse,this}r(u.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=i.thatReturnsTrue)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=i.thatReturnsTrue)},persist:function(){this.isPersistent=i.thatReturnsTrue},isPersistent:i.thatReturnsFalse,destructor:function(){var e=this.constructor.Interface;for(var t in e)this[t]=null;for(var n=0;n<a.length;n++)this[a[n]]=null}}),u.Interface=s,u.augmentClass=function(e,t){var n=function(){};n.prototype=this.prototype;var i=new n;r(i,e.prototype),e.prototype=i,e.prototype.constructor=e,e.Interface=r({},this.Interface,t),e.augmentClass=this.augmentClass,o.addPoolingTo(e,o.fourArgumentPooler)},o.addPoolingTo(u,o.fourArgumentPooler),e.exports=u},function(e,t,n){"use strict";var r=n(3),o=n(52),i=n(97),a=n(102),s=n(15),u=n(103),l=n(109),c=n(110),p=n(112),d=s.createElement,f=s.createFactory,h=s.cloneElement,m=r,v={Children:{map:i.map,forEach:i.forEach,count:i.count,toArray:i.toArray,only:p},Component:o.Component,PureComponent:o.PureComponent,createElement:d,cloneElement:h,isValidElement:s.isValidElement,PropTypes:u,createClass:c,createFactory:f,createMixin:function(e){return e},DOM:a,version:l,__spread:m};e.exports=v},function(e,t,n){"use strict";var r=n(1),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(120);n(7),n(2);function o(){r.attachRefs(this,this._currentElement)}var i={mountComponent:function(e,t,n,r,i,a){var s=e.mountComponent(t,n,r,i,a);return e._currentElement&&null!=e._currentElement.ref&&t.getReactMountReady().enqueue(o,e),s},getHostNode:function(e){return e.getHostNode()},unmountComponent:function(e,t){r.detachRefs(e,e._currentElement),e.unmountComponent(t)},receiveComponent:function(e,t,n,i){var a=e._currentElement;if(t!==a||i!==e._context){0;var s=r.shouldUpdateRefs(a,t);s&&r.detachRefs(e,a),e.receiveComponent(t,n,i),s&&e._currentElement&&null!=e._currentElement.ref&&n.getReactMountReady().enqueue(o,e)}},performUpdateIfNecessary:function(e,t,n){e._updateBatchNumber===n&&e.performUpdateIfNecessary(t)}};e.exports=i},function(e,t,n){"use strict";var r=n(3),o=n(10),i=(n(2),n(54),Object.prototype.hasOwnProperty),a=n(55),s={key:!0,ref:!0,__self:!0,__source:!0};function u(e){return void 0!==e.ref}function l(e){return void 0!==e.key}var c=function(e,t,n,r,o,i,s){return{$$typeof:a,type:e,key:t,ref:n,props:s,_owner:i}};c.createElement=function(e,t,n){var r,a={},p=null,d=null;if(null!=t)for(r in u(t)&&(d=t.ref),l(t)&&(p=""+t.key),void 0===t.__self?null:t.__self,void 0===t.__source?null:t.__source,t)i.call(t,r)&&!s.hasOwnProperty(r)&&(a[r]=t[r]);var f=arguments.length-2;if(1===f)a.children=n;else if(f>1){for(var h=Array(f),m=0;m<f;m++)h[m]=arguments[m+2];0,a.children=h}if(e&&e.defaultProps){var v=e.defaultProps;for(r in v)void 0===a[r]&&(a[r]=v[r])}return c(e,p,d,0,0,o.current,a)},c.createFactory=function(e){var t=c.createElement.bind(null,e);return t.type=e,t},c.cloneAndReplaceKey=function(e,t){return c(e.type,t,e.ref,e._self,e._source,e._owner,e.props)},c.cloneElement=function(e,t,n){var a,p,d=r({},e.props),f=e.key,h=e.ref,m=(e._self,e._source,e._owner);if(null!=t)for(a in u(t)&&(h=t.ref,m=o.current),l(t)&&(f=""+t.key),e.type&&e.type.defaultProps&&(p=e.type.defaultProps),t)i.call(t,a)&&!s.hasOwnProperty(a)&&(void 0===t[a]&&void 0!==p?d[a]=p[a]:d[a]=t[a]);var v=arguments.length-2;if(1===v)d.children=n;else if(v>1){for(var g=Array(v),y=0;y<v;y++)g[y]=arguments[y+2];d.children=g}return c(e.type,f,h,0,0,m,d)},c.isValidElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===a},e.exports=c},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){return(e&t)===t}var i={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32,injectDOMPropertyConfig:function(e){var t=i,n=e.Properties||{},a=e.DOMAttributeNamespaces||{},u=e.DOMAttributeNames||{},l=e.DOMPropertyNames||{},c=e.DOMMutationMethods||{};for(var p in e.isCustomAttribute&&s._isCustomAttributeFunctions.push(e.isCustomAttribute),n){s.properties.hasOwnProperty(p)&&r("48",p);var d=p.toLowerCase(),f=n[p],h={attributeName:d,attributeNamespace:null,propertyName:p,mutationMethod:null,mustUseProperty:o(f,t.MUST_USE_PROPERTY),hasBooleanValue:o(f,t.HAS_BOOLEAN_VALUE),hasNumericValue:o(f,t.HAS_NUMERIC_VALUE),hasPositiveNumericValue:o(f,t.HAS_POSITIVE_NUMERIC_VALUE),hasOverloadedBooleanValue:o(f,t.HAS_OVERLOADED_BOOLEAN_VALUE)};if(h.hasBooleanValue+h.hasNumericValue+h.hasOverloadedBooleanValue<=1||r("50",p),u.hasOwnProperty(p)){var m=u[p];h.attributeName=m}a.hasOwnProperty(p)&&(h.attributeNamespace=a[p]),l.hasOwnProperty(p)&&(h.propertyName=l[p]),c.hasOwnProperty(p)&&(h.mutationMethod=c[p]),s.properties[p]=h}}},a=":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",s={ID_ATTRIBUTE_NAME:"data-reactid",ROOT_ATTRIBUTE_NAME:"data-reactroot",ATTRIBUTE_NAME_START_CHAR:a,ATTRIBUTE_NAME_CHAR:a+"\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",properties:{},getPossibleStandardName:null,_isCustomAttributeFunctions:[],isCustomAttribute:function(e){for(var t=0;t<s._isCustomAttributeFunctions.length;t++){if((0,s._isCustomAttributeFunctions[t])(e))return!0}return!1},injection:i};e.exports=s},function(e,t,n){"use strict";var r=n(38),o=n(26),i=n(39),a=n(67),s="undefined"!=typeof document&&"number"==typeof document.documentMode||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&/\bEdge\/\d/.test(navigator.userAgent);function u(e){if(s){var t=e.node,n=e.children;if(n.length)for(var r=0;r<n.length;r++)l(t,n[r],null);else null!=e.html?o(t,e.html):null!=e.text&&a(t,e.text)}}var l=i((function(e,t,n){11===t.node.nodeType||1===t.node.nodeType&&"object"===t.node.nodeName.toLowerCase()&&(null==t.node.namespaceURI||t.node.namespaceURI===r.html)?(u(t),e.insertBefore(t.node,n)):(e.insertBefore(t.node,n),u(t))}));function c(){return this.node.nodeName}function p(e){return{node:e,children:[],html:null,text:null,toString:c}}p.insertTreeBefore=l,p.replaceChildWithTree=function(e,t){e.parentNode.replaceChild(t.node,e),u(t)},p.queueChild=function(e,t){s?e.children.push(t):e.node.appendChild(t.node)},p.queueHTML=function(e,t){s?e.html=t:o(e.node,t)},p.queueText=function(e,t){s?e.text=t:a(e.node,t)},e.exports=p},function(e,t,n){"use strict";e.exports=function(e){for(var t=arguments.length-1,n="Minified React error #"+e+"; visit http://facebook.github.io/react/docs/error-decoder.html?invariant="+e,r=0;r<t;r++)n+="&args[]="+encodeURIComponent(arguments[r+1]);n+=" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";var o=new Error(n);throw o.name="Invariant Violation",o.framesToPop=1,o}},function(e,t,n){"use strict";var r=n(20),o=n(32),i=n(59),a=n(60),s=(n(2),r.getListener);function u(e,t,n){var r=function(e,t,n){var r=t.dispatchConfig.phasedRegistrationNames[n];return s(e,r)}(e,n,t);r&&(n._dispatchListeners=i(n._dispatchListeners,r),n._dispatchInstances=i(n._dispatchInstances,e))}function l(e){e&&e.dispatchConfig.phasedRegistrationNames&&o.traverseTwoPhase(e._targetInst,u,e)}function c(e){if(e&&e.dispatchConfig.phasedRegistrationNames){var t=e._targetInst,n=t?o.getParentInstance(t):null;o.traverseTwoPhase(n,u,e)}}function p(e,t,n){if(n&&n.dispatchConfig.registrationName){var r=n.dispatchConfig.registrationName,o=s(e,r);o&&(n._dispatchListeners=i(n._dispatchListeners,o),n._dispatchInstances=i(n._dispatchInstances,e))}}function d(e){e&&e.dispatchConfig.registrationName&&p(e._targetInst,0,e)}var f={accumulateTwoPhaseDispatches:function(e){a(e,l)},accumulateTwoPhaseDispatchesSkipTarget:function(e){a(e,c)},accumulateDirectDispatches:function(e){a(e,d)},accumulateEnterLeaveDispatches:function(e,t,n,r){o.traverseEnterLeave(n,r,p,e,t)}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=n(31),i=n(32),a=n(33),s=n(59),u=n(60),l=(n(0),{}),c=null,p=function(e,t){e&&(i.executeDispatchesInOrder(e,t),e.isPersistent()||e.constructor.release(e))},d=function(e){return p(e,!0)},f=function(e){return p(e,!1)},h=function(e){return"."+e._rootNodeID};var m={injection:{injectEventPluginOrder:o.injectEventPluginOrder,injectEventPluginsByName:o.injectEventPluginsByName},putListener:function(e,t,n){"function"!=typeof n&&r("94",t,typeof n);var i=h(e);(l[t]||(l[t]={}))[i]=n;var a=o.registrationNameModules[t];a&&a.didPutListener&&a.didPutListener(e,t,n)},getListener:function(e,t){var n=l[t];if(function(e,t,n){switch(e){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":return!(!n.disabled||(r=t,"button"!==r&&"input"!==r&&"select"!==r&&"textarea"!==r));default:return!1}var r}(t,e._currentElement.type,e._currentElement.props))return null;var r=h(e);return n&&n[r]},deleteListener:function(e,t){var n=o.registrationNameModules[t];n&&n.willDeleteListener&&n.willDeleteListener(e,t);var r=l[t];r&&delete r[h(e)]},deleteAllListeners:function(e){var t=h(e);for(var n in l)if(l.hasOwnProperty(n)&&l[n][t]){var r=o.registrationNameModules[n];r&&r.willDeleteListener&&r.willDeleteListener(e,n),delete l[n][t]}},extractEvents:function(e,t,n,r){for(var i,a=o.plugins,u=0;u<a.length;u++){var l=a[u];if(l){var c=l.extractEvents(e,t,n,r);c&&(i=s(i,c))}}return i},enqueueEvents:function(e){e&&(c=s(c,e))},processEventQueue:function(e){var t=c;c=null,u(t,e?d:f),c&&r("95"),a.rethrowCaughtError()},__purge:function(){l={}},__getListenerBank:function(){return l}};e.exports=m},function(e,t,n){"use strict";var r=n(11),o=n(34),i={view:function(e){if(e.view)return e.view;var t=o(e);if(t.window===t)return t;var n=t.ownerDocument;return n?n.defaultView||n.parentWindow:window},detail:function(e){return e.detail||0}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r={remove:function(e){e._reactInternalInstance=void 0},get:function(e){return e._reactInternalInstance},has:function(e){return void 0!==e._reactInternalInstance},set:function(e,t){e._reactInternalInstance=t}};e.exports=r},function(e,t,n){"use strict";e.exports={}},function(e,t,n){"use strict";var r=n(1),o=(n(0),{}),i={reinitializeTransaction:function(){this.transactionWrappers=this.getTransactionWrappers(),this.wrapperInitData?this.wrapperInitData.length=0:this.wrapperInitData=[],this._isInTransaction=!1},_isInTransaction:!1,getTransactionWrappers:null,isInTransaction:function(){return!!this._isInTransaction},perform:function(e,t,n,o,i,a,s,u){var l,c;this.isInTransaction()&&r("27");try{this._isInTransaction=!0,l=!0,this.initializeAll(0),c=e.call(t,n,o,i,a,s,u),l=!1}finally{try{if(l)try{this.closeAll(0)}catch(e){}else this.closeAll(0)}finally{this._isInTransaction=!1}}return c},initializeAll:function(e){for(var t=this.transactionWrappers,n=e;n<t.length;n++){var r=t[n];try{this.wrapperInitData[n]=o,this.wrapperInitData[n]=r.initialize?r.initialize.call(this):null}finally{if(this.wrapperInitData[n]===o)try{this.initializeAll(n+1)}catch(e){}}}},closeAll:function(e){this.isInTransaction()||r("28");for(var t=this.transactionWrappers,n=e;n<t.length;n++){var i,a=t[n],s=this.wrapperInitData[n];try{i=!0,s!==o&&a.close&&a.close.call(this,s),i=!1}finally{if(i)try{this.closeAll(n+1)}catch(e){}}}this.wrapperInitData.length=0}};e.exports=i},function(e,t,n){"use strict";var r=n(21),o=n(66),i={screenX:null,screenY:null,clientX:null,clientY:null,ctrlKey:null,shiftKey:null,altKey:null,metaKey:null,getModifierState:n(36),button:function(e){var t=e.button;return"which"in e?t:2===t?2:4===t?1:0},buttons:null,relatedTarget:function(e){return e.relatedTarget||(e.fromElement===e.srcElement?e.toElement:e.fromElement)},pageX:function(e){return"pageX"in e?e.pageX:e.clientX+o.currentScrollLeft},pageY:function(e){return"pageY"in e?e.pageY:e.clientY+o.currentScrollTop}};function a(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(a,i),e.exports=a},function(e,t,n){"use strict";var r,o=n(5),i=n(38),a=/^[ \r\n\t\f]/,s=/<(!--|link|noscript|meta|script|style)[ \r\n\t\f\/>]/,u=n(39)((function(e,t){if(e.namespaceURI!==i.svg||"innerHTML"in e)e.innerHTML=t;else{(r=r||document.createElement("div")).innerHTML="<svg>"+t+"</svg>";for(var n=r.firstChild;n.firstChild;)e.appendChild(n.firstChild)}}));if(o.canUseDOM){var l=document.createElement("div");l.innerHTML=" ",""===l.innerHTML&&(u=function(e,t){if(e.parentNode&&e.parentNode.replaceChild(e,e),a.test(t)||"<"===t[0]&&s.test(t)){e.innerHTML=String.fromCharCode(65279)+t;var n=e.firstChild;1===n.data.length?e.removeChild(n):n.deleteData(0,1)}else e.innerHTML=t}),l=null}e.exports=u},function(e,t,n){"use strict";var r=/["'&<>]/;e.exports=function(e){return"boolean"==typeof e||"number"==typeof e?""+e:function(e){var t,n=""+e,o=r.exec(n);if(!o)return n;var i="",a=0,s=0;for(a=o.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:t=""";break;case 38:t="&";break;case 39:t="'";break;case 60:t="<";break;case 62:t=">";break;default:continue}s!==a&&(i+=n.substring(s,a)),s=a+1,i+=t}return s!==a?i+n.substring(s,a):i}(e)}},function(e,t,n){"use strict";var r,o=n(3),i=n(31),a=n(141),s=n(66),u=n(142),l=n(35),c={},p=!1,d=0,f={topAbort:"abort",topAnimationEnd:u("animationend")||"animationend",topAnimationIteration:u("animationiteration")||"animationiteration",topAnimationStart:u("animationstart")||"animationstart",topBlur:"blur",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topChange:"change",topClick:"click",topCompositionEnd:"compositionend",topCompositionStart:"compositionstart",topCompositionUpdate:"compositionupdate",topContextMenu:"contextmenu",topCopy:"copy",topCut:"cut",topDoubleClick:"dblclick",topDrag:"drag",topDragEnd:"dragend",topDragEnter:"dragenter",topDragExit:"dragexit",topDragLeave:"dragleave",topDragOver:"dragover",topDragStart:"dragstart",topDrop:"drop",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topFocus:"focus",topInput:"input",topKeyDown:"keydown",topKeyPress:"keypress",topKeyUp:"keyup",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topMouseDown:"mousedown",topMouseMove:"mousemove",topMouseOut:"mouseout",topMouseOver:"mouseover",topMouseUp:"mouseup",topPaste:"paste",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topScroll:"scroll",topSeeked:"seeked",topSeeking:"seeking",topSelectionChange:"selectionchange",topStalled:"stalled",topSuspend:"suspend",topTextInput:"textInput",topTimeUpdate:"timeupdate",topTouchCancel:"touchcancel",topTouchEnd:"touchend",topTouchMove:"touchmove",topTouchStart:"touchstart",topTransitionEnd:u("transitionend")||"transitionend",topVolumeChange:"volumechange",topWaiting:"waiting",topWheel:"wheel"},h="_reactListenersID"+String(Math.random()).slice(2);var m=o({},a,{ReactEventListener:null,injection:{injectReactEventListener:function(e){e.setHandleTopLevel(m.handleTopLevel),m.ReactEventListener=e}},setEnabled:function(e){m.ReactEventListener&&m.ReactEventListener.setEnabled(e)},isEnabled:function(){return!(!m.ReactEventListener||!m.ReactEventListener.isEnabled())},listenTo:function(e,t){for(var n=t,r=function(e){return Object.prototype.hasOwnProperty.call(e,h)||(e[h]=d++,c[e[h]]={}),c[e[h]]}(n),o=i.registrationNameDependencies[e],a=0;a<o.length;a++){var s=o[a];r.hasOwnProperty(s)&&r[s]||("topWheel"===s?l("wheel")?m.ReactEventListener.trapBubbledEvent("topWheel","wheel",n):l("mousewheel")?m.ReactEventListener.trapBubbledEvent("topWheel","mousewheel",n):m.ReactEventListener.trapBubbledEvent("topWheel","DOMMouseScroll",n):"topScroll"===s?l("scroll",!0)?m.ReactEventListener.trapCapturedEvent("topScroll","scroll",n):m.ReactEventListener.trapBubbledEvent("topScroll","scroll",m.ReactEventListener.WINDOW_HANDLE):"topFocus"===s||"topBlur"===s?(l("focus",!0)?(m.ReactEventListener.trapCapturedEvent("topFocus","focus",n),m.ReactEventListener.trapCapturedEvent("topBlur","blur",n)):l("focusin")&&(m.ReactEventListener.trapBubbledEvent("topFocus","focusin",n),m.ReactEventListener.trapBubbledEvent("topBlur","focusout",n)),r.topBlur=!0,r.topFocus=!0):f.hasOwnProperty(s)&&m.ReactEventListener.trapBubbledEvent(s,f[s],n),r[s]=!0)}},trapBubbledEvent:function(e,t,n){return m.ReactEventListener.trapBubbledEvent(e,t,n)},trapCapturedEvent:function(e,t,n){return m.ReactEventListener.trapCapturedEvent(e,t,n)},supportsEventPageXY:function(){if(!document.createEvent)return!1;var e=document.createEvent("MouseEvent");return null!=e&&"pageX"in e},ensureScrollValueMonitoring:function(){if(void 0===r&&(r=m.supportsEventPageXY()),!r&&!p){var e=s.refreshScrollValues;m.ReactEventListener.monitorScrollValue(e),p=!0}}});e.exports=m},function(e,t,n){"use strict";e.exports=n(12)},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var u,l=[],c=!1,p=-1;function d(){c&&u&&(c=!1,u.length?l=u.concat(l):p=-1,l.length&&f())}function f(){if(!c){var e=s(d);c=!0;for(var t=l.length;t;){for(u=l,l=[];++p<t;)u&&u[p].run();p=-1,t=l.length}u=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new h(e,t)),1!==l.length||c||s(f)},h.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=m,o.addListener=m,o.once=m,o.off=m,o.removeListener=m,o.removeAllListeners=m,o.emit=m,o.prependListener=m,o.prependOnceListener=m,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i={};function a(){if(o)for(var e in i){var t=i[e],n=o.indexOf(e);if(n>-1||r("96",e),!l.plugins[n]){t.extractEvents||r("97",e),l.plugins[n]=t;var a=t.eventTypes;for(var u in a)s(a[u],t,u)||r("98",u,e)}}}function s(e,t,n){l.eventNameDispatchConfigs.hasOwnProperty(n)&&r("99",n),l.eventNameDispatchConfigs[n]=e;var o=e.phasedRegistrationNames;if(o){for(var i in o){if(o.hasOwnProperty(i))u(o[i],t,n)}return!0}return!!e.registrationName&&(u(e.registrationName,t,n),!0)}function u(e,t,n){l.registrationNameModules[e]&&r("100",e),l.registrationNameModules[e]=t,l.registrationNameDependencies[e]=t.eventTypes[n].dependencies}var l={plugins:[],eventNameDispatchConfigs:{},registrationNameModules:{},registrationNameDependencies:{},possibleRegistrationNames:null,injectEventPluginOrder:function(e){o&&r("101"),o=Array.prototype.slice.call(e),a()},injectEventPluginsByName:function(e){var t=!1;for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];i.hasOwnProperty(n)&&i[n]===o||(i[n]&&r("102",n),i[n]=o,t=!0)}t&&a()},getPluginModuleForEvent:function(e){var t=e.dispatchConfig;if(t.registrationName)return l.registrationNameModules[t.registrationName]||null;if(void 0!==t.phasedRegistrationNames){var n=t.phasedRegistrationNames;for(var r in n)if(n.hasOwnProperty(r)){var o=l.registrationNameModules[n[r]];if(o)return o}}return null},_resetEventPlugins:function(){for(var e in o=null,i)i.hasOwnProperty(e)&&delete i[e];l.plugins.length=0;var t=l.eventNameDispatchConfigs;for(var n in t)t.hasOwnProperty(n)&&delete t[n];var r=l.registrationNameModules;for(var a in r)r.hasOwnProperty(a)&&delete r[a]}};e.exports=l},function(e,t,n){"use strict";var r,o,i=n(1),a=n(33);n(0),n(2);function s(e,t,n,r){var o=e.type||"unknown-event";e.currentTarget=u.getNodeFromInstance(r),t?a.invokeGuardedCallbackWithCatch(o,n,e):a.invokeGuardedCallback(o,n,e),e.currentTarget=null}var u={isEndish:function(e){return"topMouseUp"===e||"topTouchEnd"===e||"topTouchCancel"===e},isMoveish:function(e){return"topMouseMove"===e||"topTouchMove"===e},isStartish:function(e){return"topMouseDown"===e||"topTouchStart"===e},executeDirectDispatch:function(e){var t=e._dispatchListeners,n=e._dispatchInstances;Array.isArray(t)&&i("103"),e.currentTarget=t?u.getNodeFromInstance(n):null;var r=t?t(e):null;return e.currentTarget=null,e._dispatchListeners=null,e._dispatchInstances=null,r},executeDispatchesInOrder:function(e,t){var n=e._dispatchListeners,r=e._dispatchInstances;if(Array.isArray(n))for(var o=0;o<n.length&&!e.isPropagationStopped();o++)s(e,t,n[o],r[o]);else n&&s(e,t,n,r);e._dispatchListeners=null,e._dispatchInstances=null},executeDispatchesInOrderStopAtTrue:function(e){var t=function(e){var t=e._dispatchListeners,n=e._dispatchInstances;if(Array.isArray(t)){for(var r=0;r<t.length&&!e.isPropagationStopped();r++)if(t[r](e,n[r]))return n[r]}else if(t&&t(e,n))return n;return null}(e);return e._dispatchInstances=null,e._dispatchListeners=null,t},hasDispatches:function(e){return!!e._dispatchListeners},getInstanceFromNode:function(e){return r.getInstanceFromNode(e)},getNodeFromInstance:function(e){return r.getNodeFromInstance(e)},isAncestor:function(e,t){return o.isAncestor(e,t)},getLowestCommonAncestor:function(e,t){return o.getLowestCommonAncestor(e,t)},getParentInstance:function(e){return o.getParentInstance(e)},traverseTwoPhase:function(e,t,n){return o.traverseTwoPhase(e,t,n)},traverseEnterLeave:function(e,t,n,r,i){return o.traverseEnterLeave(e,t,n,r,i)},injection:{injectComponentTree:function(e){r=e},injectTreeTraversal:function(e){o=e}}};e.exports=u},function(e,t,n){"use strict";var r=null;function o(e,t,n){try{t(n)}catch(e){null===r&&(r=e)}}var i={invokeGuardedCallback:o,invokeGuardedCallbackWithCatch:o,rethrowCaughtError:function(){if(r){var e=r;throw r=null,e}}};e.exports=i},function(e,t,n){"use strict";e.exports=function(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),3===t.nodeType?t.parentNode:t}},function(e,t,n){"use strict";var r,o=n(5);o.canUseDOM&&(r=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("",""))
|
7 |
/**
|
8 |
* Checks if an event is supported in the current execution environment.
|
9 |
*
|
17 |
* @return {boolean} True if the event is supported.
|
18 |
* @internal
|
19 |
* @license Modernizr 3.0.0pre (Custom Build) | MIT
|
20 |
+
*/,e.exports=function(e,t){if(!o.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,i=n in document;if(!i){var a=document.createElement("div");a.setAttribute(n,"return;"),i="function"==typeof a[n]}return!i&&r&&"wheel"===e&&(i=document.implementation.hasFeature("Events.wheel","3.0")),i}},function(e,t,n){"use strict";var r={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function o(e){var t=this.nativeEvent;if(t.getModifierState)return t.getModifierState(e);var n=r[e];return!!n&&!!t[n]}e.exports=function(e){return o}},function(e,t,n){"use strict";var r=n(17),o=n(126),i=(n(4),n(7),n(39)),a=n(26),s=n(67);function u(e,t){return Array.isArray(t)&&(t=t[1]),t?t.nextSibling:e.firstChild}var l=i((function(e,t,n){e.insertBefore(t,n)}));function c(e,t,n){r.insertTreeBefore(e,t,n)}function p(e,t,n){Array.isArray(t)?function(e,t,n,r){var o=t;for(;;){var i=o.nextSibling;if(l(e,o,r),o===n)break;o=i}}(e,t[0],t[1],n):l(e,t,n)}function d(e,t){if(Array.isArray(t)){var n=t[1];f(e,t=t[0],n),e.removeChild(n)}e.removeChild(t)}function f(e,t,n){for(;;){var r=t.nextSibling;if(r===n)break;e.removeChild(r)}}var h={dangerouslyReplaceNodeWithMarkup:o.dangerouslyReplaceNodeWithMarkup,replaceDelimitedText:function(e,t,n){var r=e.parentNode,o=e.nextSibling;o===t?n&&l(r,document.createTextNode(n),o):n?(s(o,n),f(r,o,t)):f(r,e,t)},processUpdates:function(e,t){for(var n=0;n<t.length;n++){var r=t[n];switch(r.type){case"INSERT_MARKUP":c(e,r.content,u(e,r.afterNode));break;case"MOVE_EXISTING":p(e,r.fromNode,u(e,r.afterNode));break;case"SET_MARKUP":a(e,r.content);break;case"TEXT_CONTENT":s(e,r.content);break;case"REMOVE_NODE":d(e,r.fromNode)}}}};e.exports=h},function(e,t,n){"use strict";e.exports={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"}},function(e,t,n){"use strict";e.exports=function(e){return"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction((function(){return e(t,n,r,o)}))}:e}},function(e,t,n){"use strict";var r=n(1),o=n(144),i=n(56)(n(12).isValidElement),a=(n(0),n(2),{button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0});function s(e){null!=e.checkedLink&&null!=e.valueLink&&r("87")}function u(e){s(e),(null!=e.value||null!=e.onChange)&&r("88")}function l(e){s(e),(null!=e.checked||null!=e.onChange)&&r("89")}var c={value:function(e,t,n){return!e[t]||a[e.type]||e.onChange||e.readOnly||e.disabled?null:new Error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.")},checked:function(e,t,n){return!e[t]||e.onChange||e.readOnly||e.disabled?null:new Error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")},onChange:i.func},p={};function d(e){if(e){var t=e.getName();if(t)return" Check the render method of `"+t+"`."}return""}var f={checkPropTypes:function(e,t,n){for(var r in c){if(c.hasOwnProperty(r))var i=c[r](t,r,e,"prop",null,o);if(i instanceof Error&&!(i.message in p)){p[i.message]=!0;d(n)}}},getValue:function(e){return e.valueLink?(u(e),e.valueLink.value):e.value},getChecked:function(e){return e.checkedLink?(l(e),e.checkedLink.value):e.checked},executeOnChange:function(e,t){return e.valueLink?(u(e),e.valueLink.requestChange(t.target.value)):e.checkedLink?(l(e),e.checkedLink.requestChange(t.target.checked)):e.onChange?e.onChange.call(void 0,t):void 0}};e.exports=f},function(e,t,n){"use strict";var r=n(1),o=(n(0),!1),i={replaceNodeWithMarkup:null,processChildrenUpdates:null,injection:{injectEnvironment:function(e){o&&r("104"),i.replaceNodeWithMarkup=e.replaceNodeWithMarkup,i.processChildrenUpdates=e.processChildrenUpdates,o=!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(149),a=n(73),s=n(74),u=(n(150),n(0),n(2),function(e){this.construct(e)});function l(e,t){var n;if(null===e||!1===e)n=a.create(l);else if("object"==typeof e){var o=e,i=o.type;if("function"!=typeof i&&"string"!=typeof i){var c="";0,c+=function(e){if(e){var t=e.getName();if(t)return" Check the render method of `"+t+"`."}return""}(o._owner),r("130",null==i?i:typeof i,c)}"string"==typeof o.type?n=s.createInternalComponent(o):!function(e){return"function"==typeof e&&void 0!==e.prototype&&"function"==typeof e.prototype.mountComponent&&"function"==typeof e.prototype.receiveComponent}(o.type)?n=new u(o):(n=new o.type(o)).getHostNode||(n.getHostNode=n.getNativeNode)}else"string"==typeof e||"number"==typeof e?n=s.createInstanceForText(e):r("131",typeof e);return n._mountIndex=0,n._mountImage=null,n}o(u.prototype,i,{_instantiateReactComponent:l}),e.exports=l},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty;function o(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}e.exports=function(e,t){if(o(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),i=Object.keys(t);if(n.length!==i.length)return!1;for(var a=0;a<n.length;a++)if(!r.call(t,n[a])||!o(e[n[a]],t[n[a]]))return!1;return!0}},function(e,t,n){"use strict";e.exports=function(e,t){var n=null===e||!1===e,r=null===t||!1===t;if(n||r)return n===r;var o=typeof e,i=typeof t;return"string"===o||"number"===o?"string"===i||"number"===i:"object"===i&&e.type===t.type&&e.key===t.key}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,(function(e){return t[e]}))}};e.exports=r},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(22)),i=(n(7),n(8));n(0),n(2);function a(e){i.enqueueUpdate(e)}function s(e,t){var n=o.get(e);return n||null}var u={isMounted:function(e){var t=o.get(e);return!!t&&!!t._renderedComponent},enqueueCallback:function(e,t,n){u.validateCallback(t,n);var r=s(e);if(!r)return null;r._pendingCallbacks?r._pendingCallbacks.push(t):r._pendingCallbacks=[t],a(r)},enqueueCallbackInternal:function(e,t){e._pendingCallbacks?e._pendingCallbacks.push(t):e._pendingCallbacks=[t],a(e)},enqueueForceUpdate:function(e){var t=s(e);t&&(t._pendingForceUpdate=!0,a(t))},enqueueReplaceState:function(e,t,n){var r=s(e);r&&(r._pendingStateQueue=[t],r._pendingReplaceState=!0,null!=n&&(u.validateCallback(n,"replaceState"),r._pendingCallbacks?r._pendingCallbacks.push(n):r._pendingCallbacks=[n]),a(r))},enqueueSetState:function(e,t){var n=s(e);n&&((n._pendingStateQueue||(n._pendingStateQueue=[])).push(t),a(n))},enqueueElementInternal:function(e,t,n){e._pendingElement=t,e._context=n,a(e)},validateCallback:function(e,t){e&&"function"!=typeof e&&r("122",t,function(e){var t=typeof e;if("object"!==t)return t;var n=e.constructor&&e.constructor.name||t,r=Object.keys(e);return r.length>0&&r.length<20?n+" (keys: "+r.join(", ")+")":n}(e))}};e.exports=u},function(e,t,n){"use strict";n(3);var r=n(9),o=(n(2),r);e.exports=o},function(e,t,n){"use strict";e.exports=function(e){var t,n=e.keyCode;return"charCode"in e?0===(t=e.charCode)&&13===n&&(t=13):t=n,t>=32||13===t?t:0}},function(e,t,n){var r,o;"undefined"!=typeof window&&window,void 0===(o="function"==typeof(r=function(){"use strict";function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var n=this._events=this._events||{},r=n[e]=n[e]||[];return-1==r.indexOf(t)&&r.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var n=this._onceEvents=this._onceEvents||{};return(n[e]=n[e]||{})[t]=!0,this}},t.off=function(e,t){var n=this._events&&this._events[e];if(n&&n.length){var r=n.indexOf(t);return-1!=r&&n.splice(r,1),this}},t.emitEvent=function(e,t){var n=this._events&&this._events[e];if(n&&n.length){n=n.slice(0),t=t||[];for(var r=this._onceEvents&&this._onceEvents[e],o=0;o<n.length;o++){var i=n[o];r&&r[i]&&(this.off(e,i),delete r[i]),i.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){var r,o;
|
21 |
/*!
|
22 |
* getSize v2.0.3
|
23 |
* measure size of elements
|
24 |
* MIT license
|
25 |
+
*/window,void 0===(o="function"==typeof(r=function(){"use strict";function e(e){var t=parseFloat(e);return-1==e.indexOf("%")&&!isNaN(t)&&t}var t="undefined"==typeof console?function(){}:function(e){console.error(e)},n=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],r=n.length;function o(e){var n=getComputedStyle(e);return n||t("Style returned "+n+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),n}var i,a=!1;function s(t){if(function(){if(!a){a=!0;var t=document.createElement("div");t.style.width="200px",t.style.padding="1px 2px 3px 4px",t.style.borderStyle="solid",t.style.borderWidth="1px 2px 3px 4px",t.style.boxSizing="border-box";var n=document.body||document.documentElement;n.appendChild(t);var r=o(t);i=200==Math.round(e(r.width)),s.isBoxSizeOuter=i,n.removeChild(t)}}(),"string"==typeof t&&(t=document.querySelector(t)),t&&"object"==typeof t&&t.nodeType){var u=o(t);if("none"==u.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<r;t++)e[n[t]]=0;return e}();var l={};l.width=t.offsetWidth,l.height=t.offsetHeight;for(var c=l.isBorderBox="border-box"==u.boxSizing,p=0;p<r;p++){var d=n[p],f=u[d],h=parseFloat(f);l[d]=isNaN(h)?0:h}var m=l.paddingLeft+l.paddingRight,v=l.paddingTop+l.paddingBottom,g=l.marginLeft+l.marginRight,y=l.marginTop+l.marginBottom,_=l.borderLeftWidth+l.borderRightWidth,b=l.borderTopWidth+l.borderBottomWidth,E=c&&i,C=e(u.width);!1!==C&&(l.width=C+(E?0:m+_));var w=e(u.height);return!1!==w&&(l.height=w+(E?0:v+b)),l.innerWidth=l.width-(m+_),l.innerHeight=l.height-(v+b),l.outerWidth=l.width+g,l.outerHeight=l.height+y,l}}return s})?r.call(t,n,t,e):r)||(e.exports=o)},function(e,t,n){"use strict";e.exports={photo_api:"https://api.unsplash.com/photos",collections_api:"https://api.unsplash.com/collections",search_api:"https://api.unsplash.com/search/photos",app_id:"/?client_id="+instant_img_localize.unsplash_app_id,posts_per_page:"&per_page=20"}},function(e,t,n){"use strict";var r=n(18),o=n(3),i=n(53),a=(n(54),n(23));n(0),n(96);function s(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function u(e,t,n){this.props=e,this.context=t,this.refs=a,this.updater=n||i}function l(){}s.prototype.isReactComponent={},s.prototype.setState=function(e,t){"object"!=typeof e&&"function"!=typeof e&&null!=e&&r("85"),this.updater.enqueueSetState(this,e),t&&this.updater.enqueueCallback(this,t,"setState")},s.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this),e&&this.updater.enqueueCallback(this,e,"forceUpdate")},l.prototype=s.prototype,u.prototype=new l,u.prototype.constructor=u,o(u.prototype,s.prototype),u.prototype.isPureReactComponent=!0,e.exports={Component:s,PureComponent:u}},function(e,t,n){"use strict";n(2);var r={isMounted:function(e){return!1},enqueueCallback:function(e,t){},enqueueForceUpdate:function(e){},enqueueReplaceState:function(e,t){},enqueueSetState:function(e,t){}};e.exports=r},function(e,t,n){"use strict";e.exports=!1},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r=n(104);e.exports=function(e){return r(e,!1)}},function(e,t,n){"use strict";e.exports={hasCachedChildNodes:1}},function(e,t,n){"use strict";var r=n(114),o=n(115),i=n(119),a=n(122),s=n(123),u=n(124),l=n(125),c=n(131),p=n(4),d=n(155),f=n(156),h=n(157),m=n(78),v=n(158),g=n(160),y=n(161),_=n(167),b=n(168),E=n(169),C=!1;e.exports={inject:function(){C||(C=!0,g.EventEmitter.injectReactEventListener(v),g.EventPluginHub.injectEventPluginOrder(a),g.EventPluginUtils.injectComponentTree(p),g.EventPluginUtils.injectTreeTraversal(f),g.EventPluginHub.injectEventPluginsByName({SimpleEventPlugin:E,EnterLeaveEventPlugin:s,ChangeEventPlugin:i,SelectEventPlugin:b,BeforeInputEventPlugin:o}),g.HostComponent.injectGenericComponentClass(c),g.HostComponent.injectTextComponentClass(h),g.DOMProperty.injectDOMPropertyConfig(r),g.DOMProperty.injectDOMPropertyConfig(u),g.DOMProperty.injectDOMPropertyConfig(_),g.EmptyComponent.injectEmptyComponentFactory((function(e){return new d(e)})),g.Updates.injectReconcileTransaction(y),g.Updates.injectBatchingStrategy(m),g.Component.injectEnvironment(l))}}},function(e,t,n){"use strict";var r=n(1);n(0);e.exports=function(e,t){return null==t&&r("30"),null==e?t:Array.isArray(e)?Array.isArray(t)?(e.push.apply(e,t),e):(e.push(t),e):Array.isArray(t)?[e].concat(t):[e,t]}},function(e,t,n){"use strict";e.exports=function(e,t,n){Array.isArray(e)?e.forEach(t,n):e&&t.call(n,e)}},function(e,t,n){"use strict";var r=n(5),o=null;e.exports=function(){return!o&&r.canUseDOM&&(o="textContent"in document.documentElement?"textContent":"innerText"),o}},function(e,t,n){"use strict";var r=n(1);var o=n(13),i=(n(0),function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._callbacks=null,this._contexts=null,this._arg=t}return e.prototype.enqueue=function(e,t){this._callbacks=this._callbacks||[],this._callbacks.push(e),this._contexts=this._contexts||[],this._contexts.push(t)},e.prototype.notifyAll=function(){var e=this._callbacks,t=this._contexts,n=this._arg;if(e&&t){e.length!==t.length&&r("24"),this._callbacks=null,this._contexts=null;for(var o=0;o<e.length;o++)e[o].call(t[o],n);e.length=0,t.length=0}},e.prototype.checkpoint=function(){return this._callbacks?this._callbacks.length:0},e.prototype.rollback=function(e){this._callbacks&&this._contexts&&(this._callbacks.length=e,this._contexts.length=e)},e.prototype.reset=function(){this._callbacks=null,this._contexts=null},e.prototype.destructor=function(){this.reset()},e}());e.exports=o.addPoolingTo(i)},function(e,t,n){"use strict";e.exports={logTopLevelRenders:!1}},function(e,t,n){"use strict";var r=n(4);function o(e){var t=e.type,n=e.nodeName;return n&&"input"===n.toLowerCase()&&("checkbox"===t||"radio"===t)}function i(e){return e._wrapperState.valueTracker}var a={_getTrackerFromNode:function(e){return i(r.getInstanceFromNode(e))},track:function(e){if(!i(e)){var t=r.getNodeFromInstance(e),n=o(t)?"checked":"value",a=Object.getOwnPropertyDescriptor(t.constructor.prototype,n),s=""+t[n];t.hasOwnProperty(n)||"function"!=typeof a.get||"function"!=typeof a.set||(Object.defineProperty(t,n,{enumerable:a.enumerable,configurable:!0,get:function(){return a.get.call(this)},set:function(e){s=""+e,a.set.call(this,e)}}),function(e,t){e._wrapperState.valueTracker=t}(e,{getValue:function(){return s},setValue:function(e){s=""+e},stopTracking:function(){!function(e){e._wrapperState.valueTracker=null}(e),delete t[n]}}))}},updateValueIfChanged:function(e){if(!e)return!1;var t=i(e);if(!t)return a.track(e),!0;var n,s,u=t.getValue(),l=((n=r.getNodeFromInstance(e))&&(s=o(n)?""+n.checked:n.value),s);return l!==u&&(t.setValue(l),!0)},stopTracking:function(e){var t=i(e);t&&t.stopTracking()}};e.exports=a},function(e,t,n){"use strict";var r={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};e.exports=function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!r[e.type]:"textarea"===t}},function(e,t,n){"use strict";var r={currentScrollLeft:0,currentScrollTop:0,refreshScrollValues:function(e){r.currentScrollLeft=e.x,r.currentScrollTop=e.y}};e.exports=r},function(e,t,n){"use strict";var r=n(5),o=n(27),i=n(26),a=function(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t};r.canUseDOM&&("textContent"in document.documentElement||(a=function(e,t){3!==e.nodeType?i(e,o(t)):e.nodeValue=t})),e.exports=a},function(e,t,n){"use strict";e.exports=function(e){try{e.focus()}catch(e){}}},function(e,t,n){"use strict";var r={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};var o=["Webkit","ms","Moz","O"];Object.keys(r).forEach((function(e){o.forEach((function(t){r[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(t,e)]=r[e]}))}));var i={isUnitlessNumber:r,shorthandPropertyExpansions:{background:{backgroundAttachment:!0,backgroundColor:!0,backgroundImage:!0,backgroundPositionX:!0,backgroundPositionY:!0,backgroundRepeat:!0},backgroundPosition:{backgroundPositionX:!0,backgroundPositionY:!0},border:{borderWidth:!0,borderStyle:!0,borderColor:!0},borderBottom:{borderBottomWidth:!0,borderBottomStyle:!0,borderBottomColor:!0},borderLeft:{borderLeftWidth:!0,borderLeftStyle:!0,borderLeftColor:!0},borderRight:{borderRightWidth:!0,borderRightStyle:!0,borderRightColor:!0},borderTop:{borderTopWidth:!0,borderTopStyle:!0,borderTopColor:!0},font:{fontStyle:!0,fontVariant:!0,fontWeight:!0,fontSize:!0,lineHeight:!0,fontFamily:!0},outline:{outlineWidth:!0,outlineStyle:!0,outlineColor:!0}}};e.exports=i},function(e,t,n){"use strict";var r=n(16),o=(n(4),n(7),n(140)),i=(n(2),new RegExp("^["+r.ATTRIBUTE_NAME_START_CHAR+"]["+r.ATTRIBUTE_NAME_CHAR+"]*$")),a={},s={};function u(e){return!!s.hasOwnProperty(e)||!a.hasOwnProperty(e)&&(i.test(e)?(s[e]=!0,!0):(a[e]=!0,!1))}function l(e,t){return null==t||e.hasBooleanValue&&!t||e.hasNumericValue&&isNaN(t)||e.hasPositiveNumericValue&&t<1||e.hasOverloadedBooleanValue&&!1===t}var c={createMarkupForID:function(e){return r.ID_ATTRIBUTE_NAME+"="+o(e)},setAttributeForID:function(e,t){e.setAttribute(r.ID_ATTRIBUTE_NAME,t)},createMarkupForRoot:function(){return r.ROOT_ATTRIBUTE_NAME+'=""'},setAttributeForRoot:function(e){e.setAttribute(r.ROOT_ATTRIBUTE_NAME,"")},createMarkupForProperty:function(e,t){var n=r.properties.hasOwnProperty(e)?r.properties[e]:null;if(n){if(l(n,t))return"";var i=n.attributeName;return n.hasBooleanValue||n.hasOverloadedBooleanValue&&!0===t?i+'=""':i+"="+o(t)}return r.isCustomAttribute(e)?null==t?"":e+"="+o(t):null},createMarkupForCustomAttribute:function(e,t){return u(e)&&null!=t?e+"="+o(t):""},setValueForProperty:function(e,t,n){var o=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(o){var i=o.mutationMethod;if(i)i(e,n);else{if(l(o,n))return void this.deleteValueForProperty(e,t);if(o.mustUseProperty)e[o.propertyName]=n;else{var a=o.attributeName,s=o.attributeNamespace;s?e.setAttributeNS(s,a,""+n):o.hasBooleanValue||o.hasOverloadedBooleanValue&&!0===n?e.setAttribute(a,""):e.setAttribute(a,""+n)}}}else if(r.isCustomAttribute(t))return void c.setValueForAttribute(e,t,n)},setValueForAttribute:function(e,t,n){u(t)&&(null==n?e.removeAttribute(t):e.setAttribute(t,""+n))},deleteValueForAttribute:function(e,t){e.removeAttribute(t)},deleteValueForProperty:function(e,t){var n=r.properties.hasOwnProperty(t)?r.properties[t]:null;if(n){var o=n.mutationMethod;if(o)o(e,void 0);else if(n.mustUseProperty){var i=n.propertyName;n.hasBooleanValue?e[i]=!1:e[i]=""}else e.removeAttribute(n.attributeName)}else r.isCustomAttribute(t)&&e.removeAttribute(t)}};e.exports=c},function(e,t,n){"use strict";var r=n(3),o=n(40),i=n(4),a=n(8),s=(n(2),!1);function u(){if(this._rootNodeID&&this._wrapperState.pendingUpdate){this._wrapperState.pendingUpdate=!1;var e=this._currentElement.props,t=o.getValue(e);null!=t&&l(this,Boolean(e.multiple),t)}}function l(e,t,n){var r,o,a=i.getNodeFromInstance(e).options;if(t){for(r={},o=0;o<n.length;o++)r[""+n[o]]=!0;for(o=0;o<a.length;o++){var s=r.hasOwnProperty(a[o].value);a[o].selected!==s&&(a[o].selected=s)}}else{for(r=""+n,o=0;o<a.length;o++)if(a[o].value===r)return void(a[o].selected=!0);a.length&&(a[0].selected=!0)}}var c={getHostProps:function(e,t){return r({},t,{onChange:e._wrapperState.onChange,value:void 0})},mountWrapper:function(e,t){var n=o.getValue(t);e._wrapperState={pendingUpdate:!1,initialValue:null!=n?n:t.defaultValue,listeners:null,onChange:p.bind(e),wasMultiple:Boolean(t.multiple)},void 0===t.value||void 0===t.defaultValue||s||(s=!0)},getSelectValueContext:function(e){return e._wrapperState.initialValue},postUpdateWrapper:function(e){var t=e._currentElement.props;e._wrapperState.initialValue=void 0;var n=e._wrapperState.wasMultiple;e._wrapperState.wasMultiple=Boolean(t.multiple);var r=o.getValue(t);null!=r?(e._wrapperState.pendingUpdate=!1,l(e,Boolean(t.multiple),r)):n!==Boolean(t.multiple)&&(null!=t.defaultValue?l(e,Boolean(t.multiple),t.defaultValue):l(e,Boolean(t.multiple),t.multiple?[]:""))}};function p(e){var t=this._currentElement.props,n=o.executeOnChange(t,e);return this._rootNodeID&&(this._wrapperState.pendingUpdate=!0),a.asap(u,this),n}e.exports=c},function(e,t,n){"use strict";var r=n(1),o=n(12),i=(n(0),{HOST:0,COMPOSITE:1,EMPTY:2,getType:function(e){return null===e||!1===e?i.EMPTY:o.isValidElement(e)?"function"==typeof e.type?i.COMPOSITE:i.HOST:void r("26",e)}});e.exports=i},function(e,t,n){"use strict";var r,o={injectEmptyComponentFactory:function(e){r=e}},i={create:function(e){return r(e)}};i.injection=o,e.exports=i},function(e,t,n){"use strict";var r=n(1),o=(n(0),null),i=null;var a={createInternalComponent:function(e){return o||r("111",e.type),new o(e)},createInstanceForText:function(e){return new i(e)},isTextComponent:function(e){return e instanceof i},injection:{injectGenericComponentClass:function(e){o=e},injectTextComponentClass:function(e){i=e}}};e.exports=a},function(e,t,n){"use strict";var r=n(1),o=(n(10),n(151)),i=n(152),a=(n(0),n(45));n(2);function s(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,u,l){var c,p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===o)return u(l,t,""===n?"."+s(t,0):n),1;var d=0,f=""===n?".":n+":";if(Array.isArray(t))for(var h=0;h<t.length;h++)d+=e(c=t[h],f+s(c,h),u,l);else{var m=i(t);if(m){var v,g=m.call(t);if(m!==t.entries)for(var y=0;!(v=g.next()).done;)d+=e(c=v.value,f+s(c,y++),u,l);else for(;!(v=g.next()).done;){var _=v.value;_&&(d+=e(c=_[1],f+a.escape(_[0])+":"+s(c,0),u,l))}}else if("object"===p){var b=String(t);r("31","[object Object]"===b?"object with keys {"+Object.keys(t).join(", ")+"}":b,"")}}return d}(e,"",t,n)}},function(e,t,n){"use strict";var r,o,i,a,s,u,l,c=n(18),p=n(10);n(0),n(2);function d(e){var t=Function.prototype.toString,n=Object.prototype.hasOwnProperty,r=RegExp("^"+t.call(n).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");try{var o=t.call(e);return r.test(o)}catch(e){return!1}}if("function"==typeof Array.from&&"function"==typeof Map&&d(Map)&&null!=Map.prototype&&"function"==typeof Map.prototype.keys&&d(Map.prototype.keys)&&"function"==typeof Set&&d(Set)&&null!=Set.prototype&&"function"==typeof Set.prototype.keys&&d(Set.prototype.keys)){var f=new Map,h=new Set;r=function(e,t){f.set(e,t)},o=function(e){return f.get(e)},i=function(e){f.delete(e)},a=function(){return Array.from(f.keys())},s=function(e){h.add(e)},u=function(e){h.delete(e)},l=function(){return Array.from(h.keys())}}else{var m={},v={},g=function(e){return"."+e},y=function(e){return parseInt(e.substr(1),10)};r=function(e,t){var n=g(e);m[n]=t},o=function(e){var t=g(e);return m[t]},i=function(e){var t=g(e);delete m[t]},a=function(){return Object.keys(m).map(y)},s=function(e){var t=g(e);v[t]=!0},u=function(e){var t=g(e);delete v[t]},l=function(){return Object.keys(v).map(y)}}var _=[];function b(e){var t=o(e);if(t){var n=t.childIDs;i(e),n.forEach(b)}}function E(e,t,n){return"\n in "+(e||"Unknown")+(t?" (at "+t.fileName.replace(/^.*[\\\/]/,"")+":"+t.lineNumber+")":n?" (created by "+n+")":"")}function C(e){return null==e?"#empty":"string"==typeof e||"number"==typeof e?"#text":"string"==typeof e.type?e.type:e.type.displayName||e.type.name||"Unknown"}function w(e){var t,n=x.getDisplayName(e),r=x.getElement(e),o=x.getOwnerID(e);return o&&(t=x.getDisplayName(o)),E(n,r&&r._source,t)}var x={onSetChildren:function(e,t){var n=o(e);n||c("144"),n.childIDs=t;for(var r=0;r<t.length;r++){var i=t[r],a=o(i);a||c("140"),null==a.childIDs&&"object"==typeof a.element&&null!=a.element&&c("141"),a.isMounted||c("71"),null==a.parentID&&(a.parentID=e),a.parentID!==e&&c("142",i,a.parentID,e)}},onBeforeMountComponent:function(e,t,n){r(e,{element:t,parentID:n,text:null,childIDs:[],isMounted:!1,updateCount:0})},onBeforeUpdateComponent:function(e,t){var n=o(e);n&&n.isMounted&&(n.element=t)},onMountComponent:function(e){var t=o(e);t||c("144"),t.isMounted=!0,0===t.parentID&&s(e)},onUpdateComponent:function(e){var t=o(e);t&&t.isMounted&&t.updateCount++},onUnmountComponent:function(e){var t=o(e);t&&(t.isMounted=!1,0===t.parentID&&u(e));_.push(e)},purgeUnmountedComponents:function(){if(!x._preventPurging){for(var e=0;e<_.length;e++){b(_[e])}_.length=0}},isMounted:function(e){var t=o(e);return!!t&&t.isMounted},getCurrentStackAddendum:function(e){var t="";if(e){var n=C(e),r=e._owner;t+=E(n,e._source,r&&r.getName())}var o=p.current,i=o&&o._debugID;return t+=x.getStackAddendumByID(i)},getStackAddendumByID:function(e){for(var t="";e;)t+=w(e),e=x.getParentID(e);return t},getChildIDs:function(e){var t=o(e);return t?t.childIDs:[]},getDisplayName:function(e){var t=x.getElement(e);return t?C(t):null},getElement:function(e){var t=o(e);return t?t.element:null},getOwnerID:function(e){var t=x.getElement(e);return t&&t._owner?t._owner._debugID:null},getParentID:function(e){var t=o(e);return t?t.parentID:null},getSource:function(e){var t=o(e),n=t?t.element:null;return null!=n?n._source:null},getText:function(e){var t=x.getElement(e);return"string"==typeof t?t:"number"==typeof t?""+t:null},getUpdateCount:function(e){var t=o(e);return t?t.updateCount:0},getRootIDs:l,getRegisteredIDs:a,pushNonStandardWarningStack:function(e,t){if("function"==typeof console.reactStack){var n=[],r=p.current,o=r&&r._debugID;try{for(e&&n.push({name:o?x.getDisplayName(o):null,fileName:t?t.fileName:null,lineNumber:t?t.lineNumber:null});o;){var i=x.getElement(o),a=x.getParentID(o),s=x.getOwnerID(o),u=s?x.getDisplayName(s):null,l=i&&i._source;n.push({name:u,fileName:l?l.fileName:null,lineNumber:l?l.lineNumber:null}),o=a}}catch(e){}console.reactStack(n)}},popNonStandardWarningStack:function(){"function"==typeof console.reactStackEnd&&console.reactStackEnd()}};e.exports=x},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(24),a=(n(7),n(154)),s=[];var u={enqueue:function(){}};function l(e){this.reinitializeTransaction(),this.renderToStaticMarkup=e,this.useCreateElement=!1,this.updateQueue=new a(this)}var c={getTransactionWrappers:function(){return s},getReactMountReady:function(){return u},getUpdateQueue:function(){return this.updateQueue},destructor:function(){},checkpoint:function(){},rollback:function(){}};r(l.prototype,i,c),o.addPoolingTo(l),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(8),i=n(24),a=n(9),s={initialize:a,close:function(){p.isBatchingUpdates=!1}},u=[{initialize:a,close:o.flushBatchedUpdates.bind(o)},s];function l(){this.reinitializeTransaction()}r(l.prototype,i,{getTransactionWrappers:function(){return u}});var c=new l,p={isBatchingUpdates:!1,batchedUpdates:function(e,t,n,r,o,i){var a=p.isBatchingUpdates;return p.isBatchingUpdates=!0,a?e(t,n,r,o,i):c.perform(e,null,t,n,r,o,i)}};e.exports=p},function(e,t,n){"use strict";var r=n(9),o={listen:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!1),{remove:function(){e.removeEventListener(t,n,!1)}}):e.attachEvent?(e.attachEvent("on"+t,n),{remove:function(){e.detachEvent("on"+t,n)}}):void 0},capture:function(e,t,n){return e.addEventListener?(e.addEventListener(t,n,!0),{remove:function(){e.removeEventListener(t,n,!0)}}):{remove:r}},registerDefault:function(){}};e.exports=o},function(e,t,n){"use strict";var r=n(162),o=n(164),i=n(68),a=n(81);var s={hasSelectionCapabilities:function(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&"text"===e.type||"textarea"===t||"true"===e.contentEditable)},getSelectionInformation:function(){var e=a();return{focusedElem:e,selectionRange:s.hasSelectionCapabilities(e)?s.getSelection(e):null}},restoreSelection:function(e){var t,n=a(),r=e.focusedElem,u=e.selectionRange;n!==r&&(t=r,o(document.documentElement,t))&&(s.hasSelectionCapabilities(r)&&s.setSelection(r,u),i(r))},getSelection:function(e){var t;if("selectionStart"in e)t={start:e.selectionStart,end:e.selectionEnd};else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var n=document.selection.createRange();n.parentElement()===e&&(t={start:-n.moveStart("character",-e.value.length),end:-n.moveEnd("character",-e.value.length)})}else t=r.getOffsets(e);return t||{start:0,end:0}},setSelection:function(e,t){var n=t.start,o=t.end;if(void 0===o&&(o=n),"selectionStart"in e)e.selectionStart=n,e.selectionEnd=Math.min(o,e.value.length);else if(document.selection&&e.nodeName&&"input"===e.nodeName.toLowerCase()){var i=e.createTextRange();i.collapse(!0),i.moveStart("character",n),i.moveEnd("character",o-n),i.select()}else r.setOffsets(e,t)}};e.exports=s},function(e,t,n){"use strict";e.exports=function(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(16),a=n(12),s=n(28),u=(n(10),n(4)),l=n(83),c=n(179),p=n(63),d=n(22),f=(n(7),n(84)),h=n(14),m=n(46),v=n(8),g=n(23),y=n(42),_=(n(0),n(26)),b=n(44),E=(n(2),i.ID_ATTRIBUTE_NAME),C=i.ROOT_ATTRIBUTE_NAME,w={};function x(e){return e?9===e.nodeType?e.documentElement:e.firstChild:null}function T(e,t,n,r,o){var i;if(p.logTopLevelRenders){var a=e._currentElement.props.child.type;i="React mount: "+("string"==typeof a?a:a.displayName||a.name),console.time(i)}var s=h.mountComponent(e,n,null,l(e,t),o,0);i&&console.timeEnd(i),e._renderedComponent._topLevelWrapper=e,M._mountImageIntoNode(s,t,e,r,n)}function S(e,t,n,r){var o=v.ReactReconcileTransaction.getPooled(!n&&c.useCreateElement);o.perform(T,null,e,t,o,n,r),v.ReactReconcileTransaction.release(o)}function k(e,t,n){for(0,h.unmountComponent(e,n),9===t.nodeType&&(t=t.documentElement);t.lastChild;)t.removeChild(t.lastChild)}function P(e){var t=x(e);if(t){var n=u.getInstanceFromNode(t);return!(!n||!n._hostParent)}}function I(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function N(e){var t=function(e){var t=x(e),n=t&&u.getInstanceFromNode(t);return n&&!n._hostParent?n:null}(e);return t?t._hostContainerInfo._topLevelWrapper:null}var O=1,A=function(){this.rootID=O++};A.prototype.isReactComponent={},A.prototype.render=function(){return this.props.child},A.isReactTopLevelWrapper=!0;var M={TopLevelWrapper:A,_instancesByReactRootID:w,scrollMonitor:function(e,t){t()},_updateRootComponent:function(e,t,n,r,o){return M.scrollMonitor(r,(function(){m.enqueueElementInternal(e,t,n),o&&m.enqueueCallbackInternal(e,o)})),e},_renderNewRootComponent:function(e,t,n,o){I(t)||r("37"),s.ensureScrollValueMonitoring();var i=y(e,!1);v.batchedUpdates(S,i,t,n,o);var a=i._instance.rootID;return w[a]=i,i},renderSubtreeIntoContainer:function(e,t,n,o){return null!=e&&d.has(e)||r("38"),M._renderSubtreeIntoContainer(e,t,n,o)},_renderSubtreeIntoContainer:function(e,t,n,o){m.validateCallback(o,"ReactDOM.render"),a.isValidElement(t)||r("39","string"==typeof t?" Instead of passing a string like 'div', pass React.createElement('div') or <div />.":"function"==typeof t?" Instead of passing a class like Foo, pass React.createElement(Foo) or <Foo />.":null!=t&&void 0!==t.props?" This may be caused by unintentionally loading two independent copies of React.":"");var i,s=a.createElement(A,{child:t});if(e){var u=d.get(e);i=u._processChildContext(u._context)}else i=g;var l=N(n);if(l){var c=l._currentElement.props.child;if(b(c,t)){var p=l._renderedComponent.getPublicInstance(),f=o&&function(){o.call(p)};return M._updateRootComponent(l,s,i,n,f),p}M.unmountComponentAtNode(n)}var h,v=x(n),y=v&&!(!(h=v).getAttribute||!h.getAttribute(E)),_=P(n),C=y&&!l&&!_,w=M._renderNewRootComponent(s,n,C,i)._renderedComponent.getPublicInstance();return o&&o.call(w),w},render:function(e,t,n){return M._renderSubtreeIntoContainer(null,e,t,n)},unmountComponentAtNode:function(e){I(e)||r("40");var t=N(e);if(!t){P(e),1===e.nodeType&&e.hasAttribute(C);return!1}return delete w[t._instance.rootID],v.batchedUpdates(k,t,e,!1),!0},_mountImageIntoNode:function(e,t,n,i,a){if(I(t)||r("41"),i){var s=x(t);if(f.canReuseMarkup(e,s))return void u.precacheNode(n,s);var l=s.getAttribute(f.CHECKSUM_ATTR_NAME);s.removeAttribute(f.CHECKSUM_ATTR_NAME);var c=s.outerHTML;s.setAttribute(f.CHECKSUM_ATTR_NAME,l);var p=e,d=function(e,t){for(var n=Math.min(e.length,t.length),r=0;r<n;r++)if(e.charAt(r)!==t.charAt(r))return r;return e.length===t.length?-1:n}(p,c),h=" (client) "+p.substring(d-20,d+20)+"\n (server) "+c.substring(d-20,d+20);9===t.nodeType&&r("42",h)}if(9===t.nodeType&&r("43"),a.useCreateElement){for(;t.lastChild;)t.removeChild(t.lastChild);o.insertTreeBefore(t,e,null)}else _(t,e),u.precacheNode(n,t.firstChild)}};e.exports=M},function(e,t,n){"use strict";n(47);e.exports=function(e,t){return{_topLevelWrapper:e,_idCounter:1,_ownerDocument:t?9===t.nodeType?t:t.ownerDocument:null,_node:t,_tag:t?t.nodeName.toLowerCase():null,_namespaceURI:t?t.namespaceURI:null}}},function(e,t,n){"use strict";var r=n(180),o=/\/?>/,i=/^<\!\-\-/,a={CHECKSUM_ATTR_NAME:"data-react-checksum",addChecksumToMarkup:function(e){var t=r(e);return i.test(e)?e:e.replace(o," "+a.CHECKSUM_ATTR_NAME+'="'+t+'"$&')},canReuseMarkup:function(e,t){var n=t.getAttribute(a.CHECKSUM_ATTR_NAME);return n=n&&parseInt(n,10),r(e)===n}};e.exports=a},function(e,t,n){"use strict";e.exports="15.6.2"},function(e,t,n){"use strict";var r=n(72);e.exports=function(e){for(var t;(t=e._renderedNodeType)===r.COMPOSITE;)e=e._renderedComponent;return t===r.HOST?e._renderedComponent:t===r.EMPTY?null:void 0}},function(e,t,n){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},function(e,t,n){"use strict";var r=n(6);function o(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,n){if(!t)return e;var i;if(n)i=n(t);else if(r.isURLSearchParams(t))i=t.toString();else{var a=[];r.forEach(t,(function(e,t){null!=e&&(r.isArray(e)?t+="[]":e=[e],r.forEach(e,(function(e){r.isDate(e)?e=e.toISOString():r.isObject(e)&&(e=JSON.stringify(e)),a.push(o(t)+"="+o(e))})))})),i=a.join("&")}if(i){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+i}return e}},function(e,t,n){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";(function(t){var r=n(6),o=n(200),i={"Content-Type":"application/x-www-form-urlencoded"};function a(e,t){!r.isUndefined(e)&&r.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var s,u={adapter:(("undefined"!=typeof XMLHttpRequest||void 0!==t&&"[object process]"===Object.prototype.toString.call(t))&&(s=n(91)),s),transformRequest:[function(e,t){return o(t,"Accept"),o(t,"Content-Type"),r.isFormData(e)||r.isArrayBuffer(e)||r.isBuffer(e)||r.isStream(e)||r.isFile(e)||r.isBlob(e)?e:r.isArrayBufferView(e)?e.buffer:r.isURLSearchParams(e)?(a(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):r.isObject(e)?(a(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},r.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),r.forEach(["post","put","patch"],(function(e){u.headers[e]=r.merge(i)})),e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(6),o=n(201),i=n(203),a=n(88),s=n(204),u=n(207),l=n(208),c=n(92);e.exports=function(e){return new Promise((function(t,n){var p=e.data,d=e.headers;r.isFormData(p)&&delete d["Content-Type"];var f=new XMLHttpRequest;if(e.auth){var h=e.auth.username||"",m=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";d.Authorization="Basic "+btoa(h+":"+m)}var v=s(e.baseURL,e.url);if(f.open(e.method.toUpperCase(),a(v,e.params,e.paramsSerializer),!0),f.timeout=e.timeout,f.onreadystatechange=function(){if(f&&4===f.readyState&&(0!==f.status||f.responseURL&&0===f.responseURL.indexOf("file:"))){var r="getAllResponseHeaders"in f?u(f.getAllResponseHeaders()):null,i={data:e.responseType&&"text"!==e.responseType?f.response:f.responseText,status:f.status,statusText:f.statusText,headers:r,config:e,request:f};o(t,n,i),f=null}},f.onabort=function(){f&&(n(c("Request aborted",e,"ECONNABORTED",f)),f=null)},f.onerror=function(){n(c("Network Error",e,null,f)),f=null},f.ontimeout=function(){var t="timeout of "+e.timeout+"ms exceeded";e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(c(t,e,"ECONNABORTED",f)),f=null},r.isStandardBrowserEnv()){var g=(e.withCredentials||l(v))&&e.xsrfCookieName?i.read(e.xsrfCookieName):void 0;g&&(d[e.xsrfHeaderName]=g)}if("setRequestHeader"in f&&r.forEach(d,(function(e,t){void 0===p&&"content-type"===t.toLowerCase()?delete d[t]:f.setRequestHeader(t,e)})),r.isUndefined(e.withCredentials)||(f.withCredentials=!!e.withCredentials),e.responseType)try{f.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&f.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&f.upload&&f.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then((function(e){f&&(f.abort(),n(e),f=null)})),p||(p=null),f.send(p)}))}},function(e,t,n){"use strict";var r=n(202);e.exports=function(e,t,n,o,i){var a=new Error(e);return r(a,t,n,o,i)}},function(e,t,n){"use strict";var r=n(6);e.exports=function(e,t){t=t||{};var n={},o=["url","method","data"],i=["headers","auth","proxy","params"],a=["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","timeoutMessage","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","decompress","maxContentLength","maxBodyLength","maxRedirects","transport","httpAgent","httpsAgent","cancelToken","socketPath","responseEncoding"],s=["validateStatus"];function u(e,t){return r.isPlainObject(e)&&r.isPlainObject(t)?r.merge(e,t):r.isPlainObject(t)?r.merge({},t):r.isArray(t)?t.slice():t}function l(o){r.isUndefined(t[o])?r.isUndefined(e[o])||(n[o]=u(void 0,e[o])):n[o]=u(e[o],t[o])}r.forEach(o,(function(e){r.isUndefined(t[e])||(n[e]=u(void 0,t[e]))})),r.forEach(i,l),r.forEach(a,(function(o){r.isUndefined(t[o])?r.isUndefined(e[o])||(n[o]=u(void 0,e[o])):n[o]=u(void 0,t[o])})),r.forEach(s,(function(r){r in t?n[r]=u(e[r],t[r]):r in e&&(n[r]=u(void 0,e[r]))}));var c=o.concat(i).concat(a).concat(s),p=Object.keys(e).concat(Object.keys(t)).filter((function(e){return-1===c.indexOf(e)}));return r.forEach(p,l),n}},function(e,t,n){"use strict";function r(e){this.message=e}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,e.exports=r},function(e,t,n){"use strict";e.exports=n(113)},function(e,t,n){"use strict";e.exports=function(){}},function(e,t,n){"use strict";var r=n(98),o=n(15),i=n(9),a=n(99),s=r.twoArgumentPooler,u=r.fourArgumentPooler,l=/\/+/g;function c(e){return(""+e).replace(l,"$&/")}function p(e,t){this.func=e,this.context=t,this.count=0}function d(e,t,n){var r=e.func,o=e.context;r.call(o,t,e.count++)}function f(e,t,n,r){this.result=e,this.keyPrefix=t,this.func=n,this.context=r,this.count=0}function h(e,t,n){var r=e.result,a=e.keyPrefix,s=e.func,u=e.context,l=s.call(u,t,e.count++);Array.isArray(l)?m(l,r,n,i.thatReturnsArgument):null!=l&&(o.isValidElement(l)&&(l=o.cloneAndReplaceKey(l,a+(!l.key||t&&t.key===l.key?"":c(l.key)+"/")+n)),r.push(l))}function m(e,t,n,r,o){var i="";null!=n&&(i=c(n)+"/");var s=f.getPooled(t,i,r,o);a(e,h,s),f.release(s)}function v(e,t,n){return null}p.prototype.destructor=function(){this.func=null,this.context=null,this.count=0},r.addPoolingTo(p,s),f.prototype.destructor=function(){this.result=null,this.keyPrefix=null,this.func=null,this.context=null,this.count=0},r.addPoolingTo(f,u);var g={forEach:function(e,t,n){if(null==e)return e;var r=p.getPooled(t,n);a(e,d,r),p.release(r)},map:function(e,t,n){if(null==e)return e;var r=[];return m(e,r,null,t,n),r},mapIntoWithKeyPrefixInternal:m,count:function(e,t){return a(e,v,null)},toArray:function(e){var t=[];return m(e,t,null,i.thatReturnsArgument),t}};e.exports=g},function(e,t,n){"use strict";var r=n(18),o=(n(0),function(e){if(this.instancePool.length){var t=this.instancePool.pop();return this.call(t,e),t}return new this(e)}),i=function(e){e instanceof this||r("25"),e.destructor(),this.instancePool.length<this.poolSize&&this.instancePool.push(e)},a=o,s={addPoolingTo:function(e,t){var n=e;return n.instancePool=[],n.getPooled=t||a,n.poolSize||(n.poolSize=10),n.release=i,n},oneArgumentPooler:o,twoArgumentPooler:function(e,t){if(this.instancePool.length){var n=this.instancePool.pop();return this.call(n,e,t),n}return new this(e,t)},threeArgumentPooler:function(e,t,n){if(this.instancePool.length){var r=this.instancePool.pop();return this.call(r,e,t,n),r}return new this(e,t,n)},fourArgumentPooler:function(e,t,n,r){if(this.instancePool.length){var o=this.instancePool.pop();return this.call(o,e,t,n,r),o}return new this(e,t,n,r)}};e.exports=s},function(e,t,n){"use strict";var r=n(18),o=(n(10),n(55)),i=n(100),a=(n(0),n(101));n(2);function s(e,t){return e&&"object"==typeof e&&null!=e.key?a.escape(e.key):t.toString(36)}e.exports=function(e,t,n){return null==e?0:function e(t,n,u,l){var c,p=typeof t;if("undefined"!==p&&"boolean"!==p||(t=null),null===t||"string"===p||"number"===p||"object"===p&&t.$$typeof===o)return u(l,t,""===n?"."+s(t,0):n),1;var d=0,f=""===n?".":n+":";if(Array.isArray(t))for(var h=0;h<t.length;h++)d+=e(c=t[h],f+s(c,h),u,l);else{var m=i(t);if(m){var v,g=m.call(t);if(m!==t.entries)for(var y=0;!(v=g.next()).done;)d+=e(c=v.value,f+s(c,y++),u,l);else for(;!(v=g.next()).done;){var _=v.value;_&&(d+=e(c=_[1],f+a.escape(_[0])+":"+s(c,0),u,l))}}else if("object"===p){var b=String(t);r("31","[object Object]"===b?"object with keys {"+Object.keys(t).join(", ")+"}":b,"")}}return d}(e,"",t,n)}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator;e.exports=function(e){var t=e&&(r&&e[r]||e["@@iterator"]);if("function"==typeof t)return t}},function(e,t,n){"use strict";var r={escape:function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))},unescape:function(e){var t={"=0":"=","=2":":"};return(""+("."===e[0]&&"$"===e[1]?e.substring(2):e.substring(1))).replace(/(=0|=2)/g,(function(e){return t[e]}))}};e.exports=r},function(e,t,n){"use strict";var r=n(15).createFactory,o={a:r("a"),abbr:r("abbr"),address:r("address"),area:r("area"),article:r("article"),aside:r("aside"),audio:r("audio"),b:r("b"),base:r("base"),bdi:r("bdi"),bdo:r("bdo"),big:r("big"),blockquote:r("blockquote"),body:r("body"),br:r("br"),button:r("button"),canvas:r("canvas"),caption:r("caption"),cite:r("cite"),code:r("code"),col:r("col"),colgroup:r("colgroup"),data:r("data"),datalist:r("datalist"),dd:r("dd"),del:r("del"),details:r("details"),dfn:r("dfn"),dialog:r("dialog"),div:r("div"),dl:r("dl"),dt:r("dt"),em:r("em"),embed:r("embed"),fieldset:r("fieldset"),figcaption:r("figcaption"),figure:r("figure"),footer:r("footer"),form:r("form"),h1:r("h1"),h2:r("h2"),h3:r("h3"),h4:r("h4"),h5:r("h5"),h6:r("h6"),head:r("head"),header:r("header"),hgroup:r("hgroup"),hr:r("hr"),html:r("html"),i:r("i"),iframe:r("iframe"),img:r("img"),input:r("input"),ins:r("ins"),kbd:r("kbd"),keygen:r("keygen"),label:r("label"),legend:r("legend"),li:r("li"),link:r("link"),main:r("main"),map:r("map"),mark:r("mark"),menu:r("menu"),menuitem:r("menuitem"),meta:r("meta"),meter:r("meter"),nav:r("nav"),noscript:r("noscript"),object:r("object"),ol:r("ol"),optgroup:r("optgroup"),option:r("option"),output:r("output"),p:r("p"),param:r("param"),picture:r("picture"),pre:r("pre"),progress:r("progress"),q:r("q"),rp:r("rp"),rt:r("rt"),ruby:r("ruby"),s:r("s"),samp:r("samp"),script:r("script"),section:r("section"),select:r("select"),small:r("small"),source:r("source"),span:r("span"),strong:r("strong"),style:r("style"),sub:r("sub"),summary:r("summary"),sup:r("sup"),table:r("table"),tbody:r("tbody"),td:r("td"),textarea:r("textarea"),tfoot:r("tfoot"),th:r("th"),thead:r("thead"),time:r("time"),title:r("title"),tr:r("tr"),track:r("track"),u:r("u"),ul:r("ul"),var:r("var"),video:r("video"),wbr:r("wbr"),circle:r("circle"),clipPath:r("clipPath"),defs:r("defs"),ellipse:r("ellipse"),g:r("g"),image:r("image"),line:r("line"),linearGradient:r("linearGradient"),mask:r("mask"),path:r("path"),pattern:r("pattern"),polygon:r("polygon"),polyline:r("polyline"),radialGradient:r("radialGradient"),rect:r("rect"),stop:r("stop"),svg:r("svg"),text:r("text"),tspan:r("tspan")};e.exports=o},function(e,t,n){"use strict";var r=n(15).isValidElement,o=n(56);e.exports=o(r)},function(e,t,n){"use strict";var r=n(105),o=n(3),i=n(107),a=n(108),s=Function.call.bind(Object.prototype.hasOwnProperty);function u(){return null}e.exports=function(e,t){var n="function"==typeof Symbol&&Symbol.iterator;var l={array:f("array"),bool:f("boolean"),func:f("function"),number:f("number"),object:f("object"),string:f("string"),symbol:f("symbol"),any:d(u),arrayOf:function(e){return d((function(t,n,r,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside arrayOf.");var s=t[n];if(!Array.isArray(s))return new p("Invalid "+o+" `"+a+"` of type `"+m(s)+"` supplied to `"+r+"`, expected an array.");for(var u=0;u<s.length;u++){var l=e(s,u,r,o,a+"["+u+"]",i);if(l instanceof Error)return l}return null}))},element:d((function(t,n,r,o,i){var a=t[n];return e(a)?null:new p("Invalid "+o+" `"+i+"` of type `"+m(a)+"` supplied to `"+r+"`, expected a single ReactElement.")})),elementType:d((function(e,t,n,o,i){var a=e[t];return r.isValidElementType(a)?null:new p("Invalid "+o+" `"+i+"` of type `"+m(a)+"` supplied to `"+n+"`, expected a single ReactElement type.")})),instanceOf:function(e){return d((function(t,n,r,o,i){if(!(t[n]instanceof e)){var a=e.name||"<<anonymous>>";return new p("Invalid "+o+" `"+i+"` of type `"+function(e){if(!e.constructor||!e.constructor.name)return"<<anonymous>>";return e.constructor.name}(t[n])+"` supplied to `"+r+"`, expected instance of `"+a+"`.")}return null}))},node:d((function(e,t,n,r,o){return h(e[t])?null:new p("Invalid "+r+" `"+o+"` supplied to `"+n+"`, expected a ReactNode.")})),objectOf:function(e){return d((function(t,n,r,o,a){if("function"!=typeof e)return new p("Property `"+a+"` of component `"+r+"` has invalid PropType notation inside objectOf.");var u=t[n],l=m(u);if("object"!==l)return new p("Invalid "+o+" `"+a+"` of type `"+l+"` supplied to `"+r+"`, expected an object.");for(var c in u)if(s(u,c)){var d=e(u,c,r,o,a+"."+c,i);if(d instanceof Error)return d}return null}))},oneOf:function(e){if(!Array.isArray(e))return u;return d((function(t,n,r,o,i){for(var a=t[n],s=0;s<e.length;s++)if(c(a,e[s]))return null;var u=JSON.stringify(e,(function(e,t){return"symbol"===v(t)?String(t):t}));return new p("Invalid "+o+" `"+i+"` of value `"+String(a)+"` supplied to `"+r+"`, expected one of "+u+".")}))},oneOfType:function(e){if(!Array.isArray(e))return u;for(var t=0;t<e.length;t++){var n=e[t];if("function"!=typeof n)return g(n),u}return d((function(t,n,r,o,a){for(var s=0;s<e.length;s++){if(null==(0,e[s])(t,n,r,o,a,i))return null}return new p("Invalid "+o+" `"+a+"` supplied to `"+r+"`.")}))},shape:function(e){return d((function(t,n,r,o,a){var s=t[n],u=m(s);if("object"!==u)return new p("Invalid "+o+" `"+a+"` of type `"+u+"` supplied to `"+r+"`, expected `object`.");for(var l in e){var c=e[l];if(c){var d=c(s,l,r,o,a+"."+l,i);if(d)return d}}return null}))},exact:function(e){return d((function(t,n,r,a,s){var u=t[n],l=m(u);if("object"!==l)return new p("Invalid "+a+" `"+s+"` of type `"+l+"` supplied to `"+r+"`, expected `object`.");var c=o({},t[n],e);for(var d in c){var f=e[d];if(!f)return new p("Invalid "+a+" `"+s+"` key `"+d+"` supplied to `"+r+"`.\nBad object: "+JSON.stringify(t[n],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=f(u,d,r,a,s+"."+d,i);if(h)return h}return null}))}};function c(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function p(e){this.message=e,this.stack=""}function d(e){function n(n,r,o,a,s,u,l){if((a=a||"<<anonymous>>",u=u||o,l!==i)&&t){var c=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw c.name="Invariant Violation",c}return null==r[o]?n?null===r[o]?new p("The "+s+" `"+u+"` is marked as required in `"+a+"`, but its value is `null`."):new p("The "+s+" `"+u+"` is marked as required in `"+a+"`, but its value is `undefined`."):null:e(r,o,a,s,u)}var r=n.bind(null,!1);return r.isRequired=n.bind(null,!0),r}function f(e){return d((function(t,n,r,o,i,a){var s=t[n];return m(s)!==e?new p("Invalid "+o+" `"+i+"` of type `"+v(s)+"` supplied to `"+r+"`, expected `"+e+"`."):null}))}function h(t){switch(typeof t){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(h);if(null===t||e(t))return!0;var r=function(e){var t=e&&(n&&e[n]||e["@@iterator"]);if("function"==typeof t)return t}(t);if(!r)return!1;var o,i=r.call(t);if(r!==t.entries){for(;!(o=i.next()).done;)if(!h(o.value))return!1}else for(;!(o=i.next()).done;){var a=o.value;if(a&&!h(a[1]))return!1}return!0;default:return!1}}function m(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function v(e){if(null==e)return""+e;var t=m(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function g(e){var t=v(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return p.prototype=Error.prototype,l.checkPropTypes=a,l.resetWarningCache=a.resetWarningCache,l.PropTypes=l,l}},function(e,t,n){"use strict";e.exports=n(106)},function(e,t,n){"use strict";
|
26 |
+
/** @license React v16.13.1
|
27 |
+
* react-is.production.min.js
|
28 |
+
*
|
29 |
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
30 |
+
*
|
31 |
+
* This source code is licensed under the MIT license found in the
|
32 |
+
* LICENSE file in the root directory of this source tree.
|
33 |
+
*/var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):60108,u=r?Symbol.for("react.profiler"):60114,l=r?Symbol.for("react.provider"):60109,c=r?Symbol.for("react.context"):60110,p=r?Symbol.for("react.async_mode"):60111,d=r?Symbol.for("react.concurrent_mode"):60111,f=r?Symbol.for("react.forward_ref"):60112,h=r?Symbol.for("react.suspense"):60113,m=r?Symbol.for("react.suspense_list"):60120,v=r?Symbol.for("react.memo"):60115,g=r?Symbol.for("react.lazy"):60116,y=r?Symbol.for("react.block"):60121,_=r?Symbol.for("react.fundamental"):60117,b=r?Symbol.for("react.responder"):60118,E=r?Symbol.for("react.scope"):60119;function C(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case o:switch(e=e.type){case p:case d:case a:case u:case s:case h:return e;default:switch(e=e&&e.$$typeof){case c:case f:case g:case v:case l:return e;default:return t}}case i:return t}}}function w(e){return C(e)===d}t.AsyncMode=p,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=o,t.ForwardRef=f,t.Fragment=a,t.Lazy=g,t.Memo=v,t.Portal=i,t.Profiler=u,t.StrictMode=s,t.Suspense=h,t.isAsyncMode=function(e){return w(e)||C(e)===p},t.isConcurrentMode=w,t.isContextConsumer=function(e){return C(e)===c},t.isContextProvider=function(e){return C(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===o},t.isForwardRef=function(e){return C(e)===f},t.isFragment=function(e){return C(e)===a},t.isLazy=function(e){return C(e)===g},t.isMemo=function(e){return C(e)===v},t.isPortal=function(e){return C(e)===i},t.isProfiler=function(e){return C(e)===u},t.isStrictMode=function(e){return C(e)===s},t.isSuspense=function(e){return C(e)===h},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===u||e===s||e===h||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===v||e.$$typeof===l||e.$$typeof===c||e.$$typeof===f||e.$$typeof===_||e.$$typeof===b||e.$$typeof===E||e.$$typeof===y)},t.typeOf=C},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";function r(e,t,n,r,o){}r.resetWarningCache=function(){0},e.exports=r},function(e,t,n){"use strict";e.exports="15.7.0"},function(e,t,n){"use strict";var r=n(52).Component,o=n(15).isValidElement,i=n(53),a=n(111);e.exports=a(r,o,i)},function(e,t,n){"use strict";var r=n(3),o={};function i(e,t,n,r,o,i,a,s){if(!e){var u;if(void 0===t)u=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var l=[n,r,o,i,a,s],c=0;(u=new Error(t.replace(/%s/g,(function(){return l[c++]})))).name="Invariant Violation"}throw u.framesToPop=1,u}}e.exports=function(e,t,n){var a=[],s={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",UNSAFE_componentWillMount:"DEFINE_MANY",UNSAFE_componentWillReceiveProps:"DEFINE_MANY",UNSAFE_componentWillUpdate:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},u={getDerivedStateFromProps:"DEFINE_MANY_MERGED"},l={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var n=0;n<t.length;n++)p(e,t[n])},childContextTypes:function(e,t){e.childContextTypes=r({},e.childContextTypes,t)},contextTypes:function(e,t){e.contextTypes=r({},e.contextTypes,t)},getDefaultProps:function(e,t){e.getDefaultProps?e.getDefaultProps=f(e.getDefaultProps,t):e.getDefaultProps=t},propTypes:function(e,t){e.propTypes=r({},e.propTypes,t)},statics:function(e,t){!function(e,t){if(!t)return;for(var n in t){var r=t[n];if(t.hasOwnProperty(n)){if(i(!(n in l),'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',n),n in e)return i("DEFINE_MANY_MERGED"===(u.hasOwnProperty(n)?u[n]:null),"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",n),void(e[n]=f(e[n],r));e[n]=r}}}(e,t)},autobind:function(){}};function c(e,t){var n=s.hasOwnProperty(t)?s[t]:null;y.hasOwnProperty(t)&&i("OVERRIDE_BASE"===n,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&i("DEFINE_MANY"===n||"DEFINE_MANY_MERGED"===n,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function p(e,n){if(n){i("function"!=typeof n,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),i(!t(n),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var r=e.prototype,o=r.__reactAutoBindPairs;for(var a in n.hasOwnProperty("mixins")&&l.mixins(e,n.mixins),n)if(n.hasOwnProperty(a)&&"mixins"!==a){var u=n[a],p=r.hasOwnProperty(a);if(c(p,a),l.hasOwnProperty(a))l[a](e,u);else{var d=s.hasOwnProperty(a);if("function"==typeof u&&!d&&!p&&!1!==n.autobind)o.push(a,u),r[a]=u;else if(p){var m=s[a];i(d&&("DEFINE_MANY_MERGED"===m||"DEFINE_MANY"===m),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",m,a),"DEFINE_MANY_MERGED"===m?r[a]=f(r[a],u):"DEFINE_MANY"===m&&(r[a]=h(r[a],u))}else r[a]=u}}}else;}function d(e,t){for(var n in i(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects."),t)t.hasOwnProperty(n)&&(i(void 0===e[n],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",n),e[n]=t[n]);return e}function f(e,t){return function(){var n=e.apply(this,arguments),r=t.apply(this,arguments);if(null==n)return r;if(null==r)return n;var o={};return d(o,n),d(o,r),o}}function h(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function m(e,t){return t.bind(e)}var v={componentDidMount:function(){this.__isMounted=!0}},g={componentWillUnmount:function(){this.__isMounted=!1}},y={replaceState:function(e,t){this.updater.enqueueReplaceState(this,e,t)},isMounted:function(){return!!this.__isMounted}},_=function(){};return r(_.prototype,e.prototype,y),function(e){var t=function(e,r,a){this.__reactAutoBindPairs.length&&function(e){for(var t=e.__reactAutoBindPairs,n=0;n<t.length;n+=2){var r=t[n],o=t[n+1];e[r]=m(e,o)}}(this),this.props=e,this.context=r,this.refs=o,this.updater=a||n,this.state=null;var s=this.getInitialState?this.getInitialState():null;i("object"==typeof s&&!Array.isArray(s),"%s.getInitialState(): must return an object or null",t.displayName||"ReactCompositeComponent"),this.state=s};for(var r in t.prototype=new _,t.prototype.constructor=t,t.prototype.__reactAutoBindPairs=[],a.forEach(p.bind(null,t)),p(t,v),p(t,e),p(t,g),t.getDefaultProps&&(t.defaultProps=t.getDefaultProps()),i(t.prototype.render,"createClass(...): Class specification must implement a `render` method."),s)t.prototype[r]||(t.prototype[r]=null);return t}}},function(e,t,n){"use strict";var r=n(18),o=n(15);n(0);e.exports=function(e){return o.isValidElement(e)||r("143"),e}},function(e,t,n){"use strict";var r=n(4),o=n(58),i=n(82),a=n(14),s=n(8),u=n(85),l=n(181),c=n(86),p=n(182);n(2);o.inject();var d={findDOMNode:l,render:i.render,unmountComponentAtNode:i.unmountComponentAtNode,version:u,unstable_batchedUpdates:s.batchedUpdates,unstable_renderSubtreeIntoContainer:p};"undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject&&__REACT_DEVTOOLS_GLOBAL_HOOK__.inject({ComponentTree:{getClosestInstanceFromNode:r.getClosestInstanceFromNode,getNodeFromInstance:function(e){return e._renderedComponent&&(e=c(e)),e?r.getNodeFromInstance(e):null}},Mount:i,Reconciler:a}),e.exports=d},function(e,t,n){"use strict";e.exports={Properties:{"aria-current":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},DOMAttributeNames:{},DOMPropertyNames:{}}},function(e,t,n){"use strict";var r=n(19),o=n(5),i=n(116),a=n(117),s=n(118),u=[9,13,27,32],l=o.canUseDOM&&"CompositionEvent"in window,c=null;o.canUseDOM&&"documentMode"in document&&(c=document.documentMode);var p,d=o.canUseDOM&&"TextEvent"in window&&!c&&!("object"==typeof(p=window.opera)&&"function"==typeof p.version&&parseInt(p.version(),10)<=12),f=o.canUseDOM&&(!l||c&&c>8&&c<=11);var h=String.fromCharCode(32),m={beforeInput:{phasedRegistrationNames:{bubbled:"onBeforeInput",captured:"onBeforeInputCapture"},dependencies:["topCompositionEnd","topKeyPress","topTextInput","topPaste"]},compositionEnd:{phasedRegistrationNames:{bubbled:"onCompositionEnd",captured:"onCompositionEndCapture"},dependencies:["topBlur","topCompositionEnd","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionStart:{phasedRegistrationNames:{bubbled:"onCompositionStart",captured:"onCompositionStartCapture"},dependencies:["topBlur","topCompositionStart","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]},compositionUpdate:{phasedRegistrationNames:{bubbled:"onCompositionUpdate",captured:"onCompositionUpdateCapture"},dependencies:["topBlur","topCompositionUpdate","topKeyDown","topKeyPress","topKeyUp","topMouseDown"]}},v=!1;function g(e,t){switch(e){case"topKeyUp":return-1!==u.indexOf(t.keyCode);case"topKeyDown":return 229!==t.keyCode;case"topKeyPress":case"topMouseDown":case"topBlur":return!0;default:return!1}}function y(e){var t=e.detail;return"object"==typeof t&&"data"in t?t.data:null}var _=null;function b(e,t,n,o){var s,u;if(l?s=function(e){switch(e){case"topCompositionStart":return m.compositionStart;case"topCompositionEnd":return m.compositionEnd;case"topCompositionUpdate":return m.compositionUpdate}}(e):_?g(e,n)&&(s=m.compositionEnd):function(e,t){return"topKeyDown"===e&&229===t.keyCode}(e,n)&&(s=m.compositionStart),!s)return null;f&&(_||s!==m.compositionStart?s===m.compositionEnd&&_&&(u=_.getData()):_=i.getPooled(o));var c=a.getPooled(s,t,n,o);if(u)c.data=u;else{var p=y(n);null!==p&&(c.data=p)}return r.accumulateTwoPhaseDispatches(c),c}function E(e,t,n,o){var a;if(!(a=d?function(e,t){switch(e){case"topCompositionEnd":return y(t);case"topKeyPress":return 32!==t.which?null:(v=!0,h);case"topTextInput":var n=t.data;return n===h&&v?null:n;default:return null}}(e,n):function(e,t){if(_){if("topCompositionEnd"===e||!l&&g(e,t)){var n=_.getData();return i.release(_),_=null,n}return null}switch(e){case"topPaste":return null;case"topKeyPress":return t.which&&!function(e){return(e.ctrlKey||e.altKey||e.metaKey)&&!(e.ctrlKey&&e.altKey)}(t)?String.fromCharCode(t.which):null;case"topCompositionEnd":return f?null:t.data;default:return null}}(e,n)))return null;var u=s.getPooled(m.beforeInput,t,n,o);return u.data=a,r.accumulateTwoPhaseDispatches(u),u}var C={eventTypes:m,extractEvents:function(e,t,n,r){return[b(e,t,n,r),E(e,t,n,r)]}};e.exports=C},function(e,t,n){"use strict";var r=n(3),o=n(13),i=n(61);function a(e){this._root=e,this._startText=this.getText(),this._fallbackText=null}r(a.prototype,{destructor:function(){this._root=null,this._startText=null,this._fallbackText=null},getText:function(){return"value"in this._root?this._root.value:this._root[i()]},getData:function(){if(this._fallbackText)return this._fallbackText;var e,t,n=this._startText,r=n.length,o=this.getText(),i=o.length;for(e=0;e<r&&n[e]===o[e];e++);var a=r-e;for(t=1;t<=a&&n[r-t]===o[i-t];t++);var s=t>1?1-t:void 0;return this._fallbackText=o.slice(e,s),this._fallbackText}}),o.addPoolingTo(a),e.exports=a},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(11);function o(e,t,n,o){return r.call(this,e,t,n,o)}r.augmentClass(o,{data:null}),e.exports=o},function(e,t,n){"use strict";var r=n(20),o=n(19),i=n(5),a=n(4),s=n(8),u=n(11),l=n(64),c=n(34),p=n(35),d=n(65),f={change:{phasedRegistrationNames:{bubbled:"onChange",captured:"onChangeCapture"},dependencies:["topBlur","topChange","topClick","topFocus","topInput","topKeyDown","topKeyUp","topSelectionChange"]}};function h(e,t,n){var r=u.getPooled(f.change,e,t,n);return r.type="change",o.accumulateTwoPhaseDispatches(r),r}var m=null,v=null;var g=!1;function y(e){var t=h(v,e,c(e));s.batchedUpdates(_,t)}function _(e){r.enqueueEvents(e),r.processEventQueue(!1)}function b(){m&&(m.detachEvent("onchange",y),m=null,v=null)}function E(e,t){var n=l.updateValueIfChanged(e),r=!0===t.simulated&&O._allowSimulatedPassThrough;if(n||r)return e}function C(e,t){if("topChange"===e)return t}function w(e,t,n){"topFocus"===e?(b(),function(e,t){v=t,(m=e).attachEvent("onchange",y)}(t,n)):"topBlur"===e&&b()}i.canUseDOM&&(g=p("change")&&(!document.documentMode||document.documentMode>8));var x=!1;function T(){m&&(m.detachEvent("onpropertychange",S),m=null,v=null)}function S(e){"value"===e.propertyName&&E(v,e)&&y(e)}function k(e,t,n){"topFocus"===e?(T(),function(e,t){v=t,(m=e).attachEvent("onpropertychange",S)}(t,n)):"topBlur"===e&&T()}function P(e,t,n){if("topSelectionChange"===e||"topKeyUp"===e||"topKeyDown"===e)return E(v,n)}function I(e,t,n){if("topClick"===e)return E(t,n)}function N(e,t,n){if("topInput"===e||"topChange"===e)return E(t,n)}i.canUseDOM&&(x=p("input")&&(!document.documentMode||document.documentMode>9));var O={eventTypes:f,_allowSimulatedPassThrough:!0,_isInputEventSupported:x,extractEvents:function(e,t,n,r){var o,i,s,u,l=t?a.getNodeFromInstance(t):window;if("select"===(u=(s=l).nodeName&&s.nodeName.toLowerCase())||"input"===u&&"file"===s.type?g?o=C:i=w:d(l)?x?o=N:(o=P,i=k):function(e){var t=e.nodeName;return t&&"input"===t.toLowerCase()&&("checkbox"===e.type||"radio"===e.type)}(l)&&(o=I),o){var c=o(e,t,n);if(c)return h(c,n,r)}i&&i(e,l,t),"topBlur"===e&&function(e,t){if(null!=e){var n=e._wrapperState||t._wrapperState;if(n&&n.controlled&&"number"===t.type){var r=""+t.value;t.getAttribute("value")!==r&&t.setAttribute("value",r)}}}(t,l)}};e.exports=O},function(e,t,n){"use strict";var r=n(121),o={};o.attachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(t.getPublicInstance()):r.addComponentAsRefTo(t,e,n)}(n,e,t._owner)}},o.shouldUpdateRefs=function(e,t){var n=null,r=null;null!==e&&"object"==typeof e&&(n=e.ref,r=e._owner);var o=null,i=null;return null!==t&&"object"==typeof t&&(o=t.ref,i=t._owner),n!==o||"string"==typeof o&&i!==r},o.detachRefs=function(e,t){if(null!==t&&"object"==typeof t){var n=t.ref;null!=n&&function(e,t,n){"function"==typeof e?e(null):r.removeComponentAsRefFrom(t,e,n)}(n,e,t._owner)}},e.exports=o},function(e,t,n){"use strict";var r=n(1);n(0);function o(e){return!(!e||"function"!=typeof e.attachRef||"function"!=typeof e.detachRef)}var i={addComponentAsRefTo:function(e,t,n){o(n)||r("119"),n.attachRef(t,e)},removeComponentAsRefFrom:function(e,t,n){o(n)||r("120");var i=n.getPublicInstance();i&&i.refs[t]===e.getPublicInstance()&&n.detachRef(t)}};e.exports=i},function(e,t,n){"use strict";e.exports=["ResponderEventPlugin","SimpleEventPlugin","TapEventPlugin","EnterLeaveEventPlugin","ChangeEventPlugin","SelectEventPlugin","BeforeInputEventPlugin"]},function(e,t,n){"use strict";var r=n(19),o=n(4),i=n(25),a={mouseEnter:{registrationName:"onMouseEnter",dependencies:["topMouseOut","topMouseOver"]},mouseLeave:{registrationName:"onMouseLeave",dependencies:["topMouseOut","topMouseOver"]}},s={eventTypes:a,extractEvents:function(e,t,n,s){if("topMouseOver"===e&&(n.relatedTarget||n.fromElement))return null;if("topMouseOut"!==e&&"topMouseOver"!==e)return null;var u,l,c;if(s.window===s)u=s;else{var p=s.ownerDocument;u=p?p.defaultView||p.parentWindow:window}if("topMouseOut"===e){l=t;var d=n.relatedTarget||n.toElement;c=d?o.getClosestInstanceFromNode(d):null}else l=null,c=t;if(l===c)return null;var f=null==l?u:o.getNodeFromInstance(l),h=null==c?u:o.getNodeFromInstance(c),m=i.getPooled(a.mouseLeave,l,n,s);m.type="mouseleave",m.target=f,m.relatedTarget=h;var v=i.getPooled(a.mouseEnter,c,n,s);return v.type="mouseenter",v.target=h,v.relatedTarget=f,r.accumulateEnterLeaveDispatches(m,v,l,c),[m,v]}};e.exports=s},function(e,t,n){"use strict";var r=n(16),o=r.injection.MUST_USE_PROPERTY,i=r.injection.HAS_BOOLEAN_VALUE,a=r.injection.HAS_NUMERIC_VALUE,s=r.injection.HAS_POSITIVE_NUMERIC_VALUE,u=r.injection.HAS_OVERLOADED_BOOLEAN_VALUE,l={isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-["+r.ATTRIBUTE_NAME_CHAR+"]*$")),Properties:{accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:i,allowTransparency:0,alt:0,as:0,async:i,autoComplete:0,autoPlay:i,capture:i,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:o|i,cite:0,classID:0,className:0,cols:s,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:i,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:i,defer:i,dir:0,disabled:i,download:u,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:i,formTarget:0,frameBorder:0,headers:0,height:0,hidden:i,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:i,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:o|i,muted:o|i,name:0,nonce:0,noValidate:i,open:i,optimum:0,pattern:0,placeholder:0,playsInline:i,poster:0,preload:0,profile:0,radioGroup:0,readOnly:i,referrerPolicy:0,rel:0,required:i,reversed:i,role:0,rows:s,rowSpan:a,sandbox:0,scope:0,scoped:i,scrolling:0,seamless:i,selected:o|i,shape:0,size:s,sizes:0,span:s,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:a,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:i,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"},DOMPropertyNames:{},DOMMutationMethods:{value:function(e,t){if(null==t)return e.removeAttribute("value");("number"!==e.type||!1===e.hasAttribute("value")||e.validity&&!e.validity.badInput&&e.ownerDocument.activeElement!==e)&&e.setAttribute("value",""+t)}}};e.exports=l},function(e,t,n){"use strict";var r=n(37),o={processChildrenUpdates:n(130).dangerouslyProcessChildrenUpdates,replaceNodeWithMarkup:r.dangerouslyReplaceNodeWithMarkup};e.exports=o},function(e,t,n){"use strict";var r=n(1),o=n(17),i=n(5),a=n(127),s=n(9),u=(n(0),{dangerouslyReplaceNodeWithMarkup:function(e,t){if(i.canUseDOM||r("56"),t||r("57"),"HTML"===e.nodeName&&r("58"),"string"==typeof t){var n=a(t,s)[0];e.parentNode.replaceChild(n,e)}else o.replaceChildWithTree(e,t)}});e.exports=u},function(e,t,n){"use strict";var r=n(5),o=n(128),i=n(129),a=n(0),s=r.canUseDOM?document.createElement("div"):null,u=/^\s*<(\w+)/;e.exports=function(e,t){var n=s;s||a(!1);var r=function(e){var t=e.match(u);return t&&t[1].toLowerCase()}(e),l=r&&i(r);if(l){n.innerHTML=l[1]+e+l[2];for(var c=l[0];c--;)n=n.lastChild}else n.innerHTML=e;var p=n.getElementsByTagName("script");p.length&&(t||a(!1),o(p).forEach(t));for(var d=Array.from(n.childNodes);n.lastChild;)n.removeChild(n.lastChild);return d}},function(e,t,n){"use strict";var r=n(0);e.exports=function(e){return function(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"length"in e&&!("setInterval"in e)&&"number"!=typeof e.nodeType&&(Array.isArray(e)||"callee"in e||"item"in e)}(e)?Array.isArray(e)?e.slice():function(e){var t=e.length;if((Array.isArray(e)||"object"!=typeof e&&"function"!=typeof e)&&r(!1),"number"!=typeof t&&r(!1),0===t||t-1 in e||r(!1),"function"==typeof e.callee&&r(!1),e.hasOwnProperty)try{return Array.prototype.slice.call(e)}catch(e){}for(var n=Array(t),o=0;o<t;o++)n[o]=e[o];return n}(e):[e]}},function(e,t,n){"use strict";var r=n(5),o=n(0),i=r.canUseDOM?document.createElement("div"):null,a={},s=[1,'<select multiple="true">',"</select>"],u=[1,"<table>","</table>"],l=[3,"<table><tbody><tr>","</tr></tbody></table>"],c=[1,'<svg xmlns="http://www.w3.org/2000/svg">',"</svg>"],p={"*":[1,"?<div>","</div>"],area:[1,"<map>","</map>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],legend:[1,"<fieldset>","</fieldset>"],param:[1,"<object>","</object>"],tr:[2,"<table><tbody>","</tbody></table>"],optgroup:s,option:s,caption:u,colgroup:u,tbody:u,tfoot:u,thead:u,td:l,th:l};["circle","clipPath","defs","ellipse","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","text","tspan"].forEach((function(e){p[e]=c,a[e]=!0})),e.exports=function(e){return i||o(!1),p.hasOwnProperty(e)||(e="*"),a.hasOwnProperty(e)||(i.innerHTML="*"===e?"<link />":"<"+e+"></"+e+">",a[e]=!i.firstChild),a[e]?p[e]:null}},function(e,t,n){"use strict";var r=n(37),o=n(4),i={dangerouslyProcessChildrenUpdates:function(e,t){var n=o.getNodeFromInstance(e);r.processUpdates(n,t)}};e.exports=i},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(132),a=n(133),s=n(17),u=n(38),l=n(16),c=n(70),p=n(20),d=n(31),f=n(28),h=n(57),m=n(4),v=n(143),g=n(145),y=n(71),_=n(146),b=(n(7),n(147)),E=n(77),C=(n(9),n(27)),w=(n(0),n(35),n(43),n(64)),x=(n(47),n(2),h),T=p.deleteListener,S=m.getNodeFromInstance,k=f.listenTo,P=d.registrationNameModules,I={string:!0,number:!0},N={children:null,dangerouslySetInnerHTML:null,suppressContentEditableWarning:null};function O(e,t){t&&(z[e._tag]&&(null!=t.children||null!=t.dangerouslySetInnerHTML)&&r("137",e._tag,e._currentElement._owner?" Check the render method of "+e._currentElement._owner.getName()+".":""),null!=t.dangerouslySetInnerHTML&&(null!=t.children&&r("60"),"object"==typeof t.dangerouslySetInnerHTML&&"__html"in t.dangerouslySetInnerHTML||r("61")),null!=t.style&&"object"!=typeof t.style&&r("62",function(e){if(e){var t=e._currentElement._owner||null;if(t){var n=t.getName();if(n)return" This DOM node was rendered by `"+n+"`."}}return""}(e)))}function A(e,t,n,r){if(!(r instanceof E)){0;var o=e._hostContainerInfo,i=o._node&&11===o._node.nodeType?o._node:o._ownerDocument;k(t,i),r.getReactMountReady().enqueue(M,{inst:e,registrationName:t,listener:n})}}function M(){p.putListener(this.inst,this.registrationName,this.listener)}function R(){v.postMountWrapper(this)}function L(){_.postMountWrapper(this)}function D(){g.postMountWrapper(this)}var U={topAbort:"abort",topCanPlay:"canplay",topCanPlayThrough:"canplaythrough",topDurationChange:"durationchange",topEmptied:"emptied",topEncrypted:"encrypted",topEnded:"ended",topError:"error",topLoadedData:"loadeddata",topLoadedMetadata:"loadedmetadata",topLoadStart:"loadstart",topPause:"pause",topPlay:"play",topPlaying:"playing",topProgress:"progress",topRateChange:"ratechange",topSeeked:"seeked",topSeeking:"seeking",topStalled:"stalled",topSuspend:"suspend",topTimeUpdate:"timeupdate",topVolumeChange:"volumechange",topWaiting:"waiting"};function j(){w.track(this)}function F(){this._rootNodeID||r("63");var e=S(this);switch(e||r("64"),this._tag){case"iframe":case"object":this._wrapperState.listeners=[f.trapBubbledEvent("topLoad","load",e)];break;case"video":case"audio":for(var t in this._wrapperState.listeners=[],U)U.hasOwnProperty(t)&&this._wrapperState.listeners.push(f.trapBubbledEvent(t,U[t],e));break;case"source":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e)];break;case"img":this._wrapperState.listeners=[f.trapBubbledEvent("topError","error",e),f.trapBubbledEvent("topLoad","load",e)];break;case"form":this._wrapperState.listeners=[f.trapBubbledEvent("topReset","reset",e),f.trapBubbledEvent("topSubmit","submit",e)];break;case"input":case"select":case"textarea":this._wrapperState.listeners=[f.trapBubbledEvent("topInvalid","invalid",e)]}}function B(){y.postUpdateWrapper(this)}var W={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},q={listing:!0,pre:!0,textarea:!0},z=o({menuitem:!0},W),H=/^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,V={},Y={}.hasOwnProperty;function K(e,t){return e.indexOf("-")>=0||null!=t.is}var $=1;function G(e){var t=e.type;!function(e){Y.call(V,e)||(H.test(e)||r("65",e),V[e]=!0)}(t),this._currentElement=e,this._tag=t.toLowerCase(),this._namespaceURI=null,this._renderedChildren=null,this._previousStyle=null,this._previousStyleCopy=null,this._hostNode=null,this._hostParent=null,this._rootNodeID=0,this._domID=0,this._hostContainerInfo=null,this._wrapperState=null,this._topLevelWrapper=null,this._flags=0}G.displayName="ReactDOMComponent",G.Mixin={mountComponent:function(e,t,n,r){this._rootNodeID=$++,this._domID=n._idCounter++,this._hostParent=t,this._hostContainerInfo=n;var o,a,l,p=this._currentElement.props;switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":this._wrapperState={listeners:null},e.getReactMountReady().enqueue(F,this);break;case"input":v.mountWrapper(this,p,t),p=v.getHostProps(this,p),e.getReactMountReady().enqueue(j,this),e.getReactMountReady().enqueue(F,this);break;case"option":g.mountWrapper(this,p,t),p=g.getHostProps(this,p);break;case"select":y.mountWrapper(this,p,t),p=y.getHostProps(this,p),e.getReactMountReady().enqueue(F,this);break;case"textarea":_.mountWrapper(this,p,t),p=_.getHostProps(this,p),e.getReactMountReady().enqueue(j,this),e.getReactMountReady().enqueue(F,this)}if(O(this,p),null!=t?(o=t._namespaceURI,a=t._tag):n._tag&&(o=n._namespaceURI,a=n._tag),(null==o||o===u.svg&&"foreignobject"===a)&&(o=u.html),o===u.html&&("svg"===this._tag?o=u.svg:"math"===this._tag&&(o=u.mathml)),this._namespaceURI=o,e.useCreateElement){var d,f=n._ownerDocument;if(o===u.html)if("script"===this._tag){var h=f.createElement("div"),b=this._currentElement.type;h.innerHTML="<"+b+"></"+b+">",d=h.removeChild(h.firstChild)}else d=p.is?f.createElement(this._currentElement.type,p.is):f.createElement(this._currentElement.type);else d=f.createElementNS(o,this._currentElement.type);m.precacheNode(this,d),this._flags|=x.hasCachedChildNodes,this._hostParent||c.setAttributeForRoot(d),this._updateDOMProperties(null,p,e);var E=s(d);this._createInitialChildren(e,p,r,E),l=E}else{var C=this._createOpenTagMarkupAndPutListeners(e,p),w=this._createContentMarkup(e,p,r);l=!w&&W[this._tag]?C+"/>":C+">"+w+"</"+this._currentElement.type+">"}switch(this._tag){case"input":e.getReactMountReady().enqueue(R,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"textarea":e.getReactMountReady().enqueue(L,this),p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"select":case"button":p.autoFocus&&e.getReactMountReady().enqueue(i.focusDOMComponent,this);break;case"option":e.getReactMountReady().enqueue(D,this)}return l},_createOpenTagMarkupAndPutListeners:function(e,t){var n="<"+this._currentElement.type;for(var r in t)if(t.hasOwnProperty(r)){var i=t[r];if(null!=i)if(P.hasOwnProperty(r))i&&A(this,r,i,e);else{"style"===r&&(i&&(i=this._previousStyleCopy=o({},t.style)),i=a.createMarkupForStyles(i,this));var s=null;null!=this._tag&&K(this._tag,t)?N.hasOwnProperty(r)||(s=c.createMarkupForCustomAttribute(r,i)):s=c.createMarkupForProperty(r,i),s&&(n+=" "+s)}}return e.renderToStaticMarkup?n:(this._hostParent||(n+=" "+c.createMarkupForRoot()),n+=" "+c.createMarkupForID(this._domID))},_createContentMarkup:function(e,t,n){var r="",o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&(r=o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)r=C(i);else if(null!=a){r=this.mountChildren(a,e,n).join("")}}return q[this._tag]&&"\n"===r.charAt(0)?"\n"+r:r},_createInitialChildren:function(e,t,n,r){var o=t.dangerouslySetInnerHTML;if(null!=o)null!=o.__html&&s.queueHTML(r,o.__html);else{var i=I[typeof t.children]?t.children:null,a=null!=i?null:t.children;if(null!=i)""!==i&&s.queueText(r,i);else if(null!=a)for(var u=this.mountChildren(a,e,n),l=0;l<u.length;l++)s.queueChild(r,u[l])}},receiveComponent:function(e,t,n){var r=this._currentElement;this._currentElement=e,this.updateComponent(t,r,e,n)},updateComponent:function(e,t,n,r){var o=t.props,i=this._currentElement.props;switch(this._tag){case"input":o=v.getHostProps(this,o),i=v.getHostProps(this,i);break;case"option":o=g.getHostProps(this,o),i=g.getHostProps(this,i);break;case"select":o=y.getHostProps(this,o),i=y.getHostProps(this,i);break;case"textarea":o=_.getHostProps(this,o),i=_.getHostProps(this,i)}switch(O(this,i),this._updateDOMProperties(o,i,e),this._updateDOMChildren(o,i,e,r),this._tag){case"input":v.updateWrapper(this),w.updateValueIfChanged(this);break;case"textarea":_.updateWrapper(this);break;case"select":e.getReactMountReady().enqueue(B,this)}},_updateDOMProperties:function(e,t,n){var r,i,s;for(r in e)if(!t.hasOwnProperty(r)&&e.hasOwnProperty(r)&&null!=e[r])if("style"===r){var u=this._previousStyleCopy;for(i in u)u.hasOwnProperty(i)&&((s=s||{})[i]="");this._previousStyleCopy=null}else P.hasOwnProperty(r)?e[r]&&T(this,r):K(this._tag,e)?N.hasOwnProperty(r)||c.deleteValueForAttribute(S(this),r):(l.properties[r]||l.isCustomAttribute(r))&&c.deleteValueForProperty(S(this),r);for(r in t){var p=t[r],d="style"===r?this._previousStyleCopy:null!=e?e[r]:void 0;if(t.hasOwnProperty(r)&&p!==d&&(null!=p||null!=d))if("style"===r)if(p?p=this._previousStyleCopy=o({},p):this._previousStyleCopy=null,d){for(i in d)!d.hasOwnProperty(i)||p&&p.hasOwnProperty(i)||((s=s||{})[i]="");for(i in p)p.hasOwnProperty(i)&&d[i]!==p[i]&&((s=s||{})[i]=p[i])}else s=p;else if(P.hasOwnProperty(r))p?A(this,r,p,n):d&&T(this,r);else if(K(this._tag,t))N.hasOwnProperty(r)||c.setValueForAttribute(S(this),r,p);else if(l.properties[r]||l.isCustomAttribute(r)){var f=S(this);null!=p?c.setValueForProperty(f,r,p):c.deleteValueForProperty(f,r)}}s&&a.setValueForStyles(S(this),s,this)},_updateDOMChildren:function(e,t,n,r){var o=I[typeof e.children]?e.children:null,i=I[typeof t.children]?t.children:null,a=e.dangerouslySetInnerHTML&&e.dangerouslySetInnerHTML.__html,s=t.dangerouslySetInnerHTML&&t.dangerouslySetInnerHTML.__html,u=null!=o?null:e.children,l=null!=i?null:t.children,c=null!=o||null!=a,p=null!=i||null!=s;null!=u&&null==l?this.updateChildren(null,n,r):c&&!p&&this.updateTextContent(""),null!=i?o!==i&&this.updateTextContent(""+i):null!=s?a!==s&&this.updateMarkup(""+s):null!=l&&this.updateChildren(l,n,r)},getHostNode:function(){return S(this)},unmountComponent:function(e){switch(this._tag){case"audio":case"form":case"iframe":case"img":case"link":case"object":case"source":case"video":var t=this._wrapperState.listeners;if(t)for(var n=0;n<t.length;n++)t[n].remove();break;case"input":case"textarea":w.stopTracking(this);break;case"html":case"head":case"body":r("66",this._tag)}this.unmountChildren(e),m.uncacheNode(this),p.deleteAllListeners(this),this._rootNodeID=0,this._domID=0,this._wrapperState=null},getPublicInstance:function(){return S(this)}},o(G.prototype,G.Mixin,b.Mixin),e.exports=G},function(e,t,n){"use strict";var r=n(4),o=n(68),i={focusDOMComponent:function(){o(r.getNodeFromInstance(this))}};e.exports=i},function(e,t,n){"use strict";var r=n(69),o=n(5),i=(n(7),n(134),n(136)),a=n(137),s=n(139),u=(n(2),s((function(e){return a(e)}))),l=!1,c="cssFloat";if(o.canUseDOM){var p=document.createElement("div").style;try{p.font=""}catch(e){l=!0}void 0===document.documentElement.style.cssFloat&&(c="styleFloat")}var d={createMarkupForStyles:function(e,t){var n="";for(var r in e)if(e.hasOwnProperty(r)){var o=0===r.indexOf("--"),a=e[r];0,null!=a&&(n+=u(r)+":",n+=i(r,a,t,o)+";")}return n||null},setValueForStyles:function(e,t,n){var o=e.style;for(var a in t)if(t.hasOwnProperty(a)){var s=0===a.indexOf("--");0;var u=i(a,t[a],n,s);if("float"!==a&&"cssFloat"!==a||(a=c),s)o.setProperty(a,u);else if(u)o[a]=u;else{var p=l&&r.shorthandPropertyExpansions[a];if(p)for(var d in p)o[d]="";else o[a]=""}}}};e.exports=d},function(e,t,n){"use strict";var r=n(135),o=/^-ms-/;e.exports=function(e){return r(e.replace(o,"ms-"))}},function(e,t,n){"use strict";var r=/-(.)/g;e.exports=function(e){return e.replace(r,(function(e,t){return t.toUpperCase()}))}},function(e,t,n){"use strict";var r=n(69),o=(n(2),r.isUnitlessNumber);e.exports=function(e,t,n,r){if(null==t||"boolean"==typeof t||""===t)return"";var i=isNaN(t);return r||i||0===t||o.hasOwnProperty(e)&&o[e]?""+t:("string"==typeof t&&(t=t.trim()),t+"px")}},function(e,t,n){"use strict";var r=n(138),o=/^ms-/;e.exports=function(e){return r(e).replace(o,"-ms-")}},function(e,t,n){"use strict";var r=/([A-Z])/g;e.exports=function(e){return e.replace(r,"-$1").toLowerCase()}},function(e,t,n){"use strict";e.exports=function(e){var t={};return function(n){return t.hasOwnProperty(n)||(t[n]=e.call(this,n)),t[n]}}},function(e,t,n){"use strict";var r=n(27);e.exports=function(e){return'"'+r(e)+'"'}},function(e,t,n){"use strict";var r=n(20);var o={handleTopLevel:function(e,t,n,o){!function(e){r.enqueueEvents(e),r.processEventQueue(!1)}(r.extractEvents(e,t,n,o))}};e.exports=o},function(e,t,n){"use strict";var r=n(5);function o(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n["ms"+e]="MS"+t,n["O"+e]="o"+t.toLowerCase(),n}var i={animationend:o("Animation","AnimationEnd"),animationiteration:o("Animation","AnimationIteration"),animationstart:o("Animation","AnimationStart"),transitionend:o("Transition","TransitionEnd")},a={},s={};r.canUseDOM&&(s=document.createElement("div").style,"AnimationEvent"in window||(delete i.animationend.animation,delete i.animationiteration.animation,delete i.animationstart.animation),"TransitionEvent"in window||delete i.transitionend.transition),e.exports=function(e){if(a[e])return a[e];if(!i[e])return e;var t=i[e];for(var n in t)if(t.hasOwnProperty(n)&&n in s)return a[e]=t[n];return""}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(70),a=n(40),s=n(4),u=n(8);n(0),n(2);function l(){this._rootNodeID&&p.updateWrapper(this)}function c(e){return"checkbox"===e.type||"radio"===e.type?null!=e.checked:null!=e.value}var p={getHostProps:function(e,t){var n=a.getValue(t),r=a.getChecked(t);return o({type:void 0,step:void 0,min:void 0,max:void 0},t,{defaultChecked:void 0,defaultValue:void 0,value:null!=n?n:e._wrapperState.initialValue,checked:null!=r?r:e._wrapperState.initialChecked,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:null!=t.value?t.value:n,listeners:null,onChange:d.bind(e),controlled:c(t)}},updateWrapper:function(e){var t=e._currentElement.props,n=t.checked;null!=n&&i.setValueForProperty(s.getNodeFromInstance(e),"checked",n||!1);var r=s.getNodeFromInstance(e),o=a.getValue(t);if(null!=o)if(0===o&&""===r.value)r.value="0";else if("number"===t.type){var u=parseFloat(r.value,10)||0;(o!=u||o==u&&r.value!=o)&&(r.value=""+o)}else r.value!==""+o&&(r.value=""+o);else null==t.value&&null!=t.defaultValue&&r.defaultValue!==""+t.defaultValue&&(r.defaultValue=""+t.defaultValue),null==t.checked&&null!=t.defaultChecked&&(r.defaultChecked=!!t.defaultChecked)},postMountWrapper:function(e){var t=e._currentElement.props,n=s.getNodeFromInstance(e);switch(t.type){case"submit":case"reset":break;case"color":case"date":case"datetime":case"datetime-local":case"month":case"time":case"week":n.value="",n.value=n.defaultValue;break;default:n.value=n.value}var r=n.name;""!==r&&(n.name=""),n.defaultChecked=!n.defaultChecked,n.defaultChecked=!n.defaultChecked,""!==r&&(n.name=r)}};function d(e){var t=this._currentElement.props,n=a.executeOnChange(t,e);u.asap(l,this);var o=t.name;if("radio"===t.type&&null!=o){for(var i=s.getNodeFromInstance(this),c=i;c.parentNode;)c=c.parentNode;for(var p=c.querySelectorAll("input[name="+JSON.stringify(""+o)+'][type="radio"]'),d=0;d<p.length;d++){var f=p[d];if(f!==i&&f.form===i.form){var h=s.getInstanceFromNode(f);h||r("90"),u.asap(l,h)}}}return n}e.exports=p},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";var r=n(3),o=n(12),i=n(4),a=n(71),s=(n(2),!1);function u(e){var t="";return o.Children.forEach(e,(function(e){null!=e&&("string"==typeof e||"number"==typeof e?t+=e:s||(s=!0))})),t}var l={mountWrapper:function(e,t,n){var r=null;if(null!=n){var o=n;"optgroup"===o._tag&&(o=o._hostParent),null!=o&&"select"===o._tag&&(r=a.getSelectValueContext(o))}var i,s=null;if(null!=r)if(i=null!=t.value?t.value+"":u(t.children),s=!1,Array.isArray(r)){for(var l=0;l<r.length;l++)if(""+r[l]===i){s=!0;break}}else s=""+r===i;e._wrapperState={selected:s}},postMountWrapper:function(e){var t=e._currentElement.props;null!=t.value&&i.getNodeFromInstance(e).setAttribute("value",t.value)},getHostProps:function(e,t){var n=r({selected:void 0,children:void 0},t);null!=e._wrapperState.selected&&(n.selected=e._wrapperState.selected);var o=u(t.children);return o&&(n.children=o),n}};e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(40),a=n(4),s=n(8);n(0),n(2);function u(){this._rootNodeID&&l.updateWrapper(this)}var l={getHostProps:function(e,t){return null!=t.dangerouslySetInnerHTML&&r("91"),o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue,onChange:e._wrapperState.onChange})},mountWrapper:function(e,t){var n=i.getValue(t),o=n;if(null==n){var a=t.defaultValue,s=t.children;null!=s&&(null!=a&&r("92"),Array.isArray(s)&&(s.length<=1||r("93"),s=s[0]),a=""+s),null==a&&(a=""),o=a}e._wrapperState={initialValue:""+o,listeners:null,onChange:c.bind(e)}},updateWrapper:function(e){var t=e._currentElement.props,n=a.getNodeFromInstance(e),r=i.getValue(t);if(null!=r){var o=""+r;o!==n.value&&(n.value=o),null==t.defaultValue&&(n.defaultValue=o)}null!=t.defaultValue&&(n.defaultValue=t.defaultValue)},postMountWrapper:function(e){var t=a.getNodeFromInstance(e),n=t.textContent;n===e._wrapperState.initialValue&&(t.value=n)}};function c(e){var t=this._currentElement.props,n=i.executeOnChange(t,e);return s.asap(u,this),n}e.exports=l},function(e,t,n){"use strict";var r=n(1),o=n(41),i=(n(22),n(7),n(10),n(14)),a=n(148),s=(n(9),n(153));n(0);function u(e,t){return t&&(e=e||[]).push(t),e}function l(e,t){o.processChildrenUpdates(e,t)}var c={Mixin:{_reconcilerInstantiateChildren:function(e,t,n){return a.instantiateChildren(e,t,n)},_reconcilerUpdateChildren:function(e,t,n,r,o,i){var u;return u=s(t,0),a.updateChildren(e,u,n,r,o,this,this._hostContainerInfo,i,0),u},mountChildren:function(e,t,n){var r=this._reconcilerInstantiateChildren(e,t,n);this._renderedChildren=r;var o=[],a=0;for(var s in r)if(r.hasOwnProperty(s)){var u=r[s];0;var l=i.mountComponent(u,t,this,this._hostContainerInfo,n,0);u._mountIndex=a++,o.push(l)}return o},updateTextContent:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"TEXT_CONTENT",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateMarkup:function(e){var t,n=this._renderedChildren;for(var o in a.unmountChildren(n,!1),n)n.hasOwnProperty(o)&&r("118");l(this,[(t=e,{type:"SET_MARKUP",content:t,fromIndex:null,fromNode:null,toIndex:null,afterNode:null})])},updateChildren:function(e,t,n){this._updateChildren(e,t,n)},_updateChildren:function(e,t,n){var r=this._renderedChildren,o={},a=[],s=this._reconcilerUpdateChildren(r,e,a,o,t,n);if(s||r){var c,p=null,d=0,f=0,h=0,m=null;for(c in s)if(s.hasOwnProperty(c)){var v=r&&r[c],g=s[c];v===g?(p=u(p,this.moveChild(v,m,d,f)),f=Math.max(v._mountIndex,f),v._mountIndex=d):(v&&(f=Math.max(v._mountIndex,f)),p=u(p,this._mountChildAtIndex(g,a[h],m,d,t,n)),h++),d++,m=i.getHostNode(g)}for(c in o)o.hasOwnProperty(c)&&(p=u(p,this._unmountChild(r[c],o[c])));p&&l(this,p),this._renderedChildren=s}},unmountChildren:function(e){var t=this._renderedChildren;a.unmountChildren(t,e),this._renderedChildren=null},moveChild:function(e,t,n,r){if(e._mountIndex<r)return function(e,t,n){return{type:"MOVE_EXISTING",content:null,fromIndex:e._mountIndex,fromNode:i.getHostNode(e),toIndex:n,afterNode:t}}(e,t,n)},createChild:function(e,t,n){return function(e,t,n){return{type:"INSERT_MARKUP",content:e,fromIndex:null,fromNode:null,toIndex:n,afterNode:t}}(n,t,e._mountIndex)},removeChild:function(e,t){return function(e,t){return{type:"REMOVE_NODE",content:null,fromIndex:e._mountIndex,fromNode:t,toIndex:null,afterNode:null}}(e,t)},_mountChildAtIndex:function(e,t,n,r,o,i){return e._mountIndex=r,this.createChild(e,n,t)},_unmountChild:function(e,t){var n=this.removeChild(e,t);return e._mountIndex=null,n}}};e.exports=c},function(e,t,n){"use strict";(function(t){var r=n(14),o=n(42),i=(n(45),n(44)),a=n(75);n(2);function s(e,t,n,r){var i=void 0===e[n];null!=t&&i&&(e[n]=o(t,!0))}void 0!==t&&Object({NODE_ENV:"production"});var u={instantiateChildren:function(e,t,n,r){if(null==e)return null;var o={};return a(e,s,o),o},updateChildren:function(e,t,n,a,s,u,l,c,p){if(t||e){var d,f;for(d in t)if(t.hasOwnProperty(d)){var h=(f=e&&e[d])&&f._currentElement,m=t[d];if(null!=f&&i(h,m))r.receiveComponent(f,m,s,c),t[d]=f;else{f&&(a[d]=r.getHostNode(f),r.unmountComponent(f,!1));var v=o(m,!0);t[d]=v;var g=r.mountComponent(v,s,u,l,c,p);n.push(g)}}for(d in e)!e.hasOwnProperty(d)||t&&t.hasOwnProperty(d)||(f=e[d],a[d]=r.getHostNode(f),r.unmountComponent(f,!1))}},unmountChildren:function(e,t){for(var n in e)if(e.hasOwnProperty(n)){var o=e[n];r.unmountComponent(o,t)}}};e.exports=u}).call(this,n(30))},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(12),a=n(41),s=n(10),u=n(33),l=n(22),c=(n(7),n(72)),p=n(14),d=n(23),f=(n(0),n(43)),h=n(44),m=(n(2),0),v=1,g=2;function y(e){}function _(e,t){0}y.prototype.render=function(){var e=l.get(this)._currentElement.type,t=e(this.props,this.context,this.updater);return _(e,t),t};var b=1,E={construct:function(e){this._currentElement=e,this._rootNodeID=0,this._compositeType=null,this._instance=null,this._hostParent=null,this._hostContainerInfo=null,this._updateBatchNumber=null,this._pendingElement=null,this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._renderedNodeType=null,this._renderedComponent=null,this._context=null,this._mountOrder=0,this._topLevelWrapper=null,this._pendingCallbacks=null,this._calledComponentWillUnmount=!1},mountComponent:function(e,t,n,o){this._context=o,this._mountOrder=b++,this._hostParent=t,this._hostContainerInfo=n;var a,s=this._currentElement.props,u=this._processContext(o),c=this._currentElement.type,p=e.getUpdateQueue(),f=function(e){return!(!e.prototype||!e.prototype.isReactComponent)}(c),h=this._constructComponent(f,s,u,p);f||null!=h&&null!=h.render?!function(e){return!(!e.prototype||!e.prototype.isPureReactComponent)}(c)?this._compositeType=m:this._compositeType=v:(a=h,_(),null===h||!1===h||i.isValidElement(h)||r("105",c.displayName||c.name||"Component"),h=new y(c),this._compositeType=g),h.props=s,h.context=u,h.refs=d,h.updater=p,this._instance=h,l.set(h,this);var E,C=h.state;return void 0===C&&(h.state=C=null),("object"!=typeof C||Array.isArray(C))&&r("106",this.getName()||"ReactCompositeComponent"),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,E=h.unstable_handleError?this.performInitialMountWithErrorHandling(a,t,n,e,o):this.performInitialMount(a,t,n,e,o),h.componentDidMount&&e.getReactMountReady().enqueue(h.componentDidMount,h),E},_constructComponent:function(e,t,n,r){return this._constructComponentWithoutOwner(e,t,n,r)},_constructComponentWithoutOwner:function(e,t,n,r){var o=this._currentElement.type;return e?new o(t,n,r):o(t,n,r)},performInitialMountWithErrorHandling:function(e,t,n,r,o){var i,a=r.checkpoint();try{i=this.performInitialMount(e,t,n,r,o)}catch(s){r.rollback(a),this._instance.unstable_handleError(s),this._pendingStateQueue&&(this._instance.state=this._processPendingState(this._instance.props,this._instance.context)),a=r.checkpoint(),this._renderedComponent.unmountComponent(!0),r.rollback(a),i=this.performInitialMount(e,t,n,r,o)}return i},performInitialMount:function(e,t,n,r,o){var i=this._instance;i.componentWillMount&&(i.componentWillMount(),this._pendingStateQueue&&(i.state=this._processPendingState(i.props,i.context))),void 0===e&&(e=this._renderValidatedComponent());var a=c.getType(e);this._renderedNodeType=a;var s=this._instantiateReactComponent(e,a!==c.EMPTY);return this._renderedComponent=s,p.mountComponent(s,r,t,n,this._processChildContext(o),0)},getHostNode:function(){return p.getHostNode(this._renderedComponent)},unmountComponent:function(e){if(this._renderedComponent){var t=this._instance;if(t.componentWillUnmount&&!t._calledComponentWillUnmount)if(t._calledComponentWillUnmount=!0,e){var n=this.getName()+".componentWillUnmount()";u.invokeGuardedCallback(n,t.componentWillUnmount.bind(t))}else t.componentWillUnmount();this._renderedComponent&&(p.unmountComponent(this._renderedComponent,e),this._renderedNodeType=null,this._renderedComponent=null,this._instance=null),this._pendingStateQueue=null,this._pendingReplaceState=!1,this._pendingForceUpdate=!1,this._pendingCallbacks=null,this._pendingElement=null,this._context=null,this._rootNodeID=0,this._topLevelWrapper=null,l.remove(t)}},_maskContext:function(e){var t=this._currentElement.type.contextTypes;if(!t)return d;var n={};for(var r in t)n[r]=e[r];return n},_processContext:function(e){return this._maskContext(e)},_processChildContext:function(e){var t,n=this._currentElement.type,i=this._instance;if(i.getChildContext&&(t=i.getChildContext()),t){for(var a in"object"!=typeof n.childContextTypes&&r("107",this.getName()||"ReactCompositeComponent"),t)a in n.childContextTypes||r("108",this.getName()||"ReactCompositeComponent",a);return o({},e,t)}return e},_checkContextTypes:function(e,t,n){0},receiveComponent:function(e,t,n){var r=this._currentElement,o=this._context;this._pendingElement=null,this.updateComponent(t,r,e,o,n)},performUpdateIfNecessary:function(e){null!=this._pendingElement?p.receiveComponent(this,this._pendingElement,e,this._context):null!==this._pendingStateQueue||this._pendingForceUpdate?this.updateComponent(e,this._currentElement,this._currentElement,this._context,this._context):this._updateBatchNumber=null},updateComponent:function(e,t,n,o,i){var a=this._instance;null==a&&r("136",this.getName()||"ReactCompositeComponent");var s,u=!1;this._context===i?s=a.context:(s=this._processContext(i),u=!0);var l=t.props,c=n.props;t!==n&&(u=!0),u&&a.componentWillReceiveProps&&a.componentWillReceiveProps(c,s);var p=this._processPendingState(c,s),d=!0;this._pendingForceUpdate||(a.shouldComponentUpdate?d=a.shouldComponentUpdate(c,p,s):this._compositeType===v&&(d=!f(l,c)||!f(a.state,p))),this._updateBatchNumber=null,d?(this._pendingForceUpdate=!1,this._performComponentUpdate(n,c,p,s,e,i)):(this._currentElement=n,this._context=i,a.props=c,a.state=p,a.context=s)},_processPendingState:function(e,t){var n=this._instance,r=this._pendingStateQueue,i=this._pendingReplaceState;if(this._pendingReplaceState=!1,this._pendingStateQueue=null,!r)return n.state;if(i&&1===r.length)return r[0];for(var a=o({},i?r[0]:n.state),s=i?1:0;s<r.length;s++){var u=r[s];o(a,"function"==typeof u?u.call(n,a,e,t):u)}return a},_performComponentUpdate:function(e,t,n,r,o,i){var a,s,u,l=this._instance,c=Boolean(l.componentDidUpdate);c&&(a=l.props,s=l.state,u=l.context),l.componentWillUpdate&&l.componentWillUpdate(t,n,r),this._currentElement=e,this._context=i,l.props=t,l.state=n,l.context=r,this._updateRenderedComponent(o,i),c&&o.getReactMountReady().enqueue(l.componentDidUpdate.bind(l,a,s,u),l)},_updateRenderedComponent:function(e,t){var n=this._renderedComponent,r=n._currentElement,o=this._renderValidatedComponent();if(h(r,o))p.receiveComponent(n,o,e,this._processChildContext(t));else{var i=p.getHostNode(n);p.unmountComponent(n,!1);var a=c.getType(o);this._renderedNodeType=a;var s=this._instantiateReactComponent(o,a!==c.EMPTY);this._renderedComponent=s;var u=p.mountComponent(s,e,this._hostParent,this._hostContainerInfo,this._processChildContext(t),0);this._replaceNodeWithMarkup(i,u,n)}},_replaceNodeWithMarkup:function(e,t,n){a.replaceNodeWithMarkup(e,t,n)},_renderValidatedComponentWithoutOwnerOrContext:function(){return this._instance.render()},_renderValidatedComponent:function(){var e;if(this._compositeType!==g){s.current=this;try{e=this._renderValidatedComponentWithoutOwnerOrContext()}finally{s.current=null}}else e=this._renderValidatedComponentWithoutOwnerOrContext();return null===e||!1===e||i.isValidElement(e)||r("109",this.getName()||"ReactCompositeComponent"),e},attachRef:function(e,t){var n=this.getPublicInstance();null==n&&r("110");var o=t.getPublicInstance();(n.refs===d?n.refs={}:n.refs)[e]=o},detachRef:function(e){delete this.getPublicInstance().refs[e]},getName:function(){var e=this._currentElement.type,t=this._instance&&this._instance.constructor;return e.displayName||t&&t.displayName||e.name||t&&t.name||null},getPublicInstance:function(){var e=this._instance;return this._compositeType===g?null:e},_instantiateReactComponent:null};e.exports=E},function(e,t,n){"use strict";var r=1;e.exports=function(){return r++}},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103;e.exports=r},function(e,t,n){"use strict";var r="function"==typeof Symbol&&Symbol.iterator;e.exports=function(e){var t=e&&(r&&e[r]||e["@@iterator"]);if("function"==typeof t)return t}},function(e,t,n){"use strict";(function(t){n(45);var r=n(75);n(2);function o(e,t,n,r){if(e&&"object"==typeof e){var o=e;0,void 0===o[n]&&null!=t&&(o[n]=t)}}void 0!==t&&Object({NODE_ENV:"production"}),e.exports=function(e,t){if(null==e)return e;var n={};return r(e,o,n),n}}).call(this,n(30))},function(e,t,n){"use strict";var r=n(46);n(2);var o=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.transaction=t}return e.prototype.isMounted=function(e){return!1},e.prototype.enqueueCallback=function(e,t,n){this.transaction.isInTransaction()&&r.enqueueCallback(e,t,n)},e.prototype.enqueueForceUpdate=function(e){this.transaction.isInTransaction()&&r.enqueueForceUpdate(e)},e.prototype.enqueueReplaceState=function(e,t){this.transaction.isInTransaction()&&r.enqueueReplaceState(e,t)},e.prototype.enqueueSetState=function(e,t){this.transaction.isInTransaction()&&r.enqueueSetState(e,t)},e}();e.exports=o},function(e,t,n){"use strict";var r=n(3),o=n(17),i=n(4),a=function(e){this._currentElement=null,this._hostNode=null,this._hostParent=null,this._hostContainerInfo=null,this._domID=0};r(a.prototype,{mountComponent:function(e,t,n,r){var a=n._idCounter++;this._domID=a,this._hostParent=t,this._hostContainerInfo=n;var s=" react-empty: "+this._domID+" ";if(e.useCreateElement){var u=n._ownerDocument.createComment(s);return i.precacheNode(this,u),o(u)}return e.renderToStaticMarkup?"":"\x3c!--"+s+"--\x3e"},receiveComponent:function(){},getHostNode:function(){return i.getNodeFromInstance(this)},unmountComponent:function(){i.uncacheNode(this)}}),e.exports=a},function(e,t,n){"use strict";var r=n(1);n(0);function o(e,t){"_hostNode"in e||r("33"),"_hostNode"in t||r("33");for(var n=0,o=e;o;o=o._hostParent)n++;for(var i=0,a=t;a;a=a._hostParent)i++;for(;n-i>0;)e=e._hostParent,n--;for(;i-n>0;)t=t._hostParent,i--;for(var s=n;s--;){if(e===t)return e;e=e._hostParent,t=t._hostParent}return null}e.exports={isAncestor:function(e,t){"_hostNode"in e||r("35"),"_hostNode"in t||r("35");for(;t;){if(t===e)return!0;t=t._hostParent}return!1},getLowestCommonAncestor:o,getParentInstance:function(e){return"_hostNode"in e||r("36"),e._hostParent},traverseTwoPhase:function(e,t,n){for(var r,o=[];e;)o.push(e),e=e._hostParent;for(r=o.length;r-- >0;)t(o[r],"captured",n);for(r=0;r<o.length;r++)t(o[r],"bubbled",n)},traverseEnterLeave:function(e,t,n,r,i){for(var a=e&&t?o(e,t):null,s=[];e&&e!==a;)s.push(e),e=e._hostParent;for(var u,l=[];t&&t!==a;)l.push(t),t=t._hostParent;for(u=0;u<s.length;u++)n(s[u],"bubbled",r);for(u=l.length;u-- >0;)n(l[u],"captured",i)}}},function(e,t,n){"use strict";var r=n(1),o=n(3),i=n(37),a=n(17),s=n(4),u=n(27),l=(n(0),n(47),function(e){this._currentElement=e,this._stringText=""+e,this._hostNode=null,this._hostParent=null,this._domID=0,this._mountIndex=0,this._closingComment=null,this._commentNodes=null});o(l.prototype,{mountComponent:function(e,t,n,r){var o=n._idCounter++,i=" react-text: "+o+" ";if(this._domID=o,this._hostParent=t,e.useCreateElement){var l=n._ownerDocument,c=l.createComment(i),p=l.createComment(" /react-text "),d=a(l.createDocumentFragment());return a.queueChild(d,a(c)),this._stringText&&a.queueChild(d,a(l.createTextNode(this._stringText))),a.queueChild(d,a(p)),s.precacheNode(this,c),this._closingComment=p,d}var f=u(this._stringText);return e.renderToStaticMarkup?f:"\x3c!--"+i+"--\x3e"+f+"\x3c!-- /react-text --\x3e"},receiveComponent:function(e,t){if(e!==this._currentElement){this._currentElement=e;var n=""+e;if(n!==this._stringText){this._stringText=n;var r=this.getHostNode();i.replaceDelimitedText(r[0],r[1],n)}}},getHostNode:function(){var e=this._commentNodes;if(e)return e;if(!this._closingComment)for(var t=s.getNodeFromInstance(this).nextSibling;;){if(null==t&&r("67",this._domID),8===t.nodeType&&" /react-text "===t.nodeValue){this._closingComment=t;break}t=t.nextSibling}return e=[this._hostNode,this._closingComment],this._commentNodes=e,e},unmountComponent:function(){this._closingComment=null,this._commentNodes=null,s.uncacheNode(this)}}),e.exports=l},function(e,t,n){"use strict";var r=n(3),o=n(79),i=n(5),a=n(13),s=n(4),u=n(8),l=n(34),c=n(159);function p(e){for(;e._hostParent;)e=e._hostParent;var t=s.getNodeFromInstance(e).parentNode;return s.getClosestInstanceFromNode(t)}function d(e,t){this.topLevelType=e,this.nativeEvent=t,this.ancestors=[]}function f(e){var t=l(e.nativeEvent),n=s.getClosestInstanceFromNode(t),r=n;do{e.ancestors.push(r),r=r&&p(r)}while(r);for(var o=0;o<e.ancestors.length;o++)n=e.ancestors[o],m._handleTopLevel(e.topLevelType,n,e.nativeEvent,l(e.nativeEvent))}function h(e){e(c(window))}r(d.prototype,{destructor:function(){this.topLevelType=null,this.nativeEvent=null,this.ancestors.length=0}}),a.addPoolingTo(d,a.twoArgumentPooler);var m={_enabled:!0,_handleTopLevel:null,WINDOW_HANDLE:i.canUseDOM?window:null,setHandleTopLevel:function(e){m._handleTopLevel=e},setEnabled:function(e){m._enabled=!!e},isEnabled:function(){return m._enabled},trapBubbledEvent:function(e,t,n){return n?o.listen(n,t,m.dispatchEvent.bind(null,e)):null},trapCapturedEvent:function(e,t,n){return n?o.capture(n,t,m.dispatchEvent.bind(null,e)):null},monitorScrollValue:function(e){var t=h.bind(null,e);o.listen(window,"scroll",t)},dispatchEvent:function(e,t){if(m._enabled){var n=d.getPooled(e,t);try{u.batchedUpdates(f,n)}finally{d.release(n)}}}};e.exports=m},function(e,t,n){"use strict";e.exports=function(e){return e.Window&&e instanceof e.Window?{x:e.pageXOffset||e.document.documentElement.scrollLeft,y:e.pageYOffset||e.document.documentElement.scrollTop}:{x:e.scrollLeft,y:e.scrollTop}}},function(e,t,n){"use strict";var r=n(16),o=n(20),i=n(32),a=n(41),s=n(73),u=n(28),l=n(74),c=n(8),p={Component:a.injection,DOMProperty:r.injection,EmptyComponent:s.injection,EventPluginHub:o.injection,EventPluginUtils:i.injection,EventEmitter:u.injection,HostComponent:l.injection,Updates:c.injection};e.exports=p},function(e,t,n){"use strict";var r=n(3),o=n(62),i=n(13),a=n(28),s=n(80),u=(n(7),n(24)),l=n(46),c=[{initialize:s.getSelectionInformation,close:s.restoreSelection},{initialize:function(){var e=a.isEnabled();return a.setEnabled(!1),e},close:function(e){a.setEnabled(e)}},{initialize:function(){this.reactMountReady.reset()},close:function(){this.reactMountReady.notifyAll()}}];function p(e){this.reinitializeTransaction(),this.renderToStaticMarkup=!1,this.reactMountReady=o.getPooled(null),this.useCreateElement=e}var d={getTransactionWrappers:function(){return c},getReactMountReady:function(){return this.reactMountReady},getUpdateQueue:function(){return l},checkpoint:function(){return this.reactMountReady.checkpoint()},rollback:function(e){this.reactMountReady.rollback(e)},destructor:function(){o.release(this.reactMountReady),this.reactMountReady=null}};r(p.prototype,u,d),i.addPoolingTo(p),e.exports=p},function(e,t,n){"use strict";var r=n(5),o=n(163),i=n(61);function a(e,t,n,r){return e===n&&t===r}var s=r.canUseDOM&&"selection"in document&&!("getSelection"in window),u={getOffsets:s?function(e){var t=document.selection.createRange(),n=t.text.length,r=t.duplicate();r.moveToElementText(e),r.setEndPoint("EndToStart",t);var o=r.text.length;return{start:o,end:o+n}}:function(e){var t=window.getSelection&&window.getSelection();if(!t||0===t.rangeCount)return null;var n=t.anchorNode,r=t.anchorOffset,o=t.focusNode,i=t.focusOffset,s=t.getRangeAt(0);try{s.startContainer.nodeType,s.endContainer.nodeType}catch(e){return null}var u=a(t.anchorNode,t.anchorOffset,t.focusNode,t.focusOffset)?0:s.toString().length,l=s.cloneRange();l.selectNodeContents(e),l.setEnd(s.startContainer,s.startOffset);var c=a(l.startContainer,l.startOffset,l.endContainer,l.endOffset)?0:l.toString().length,p=c+u,d=document.createRange();d.setStart(n,r),d.setEnd(o,i);var f=d.collapsed;return{start:f?p:c,end:f?c:p}},setOffsets:s?function(e,t){var n,r,o=document.selection.createRange().duplicate();void 0===t.end?r=n=t.start:t.start>t.end?(n=t.end,r=t.start):(n=t.start,r=t.end),o.moveToElementText(e),o.moveStart("character",n),o.setEndPoint("EndToStart",o),o.moveEnd("character",r-n),o.select()}:function(e,t){if(window.getSelection){var n=window.getSelection(),r=e[i()].length,a=Math.min(t.start,r),s=void 0===t.end?a:Math.min(t.end,r);if(!n.extend&&a>s){var u=s;s=a,a=u}var l=o(e,a),c=o(e,s);if(l&&c){var p=document.createRange();p.setStart(l.node,l.offset),n.removeAllRanges(),a>s?(n.addRange(p),n.extend(c.node,c.offset)):(p.setEnd(c.node,c.offset),n.addRange(p))}}}};e.exports=u},function(e,t,n){"use strict";function r(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function o(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}e.exports=function(e,t){for(var n=r(e),i=0,a=0;n;){if(3===n.nodeType){if(a=i+n.textContent.length,i<=t&&a>=t)return{node:n,offset:t-i};i=a}n=r(o(n))}}},function(e,t,n){"use strict";var r=n(165);e.exports=function e(t,n){return!(!t||!n)&&(t===n||!r(t)&&(r(n)?e(t,n.parentNode):"contains"in t?t.contains(n):!!t.compareDocumentPosition&&!!(16&t.compareDocumentPosition(n))))}},function(e,t,n){"use strict";var r=n(166);e.exports=function(e){return r(e)&&3==e.nodeType}},function(e,t,n){"use strict";e.exports=function(e){var t=(e?e.ownerDocument||e:document).defaultView||window;return!(!e||!("function"==typeof t.Node?e instanceof t.Node:"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName))}},function(e,t,n){"use strict";var r="http://www.w3.org/1999/xlink",o="http://www.w3.org/XML/1998/namespace",i={accentHeight:"accent-height",accumulate:0,additive:0,alignmentBaseline:"alignment-baseline",allowReorder:"allowReorder",alphabetic:0,amplitude:0,arabicForm:"arabic-form",ascent:0,attributeName:"attributeName",attributeType:"attributeType",autoReverse:"autoReverse",azimuth:0,baseFrequency:"baseFrequency",baseProfile:"baseProfile",baselineShift:"baseline-shift",bbox:0,begin:0,bias:0,by:0,calcMode:"calcMode",capHeight:"cap-height",clip:0,clipPath:"clip-path",clipRule:"clip-rule",clipPathUnits:"clipPathUnits",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",contentScriptType:"contentScriptType",contentStyleType:"contentStyleType",cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:"diffuseConstant",direction:0,display:0,divisor:0,dominantBaseline:"dominant-baseline",dur:0,dx:0,dy:0,edgeMode:"edgeMode",elevation:0,enableBackground:"enable-background",end:0,exponent:0,externalResourcesRequired:"externalResourcesRequired",fill:0,fillOpacity:"fill-opacity",fillRule:"fill-rule",filter:0,filterRes:"filterRes",filterUnits:"filterUnits",floodColor:"flood-color",floodOpacity:"flood-opacity",focusable:0,fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"gl
|