Home > Development Tools > atom > body text

Detailed explanation of the process of developing an Atom plug-in

青灯夜游
Release: 2021-02-01 11:53:00
forward
8642 people have browsed it

How to develop an Atom component from scratch? The following article will introduce you to the process of developing an Atom plug-in. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Detailed explanation of the process of developing an Atom plug-in

Related recommendations: "atom usage tutorial"

I use Atom to write blogs a lot recently, and then I discovered a very serious problem . .

There is no way I want to upload pictures. For example, you can directly copy/paste the file and then upload it.

However, no similar plug-in was found on Atom. The closest one still requires manual selection of files and then uploading.

This operation process is too cumbersome, so just write a plug-in yourself and use it.

Download address of the finished plug-in: https://atom.io/packages/atom-image-uploader

Planning

First of all, we determined the requirements. If you want to pass it, you can directly copy file, and then paste in Atom to complete the upload operation.
After confirmation, we will start moving bricks.

Plug-in development

Because Atom is an Electron application: https://electronjs.org

is using ## It is a desktop application developed with #JavaScript, so for a front-end, it is simply wonderful. Let’s first look at the official documentation of
Atom to view the operations related to creating a plug-in: First we open the command panel in
Atom, and then enter Generate Package

<img src="https://img.php.cn/upload/image/299/146/639/160707538187362Detailed%20explanation%20of%20the%20process%20of%20developing%20an%20Atom%20plug-in" title="160707538187362Detailed explanation of the process of developing an Atom plug-in" alt="Detailed explanation of the process of developing an Atom plug-in">

After pressing Enter, a dialog box will pop up. Enter the name of the package to be created in the box. Complete the creation of a

Package.

Detailed explanation of the process of developing an Atom plug-in

Atom will generate a set of default files and open a new window.

Project structure

The generated plug-in directory is as follows:

.
├── keymaps
│   └── first-package.json
├── lib
│   ├── first-package-view.js
│   └── first-package.js
├── menus
│   └── first-package.json
├── package.json
├── spec
│   ├── first-package-spec.js
│   └── first-package-view-spec.js
└── styles
    └── first-package.less
Copy after login
keymaps

Here you can configure the shortcut keys to be monitored, and we can set some custom shortcuts keys to trigger some of our plug-in’s behaviors.

{
  "atom-workspace": {
    "ctrl-alt-o": "first-package:toggle"
  }
}
Copy after login
We can add various customized shortcut keys here.


Value is defined as: Package name: Triggered event nameIt should be noted that:
The shortcut keys configured here also have the concept of scope . That is the
key outside JSON.
atom-workspace means it takes effect in Atom
atom-text-editor means it only takes effect within the scope of the text editor.

Detailed explanation of the process of developing an Atom plug-in

Atom official documentation

lib

This is where the main code of the plug-in is stored.

Two files will be generated by default:

  • ##package.js

  • package.view. js

  • The main entry file generated by the default plug-in points here.


Detailed explanation of the process of developing an Atom plug-inThe entry file is expressed as a

JSON

object, which can implement the following functions:

  • activate

    : This method will be executed when Package is activated. The signature of the function indicates that it will accept a state parameter, which is passed Passed by the serialize method (if it is implemented)

  • ##deactivate
  • : The method that will be triggered when

    Package fails. These two methods can be understood as componentWillMount and componentWillUnmountserialize

    in
  • React
  • : That is, the method mentioned above can return a

    JSON object for use after next activation.

    Customize the event name corresponding to the shortcut key: Each time
  • Package
  • Methods that will be executed when the corresponding shortcut keys are triggered

    menus
This stores the configuration of the application menu and editing area menu bar The corresponding element of file

{
  "context-menu": {
    "atom-text-editor": [
      {
        "label": "Toggle first-package",
        "command": "first-package:toggle"
      }
    ]
  },
  "menu": [
    {
      "label": "Packages",
      "submenu": [
        {
          "label": "first-package",
          "submenu": [
            {
              "label": "Toggle",
              "command": "first-package:toggle"
            }
          ]
        }
      ]
    }
  ]
}
Copy after login

context-menu

will be displayed when the right click is triggered in the corresponding area.

