-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add
secureDeliveryProxyUrlResolver
option
- Loading branch information
Showing
8 changed files
with
106 additions
and
11 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
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
35 changes: 35 additions & 0 deletions
35
demo/preview-proxy/secure-delivery-proxy-url-resolver.html
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,35 @@ | ||
<!doctype html> | ||
<base href="../../" /> | ||
|
||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./solutions/file-uploader/regular/index.css" /> | ||
<script | ||
async="" | ||
src="https://cdn.skypack.dev/-/[email protected]/dist=es2020,mode=raw,min/dist/es-module-shims.js" | ||
></script> | ||
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"@symbiotejs/symbiote": "./node_modules/@symbiotejs/symbiote/build/symbiote.js", | ||
"@uploadcare/upload-client": "./node_modules/@uploadcare/upload-client/dist/esm/index.browser.mjs", | ||
"@uploadcare/image-shrink": "./node_modules/@uploadcare/image-shrink/dist/esm/index.browser.mjs" | ||
} | ||
} | ||
</script> | ||
<script src="./index.js" type="module"></script> | ||
<script type="module"> | ||
import * as LR from './index.js'; | ||
|
||
LR.registerBlocks(LR); | ||
|
||
const config = document.querySelector('lr-config'); | ||
config.secureDeliveryProxyUrlResolver = (previewUrl) => { | ||
return `http://localhost:3000/preview?url=${encodeURIComponent(previewUrl)}` | ||
}; | ||
</script> | ||
</head> | ||
|
||
<lr-file-uploader-regular ctx-name="my-uploader"></lr-file-uploader-regular> | ||
<lr-config ctx-name="my-uploader" pubkey="demopublickey"></lr-config> | ||
<lr-upload-ctx-provider ctx-name="my-uploader"></lr-upload-ctx-provider> |
34 changes: 34 additions & 0 deletions
34
demo/preview-proxy/secure-delivery-proxy-url-template.html
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,34 @@ | ||
<!doctype html> | ||
<base href="../../" /> | ||
|
||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./solutions/file-uploader/regular/index.css" /> | ||
<script | ||
async="" | ||
src="https://cdn.skypack.dev/-/[email protected]/dist=es2020,mode=raw,min/dist/es-module-shims.js" | ||
></script> | ||
<script type="importmap"> | ||
{ | ||
"imports": { | ||
"@symbiotejs/symbiote": "./node_modules/@symbiotejs/symbiote/build/symbiote.js", | ||
"@uploadcare/upload-client": "./node_modules/@uploadcare/upload-client/dist/esm/index.browser.mjs", | ||
"@uploadcare/image-shrink": "./node_modules/@uploadcare/image-shrink/dist/esm/index.browser.mjs" | ||
} | ||
} | ||
</script> | ||
<script src="./index.js" type="module"></script> | ||
<script type="module"> | ||
import * as LR from './index.js'; | ||
|
||
LR.registerBlocks(LR); | ||
</script> | ||
</head> | ||
|
||
<lr-file-uploader-regular ctx-name="my-uploader"></lr-file-uploader-regular> | ||
<lr-config | ||
ctx-name="my-uploader" | ||
pubkey="demopublickey" | ||
secure-delivery-proxy="http://localhost:3000/preview?url={{previewUrl}}" | ||
></lr-config> | ||
<lr-upload-ctx-provider ctx-name="my-uploader"></lr-upload-ctx-provider> |
File renamed without changes.
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