@looker/api-explorer 0.9.22 → 0.9.24
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/CHANGELOG.md +50 -0
- package/lib/ApiExplorer.d.ts +4 -39
- package/lib/ApiExplorer.js +23 -24
- package/lib/ApiExplorer.js.map +1 -1
- package/lib/App.d.ts +1 -0
- package/lib/App.js +29 -0
- package/lib/App.js.map +1 -0
- package/lib/StandaloneApiExplorer.js +8 -13
- package/lib/StandaloneApiExplorer.js.map +1 -1
- package/lib/components/DocMarkdown/DocMarkdown.js +5 -5
- package/lib/components/DocMarkdown/DocMarkdown.js.map +1 -1
- package/lib/components/DocSdkUsage/DocSdkUsage.js +3 -6
- package/lib/components/DocSdkUsage/DocSdkUsage.js.map +1 -1
- package/lib/components/DocSource/DocSource.js +5 -7
- package/lib/components/DocSource/DocSource.js.map +1 -1
- package/lib/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.d.ts +1 -1
- package/lib/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.js +152 -8
- package/lib/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.js.map +1 -1
- package/lib/components/SelectorContainer/SdkLanguageSelector.js +1 -1
- package/lib/components/SelectorContainer/SdkLanguageSelector.js.map +1 -1
- package/lib/components/SideNav/SideNav.js +1 -1
- package/lib/components/SideNav/SideNav.js.map +1 -1
- package/lib/components/common/Loader.d.ts +1 -1
- package/lib/components/common/Loader.js.map +1 -1
- package/lib/esm/ApiExplorer.js +25 -26
- package/lib/esm/ApiExplorer.js.map +1 -1
- package/lib/esm/App.js +19 -0
- package/lib/esm/App.js.map +1 -0
- package/lib/esm/StandaloneApiExplorer.js +7 -10
- package/lib/esm/StandaloneApiExplorer.js.map +1 -1
- package/lib/esm/components/DocMarkdown/DocMarkdown.js +3 -3
- package/lib/esm/components/DocMarkdown/DocMarkdown.js.map +1 -1
- package/lib/esm/components/DocSdkUsage/DocSdkUsage.js +5 -7
- package/lib/esm/components/DocSdkUsage/DocSdkUsage.js.map +1 -1
- package/lib/esm/components/DocSource/DocSource.js +4 -5
- package/lib/esm/components/DocSource/DocSource.js.map +1 -1
- package/lib/esm/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.js +153 -6
- package/lib/esm/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.js.map +1 -1
- package/lib/esm/components/SelectorContainer/SdkLanguageSelector.js +2 -2
- package/lib/esm/components/SelectorContainer/SdkLanguageSelector.js.map +1 -1
- package/lib/esm/components/SideNav/SideNav.js +2 -2
- package/lib/esm/components/SideNav/SideNav.js.map +1 -1
- package/lib/esm/components/common/Loader.js.map +1 -1
- package/lib/esm/index.js +4 -18
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/routes/AppRouter.js +2 -2
- package/lib/esm/routes/AppRouter.js.map +1 -1
- package/lib/esm/scenes/MethodScene/MethodScene.js +9 -11
- package/lib/esm/scenes/MethodScene/MethodScene.js.map +1 -1
- package/lib/esm/state/index.js +1 -0
- package/lib/esm/state/index.js.map +1 -1
- package/lib/esm/state/lodes/index.js +3 -0
- package/lib/{test-utils/envAdaptor.js.map → esm/state/lodes/index.js.map} +1 -1
- package/lib/esm/state/lodes/sagas.js +25 -0
- package/lib/esm/state/lodes/sagas.js.map +1 -0
- package/lib/esm/state/lodes/selectors.js +5 -0
- package/lib/esm/state/lodes/selectors.js.map +1 -0
- package/lib/esm/state/lodes/slice.js +30 -0
- package/lib/esm/state/lodes/slice.js.map +1 -0
- package/lib/esm/state/settings/sagas.js +28 -16
- package/lib/esm/state/settings/sagas.js.map +1 -1
- package/lib/esm/state/settings/selectors.js +5 -5
- package/lib/esm/state/settings/selectors.js.map +1 -1
- package/lib/esm/state/settings/slice.js +8 -8
- package/lib/esm/state/settings/slice.js.map +1 -1
- package/lib/esm/state/store.js +6 -3
- package/lib/esm/state/store.js.map +1 -1
- package/lib/esm/test-utils/index.js +1 -2
- package/lib/esm/test-utils/index.js.map +1 -1
- package/lib/esm/test-utils/lodes.js +12 -0
- package/lib/esm/test-utils/lodes.js.map +1 -0
- package/lib/esm/test-utils/redux.js +11 -8
- package/lib/esm/test-utils/redux.js.map +1 -1
- package/lib/esm/utils/index.js +0 -1
- package/lib/esm/utils/index.js.map +1 -1
- package/lib/esm/utils/lodeUtils.js +3 -7
- package/lib/esm/utils/lodeUtils.js.map +1 -1
- package/lib/index.d.ts +4 -1
- package/lib/index.js +52 -23
- package/lib/index.js.map +1 -1
- package/lib/routes/AppRouter.d.ts +2 -2
- package/lib/routes/AppRouter.js +2 -2
- package/lib/routes/AppRouter.js.map +1 -1
- package/lib/scenes/MethodScene/MethodScene.d.ts +2 -2
- package/lib/scenes/MethodScene/MethodScene.js +7 -9
- package/lib/scenes/MethodScene/MethodScene.js.map +1 -1
- package/lib/state/index.d.ts +1 -0
- package/lib/state/index.js +13 -0
- package/lib/state/index.js.map +1 -1
- package/lib/state/lodes/index.d.ts +2 -0
- package/lib/state/lodes/index.js +32 -0
- package/lib/state/lodes/index.js.map +1 -0
- package/lib/state/lodes/sagas.d.ts +1 -0
- package/lib/state/lodes/sagas.js +34 -0
- package/lib/state/lodes/sagas.js.map +1 -0
- package/lib/state/lodes/selectors.d.ts +3 -0
- package/lib/state/lodes/selectors.js +17 -0
- package/lib/state/lodes/selectors.js.map +1 -0
- package/lib/state/lodes/slice.d.ts +29 -0
- package/lib/state/lodes/slice.js +45 -0
- package/lib/state/lodes/slice.js.map +1 -0
- package/lib/state/settings/sagas.js +28 -15
- package/lib/state/settings/sagas.js.map +1 -1
- package/lib/state/settings/selectors.js +5 -5
- package/lib/state/settings/selectors.js.map +1 -1
- package/lib/state/settings/slice.d.ts +13 -13
- package/lib/state/settings/slice.js +13 -13
- package/lib/state/settings/slice.js.map +1 -1
- package/lib/state/store.d.ts +3 -0
- package/lib/state/store.js +6 -2
- package/lib/state/store.js.map +1 -1
- package/lib/test-data/declarations.js +24 -0
- package/lib/test-data/declarations.js.map +1 -0
- package/lib/test-data/index.js +23 -0
- package/lib/test-data/index.js.map +1 -1
- package/lib/test-utils/index.d.ts +1 -2
- package/lib/test-utils/index.js +12 -28
- package/lib/test-utils/index.js.map +1 -1
- package/lib/test-utils/lodes.d.ts +4 -0
- package/lib/test-utils/lodes.js +23 -0
- package/lib/test-utils/lodes.js.map +1 -0
- package/lib/test-utils/redux.d.ts +3 -1
- package/lib/test-utils/redux.js +12 -8
- package/lib/test-utils/redux.js.map +1 -1
- package/lib/utils/index.d.ts +0 -1
- package/lib/utils/index.js +0 -24
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/lodeUtils.d.ts +2 -2
- package/lib/utils/lodeUtils.js +3 -7
- package/lib/utils/lodeUtils.js.map +1 -1
- package/package.json +11 -10
- package/public/Looker.3.1.json +1343 -412
- package/public/Looker.4.0.json +3305 -661
- package/src/ApiExplorer.tsx +99 -102
- package/src/{index.tsx → App.tsx} +0 -0
- package/src/StandaloneApiExplorer.tsx +8 -16
- package/src/components/DocMarkdown/DocMarkdown.tsx +3 -3
- package/src/components/DocSdkUsage/DocSdkUsage.spec.tsx +2 -2
- package/src/components/DocSdkUsage/DocSdkUsage.tsx +5 -5
- package/src/components/DocSource/DocSource.tsx +4 -3
- package/src/components/ErrorBoundary/components/SomethingWentWrong/SomethingWentWrong.spec.tsx +1 -1
- package/src/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/SomethingWentWrongGraphic.tsx +170 -6
- package/src/components/SelectorContainer/SdkLanguageSelector.spec.tsx +3 -5
- package/src/components/SelectorContainer/SdkLanguageSelector.tsx +2 -2
- package/src/components/SideNav/SideNav.tsx +2 -2
- package/src/components/common/Loader.tsx +1 -1
- package/src/{context/lode/index.ts → index.ts} +4 -1
- package/src/routes/AppRouter.tsx +5 -4
- package/src/scenes/MethodScene/MethodScene.tsx +11 -11
- package/src/state/index.ts +1 -0
- package/src/{context → state/lodes}/index.ts +2 -1
- package/src/state/lodes/sagas.spec.ts +92 -0
- package/src/state/lodes/sagas.ts +51 -0
- package/src/state/lodes/selectors.spec.ts +42 -0
- package/src/{test-utils/envAdaptor.ts → state/lodes/selectors.ts} +8 -5
- package/src/{test-utils/render_with_lode.tsx → state/lodes/slice.ts} +37 -37
- package/src/state/settings/sagas.spec.ts +25 -21
- package/src/state/settings/sagas.ts +16 -16
- package/src/state/settings/selectors.spec.ts +1 -5
- package/src/state/settings/selectors.ts +5 -5
- package/src/state/settings/slice.ts +12 -7
- package/src/state/store.ts +7 -2
- package/src/{context/lode/LodeContext.ts → test-data/declarations.ts} +17 -14
- package/src/test-data/index.ts +1 -0
- package/src/test-utils/index.ts +1 -5
- package/src/test-utils/lodes.tsx +41 -0
- package/src/test-utils/redux.tsx +19 -7
- package/src/utils/index.ts +0 -1
- package/src/utils/lodeUtils.ts +4 -6
- package/webpack.dev.config.js +3 -0
- package/webpack.prod.config.js +4 -0
- package/lib/context/index.d.ts +0 -1
- package/lib/context/index.js +0 -20
- package/lib/context/index.js.map +0 -1
- package/lib/context/lode/LodeContext.d.ts +0 -9
- package/lib/context/lode/LodeContext.js +0 -21
- package/lib/context/lode/LodeContext.js.map +0 -1
- package/lib/context/lode/index.d.ts +0 -1
- package/lib/context/lode/index.js +0 -20
- package/lib/context/lode/index.js.map +0 -1
- package/lib/esm/context/index.js +0 -2
- package/lib/esm/context/index.js.map +0 -1
- package/lib/esm/context/lode/LodeContext.js +0 -11
- package/lib/esm/context/lode/LodeContext.js.map +0 -1
- package/lib/esm/context/lode/index.js +0 -2
- package/lib/esm/context/lode/index.js.map +0 -1
- package/lib/esm/test-utils/envAdaptor.js +0 -5
- package/lib/esm/test-utils/envAdaptor.js.map +0 -1
- package/lib/esm/test-utils/render_with_lode.js +0 -19
- package/lib/esm/test-utils/render_with_lode.js.map +0 -1
- package/lib/esm/utils/envAdaptor.js +0 -84
- package/lib/esm/utils/envAdaptor.js.map +0 -1
- package/lib/test-utils/envAdaptor.d.ts +0 -2
- package/lib/test-utils/envAdaptor.js +0 -15
- package/lib/test-utils/render_with_lode.d.ts +0 -7
- package/lib/test-utils/render_with_lode.js +0 -36
- package/lib/test-utils/render_with_lode.js.map +0 -1
- package/lib/utils/envAdaptor.d.ts +0 -31
- package/lib/utils/envAdaptor.js +0 -106
- package/lib/utils/envAdaptor.js.map +0 -1
- package/src/components/ErrorBoundary/components/SomethingWentWrong/components/SomethingWentWrongGraphic/somethingWentWrong.svg +0 -45
- package/src/utils/envAdaptor.spec.ts +0 -50
- package/src/utils/envAdaptor.ts +0 -147
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Copyright (c) 2021 Looker Data Sciences, Inc.
|
|
6
|
-
|
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
-
in the Software without restriction, including without limitation the rights
|
|
10
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
-
furnished to do so, subject to the following conditions:
|
|
13
|
-
|
|
14
|
-
The above copyright notice and this permission notice shall be included in all
|
|
15
|
-
copies or substantial portions of the Software.
|
|
16
|
-
|
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
-
SOFTWARE.
|
|
24
|
-
|
|
25
|
-
*/
|
|
26
|
-
import type { ThemeOverrides } from './envAdaptor'
|
|
27
|
-
import { StandaloneEnvAdaptor, getThemeOverrides } from './envAdaptor'
|
|
28
|
-
|
|
29
|
-
describe('StandaloneEnvAdaptor', () => {
|
|
30
|
-
test.each([
|
|
31
|
-
['www.looker.com', getThemeOverrides(true)],
|
|
32
|
-
['www.google.com', getThemeOverrides(true)],
|
|
33
|
-
['localhost', getThemeOverrides(true)],
|
|
34
|
-
['127.0.0.1', getThemeOverrides(false)],
|
|
35
|
-
])(
|
|
36
|
-
'returns correct font overrides',
|
|
37
|
-
(hostname: string, expectedOverrides: ThemeOverrides) => {
|
|
38
|
-
const saveLoc = window.location
|
|
39
|
-
delete (window as any).location
|
|
40
|
-
window.location = {
|
|
41
|
-
...saveLoc,
|
|
42
|
-
hostname,
|
|
43
|
-
}
|
|
44
|
-
expect(new StandaloneEnvAdaptor().themeOverrides()).toEqual(
|
|
45
|
-
expectedOverrides
|
|
46
|
-
)
|
|
47
|
-
window.location = saveLoc
|
|
48
|
-
}
|
|
49
|
-
)
|
|
50
|
-
})
|
package/src/utils/envAdaptor.ts
DELETED
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Copyright (c) 2021 Looker Data Sciences, Inc.
|
|
6
|
-
|
|
7
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
-
in the Software without restriction, including without limitation the rights
|
|
10
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
-
furnished to do so, subject to the following conditions:
|
|
13
|
-
|
|
14
|
-
The above copyright notice and this permission notice shall be included in all
|
|
15
|
-
copies or substantial portions of the Software.
|
|
16
|
-
|
|
17
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
-
SOFTWARE.
|
|
24
|
-
|
|
25
|
-
*/
|
|
26
|
-
|
|
27
|
-
import type { ThemeCustomizations } from '@looker/design-tokens'
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* NOTE: This interface should describe all methods that require an adaptor when running in standalone vs extension mode
|
|
31
|
-
* Examples include: local storage operations, writing to clipboard and various link navigation functions amongst others
|
|
32
|
-
*/
|
|
33
|
-
export interface IApixEnvAdaptor {
|
|
34
|
-
/** Method for retrieving a keyed value from local storage */
|
|
35
|
-
localStorageGetItem(key: string): Promise<string | null>
|
|
36
|
-
/** Method for setting a keyed value in local storage */
|
|
37
|
-
localStorageSetItem(key: string, value: string): void
|
|
38
|
-
/** Method for removing a keyed value from local storage */
|
|
39
|
-
localStorageRemoveItem(key: string): void
|
|
40
|
-
/** Theme settings for extension */
|
|
41
|
-
themeOverrides(): ThemeOverrides
|
|
42
|
-
/** Open a new browser window with the given url and target */
|
|
43
|
-
openBrowserWindow: (url: string, target?: string) => void
|
|
44
|
-
/** error logger */
|
|
45
|
-
logError: (error: Error, componentStack: string) => void
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Theme overrides used to load google fonts in Google environments only.
|
|
50
|
-
* Google fonts should NOT be used when it is not obvious that a Google
|
|
51
|
-
* system is being used (for example an embedded extension).
|
|
52
|
-
*/
|
|
53
|
-
export interface ThemeOverrides {
|
|
54
|
-
loadGoogleFonts?: boolean
|
|
55
|
-
themeCustomizations?: ThemeCustomizations
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
export const getThemeOverrides = (useGoogleFonts: boolean): ThemeOverrides =>
|
|
59
|
-
useGoogleFonts
|
|
60
|
-
? {
|
|
61
|
-
loadGoogleFonts: true,
|
|
62
|
-
themeCustomizations: {
|
|
63
|
-
fontFamilies: { brand: 'Google Sans' },
|
|
64
|
-
colors: { key: '#1A73E8' },
|
|
65
|
-
},
|
|
66
|
-
}
|
|
67
|
-
: {
|
|
68
|
-
themeCustomizations: {
|
|
69
|
-
colors: { key: '#1A73E8' },
|
|
70
|
-
},
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* An adaptor class for interacting with browser APIs when running in standalone mode
|
|
75
|
-
*/
|
|
76
|
-
export class StandaloneEnvAdaptor implements IApixEnvAdaptor {
|
|
77
|
-
private _themeOverrides: ThemeOverrides
|
|
78
|
-
|
|
79
|
-
constructor() {
|
|
80
|
-
const { hostname } = location
|
|
81
|
-
this._themeOverrides = getThemeOverrides(
|
|
82
|
-
hostname.endsWith('.looker.com') ||
|
|
83
|
-
hostname.endsWith('.google.com') ||
|
|
84
|
-
hostname === 'localhost' ||
|
|
85
|
-
// Include firebase staging dev portal for now. Can be removed
|
|
86
|
-
// when dev portal gets its own APIX project. Also includes
|
|
87
|
-
// PRs.
|
|
88
|
-
(hostname.startsWith('looker-developer-portal') &&
|
|
89
|
-
hostname.endsWith('.web.app'))
|
|
90
|
-
)
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
async localStorageGetItem(key: string) {
|
|
94
|
-
return localStorage.getItem(key)
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
async localStorageSetItem(key: string, value: string) {
|
|
98
|
-
await localStorage.setItem(key, value)
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
async localStorageRemoveItem(key: string) {
|
|
102
|
-
await localStorage.removeItem(key)
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
themeOverrides() {
|
|
106
|
-
return this._themeOverrides
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
openBrowserWindow(url: string, target?: string) {
|
|
110
|
-
window.open(url, target)
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
logError(_error: Error, _componentStack: string): void {
|
|
114
|
-
// noop - error logging for standalone APIX TBD
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
export enum EnvAdaptorConstants {
|
|
119
|
-
LOCALSTORAGE_SDK_LANGUAGE_KEY = 'sdkLanguage',
|
|
120
|
-
LOCALSTORAGE_SETTINGS_KEY = 'settings',
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
let envAdaptor: IApixEnvAdaptor | undefined
|
|
124
|
-
|
|
125
|
-
/**
|
|
126
|
-
* Register the environment adaptor. The API Explorer will automatically call this.
|
|
127
|
-
*/
|
|
128
|
-
export const registerEnvAdaptor = (adaptor: IApixEnvAdaptor) => {
|
|
129
|
-
envAdaptor = adaptor
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* Unregister the envAdaptor. The API Explorer will automatically call this when it is unmounted.
|
|
134
|
-
*/
|
|
135
|
-
export const unregisterEnvAdaptor = () => {
|
|
136
|
-
envAdaptor = undefined
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
/**
|
|
140
|
-
* Global access to the envAdaptor. An error will be thrown if accessed prematurely.
|
|
141
|
-
*/
|
|
142
|
-
export const getEnvAdaptor = () => {
|
|
143
|
-
if (!envAdaptor) {
|
|
144
|
-
throw new Error('Environment adaptor not initialized.')
|
|
145
|
-
}
|
|
146
|
-
return envAdaptor
|
|
147
|
-
}
|