menu appears on the
Atom main menu bar:

Similarly, Detailed explanation of the process of developing an Atom plug-incontext-menu

will distinguish two environments,

text-editor and workspace. spec

Some test cases are stored here. Creating

Package

will generate some default assertions.

Writing tests is indeed a good habit.

styles

如果Package有很多View要展示的话,可以在这里编写,默认使用的是Less语法。
由于我们只做一个C/V的操作,不会涉及到界面,所以styles直接就删掉了。

开始搬砖

大致结构已经了解了,我们就可以开始搬砖了。
因为是一个Electron应用,所以我们直接在Atom中按下alt + command + i,呼出我们熟悉的控制台界面。

Detailed explanation of the process of developing an Atom plug-in

Atom是不会把Electron的各种文档重新写一遍的,所以我们现在控制台里边试一下我们的猜测是否正确。
一些想要的东西是否存在。

Detailed explanation of the process of developing an Atom plug-in

经过验证确定了,Electronclipboard对象可以直接在Atom中使用,这就很开心了。

require('electron').clipboard.readImage().toPng()
Copy after login

这样我们就拿到剪切板中的图片数据了,一个二进制的数组对象。
我们在触发Paste操作时,从clipboard中获取,如果剪切板中是图片的话,我们就将它上传并显示到编辑器中。
所以,接下来我们要做的就是:

  • 进行上传图片的操作

  • 将上传后的图片显示到编辑器中

上传图片

上传图片我们选择的是七牛,我们选择七牛来作为图床使用,因为他家提供了10GB的免费存储,灰常适合自己这样的笔记型博客。
但是用他家SDK时发现一个问题。。我将二进制数据转换为ReadStream后上传的资源损坏了-.-目前还没有找到原因。
所以我们做了曲线救国的方式。
将剪切板中的数据转换为Buffer然后暂存到本地,通过本地文件的方式来进行上传七牛。
在操作完成后我们再将临时文件移除。

try {
  let buffer = clipboard.readImage().toPng()
  let tempFilePath = 'XXX'
  fs.writeFileSync(tempFilePath, Buffer.from(buffer))
} catch (e) {
  // catch error
} finally {
  fs.unlink(tempFilePath) // 因为我们并不依赖于删除成功的回调,所以直接空调用异步方法即可
}
Copy after login

将上传后的资源显示到编辑器中

因为考虑到上传可能会受到网络影响,从而上传时间不可预估。
所以我们会先在文件中显示一部分占位文字。
通过全局的atom对象可以拿到当前活跃的窗口:

let editor = atom.workspace.getActiveTextEditor()
Copy after login

为了避免同时上传多张图片时出现问题,我们将临时文件名作为填充的一部分。

editor.insertText(`![](${placeHolderText})`, editor)
Copy after login

然后在上传成功后,我们将对应的填充字符替换为上传后的URL就可以了。

editor.scan(new RegExp(placeHolderText), tools => tools.replace(url))
Copy after login

scan方法接收一个正则对象和回调函数。
我们将前边用到的占位文本作为正则对象,然后在回调将其替换为上传后的url
至此,我们的代码已经编写完了,剩下的就是一些交互上的优化。

完成后的效果图:

Detailed explanation of the process of developing an Atom plug-in

以及,最后:我们要进行Package的上传。

上传开发完的Package

首先我们需要保证package.json中存在如下几个参数:

  1. name
  2. description
  3. repository

我们可以先使用如下命令来检查包名是否冲突。

apm show 你的包名
Copy after login

如果没有冲突,我们就可以直接执行以下命令进行上传了。

apm publish 你的包名
Copy after login

后续的代码修改,只需在该包的目录下执行:

apm publish
Copy after login

一些可选的参数:

  1. major,增加版本号的第一位1.0.0 -> 2.0.0
  2. minor,增加版本号的第二位0.1.0 -> 0.2.0
  3. patch,增加版本号的第三位0.0.1 -> 0.0.2

通过apm help可以获取到更多的帮助信息。

以上,就是开发一个Atom插件的完整流程咯。

更多编程相关知识,请访问:编程教学!!

The above is the detailed content of Detailed explanation of the process of developing an Atom plug-in. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!