From 70f278fab79f9d8776464a471e055149c86d9cf5 Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Fri, 2 Nov 2018 15:46:35 +0000 Subject: [PATCH] Add sketchfab/poly/collection search to create object dialog --- src/react-components/create-object-dialog.js | 27 +++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/src/react-components/create-object-dialog.js b/src/react-components/create-object-dialog.js index 5ccfe2ce6..6fa624612 100644 --- a/src/react-components/create-object-dialog.js +++ b/src/react-components/create-object-dialog.js @@ -15,12 +15,33 @@ const attributionHostnames = { const DEFAULT_OBJECT_URL = "https://asset-bundles-prod.reticulum.io/interactables/Ducky/DuckyMesh-438ff8e022.gltf"; const isMobile = AFRAME.utils.device.isMobile(); -const instructions = "Paste a URL or upload a file."; -const desktopTips = "Tip: You can paste links directly into Hubs with Ctrl+V"; -const mobileInstructions = <div>{instructions}</div>; +const instructions = "Paste a URL to an image, video, model, or upload a file."; +const desktopTips = "Tip: You can paste media directly into Hubs with Ctrl+V"; +const references = ( + <span> + For models, try{" "} + <a href="https://sketchfab.com/search?features=downloadable&type=models" target="_blank" rel="noopener noreferrer"> + Sketchfab + </a>,{" "} + <a href="http://poly.google.com/" target="_blank" rel="noopener noreferrer"> + Google Poly + </a>, or our{" "} + <a href="https://sketchfab.com/mozillareality" target="_blank" rel="noopener noreferrer"> + collection + </a>. + </span> +); + +const mobileInstructions = ( + <div> + <p>{instructions}</p> + <p>{references}</p> + </div> +); const desktopInstructions = ( <div> <p>{instructions}</p> + <p>{references}</p> <p>{desktopTips}</p> </div> ); -- GitLab