Browse Source

examples: fix screen capture toggle in dashboard example

Renée Kooi 5 năm trước cách đây
mục cha
commit
d043677c16
1 tập tin đã thay đổi với 30 bổ sung30 xóa
  1. 30 30
      website/src/examples/dashboard/app.es6

+ 30 - 30
website/src/examples/dashboard/app.es6

@@ -85,66 +85,66 @@ function uppySetOptions () {
   })
 
   const GoogleDriveInstance = window.uppy.getPlugin('GoogleDrive')
-  if (opts.GoogleDrive && !GoogleDriveInstance) {
+  if (opts.GoogleDrive && !googleDriveInstance) {
     window.uppy.use(GoogleDrive, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.GoogleDrive && GoogleDriveInstance) {
-    window.uppy.removePlugin(GoogleDriveInstance)
+  if (!opts.GoogleDrive && googleDriveInstance) {
+    window.uppy.removePlugin(googleDriveInstance)
   }
 
-  const DropboxInstance = window.uppy.getPlugin('Dropbox')
-  if (opts.Dropbox && !DropboxInstance) {
+  const dropboxInstance = window.uppy.getPlugin('Dropbox')
+  if (opts.Dropbox && !dropboxInstance) {
     window.uppy.use(Dropbox, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.Dropbox && DropboxInstance) {
-    window.uppy.removePlugin(DropboxInstance)
+  if (!opts.Dropbox && dropboxInstance) {
+    window.uppy.removePlugin(dropboxInstance)
   }
 
-  const InstagramInstance = window.uppy.getPlugin('Instagram')
-  if (opts.Instagram && !InstagramInstance) {
+  const instagramInstance = window.uppy.getPlugin('Instagram')
+  if (opts.Instagram && !instagramInstance) {
     window.uppy.use(Instagram, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.Instagram && InstagramInstance) {
-    window.uppy.removePlugin(InstagramInstance)
+  if (!opts.Instagram && instagramInstance) {
+    window.uppy.removePlugin(instagramInstance)
   }
 
-  const UrlInstance = window.uppy.getPlugin('Url')
-  if (opts.Url && !UrlInstance) {
+  const urlInstance = window.uppy.getPlugin('Url')
+  if (opts.Url && !urlInstance) {
     window.uppy.use(Url, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.Url && UrlInstance) {
-    window.uppy.removePlugin(UrlInstance)
+  if (!opts.Url && urlInstance) {
+    window.uppy.removePlugin(urlInstance)
   }
 
-  const FacebookInstance = window.uppy.getPlugin('Facebook')
-  if (opts.Facebook && !FacebookInstance) {
+  const facebookInstance = window.uppy.getPlugin('Facebook')
+  if (opts.Facebook && !facebookInstance) {
     window.uppy.use(Facebook, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.Facebook && FacebookInstance) {
-    window.uppy.removePlugin(FacebookInstance)
+  if (!opts.Facebook && facebookInstance) {
+    window.uppy.removePlugin(facebookInstance)
   }
 
-  const OneDriveInstance = window.uppy.getPlugin('OneDrive')
-  if (opts.OneDrive && !OneDriveInstance) {
+  const oneDriveInstance = window.uppy.getPlugin('OneDrive')
+  if (opts.OneDrive && !oneDriveInstance) {
     window.uppy.use(OneDrive, { target: Dashboard, companionUrl: COMPANION })
   }
-  if (!opts.OneDrive && OneDriveInstance) {
-    window.uppy.removePlugin(OneDriveInstance)
+  if (!opts.OneDrive && oneDriveInstance) {
+    window.uppy.removePlugin(oneDriveInstance)
   }
 
-  const WebcamInstance = window.uppy.getPlugin('Webcam')
-  if (opts.Webcam && !WebcamInstance) {
+  const webcamInstance = window.uppy.getPlugin('Webcam')
+  if (opts.Webcam && !webcamInstance) {
     window.uppy.use(Webcam, { target: Dashboard })
   }
-  if (!opts.Webcam && WebcamInstance) {
-    window.uppy.removePlugin(WebcamInstance)
+  if (!opts.Webcam && webcamInstance) {
+    window.uppy.removePlugin(webcamInstance)
   }
 
-  const ScreenCapture = window.uppy.getPlugin('ScreenCapture')
-  if (opts.ScreenCapture && !ScreenCapture) {
+  const screenCaptureInstance = window.uppy.getPlugin('ScreenCapture')
+  if (opts.ScreenCapture && !screenCaptureInstance) {
     window.uppy.use(ScreenCapture, { target: Dashboard })
   } else {
-    window.uppy.removePlugin(ScreenCapture)
+    window.uppy.removePlugin(screenCaptureInstance)
   }
 }