-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
308 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tsconfig.* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
import { | ||
BasePlugin, | ||
Uppy, | ||
type UIPluginOptions, | ||
type UnknownProviderPlugin, | ||
} from '@uppy/core' | ||
import Dropbox from '@uppy/dropbox' | ||
import GoogleDrive from '@uppy/google-drive' | ||
import Instagram from '@uppy/instagram' | ||
import Facebook from '@uppy/facebook' | ||
import OneDrive from '@uppy/onedrive' | ||
import Box from '@uppy/box' | ||
import Unsplash from '@uppy/unsplash' | ||
import Url from '@uppy/url' | ||
import Zoom from '@uppy/zoom' | ||
|
||
import type { DefinePluginOpts } from '@uppy/core/lib/BasePlugin' | ||
import type { Body, Meta } from '../../utils/src/UppyFile' | ||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment | ||
// @ts-ignore We don't want TS to generate types for the package.json | ||
import packageJson from '../package.json' | ||
|
||
const availablePlugins = { | ||
// Using a null-prototype object to avoid prototype pollution. | ||
__proto__: null, | ||
Box, | ||
Dropbox, | ||
Facebook, | ||
GoogleDrive, | ||
Instagram, | ||
OneDrive, | ||
Unsplash, | ||
Url, | ||
Zoom, | ||
} | ||
|
||
export interface RemoteSourcesOptions extends UIPluginOptions { | ||
sources?: Array<keyof Omit<typeof availablePlugins, '__proto__'>> | ||
companionUrl: string | ||
} | ||
|
||
const defaultOptions = { | ||
sources: Object.keys(availablePlugins) as Array< | ||
keyof Omit<typeof availablePlugins, '__proto__'> | ||
>, | ||
} satisfies Partial<RemoteSourcesOptions> | ||
|
||
type Opts = DefinePluginOpts<RemoteSourcesOptions, keyof typeof defaultOptions> | ||
|
||
export default class RemoteSources< | ||
M extends Meta, | ||
B extends Body, | ||
> extends BasePlugin<Opts, M, B> { | ||
static VERSION = packageJson.version | ||
|
||
#installedPlugins: Set<UnknownProviderPlugin<M, B>> = new Set() | ||
|
||
constructor(uppy: Uppy<M, B>, opts: RemoteSourcesOptions) { | ||
super(uppy, { ...defaultOptions, ...opts }) | ||
this.id = this.opts.id || 'RemoteSources' | ||
this.type = 'preset' | ||
|
||
if (this.opts.companionUrl == null) { | ||
throw new Error( | ||
'Please specify companionUrl for RemoteSources to work, see https://uppy.io/docs/remote-sources#companionUrl', | ||
) | ||
} | ||
} | ||
|
||
setOptions(newOpts: Partial<Opts>): void { | ||
this.uninstall() | ||
super.setOptions(newOpts) | ||
this.install() | ||
} | ||
|
||
install(): void { | ||
this.opts.sources.forEach((pluginId) => { | ||
const optsForRemoteSourcePlugin = { ...this.opts, sources: undefined } | ||
const plugin = availablePlugins[pluginId] | ||
if (plugin == null) { | ||
const pluginNames = Object.keys(availablePlugins) | ||
const formatter = new Intl.ListFormat('en', { | ||
style: 'long', | ||
type: 'disjunction', | ||
}) | ||
throw new Error( | ||
`Invalid plugin: "${pluginId}" is not one of: ${formatter.format(pluginNames)}.`, | ||
) | ||
} | ||
this.uppy.use(plugin, optsForRemoteSourcePlugin) | ||
// `plugin` is a class, but we want to track the instance object | ||
// so we have to do `getPlugin` here. | ||
this.#installedPlugins.add( | ||
this.uppy.getPlugin(pluginId) as UnknownProviderPlugin<M, B>, | ||
) | ||
}) | ||
} | ||
|
||
uninstall(): void { | ||
for (const plugin of this.#installedPlugins) { | ||
this.uppy.removePlugin(plugin) | ||
} | ||
this.#installedPlugins.clear() | ||
} | ||
} |
Oops, something went wrong.