-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathstore.js
205 lines (190 loc) · 6.08 KB
/
store.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import mutations from './mutations';
import getters from './getters';
// languages
import ru from '../../lang/ru';
import en from '../../lang/en';
import ar from '../../lang/ar';
import sr from '../../lang/sr';
import cs from '../../lang/cs';
import de from '../../lang/de';
import es from '../../lang/es';
import nl from '../../lang/nl';
/* eslint camelcase: 0 */
import zh_CN from '../../lang/zh_CN';
import fa from '../../lang/fa';
import it from '../../lang/it';
import tr from '../../lang/tr';
import fr from '../../lang/fr';
import pt_BR from '../../lang/pt_BR';
import zh_TW from '../../lang/zh_TW';
import pl from '../../lang/pl';
import hu from '../../lang/hu';
import uk from '../../lang/uk';
export default {
namespaced: true,
state() {
return {
// ACL
acl: null,
// App version
version: '3.1.1',
// axios headers
headers: {},
// axios default URL
baseUrl: null,
/**
* File manager windows configuration
* 1 - only one file manager window
* 2 - one file manager window with directories tree module
* 3 - two file manager windows
*/
windowsConfig: null,
// App language
lang: null,
// Translations (/src/lang)
translations: {
ru: Object.freeze(ru),
en: Object.freeze(en),
ar: Object.freeze(ar),
sr: Object.freeze(sr),
cs: Object.freeze(cs),
de: Object.freeze(de),
es: Object.freeze(es),
nl: Object.freeze(nl),
'zh-CN': Object.freeze(zh_CN),
fa: Object.freeze(fa),
it: Object.freeze(it),
tr: Object.freeze(tr),
fr: Object.freeze(fr),
'pt-BR': Object.freeze(pt_BR),
'zh-TW': Object.freeze(zh_TW),
pl: Object.freeze(pl),
hu: Object.freeze(hu),
uk: Object.freeze(uk),
},
// show or hide hidden files
hiddenFiles: false,
// Context menu items
contextMenu: [
[
{
name: 'open',
icon: 'bi-folder2-open',
},
{
name: 'audioPlay',
icon: 'bi-play',
},
{
name: 'videoPlay',
icon: 'bi-play',
},
{
name: 'view',
icon: 'bi-eye',
},
{
name: 'edit',
icon: 'bi-pen',
},
{
name: 'select',
icon: 'bi-check2',
},
{
name: 'download',
icon: 'bi-download',
},
],
[
{
name: 'copy',
icon: 'bi-files',
},
{
name: 'cut',
icon: 'bi-scissors',
},
{
name: 'rename',
icon: 'bi-pencil-square',
},
{
name: 'paste',
icon: 'bi-clipboard',
},
{
name: 'zip',
icon: 'bi-file-zip',
},
{
name: 'unzip',
icon: 'bi-file-zip-fill',
},
],
[
{
name: 'delete',
icon: 'bi-trash text-danger',
},
],
[
{
name: 'properties',
icon: 'bi-card-list',
},
],
],
// Image extensions for view and preview
imageExtensions: ['png', 'jpg', 'jpeg', 'gif', 'webp'],
// Image extensions for cropping
cropExtensions: ['png', 'jpg', 'jpeg', 'webp'],
// audio extensions for play
audioExtensions: ['ogg', 'mp3', 'aac', 'wav'],
// video extensions for play
videoExtensions: ['webm', 'mp4'],
// File extensions for code editor
textExtensions: {
sh: 'text/x-sh',
// styles
css: 'text/css',
less: 'text/x-less',
sass: 'text/x-sass',
scss: 'text/x-scss',
html: 'text/html',
// js
js: 'text/javascript',
ts: 'text/typescript',
vue: 'text/x-vue',
// text
htaccess: 'text/plain',
env: 'text/plain',
txt: 'text/plain',
log: 'text/plain',
ini: 'text/x-ini',
xml: 'application/xml',
md: 'text/x-markdown',
// c-like
java: 'text/x-java',
c: 'text/x-csrc',
cpp: 'text/x-c++src',
cs: 'text/x-csharp',
scl: 'text/x-scala',
php: 'application/x-httpd-php',
// DB
sql: 'text/x-sql',
// other
pl: 'text/x-perl',
py: 'text/x-python',
lua: 'text/x-lua',
swift: 'text/x-swift',
rb: 'text/x-ruby',
go: 'text/x-go',
yaml: 'text/x-yaml',
json: 'application/json',
},
};
},
mutations,
getters,
};