71 lines
2.4 KiB
JavaScript
71 lines
2.4 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const tslib_1 = require("tslib");
|
|
const neovim_1 = require("@chemzqm/neovim");
|
|
const logger = require('../util/logger')('attach'); // tslint:disable-line
|
|
let app;
|
|
function default_1(options) {
|
|
const nvim = (0, neovim_1.attach)(options);
|
|
nvim.on('notification', (method, args) => tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
const opts = args[0] || args;
|
|
const bufnr = opts.bufnr;
|
|
const buffers = yield nvim.buffers;
|
|
const buffer = buffers.find(b => b.id === bufnr);
|
|
if (method === 'refresh_content') {
|
|
const winline = yield nvim.call('winline');
|
|
const currentWindow = yield nvim.window;
|
|
const winheight = yield nvim.call('winheight', currentWindow.id);
|
|
const cursor = yield nvim.call('getpos', '.');
|
|
const renderOpts = yield nvim.getVar('mkdp_preview_options');
|
|
const pageTitle = yield nvim.getVar('mkdp_page_title');
|
|
const theme = yield nvim.getVar('mkdp_theme');
|
|
const name = yield buffer.name;
|
|
const content = yield buffer.getLines();
|
|
const currentBuffer = yield nvim.buffer;
|
|
app.refreshPage({
|
|
bufnr,
|
|
data: {
|
|
options: renderOpts,
|
|
isActive: currentBuffer.id === buffer.id,
|
|
winline,
|
|
winheight,
|
|
cursor,
|
|
pageTitle,
|
|
theme,
|
|
name,
|
|
content
|
|
}
|
|
});
|
|
}
|
|
else if (method === 'close_page') {
|
|
app.closePage({
|
|
bufnr
|
|
});
|
|
}
|
|
else if (method === 'open_browser') {
|
|
app.openBrowser({
|
|
bufnr
|
|
});
|
|
}
|
|
}));
|
|
nvim.on('request', (method, args, resp) => {
|
|
if (method === 'close_all_pages') {
|
|
app.closeAllPages();
|
|
}
|
|
resp.send();
|
|
});
|
|
nvim.channelId
|
|
.then((channelId) => tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
yield nvim.setVar('mkdp_node_channel_id', channelId);
|
|
}))
|
|
.catch(e => {
|
|
logger.error('channelId: ', e);
|
|
});
|
|
return {
|
|
nvim,
|
|
init: (param) => {
|
|
app = param;
|
|
}
|
|
};
|
|
}
|
|
exports.default = default_1;
|