@7polo/editorjs-image 中文文档教程
Image
Editor.js 2.0 的图像工具
Feature
- Embed Url ✌️
- Unsplash ✌️
- upload ✌️
- extend
- image viewer ✌️ (use by viewerjs)
tab
embed url
upsplash
upload
extend
只需添加您想要
viewer
的任何选项卡 只需双击图像
Usage
添加一个新工具到 Editor.js 初始配置的 tools
属性。
- npm
npm i @7polo/editorjs-image
- init & config
var editor = EditorJS({
...
tools: {
...
image: {
class: Image,
config: {
unsplash: {
search: ()=> {
return new Promise(function(resolve){
// resp from api : https://api.unsplash.com/search/photos
resolve({});
})
}
},
upload: {
doUplaod: ()=> {
return new Promise(function(resolve){
resolve({url});
})
}
}
}
}
}
...
});
Config Params
Field | Type | Description |
---|---|---|
unsplash.search | function | response from unsplash https://api.unsplash.com/search/photos |
unsplash.search like this
export const searchImages = (query) => {
console.log("search" + query)
return axios.get(`https://api.unsplash.com/search/photos`, {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Credentials': false,
'Content-Type':'application/x-www-form-urlencoded'
},
params: {
client_id: 'your client_id',
query
}
})
}
Output data
此工具返回代码。
{
"type" : "image",
"data" : {
"url" : "https://www.example.com/image.jpg",
"withBorder" : false,
"withBackground" : false,
"stretched" : true
}
}
Image
Image Tool for Editor.js 2.0
Feature
- Embed Url ✌️
- Unsplash ✌️
- upload ✌️
- extend
- image viewer ✌️ (use by viewerjs)
tab
embed url
upsplash
upload
extend
just add any tab you wanted
viewer
just double click the image
Usage
Add a new Tool to the tools
property of the Editor.js initial config.
- npm
npm i @7polo/editorjs-image
- init & config
var editor = EditorJS({
...
tools: {
...
image: {
class: Image,
config: {
unsplash: {
search: ()=> {
return new Promise(function(resolve){
// resp from api : https://api.unsplash.com/search/photos
resolve({});
})
}
},
upload: {
doUplaod: ()=> {
return new Promise(function(resolve){
resolve({url});
})
}
}
}
}
}
...
});
Config Params
Field | Type | Description |
---|---|---|
unsplash.search | function | response from unsplash https://api.unsplash.com/search/photos |
unsplash.search like this
export const searchImages = (query) => {
console.log("search" + query)
return axios.get(`https://api.unsplash.com/search/photos`, {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Credentials': false,
'Content-Type':'application/x-www-form-urlencoded'
},
params: {
client_id: 'your client_id',
query
}
})
}
Output data
This Tool returns code.
{
"type" : "image",
"data" : {
"url" : "https://www.example.com/image.jpg",
"withBorder" : false,
"withBackground" : false,
"stretched" : true
}
}
更多
你可能也喜欢
- 5a 中文文档教程
- @0x706b/coc-diagnostic 中文文档教程
- @0xcert/ethereum 中文文档教程
- @0xsequence/utils 中文文档教程
- @1inch/permit-signed-approvals-utils 中文文档教程
- @1ziton/react-native-baidulocation 中文文档教程
- @21kb/react-dom-status-hook 中文文档教程
- @36node/mongoose-helper 中文文档教程
- @3yaa3yaa/markdowntextbox 中文文档教程
- @7oussem/react-native-couchbaselite 中文文档教程