@uyun/usql
## 快速开始
Last updated 3 years ago .
MIT ·
$ cnpm install @uyun/usql 
Private package

@uyun/usql

快速开始

yarn
yarn bootstrap

# 启动
yarn storybook

特性排期

  • [ ] 语法高亮 16h 延后
  • [ ] 代码行折叠 0
  • [ ] 显示行号和跳转 0
  • [ ] 查找和替换 4h
  • [ ] 辅助快捷键 16h 延后
  • [ ] 辅助 mini 地图 0
  • [ ] 自动提示:关键字 12h
  • [ ] 自动提示:数据集名称提示 12h
  • [ ] 自动提示:函数提示 12h
  • [ ] 自动提示:动态表达式支持 16h 延后
  • [ ] save 的特殊提示 12h
  • [ ] 模块封装,功能拆分 16h
  • [ ] UI 高保真优化 16h

概要设计

注册工具栏项

import { ToolbarRegistry } from '@uyun/usql'

ToolbarRegistry.register({
  id: 'id',
  icon: '图标',
  title: '名称',
  onClick() {
    alert('list')
  }
})

Monaco Editor 资料

插入文本到鼠标位置

const position = editor.getPosition()
editor.executeEdits('', [
  {
    range: new monaco.Range(position.lineNumber, position.column,  position.lineNumber, position.column),
    text: result
  }
])

获取鼠标选中文本

editor.getModel().getValueInRange(editor.getSelection())

Current Tags

  • 0.0.25                                ...           latest (3 years ago)

27 Versions

  • 0.0.25                                ...           3 years ago
  • 0.0.24                                ...           3 years ago
  • 0.0.23                                ...           3 years ago
  • 0.0.22                                ...           3 years ago
  • 0.0.21                                ...           3 years ago
  • 0.0.19                                ...           3 years ago
  • 0.0.18                                ...           3 years ago
  • 0.0.20                                ...           3 years ago
  • 0.0.0                                ...           3 years ago
  • 0.0.17                                ...           3 years ago
  • 0.0.16                                ...           3 years ago
  • 0.0.15                                ...           3 years ago
  • 0.0.14                                ...           3 years ago
  • 0.0.13                                ...           3 years ago
  • 0.0.12                                ...           3 years ago
  • 0.0.11                                ...           3 years ago
  • 0.0.10                                ...           3 years ago
  • 0.0.9                                ...           3 years ago
  • 0.0.8                                ...           3 years ago
  • 0.0.7                                ...           3 years ago
  • 0.0.6                                ...           3 years ago
  • 0.0.5                                ...           3 years ago
  • 0.0.4                                ...           3 years ago
  • 0.0.3                                ...           3 years ago
  • 0.0.2                                ...           3 years ago
  • 0.0.1-alpha.0                                ...           3 years ago
  • 0.0.1                                ...           3 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (59)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org