@yelon/bis 15.0.0-beta.7 → 15.1.0-077d885e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/layout/layout-basic/layout-basic.component.mjs +11 -11
- package/esm2020/layout/layout-nav/layout-nav-application.component.mjs +13 -13
- package/esm2020/layout/layout-nav/types.mjs +1 -1
- package/esm2020/layout/public_api.mjs +2 -1
- package/esm2020/layout/widgets/yunzai-clear-storage.component.mjs +3 -3
- package/esm2020/layout/widgets/yunzai-fullscreen.component.mjs +3 -3
- package/esm2020/layout/widgets/yunzai-i18n.component.mjs +27 -8
- package/esm2020/layout/widgets/yunzai-notify.component.mjs +7 -7
- package/esm2020/layout/widgets/yunzai-user.component.mjs +3 -3
- package/esm2020/layout/yunzai-default.interceptor.mjs +3 -1
- package/esm2020/layout/yunzai-i18n.service.mjs +66 -49
- package/esm2020/layout/yunzai-lang.mjs +114 -0
- package/esm2020/layout/yunzai-startup.service.mjs +4 -2
- package/fesm2015/layout.mjs +237 -92
- package/fesm2015/layout.mjs.map +1 -1
- package/fesm2020/layout.mjs +237 -92
- package/fesm2020/layout.mjs.map +1 -1
- package/layout/public_api.d.ts +1 -0
- package/layout/widgets/yunzai-i18n.component.d.ts +6 -7
- package/layout/yunzai-i18n.service.d.ts +10 -9
- package/layout/yunzai-lang.d.ts +11 -0
- package/package.json +11 -11
package/fesm2020/layout.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Component, ChangeDetectionStrategy, HostListener, Injectable, Inject, Input, Optional, NgModule, APP_INITIALIZER } from '@angular/core';
|
|
3
|
-
import {
|
|
4
|
-
import * as i1$
|
|
3
|
+
import { Subject, takeUntil, of, catchError, forkJoin, map, mergeMap, mergeAll, BehaviorSubject, throwError, filter, take, switchMap } from 'rxjs';
|
|
4
|
+
import * as i1$4 from '@yelon/util';
|
|
5
5
|
import { WINDOW, log as log$1, deepCopy, YunzaiConfigService } from '@yelon/util';
|
|
6
6
|
import * as i1$5 from '@yelon/theme/layout-default';
|
|
7
|
-
import * as i1$
|
|
7
|
+
import * as i1$3 from '@yelon/cache';
|
|
8
8
|
import { CacheService } from '@yelon/cache';
|
|
9
9
|
import * as i3$3 from '@yelon/socket';
|
|
10
10
|
import * as i4$1 from '@angular/common';
|
|
@@ -20,16 +20,25 @@ import * as i9 from 'ng-zorro-antd/avatar';
|
|
|
20
20
|
import * as i1 from 'ng-zorro-antd/modal';
|
|
21
21
|
import * as i1$1 from 'ng-zorro-antd/message';
|
|
22
22
|
import * as i1$2 from '@yelon/theme';
|
|
23
|
-
import { zh_CN as zh_CN$1, zh_TW as zh_TW$1, en_US as en_US$1, YunzaiI18nBaseService, YUNZAI_I18N_TOKEN, _HttpClient } from '@yelon/theme';
|
|
23
|
+
import { zh_CN as zh_CN$1, zh_TW as zh_TW$1, en_US as en_US$1, el_GR as el_GR$1, es_ES as es_ES$1, fr_FR as fr_FR$1, hr_HR as hr_HR$1, it_IT as it_IT$1, ko_KR as ko_KR$1, pl_PL as pl_PL$1, sl_SI as sl_SI$1, tr_TR as tr_TR$1, YunzaiI18nBaseService, YUNZAI_I18N_TOKEN, _HttpClient } from '@yelon/theme';
|
|
24
24
|
import screenfull from 'screenfull';
|
|
25
25
|
import { __decorate } from 'tslib';
|
|
26
26
|
import { InputBoolean } from '@yelon/util/decorator';
|
|
27
27
|
import ngEn from '@angular/common/locales/en';
|
|
28
|
+
import { zhCN, zhTW, enUS, el, es, fr, hr, it, ko, pl, sl, tr } from 'date-fns/locale';
|
|
29
|
+
import * as i2 from 'ng-zorro-antd/i18n';
|
|
30
|
+
import { zh_CN, zh_TW, en_US, el_GR, es_ES, fr_FR, hr_HR, it_IT, ko_KR, pl_PL, sl_SI, tr_TR } from 'ng-zorro-antd/i18n';
|
|
31
|
+
import ngElGr from '@angular/common/locales/el';
|
|
32
|
+
import ngEsEs from '@angular/common/locales/es';
|
|
33
|
+
import ngFr from '@angular/common/locales/fr';
|
|
34
|
+
import ngHr from '@angular/common/locales/hr';
|
|
35
|
+
import ngIt from '@angular/common/locales/it';
|
|
36
|
+
import ngKo from '@angular/common/locales/ko';
|
|
37
|
+
import ngPl from '@angular/common/locales/pl';
|
|
38
|
+
import ngSl from '@angular/common/locales/sl';
|
|
39
|
+
import ngTr from '@angular/common/locales/tr';
|
|
28
40
|
import ngZh from '@angular/common/locales/zh';
|
|
29
41
|
import ngZhTw from '@angular/common/locales/zh-Hant';
|
|
30
|
-
import { zhCN, zhTW, enUS } from 'date-fns/locale';
|
|
31
|
-
import * as i2 from 'ng-zorro-antd/i18n';
|
|
32
|
-
import { zh_CN, zh_TW, en_US } from 'ng-zorro-antd/i18n';
|
|
33
42
|
import * as i3$1 from '@angular/cdk/platform';
|
|
34
43
|
import * as i4 from '@yelon/util/config';
|
|
35
44
|
import { YunzaiConfigService as YunzaiConfigService$1 } from '@yelon/util/config';
|
|
@@ -76,7 +85,7 @@ class YunzaiClearStorageComponent {
|
|
|
76
85
|
YunzaiClearStorageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiClearStorageComponent, deps: [{ token: i1.NzModalService }, { token: i1$1.NzMessageService }], target: i0.ɵɵFactoryTarget.Component });
|
|
77
86
|
YunzaiClearStorageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: YunzaiClearStorageComponent, selector: "yunzai-clearstorage", host: { listeners: { "click": "_click()" }, properties: { "class.d-block": "true" } }, ngImport: i0, template: `
|
|
78
87
|
<i nz-icon nzType="tool"></i>
|
|
79
|
-
{{ '
|
|
88
|
+
{{ 'storage.clear' | i18n }}
|
|
80
89
|
`, isInline: true, dependencies: [{ kind: "directive", type: i3.ɵNzTransitionPatchDirective, selector: "[nz-button], nz-button-group, [nz-icon], [nz-menu-item], [nz-submenu], nz-select-top-control, nz-select-placeholder, nz-input-group", inputs: ["hidden"] }, { kind: "directive", type: i8.NzIconDirective, selector: "[nz-icon]", inputs: ["nzSpin", "nzRotate", "nzType", "nzTheme", "nzTwotoneColor", "nzIconfont"], exportAs: ["nzIcon"] }, { kind: "pipe", type: i1$2.I18nPipe, name: "i18n" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
81
90
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiClearStorageComponent, decorators: [{
|
|
82
91
|
type: Component,
|
|
@@ -84,7 +93,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
84
93
|
selector: 'yunzai-clearstorage',
|
|
85
94
|
template: `
|
|
86
95
|
<i nz-icon nzType="tool"></i>
|
|
87
|
-
{{ '
|
|
96
|
+
{{ 'storage.clear' | i18n }}
|
|
88
97
|
`,
|
|
89
98
|
host: {
|
|
90
99
|
'[class.d-block]': 'true'
|
|
@@ -112,7 +121,7 @@ class YunzaiFullScreenComponent {
|
|
|
112
121
|
YunzaiFullScreenComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiFullScreenComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
113
122
|
YunzaiFullScreenComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: YunzaiFullScreenComponent, selector: "yunzai-fullscreen", host: { listeners: { "window:resize": "_resize()", "click": "_click()" }, properties: { "class.d-block": "true" } }, ngImport: i0, template: `
|
|
114
123
|
<i nz-icon [nzType]="status ? 'fullscreen-exit' : 'fullscreen'"></i>
|
|
115
|
-
{{ (status ? '
|
|
124
|
+
{{ (status ? 'exitFullscreen' : 'fullscreen') | i18n }}
|
|
116
125
|
`, isInline: true, dependencies: [{ kind: "directive", type: i3.ɵNzTransitionPatchDirective, selector: "[nz-button], nz-button-group, [nz-icon], [nz-menu-item], [nz-submenu], nz-select-top-control, nz-select-placeholder, nz-input-group", inputs: ["hidden"] }, { kind: "directive", type: i8.NzIconDirective, selector: "[nz-icon]", inputs: ["nzSpin", "nzRotate", "nzType", "nzTheme", "nzTwotoneColor", "nzIconfont"], exportAs: ["nzIcon"] }, { kind: "pipe", type: i1$2.I18nPipe, name: "i18n" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
117
126
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiFullScreenComponent, decorators: [{
|
|
118
127
|
type: Component,
|
|
@@ -120,7 +129,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
120
129
|
selector: 'yunzai-fullscreen',
|
|
121
130
|
template: `
|
|
122
131
|
<i nz-icon [nzType]="status ? 'fullscreen-exit' : 'fullscreen'"></i>
|
|
123
|
-
{{ (status ? '
|
|
132
|
+
{{ (status ? 'exitFullscreen' : 'fullscreen') | i18n }}
|
|
124
133
|
`,
|
|
125
134
|
host: {
|
|
126
135
|
'[class.d-block]': 'true'
|
|
@@ -135,8 +144,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
135
144
|
args: ['click']
|
|
136
145
|
}] } });
|
|
137
146
|
|
|
138
|
-
const
|
|
139
|
-
|
|
147
|
+
const BUSINESS_DEFAULT_CONFIG = {
|
|
148
|
+
baseUrl: '/backstage',
|
|
149
|
+
systemCode: 'portal',
|
|
150
|
+
loginForm: null,
|
|
151
|
+
refreshTokenEnabled: true,
|
|
152
|
+
refreshTokenType: 're-request'
|
|
153
|
+
};
|
|
154
|
+
function mergeBisConfig(srv) {
|
|
155
|
+
return srv.merge('bis', BUSINESS_DEFAULT_CONFIG);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
const YUNZAI_LANGS = {
|
|
140
159
|
'zh-CN': {
|
|
141
160
|
text: '简体中文',
|
|
142
161
|
ng: ngZh,
|
|
@@ -160,23 +179,100 @@ const LANGS = {
|
|
|
160
179
|
date: enUS,
|
|
161
180
|
yelon: en_US$1,
|
|
162
181
|
abbr: '🇬🇧'
|
|
182
|
+
},
|
|
183
|
+
'el-GR': {
|
|
184
|
+
text: 'Ελληνικά',
|
|
185
|
+
ng: ngElGr,
|
|
186
|
+
zorro: el_GR,
|
|
187
|
+
date: el,
|
|
188
|
+
yelon: el_GR$1,
|
|
189
|
+
abbr: '🇬🇷'
|
|
190
|
+
},
|
|
191
|
+
'es-ES': {
|
|
192
|
+
text: 'Español',
|
|
193
|
+
ng: ngEsEs,
|
|
194
|
+
zorro: es_ES,
|
|
195
|
+
date: es,
|
|
196
|
+
yelon: es_ES$1,
|
|
197
|
+
abbr: '🇪🇸'
|
|
198
|
+
},
|
|
199
|
+
'fr-FR': {
|
|
200
|
+
text: 'Français',
|
|
201
|
+
ng: ngFr,
|
|
202
|
+
zorro: fr_FR,
|
|
203
|
+
date: fr,
|
|
204
|
+
yelon: fr_FR$1,
|
|
205
|
+
abbr: '🇫🇷'
|
|
206
|
+
},
|
|
207
|
+
'hr-HR': {
|
|
208
|
+
text: 'Hrvatski',
|
|
209
|
+
ng: ngHr,
|
|
210
|
+
zorro: hr_HR,
|
|
211
|
+
date: hr,
|
|
212
|
+
yelon: hr_HR$1,
|
|
213
|
+
abbr: '🇭🇷'
|
|
214
|
+
},
|
|
215
|
+
'it-IT': {
|
|
216
|
+
text: 'Italiano',
|
|
217
|
+
ng: ngIt,
|
|
218
|
+
zorro: it_IT,
|
|
219
|
+
date: it,
|
|
220
|
+
yelon: it_IT$1,
|
|
221
|
+
abbr: '🇮🇹'
|
|
222
|
+
},
|
|
223
|
+
'ko-KR': {
|
|
224
|
+
text: '한국어',
|
|
225
|
+
ng: ngKo,
|
|
226
|
+
zorro: ko_KR,
|
|
227
|
+
date: ko,
|
|
228
|
+
yelon: ko_KR$1,
|
|
229
|
+
abbr: '🇰🇷'
|
|
230
|
+
},
|
|
231
|
+
'pl-PL': {
|
|
232
|
+
text: 'Polski',
|
|
233
|
+
ng: ngPl,
|
|
234
|
+
zorro: pl_PL,
|
|
235
|
+
date: pl,
|
|
236
|
+
yelon: pl_PL$1,
|
|
237
|
+
abbr: '🇵🇱'
|
|
238
|
+
},
|
|
239
|
+
'sl-SI': {
|
|
240
|
+
text: 'Slovenščina',
|
|
241
|
+
ng: ngSl,
|
|
242
|
+
zorro: sl_SI,
|
|
243
|
+
date: sl,
|
|
244
|
+
yelon: sl_SI$1,
|
|
245
|
+
abbr: '🇸🇮'
|
|
246
|
+
},
|
|
247
|
+
'tr-TR': {
|
|
248
|
+
text: 'Türkçe',
|
|
249
|
+
ng: ngTr,
|
|
250
|
+
zorro: tr_TR,
|
|
251
|
+
date: tr,
|
|
252
|
+
yelon: tr_TR$1,
|
|
253
|
+
abbr: '🇹🇷'
|
|
163
254
|
}
|
|
164
255
|
};
|
|
256
|
+
|
|
257
|
+
const DEFAULT = 'zh-CN';
|
|
165
258
|
class YunzaiI18NService extends YunzaiI18nBaseService {
|
|
166
|
-
constructor(http, settings, nzI18nService, yelonLocaleService, platform, cogSrv) {
|
|
259
|
+
constructor(http, settings, nzI18nService, yelonLocaleService, platform, cogSrv, cacheService) {
|
|
167
260
|
super(cogSrv);
|
|
168
261
|
this.http = http;
|
|
169
262
|
this.settings = settings;
|
|
170
263
|
this.nzI18nService = nzI18nService;
|
|
171
264
|
this.yelonLocaleService = yelonLocaleService;
|
|
172
265
|
this.platform = platform;
|
|
266
|
+
this.cacheService = cacheService;
|
|
173
267
|
this._defaultLang = DEFAULT;
|
|
174
|
-
this.
|
|
175
|
-
const item = LANGS[code];
|
|
176
|
-
return { code, text: item.text, abbr: item.abbr };
|
|
177
|
-
});
|
|
268
|
+
this.destroy$ = new Subject();
|
|
178
269
|
const defaultLang = this.getDefaultLang();
|
|
179
|
-
this.
|
|
270
|
+
this.getLangs()
|
|
271
|
+
.pipe(takeUntil(this.destroy$))
|
|
272
|
+
.subscribe(langs => {
|
|
273
|
+
this._defaultLang = langs.findIndex(w => w.code === defaultLang) === -1 ? DEFAULT : defaultLang;
|
|
274
|
+
});
|
|
275
|
+
this.bis = mergeBisConfig(cogSrv);
|
|
180
276
|
}
|
|
181
277
|
getDefaultLang() {
|
|
182
278
|
if (!this.platform.isBrowser) {
|
|
@@ -190,35 +286,70 @@ class YunzaiI18NService extends YunzaiI18nBaseService {
|
|
|
190
286
|
return arr.length <= 1 ? res : `${arr[0]}-${arr[1].toUpperCase()}`;
|
|
191
287
|
}
|
|
192
288
|
loadLangData(lang) {
|
|
193
|
-
|
|
289
|
+
const key = `_yz_lang_${lang}`;
|
|
290
|
+
if (this.cacheService.getNone(key)) {
|
|
291
|
+
return of(this.cacheService.get(key));
|
|
292
|
+
}
|
|
293
|
+
else {
|
|
294
|
+
if (ngDevMode) {
|
|
295
|
+
return this.http.get(`assets/tmp/i18n/${lang}.json`);
|
|
296
|
+
}
|
|
297
|
+
else {
|
|
298
|
+
return this.http
|
|
299
|
+
.get(`${this.bis.baseUrl}/i18n/api/v2/${lang}?_allow_anonymous`)
|
|
300
|
+
.pipe(catchError(() => this.http.get(`assets/tmp/i18n/${lang}.json`)));
|
|
301
|
+
}
|
|
302
|
+
}
|
|
194
303
|
}
|
|
195
304
|
use(lang, data) {
|
|
196
305
|
if (this._currentLang === lang)
|
|
197
306
|
return;
|
|
307
|
+
const key = `_yz_lang_${lang}`;
|
|
308
|
+
this.cacheService.set(key, data);
|
|
309
|
+
this.cacheService.set(this.cacheDefaultKey, lang);
|
|
198
310
|
this._data = this.flatData(data, []);
|
|
199
|
-
const item =
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
311
|
+
const item = YUNZAI_LANGS[lang];
|
|
312
|
+
if (item) {
|
|
313
|
+
registerLocaleData(item.ng);
|
|
314
|
+
this.nzI18nService.setLocale(item.zorro);
|
|
315
|
+
this.nzI18nService.setDateLocale(item.date);
|
|
316
|
+
this.yelonLocaleService.setLocale(item.yelon);
|
|
317
|
+
this._currentLang = lang;
|
|
318
|
+
this._change$.next(lang);
|
|
319
|
+
}
|
|
320
|
+
else {
|
|
321
|
+
registerLocaleData(ngEn);
|
|
322
|
+
this.nzI18nService.setLocale(en_US);
|
|
323
|
+
this.nzI18nService.setDateLocale(enUS);
|
|
324
|
+
this.yelonLocaleService.setLocale(en_US$1);
|
|
325
|
+
this._currentLang = lang;
|
|
326
|
+
this._change$.next(lang);
|
|
327
|
+
}
|
|
206
328
|
}
|
|
207
329
|
getLangs() {
|
|
208
|
-
|
|
330
|
+
const langs = Object.keys(YUNZAI_LANGS).map(code => {
|
|
331
|
+
const item = YUNZAI_LANGS[code];
|
|
332
|
+
return { code, text: item.text, abbr: item.abbr, icon: undefined };
|
|
333
|
+
});
|
|
334
|
+
if (ngDevMode) {
|
|
335
|
+
return of(langs);
|
|
336
|
+
}
|
|
337
|
+
else {
|
|
338
|
+
return this.http.get(`${this.bis.baseUrl}/i18n/api/v2/list?_allow_anonymous`).pipe(catchError(() => of(langs)));
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
ngOnDestroy() {
|
|
342
|
+
this.destroy$.complete();
|
|
209
343
|
}
|
|
210
344
|
}
|
|
211
|
-
YunzaiI18NService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiI18NService, deps: [{ token: i1$2._HttpClient }, { token: i1$2.SettingsService }, { token: i2.NzI18nService }, { token: i1$2.YelonLocaleService }, { token: i3$1.Platform }, { token: i4.YunzaiConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
345
|
+
YunzaiI18NService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiI18NService, deps: [{ token: i1$2._HttpClient }, { token: i1$2.SettingsService }, { token: i2.NzI18nService }, { token: i1$2.YelonLocaleService }, { token: i3$1.Platform }, { token: i4.YunzaiConfigService }, { token: i1$3.CacheService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
212
346
|
YunzaiI18NService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiI18NService, providedIn: 'root' });
|
|
213
347
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiI18NService, decorators: [{
|
|
214
348
|
type: Injectable,
|
|
215
349
|
args: [{ providedIn: 'root' }]
|
|
216
|
-
}], ctorParameters: function () { return [{ type: i1$2._HttpClient }, { type: i1$2.SettingsService }, { type: i2.NzI18nService }, { type: i1$2.YelonLocaleService }, { type: i3$1.Platform }, { type: i4.YunzaiConfigService }]; } });
|
|
350
|
+
}], ctorParameters: function () { return [{ type: i1$2._HttpClient }, { type: i1$2.SettingsService }, { type: i2.NzI18nService }, { type: i1$2.YelonLocaleService }, { type: i3$1.Platform }, { type: i4.YunzaiConfigService }, { type: i1$3.CacheService }]; } });
|
|
217
351
|
|
|
218
352
|
class YunzaiI18NComponent {
|
|
219
|
-
get langs() {
|
|
220
|
-
return this.i18n.getLangs();
|
|
221
|
-
}
|
|
222
353
|
get curLangCode() {
|
|
223
354
|
return this.settings.layout.lang;
|
|
224
355
|
}
|
|
@@ -226,8 +357,16 @@ class YunzaiI18NComponent {
|
|
|
226
357
|
this.settings = settings;
|
|
227
358
|
this.i18n = i18n;
|
|
228
359
|
this.doc = doc;
|
|
360
|
+
this.destroy$ = new Subject();
|
|
229
361
|
/** Whether to display language text */
|
|
230
362
|
this.showLangText = true;
|
|
363
|
+
this.langs = [];
|
|
364
|
+
this.i18n
|
|
365
|
+
.getLangs()
|
|
366
|
+
.pipe(takeUntil(this.destroy$))
|
|
367
|
+
.subscribe(langs => {
|
|
368
|
+
this.langs = langs;
|
|
369
|
+
});
|
|
231
370
|
}
|
|
232
371
|
change(lang) {
|
|
233
372
|
const spinEl = this.doc.createElement('div');
|
|
@@ -240,12 +379,15 @@ class YunzaiI18NComponent {
|
|
|
240
379
|
setTimeout(() => this.doc.location.reload());
|
|
241
380
|
});
|
|
242
381
|
}
|
|
382
|
+
ngOnDestroy() {
|
|
383
|
+
this.destroy$.complete();
|
|
384
|
+
}
|
|
243
385
|
}
|
|
244
386
|
YunzaiI18NComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiI18NComponent, deps: [{ token: i1$2.SettingsService }, { token: YUNZAI_I18N_TOKEN }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component });
|
|
245
387
|
YunzaiI18NComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: YunzaiI18NComponent, selector: "yunzai-i18n", inputs: { showLangText: "showLangText" }, ngImport: i0, template: `
|
|
246
388
|
<div *ngIf="showLangText" nz-dropdown [nzDropdownMenu]="langMenu" nzPlacement="bottomRight">
|
|
247
389
|
<i nz-icon nzType="global"></i>
|
|
248
|
-
{{ '
|
|
390
|
+
{{ 'lang.nav' | i18n }}
|
|
249
391
|
<i nz-icon nzType="down"></i>
|
|
250
392
|
</div>
|
|
251
393
|
<i
|
|
@@ -264,7 +406,12 @@ YunzaiI18NComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
264
406
|
[nzSelected]="item.code === curLangCode"
|
|
265
407
|
(click)="change(item.code)"
|
|
266
408
|
>
|
|
267
|
-
<
|
|
409
|
+
<template *ngIf="!item.icon">
|
|
410
|
+
<span role="img" [attr.aria-label]="item.text" class="pr-xs">{{ item.abbr }}</span>
|
|
411
|
+
</template>
|
|
412
|
+
<template *ngIf="item.icon">
|
|
413
|
+
<img [src]="'data:image/png;base64,' + item.icon" [alt]="item.abbr" class="pr-xs" />
|
|
414
|
+
</template>
|
|
268
415
|
{{ item.text }}
|
|
269
416
|
</li>
|
|
270
417
|
</ul>
|
|
@@ -280,7 +427,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
280
427
|
template: `
|
|
281
428
|
<div *ngIf="showLangText" nz-dropdown [nzDropdownMenu]="langMenu" nzPlacement="bottomRight">
|
|
282
429
|
<i nz-icon nzType="global"></i>
|
|
283
|
-
{{ '
|
|
430
|
+
{{ 'lang.nav' | i18n }}
|
|
284
431
|
<i nz-icon nzType="down"></i>
|
|
285
432
|
</div>
|
|
286
433
|
<i
|
|
@@ -299,7 +446,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
299
446
|
[nzSelected]="item.code === curLangCode"
|
|
300
447
|
(click)="change(item.code)"
|
|
301
448
|
>
|
|
302
|
-
<
|
|
449
|
+
<template *ngIf="!item.icon">
|
|
450
|
+
<span role="img" [attr.aria-label]="item.text" class="pr-xs">{{ item.abbr }}</span>
|
|
451
|
+
</template>
|
|
452
|
+
<template *ngIf="item.icon">
|
|
453
|
+
<img [src]="'data:image/png;base64,' + item.icon" [alt]="item.abbr" class="pr-xs" />
|
|
454
|
+
</template>
|
|
303
455
|
{{ item.text }}
|
|
304
456
|
</li>
|
|
305
457
|
</ul>
|
|
@@ -330,25 +482,25 @@ class YunzaiNotifyComponent {
|
|
|
330
482
|
key: 'msg',
|
|
331
483
|
title: this.y18n.fanyi('notify.message'),
|
|
332
484
|
list: [],
|
|
333
|
-
emptyText: this.y18n.fanyi('notify.message.
|
|
485
|
+
emptyText: this.y18n.fanyi('notify.message.empty'),
|
|
334
486
|
emptyImage: './assets/tmp/img/message.svg',
|
|
335
|
-
clearText: this.y18n.fanyi('notify.message.
|
|
487
|
+
clearText: this.y18n.fanyi('notify.message.clear')
|
|
336
488
|
},
|
|
337
489
|
{
|
|
338
490
|
key: 'todo',
|
|
339
491
|
title: this.y18n.fanyi('notify.todo'),
|
|
340
492
|
list: [],
|
|
341
|
-
emptyText: this.y18n.fanyi('notify.todo.
|
|
493
|
+
emptyText: this.y18n.fanyi('notify.todo.empty'),
|
|
342
494
|
emptyImage: './assets/tmp/img/todo.svg',
|
|
343
|
-
clearText: this.y18n.fanyi('notify.todo.
|
|
495
|
+
clearText: this.y18n.fanyi('notify.todo.clear')
|
|
344
496
|
},
|
|
345
497
|
{
|
|
346
498
|
key: 'notice',
|
|
347
499
|
title: this.y18n.fanyi('notify.notice'),
|
|
348
500
|
list: [],
|
|
349
|
-
emptyText: this.y18n.fanyi('notify.notice.
|
|
501
|
+
emptyText: this.y18n.fanyi('notify.notice.empty'),
|
|
350
502
|
emptyImage: './assets/tmp/img/notice.svg',
|
|
351
|
-
clearText: this.y18n.fanyi('notify.notice.
|
|
503
|
+
clearText: this.y18n.fanyi('notify.notice.clear')
|
|
352
504
|
}
|
|
353
505
|
];
|
|
354
506
|
this.loading = false;
|
|
@@ -668,17 +820,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
668
820
|
type: Input
|
|
669
821
|
}] } });
|
|
670
822
|
|
|
671
|
-
const BUSINESS_DEFAULT_CONFIG = {
|
|
672
|
-
baseUrl: '/backstage',
|
|
673
|
-
systemCode: 'portal',
|
|
674
|
-
loginForm: null,
|
|
675
|
-
refreshTokenEnabled: true,
|
|
676
|
-
refreshTokenType: 're-request'
|
|
677
|
-
};
|
|
678
|
-
function mergeBisConfig(srv) {
|
|
679
|
-
return srv.merge('bis', BUSINESS_DEFAULT_CONFIG);
|
|
680
|
-
}
|
|
681
|
-
|
|
682
823
|
class YunzaiUserComponent {
|
|
683
824
|
constructor(injector, msg, tokenService,
|
|
684
825
|
// @ts-ignore
|
|
@@ -716,7 +857,7 @@ class YunzaiUserComponent {
|
|
|
716
857
|
}
|
|
717
858
|
}
|
|
718
859
|
}
|
|
719
|
-
YunzaiUserComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiUserComponent, deps: [{ token: i0.Injector }, { token: i1$1.NzMessageService }, { token: YA_SERVICE_TOKEN }, { token: i1$
|
|
860
|
+
YunzaiUserComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiUserComponent, deps: [{ token: i0.Injector }, { token: i1$1.NzMessageService }, { token: YA_SERVICE_TOKEN }, { token: i1$4.YunzaiConfigService }, { token: i1$3.CacheService }], target: i0.ɵɵFactoryTarget.Component });
|
|
720
861
|
YunzaiUserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: YunzaiUserComponent, selector: "yunzai-user", ngImport: i0, template: `
|
|
721
862
|
<div
|
|
722
863
|
class="yunzai-default__nav-item d-flex align-items-center px-sm"
|
|
@@ -738,7 +879,7 @@ YunzaiUserComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", ve
|
|
|
738
879
|
<li nz-menu-divider></li>
|
|
739
880
|
<div nz-menu-item (click)="logout()">
|
|
740
881
|
<i nz-icon nzType="logout" class="mr-sm"></i>
|
|
741
|
-
{{ '
|
|
882
|
+
{{ 'logout' | i18n }}
|
|
742
883
|
</div>
|
|
743
884
|
</div>
|
|
744
885
|
</nz-dropdown-menu>
|
|
@@ -768,7 +909,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
768
909
|
<li nz-menu-divider></li>
|
|
769
910
|
<div nz-menu-item (click)="logout()">
|
|
770
911
|
<i nz-icon nzType="logout" class="mr-sm"></i>
|
|
771
|
-
{{ '
|
|
912
|
+
{{ 'logout' | i18n }}
|
|
772
913
|
</div>
|
|
773
914
|
</div>
|
|
774
915
|
</nz-dropdown-menu>
|
|
@@ -778,7 +919,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
778
919
|
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i1$1.NzMessageService }, { type: undefined, decorators: [{
|
|
779
920
|
type: Inject,
|
|
780
921
|
args: [YA_SERVICE_TOKEN]
|
|
781
|
-
}] }, { type: i1$
|
|
922
|
+
}] }, { type: i1$4.YunzaiConfigService }, { type: i1$3.CacheService }]; } });
|
|
782
923
|
|
|
783
924
|
var TopicType;
|
|
784
925
|
(function (TopicType) {
|
|
@@ -895,7 +1036,7 @@ class LayoutNavApplicationComponent {
|
|
|
895
1036
|
this.state.destroy$.complete();
|
|
896
1037
|
}
|
|
897
1038
|
}
|
|
898
|
-
LayoutNavApplicationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: LayoutNavApplicationComponent, deps: [{ token: i1$
|
|
1039
|
+
LayoutNavApplicationComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: LayoutNavApplicationComponent, deps: [{ token: i1$3.CacheService }, { token: YunzaiI18NService }, { token: i1$2._HttpClient }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
899
1040
|
LayoutNavApplicationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: LayoutNavApplicationComponent, selector: "layout-nav-application", ngImport: i0, template: `
|
|
900
1041
|
<!-- template start-->
|
|
901
1042
|
<ng-template #search>
|
|
@@ -927,15 +1068,15 @@ LayoutNavApplicationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
927
1068
|
<!-- template end-->
|
|
928
1069
|
|
|
929
1070
|
<!-- button start-->
|
|
930
|
-
<div class="yunzai-default__nav-item" (click)="diffChange()"> {{ '
|
|
1071
|
+
<div class="yunzai-default__nav-item" (click)="diffChange()"> {{ 'mode.nav' | i18n }}</div>
|
|
931
1072
|
<!-- button end-->
|
|
932
1073
|
|
|
933
1074
|
<!-- header start-->
|
|
934
1075
|
<div class="yz-application" nz-row *ngIf="state.active">
|
|
935
1076
|
<div nz-col [nzSpan]="3" class="yz-application-topic">
|
|
936
|
-
<div class="yz-application-text" (click)="full()">{{ '
|
|
937
|
-
<div class="yz-application-text" (click)="own()">{{ '
|
|
938
|
-
<div class="yz-application-text" *ngFor="let d of state.topics" (click)="every(d)">{{ d.name }}</div>
|
|
1077
|
+
<div class="yz-application-text" (click)="full()">{{ 'mode.nav.all' | i18n }}</div>
|
|
1078
|
+
<div class="yz-application-text" (click)="own()">{{ 'mode.nav.mine' | i18n }}</div>
|
|
1079
|
+
<div class="yz-application-text" *ngFor="let d of state.topics" (click)="every(d)">{{ d.name | i18n }}</div>
|
|
939
1080
|
</div>
|
|
940
1081
|
<div nz-col [nzSpan]="21" [ngSwitch]="state.topic" class="yz-application-container">
|
|
941
1082
|
<div *ngSwitchCase="TopicType.FULL">
|
|
@@ -951,8 +1092,8 @@ LayoutNavApplicationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
951
1092
|
<ul>
|
|
952
1093
|
<li *ngFor="let d of state.list" (click)="open(d)">
|
|
953
1094
|
<a href="javascript:;">
|
|
954
|
-
<h4>{{ d.name }}</h4>
|
|
955
|
-
<p>{{ d.intro }}</p>
|
|
1095
|
+
<h4>{{ d.name | i18n }}</h4>
|
|
1096
|
+
<p>{{ d.intro | i18n }}</p>
|
|
956
1097
|
</a>
|
|
957
1098
|
</li>
|
|
958
1099
|
</ul>
|
|
@@ -997,15 +1138,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
997
1138
|
<!-- template end-->
|
|
998
1139
|
|
|
999
1140
|
<!-- button start-->
|
|
1000
|
-
<div class="yunzai-default__nav-item" (click)="diffChange()"> {{ '
|
|
1141
|
+
<div class="yunzai-default__nav-item" (click)="diffChange()"> {{ 'mode.nav' | i18n }}</div>
|
|
1001
1142
|
<!-- button end-->
|
|
1002
1143
|
|
|
1003
1144
|
<!-- header start-->
|
|
1004
1145
|
<div class="yz-application" nz-row *ngIf="state.active">
|
|
1005
1146
|
<div nz-col [nzSpan]="3" class="yz-application-topic">
|
|
1006
|
-
<div class="yz-application-text" (click)="full()">{{ '
|
|
1007
|
-
<div class="yz-application-text" (click)="own()">{{ '
|
|
1008
|
-
<div class="yz-application-text" *ngFor="let d of state.topics" (click)="every(d)">{{ d.name }}</div>
|
|
1147
|
+
<div class="yz-application-text" (click)="full()">{{ 'mode.nav.all' | i18n }}</div>
|
|
1148
|
+
<div class="yz-application-text" (click)="own()">{{ 'mode.nav.mine' | i18n }}</div>
|
|
1149
|
+
<div class="yz-application-text" *ngFor="let d of state.topics" (click)="every(d)">{{ d.name | i18n }}</div>
|
|
1009
1150
|
</div>
|
|
1010
1151
|
<div nz-col [nzSpan]="21" [ngSwitch]="state.topic" class="yz-application-container">
|
|
1011
1152
|
<div *ngSwitchCase="TopicType.FULL">
|
|
@@ -1021,8 +1162,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1021
1162
|
<ul>
|
|
1022
1163
|
<li *ngFor="let d of state.list" (click)="open(d)">
|
|
1023
1164
|
<a href="javascript:;">
|
|
1024
|
-
<h4>{{ d.name }}</h4>
|
|
1025
|
-
<p>{{ d.intro }}</p>
|
|
1165
|
+
<h4>{{ d.name | i18n }}</h4>
|
|
1166
|
+
<p>{{ d.intro | i18n }}</p>
|
|
1026
1167
|
</a>
|
|
1027
1168
|
</li>
|
|
1028
1169
|
</ul>
|
|
@@ -1033,7 +1174,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1033
1174
|
<!-- header end-->
|
|
1034
1175
|
`
|
|
1035
1176
|
}]
|
|
1036
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
1177
|
+
}], ctorParameters: function () { return [{ type: i1$3.CacheService }, { type: YunzaiI18NService }, { type: i1$2._HttpClient }, { type: i0.Injector }]; } });
|
|
1037
1178
|
|
|
1038
1179
|
class LayoutNavGroupComponent {
|
|
1039
1180
|
constructor(inject, cacheService, http) {
|
|
@@ -1077,7 +1218,7 @@ class LayoutNavGroupComponent {
|
|
|
1077
1218
|
this.state.destroy$.complete();
|
|
1078
1219
|
}
|
|
1079
1220
|
}
|
|
1080
|
-
LayoutNavGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: LayoutNavGroupComponent, deps: [{ token: i0.Injector }, { token: i1$
|
|
1221
|
+
LayoutNavGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: LayoutNavGroupComponent, deps: [{ token: i0.Injector }, { token: i1$3.CacheService }, { token: i1$2._HttpClient }], target: i0.ɵɵFactoryTarget.Component });
|
|
1081
1222
|
LayoutNavGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: LayoutNavGroupComponent, selector: "layout-nav-group", ngImport: i0, template: `
|
|
1082
1223
|
<div class="yz-application-group">
|
|
1083
1224
|
<nz-tabset>
|
|
@@ -1141,7 +1282,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1141
1282
|
</div>
|
|
1142
1283
|
`
|
|
1143
1284
|
}]
|
|
1144
|
-
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i1$
|
|
1285
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i1$3.CacheService }, { type: i1$2._HttpClient }]; } });
|
|
1145
1286
|
|
|
1146
1287
|
class LayoutNavTileComponent {
|
|
1147
1288
|
constructor() { }
|
|
@@ -1268,7 +1409,7 @@ class YunzaiLayoutBasicComponent {
|
|
|
1268
1409
|
this.state.destroy$.complete();
|
|
1269
1410
|
}
|
|
1270
1411
|
}
|
|
1271
|
-
YunzaiLayoutBasicComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiLayoutBasicComponent, deps: [{ token: i1$5.LayoutDisplayService }, { token: i1$
|
|
1412
|
+
YunzaiLayoutBasicComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiLayoutBasicComponent, deps: [{ token: i1$5.LayoutDisplayService }, { token: i1$3.CacheService }, { token: i3$3.StompService }, { token: WINDOW }], target: i0.ɵɵFactoryTarget.Component });
|
|
1272
1413
|
YunzaiLayoutBasicComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.4", type: YunzaiLayoutBasicComponent, selector: "yz-layout-basic", ngImport: i0, template: `<layout-default
|
|
1273
1414
|
[options]="options"
|
|
1274
1415
|
[asideUser]="asideUserTpl"
|
|
@@ -1306,20 +1447,20 @@ YunzaiLayoutBasicComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
1306
1447
|
<nz-dropdown-menu #settingsMenu="nzDropdownMenu">
|
|
1307
1448
|
<div nz-menu style="width: 200px;">
|
|
1308
1449
|
<div nz-menu-item>
|
|
1309
|
-
{{ '
|
|
1450
|
+
{{ 'mode.nav' | i18n }}
|
|
1310
1451
|
</div>
|
|
1311
1452
|
|
|
1312
1453
|
<div nz-menu-item (click)="onNavTypeChange(NavType.APPLICATION)">
|
|
1313
1454
|
<i nz-icon nzType="appstore" class="mr-sm"></i>
|
|
1314
|
-
{{ '
|
|
1455
|
+
{{ 'mode.nav.application' | i18n }}
|
|
1315
1456
|
</div>
|
|
1316
1457
|
<div nz-menu-item (click)="onNavTypeChange(NavType.GROUP)">
|
|
1317
1458
|
<i nz-icon nzType="group" class="mr-sm"></i>
|
|
1318
|
-
{{ '
|
|
1459
|
+
{{ 'mode.nav.group' | i18n }}
|
|
1319
1460
|
</div>
|
|
1320
1461
|
<div nz-menu-item (click)="onNavTypeChange(NavType.TILE)">
|
|
1321
1462
|
<i nz-icon nzType="appstore" class="mr-sm"></i>
|
|
1322
|
-
{{ '
|
|
1463
|
+
{{ 'mode.nav.tile' | i18n }}
|
|
1323
1464
|
</div>
|
|
1324
1465
|
<div nz-menu-item> <yunzai-fullscreen></yunzai-fullscreen> </div>
|
|
1325
1466
|
<div nz-menu-item> <yunzai-clearstorage></yunzai-clearstorage> </div>
|
|
@@ -1342,7 +1483,7 @@ YunzaiLayoutBasicComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
1342
1483
|
</div>
|
|
1343
1484
|
<nz-dropdown-menu #userMenu="nzDropdownMenu">
|
|
1344
1485
|
<ul nz-menu>
|
|
1345
|
-
<li nz-menu-item routerLink="/">{{ '
|
|
1486
|
+
<li nz-menu-item routerLink="/">{{ 'back.home' | i18n }}</li>
|
|
1346
1487
|
</ul>
|
|
1347
1488
|
</nz-dropdown-menu>
|
|
1348
1489
|
</ng-template>
|
|
@@ -1394,20 +1535,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1394
1535
|
<nz-dropdown-menu #settingsMenu="nzDropdownMenu">
|
|
1395
1536
|
<div nz-menu style="width: 200px;">
|
|
1396
1537
|
<div nz-menu-item>
|
|
1397
|
-
{{ '
|
|
1538
|
+
{{ 'mode.nav' | i18n }}
|
|
1398
1539
|
</div>
|
|
1399
1540
|
|
|
1400
1541
|
<div nz-menu-item (click)="onNavTypeChange(NavType.APPLICATION)">
|
|
1401
1542
|
<i nz-icon nzType="appstore" class="mr-sm"></i>
|
|
1402
|
-
{{ '
|
|
1543
|
+
{{ 'mode.nav.application' | i18n }}
|
|
1403
1544
|
</div>
|
|
1404
1545
|
<div nz-menu-item (click)="onNavTypeChange(NavType.GROUP)">
|
|
1405
1546
|
<i nz-icon nzType="group" class="mr-sm"></i>
|
|
1406
|
-
{{ '
|
|
1547
|
+
{{ 'mode.nav.group' | i18n }}
|
|
1407
1548
|
</div>
|
|
1408
1549
|
<div nz-menu-item (click)="onNavTypeChange(NavType.TILE)">
|
|
1409
1550
|
<i nz-icon nzType="appstore" class="mr-sm"></i>
|
|
1410
|
-
{{ '
|
|
1551
|
+
{{ 'mode.nav.tile' | i18n }}
|
|
1411
1552
|
</div>
|
|
1412
1553
|
<div nz-menu-item> <yunzai-fullscreen></yunzai-fullscreen> </div>
|
|
1413
1554
|
<div nz-menu-item> <yunzai-clearstorage></yunzai-clearstorage> </div>
|
|
@@ -1430,7 +1571,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1430
1571
|
</div>
|
|
1431
1572
|
<nz-dropdown-menu #userMenu="nzDropdownMenu">
|
|
1432
1573
|
<ul nz-menu>
|
|
1433
|
-
<li nz-menu-item routerLink="/">{{ '
|
|
1574
|
+
<li nz-menu-item routerLink="/">{{ 'back.home' | i18n }}</li>
|
|
1434
1575
|
</ul>
|
|
1435
1576
|
</nz-dropdown-menu>
|
|
1436
1577
|
</ng-template>
|
|
@@ -1442,7 +1583,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
1442
1583
|
<router-outlet></router-outlet>
|
|
1443
1584
|
</ng-template> `
|
|
1444
1585
|
}]
|
|
1445
|
-
}], ctorParameters: function () { return [{ type: i1$5.LayoutDisplayService }, { type: i1$
|
|
1586
|
+
}], ctorParameters: function () { return [{ type: i1$5.LayoutDisplayService }, { type: i1$3.CacheService }, { type: i3$3.StompService }, { type: undefined, decorators: [{
|
|
1446
1587
|
type: Inject,
|
|
1447
1588
|
args: [WINDOW]
|
|
1448
1589
|
}] }]; } });
|
|
@@ -1538,14 +1679,14 @@ class ActGuard {
|
|
|
1538
1679
|
});
|
|
1539
1680
|
}
|
|
1540
1681
|
}
|
|
1541
|
-
ActGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: ActGuard, deps: [{ token: i1$
|
|
1682
|
+
ActGuard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: ActGuard, deps: [{ token: i1$4.YunzaiConfigService }, { token: i1$3.CacheService }, { token: i1$4.PathToRegexpService }, { token: i5$1.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1542
1683
|
ActGuard.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: ActGuard, providedIn: 'root' });
|
|
1543
1684
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: ActGuard, decorators: [{
|
|
1544
1685
|
type: Injectable,
|
|
1545
1686
|
args: [{
|
|
1546
1687
|
providedIn: 'root'
|
|
1547
1688
|
}]
|
|
1548
|
-
}], ctorParameters: function () { return [{ type: i1$
|
|
1689
|
+
}], ctorParameters: function () { return [{ type: i1$4.YunzaiConfigService }, { type: i1$3.CacheService }, { type: i1$4.PathToRegexpService }, { type: i5$1.Router }]; } });
|
|
1549
1690
|
|
|
1550
1691
|
class YunzaiAuthService {
|
|
1551
1692
|
constructor(injector) {
|
|
@@ -1867,6 +2008,8 @@ class YunzaiDefaultInterceptor {
|
|
|
1867
2008
|
if (url.includes('.json') && url.includes('assets')) {
|
|
1868
2009
|
url = req.url;
|
|
1869
2010
|
}
|
|
2011
|
+
if (url.includes('i18n'))
|
|
2012
|
+
return next.handle(req);
|
|
1870
2013
|
// 加入语言头
|
|
1871
2014
|
const newReq = req.clone({ url, setHeaders: this.getAdditionalHeaders(req.headers) });
|
|
1872
2015
|
return next.handle(newReq).pipe(mergeMap(ev => {
|
|
@@ -2762,7 +2905,9 @@ class YunzaiStartupService {
|
|
|
2762
2905
|
}
|
|
2763
2906
|
load() {
|
|
2764
2907
|
log$1('startup.service: ', 'load');
|
|
2765
|
-
|
|
2908
|
+
let defaultLang = this.cacheService.getNone(this.i18n.cacheDefaultKey);
|
|
2909
|
+
if (!defaultLang)
|
|
2910
|
+
defaultLang = this.i18n.defaultLang;
|
|
2766
2911
|
return this.i18n.loadLangData(defaultLang).pipe(mergeMap(langData => {
|
|
2767
2912
|
log$1('startup.service: ', 'set i18n, defaultLang->', defaultLang, ' langData->', langData);
|
|
2768
2913
|
this.i18n.use(defaultLang, langData);
|
|
@@ -2832,7 +2977,7 @@ class YunzaiStartupService {
|
|
|
2832
2977
|
}
|
|
2833
2978
|
}
|
|
2834
2979
|
}
|
|
2835
|
-
YunzaiStartupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiStartupService, deps: [{ token: i8.NzIconService }, { token: i1$2.MenuService }, { token: YUNZAI_I18N_TOKEN }, { token: WINDOW }, { token: i1$2.SettingsService }, { token: i3$4.ACLService }, { token: i1$2.TitleService }, { token: YunzaiAuthService }, { token: i1$
|
|
2980
|
+
YunzaiStartupService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiStartupService, deps: [{ token: i8.NzIconService }, { token: i1$2.MenuService }, { token: YUNZAI_I18N_TOKEN }, { token: WINDOW }, { token: i1$2.SettingsService }, { token: i3$4.ACLService }, { token: i1$2.TitleService }, { token: YunzaiAuthService }, { token: i1$3.CacheService }, { token: i1$4.YunzaiConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2836
2981
|
YunzaiStartupService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiStartupService });
|
|
2837
2982
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImport: i0, type: YunzaiStartupService, decorators: [{
|
|
2838
2983
|
type: Injectable
|
|
@@ -2842,7 +2987,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.4", ngImpor
|
|
|
2842
2987
|
}] }, { type: undefined, decorators: [{
|
|
2843
2988
|
type: Inject,
|
|
2844
2989
|
args: [WINDOW]
|
|
2845
|
-
}] }, { type: i1$2.SettingsService }, { type: i3$4.ACLService }, { type: i1$2.TitleService }, { type: YunzaiAuthService }, { type: i1$
|
|
2990
|
+
}] }, { type: i1$2.SettingsService }, { type: i3$4.ACLService }, { type: i1$2.TitleService }, { type: YunzaiAuthService }, { type: i1$3.CacheService }, { type: i1$4.YunzaiConfigService }]; } });
|
|
2846
2991
|
function mapYzSideToYelonMenu(menus) {
|
|
2847
2992
|
menus.forEach(menu => {
|
|
2848
2993
|
menu.badgeDot = menu.badge_dot || null;
|
|
@@ -2891,5 +3036,5 @@ const YUNZAI_APPINIT_PROVIDES = [
|
|
|
2891
3036
|
* Generated bundle index. Do not edit.
|
|
2892
3037
|
*/
|
|
2893
3038
|
|
|
2894
|
-
export { ActGuard, BUSINESS_DEFAULT_CONFIG, LayoutNavApplicationComponent, LayoutNavGroupComponent, LayoutNavTileComponent, NavType, TopicType, YUNZAI_APPINIT_PROVIDES, YUNZAI_APPINIT_PROVIDES as YZ_APPINIT_PROVIDES, YunzaiAuthService, YunzaiClearStorageComponent, YunzaiDefaultInterceptor, YunzaiFullScreenComponent, YunzaiI18NComponent, YunzaiI18NService, YunzaiLayoutBasicComponent, YunzaiLayoutModule, YunzaiNotifyComponent, YunzaiStartupService, YunzaiStartupServiceFactory, YunzaiThemBtnComponent, YunzaiUserComponent, YunzaiAuthService as YzAuthService, YunzaiDefaultInterceptor as YzDefaultInterceptor, YunzaiI18NService as YzI18NService, YunzaiLayoutBasicComponent as YzLayoutBasicComponent, YunzaiStartupService as YzStartupService, YunzaiStartupServiceFactory as YzStartupServiceFactory, generateAbility, mapYzSideToYelonMenu, mergeBisConfig };
|
|
3039
|
+
export { ActGuard, BUSINESS_DEFAULT_CONFIG, LayoutNavApplicationComponent, LayoutNavGroupComponent, LayoutNavTileComponent, NavType, TopicType, YUNZAI_APPINIT_PROVIDES, YUNZAI_LANGS, YUNZAI_APPINIT_PROVIDES as YZ_APPINIT_PROVIDES, YunzaiAuthService, YunzaiClearStorageComponent, YunzaiDefaultInterceptor, YunzaiFullScreenComponent, YunzaiI18NComponent, YunzaiI18NService, YunzaiLayoutBasicComponent, YunzaiLayoutModule, YunzaiNotifyComponent, YunzaiStartupService, YunzaiStartupServiceFactory, YunzaiThemBtnComponent, YunzaiUserComponent, YunzaiAuthService as YzAuthService, YunzaiDefaultInterceptor as YzDefaultInterceptor, YunzaiI18NService as YzI18NService, YunzaiLayoutBasicComponent as YzLayoutBasicComponent, YunzaiStartupService as YzStartupService, YunzaiStartupServiceFactory as YzStartupServiceFactory, generateAbility, mapYzSideToYelonMenu, mergeBisConfig };
|
|
2895
3040
|
//# sourceMappingURL=layout.mjs.map
|