UNPKG

2.56 kBJavaScriptView Raw
1#!/usr/bin/env node
2/*
3 Terminal Kit
4
5 Copyright (c) 2009 - 2020 Cédric Ronvel
6
7 The MIT License (MIT)
8
9 Permission is hereby granted, free of charge, to any person obtaining a copy
10 of this software and associated documentation files (the "Software"), to deal
11 in the Software without restriction, including without limitation the rights
12 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 copies of the Software, and to permit persons to whom the Software is
14 furnished to do so, subject to the following conditions:
15
16 The above copyright notice and this permission notice shall be included in all
17 copies or substantial portions of the Software.
18
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 SOFTWARE.
26*/
27
28"use strict" ;
29
30
31
32var termkit = require( '../..' ) ;
33var term = termkit.terminal ;
34
35
36
37term.clear() ;
38
39var document = term.createDocument() ;
40
41
42
43var columnMenu = new termkit.ColumnMenu( {
44 parent: document ,
45 x: 0 ,
46 y: 5 ,
47 //width: 20 ,
48 //pageMaxHeight: 5 ,
49 blurLeftPadding: ' ' ,
50 focusLeftPadding: '^R> ' ,
51 disabledLeftPadding: ' ' ,
52 paddingHasMarkup: true ,
53 multiLineItems: true ,
54 items: [
55 {
56 content: 'File' ,
57 value: 'file'
58 } ,
59 {
60 //content: 'Edit' ,
61 content: '^REdit' , markup: true ,
62 value: 'edit'
63 } ,
64 {
65 content: 'View' ,
66 value: 'view'
67 } ,
68 {
69 content: 'History' ,
70 value: 'history'
71 } ,
72 {
73 //content: 'Bookmarks' ,
74 content: '^CBook^Ymark^Rs' , markup: true ,
75 value: 'bookmarks'
76 } ,
77 {
78 content: 'Tools' ,
79 value: 'tools'
80 } ,
81 {
82 content: 'Help' ,
83 value: 'help'
84 } ,
85 {
86 content: 'Not long' ,
87 value: 'not long'
88 } ,
89 ]
90} ) ;
91
92
93
94columnMenu.on( 'submit' , onSubmit ) ;
95
96function onSubmit( buttonValue ) {
97 //console.error( 'Submitted: ' , value ) ;
98 term.saveCursor() ;
99 term.moveTo.styleReset.eraseLine( 1 , 22 , 'Submitted: %s\n' , buttonValue ) ;
100 term.restoreCursor() ;
101}
102
103
104
105document.giveFocusTo( columnMenu ) ;
106
107term.on( 'key' , function( key ) {
108 switch( key )
109 {
110 case 'CTRL_C' :
111 term.grabInput( false ) ;
112 term.hideCursor( false ) ;
113 term.styleReset() ;
114 term.clear() ;
115 process.exit() ;
116 break ;
117 }
118} ) ;
119