3.1.5发布

This commit is contained in:
ray_wuhao 2023-04-02 16:01:17 +08:00
parent 6a931c0cbb
commit 1a113446ca
48 changed files with 1606 additions and 227 deletions

View File

@ -1,4 +1,10 @@
#开发环境
NODE_ENV = 'development'
VITE_APP_URL = 'api/'
VITE_APP_URL = 'api/'
# office 服务代理地址
VITE_APP_OFFICE_PROXY_URL = '/office/'
# office 脚本地址(用于动态创建脚本标签)
VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js'

View File

@ -1,4 +1,10 @@
#生产环境
NODE_ENV = 'production'
VITE_APP_URL = 'api/'
VITE_APP_URL = 'api/'
# office 服务代理地址
VITE_APP_OFFICE_PROXY_URL = 'https://office.yka.one/'
# office 脚本地址(用于动态创建脚本标签)
VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js'

View File

@ -1,4 +1,10 @@
#测试环境
NODE_ENV = 'test'
VITE_APP_URL = 'api/'
VITE_APP_URL = 'api/'
# office 服务代理地址
VITE_APP_OFFICE_PROXY_URL = 'https://office.yka.one/'
# office 脚本地址(用于动态创建脚本标签)
VITE_APP_OFFICE_SCRIPT_URL = 'https://office.yka.one/web-apps/apps/api/documents/api.js'

View File

@ -1,5 +1,21 @@
# CHANGE LOG
## 3.1.5
### Fixes
- 配置 `tsconfig.json``ignoreDeprecations` 属性,消除 `ts5.0` 破坏性配置更新警告
### Feats
- 基于 `onlyoffice` 新增 `Office` 功能(待完成...)
- 重写 `AxiosInstance` 类型
- `src/types` 分包更加清晰
- 将主色调同步至 `body`,默认同步 `cfg.primaryColor`
- 登陆页一些修改
- 将一些设置型功能抽离为组件
- 调整同步主题色执行时机
## 3.1.4
### Fixes

7
cfg.ts
View File

@ -9,6 +9,8 @@ import {
import type { AppConfigExport } from './src/types/cfg'
const config: AppConfigExport = {
/** 默认主题色 */
primaryColor: '#2d8cf0',
/**
*
*
@ -83,6 +85,11 @@ const config: AppConfigExport = {
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
'/office': {
target: 'https://office.yka.one/',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/office/, ''),
},
},
},
/**

View File

@ -10,7 +10,11 @@
"Table": "Table",
"MultiMenu": "MultiMenu",
"Doc": "Doc",
"DocLocal": "Doc (China)"
"DocLocal": "Doc (China)",
"Office": "Office",
"Office_Document": "Document",
"Office_Presentation": "Presentation",
"Office_Spreadsheet": "Spreadsheet"
},
"LayoutHeaderTooltipOptions": {
"Reload": "Reload Current Page",
@ -32,6 +36,7 @@
"LoginModule": {
"Register": "Register",
"Signin": "Signin",
"QRCodeSignin": "QRCode Signin",
"NamePlaceholder": "please enter user name",
"PasswordPlaceholder": "please enter password",
"Login": "Login",

View File

@ -10,7 +10,11 @@
"Table": "表格",
"MultiMenu": "多级菜单",
"Doc": "文档",
"DocLocal": "文档 (国内地址)"
"DocLocal": "文档 (国内地址)",
"Office": "办公",
"Office_Document": "文档",
"Office_Presentation": "演示",
"Office_Spreadsheet": "表格"
},
"LayoutHeaderTooltipOptions": {
"Reload": "刷新当前页面",
@ -32,6 +36,7 @@
"LoginModule": {
"Register": "注册",
"Signin": "登陆",
"QRCodeSignin": "扫码登陆",
"NamePlaceholder": "请输入用户名",
"PasswordPlaceholder": "请输入密码",
"Login": "登 陆",

View File

@ -31,6 +31,7 @@
"pinia": "^2.0.17",
"pinia-plugin-persistedstate": "^2.4.0",
"print-js": "^1.6.0",
"qrcode.vue": "^3.3.4",
"sass": "^1.54.3",
"screenfull": "^6.0.2",
"vue": "^3.2.37",

View File

@ -2,8 +2,59 @@ import RayGlobalProvider from '@/components/RayGlobalProvider/index'
import { RouterView } from 'vue-router'
import GlobalSpin from '@/spin/index'
import { getCache } from '@/utils/cache'
import { get } from 'lodash-es'
import { useSetting } from '@/store'
import { addClass, removeClass } from '@/utils/element'
const App = defineComponent({
name: 'App',
setup() {
const settingStore = useSetting()
const { themeValue } = storeToRefs(settingStore)
/** 同步主题色变量至 body, 如果未获取到缓存值则已默认值填充 */
const syncPrimaryColorToBody = () => {
/** 默认值 */
const { primaryColor } = __APP_CFG__
const body = document.body
const primaryColorOverride = getCache('piniaSettingStore', 'localStorage')
const _p = get(
primaryColorOverride,
'primaryColorOverride.common.primaryColor',
)
body.style.setProperty('--ray-theme-primary-color', _p || primaryColor)
}
syncPrimaryColorToBody()
watch(
() => themeValue.value,
(newData) => {
/**
*
* body class
*
* themeValue
*/
const body = document.body
const darkClassName = 'ray-template--dark'
const lightClassName = 'ray-template--light'
newData
? removeClass(body, lightClassName)
: removeClass(body, darkClassName)
addClass(body, newData ? darkClassName : lightClassName)
},
{
immediate: true,
},
)
},
render() {
return (
<RayGlobalProvider>

View File

@ -1,4 +1,33 @@
import useRequest from '@/axios/index'
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-31
*
* @workspace ray-template
*
* @remark
*/
/**
*
* 使 axios
*
* :
*
* ```
* const demoRequest = () => {
* return {} as AxiosResponseBody<AxiosTestResponse>
* }
* ```
*/
import useRequest from '@/axios/instance'
interface AxiosTestResponse extends IUnknownObjectKey {
data: IUnknownObjectKey[]
city?: string
}
/**
*
@ -7,8 +36,7 @@ import useRequest from '@/axios/index'
* @medthod get
*/
export const onAxiosTest = async (city: string) => {
return useRequest({
method: 'get',
return useRequest<AxiosTestResponse>({
url: `https://www.tianqiapi.com/api?version=v9&appid=23035354&appsecret=8YvlPNrz&city=${city}`,
})
}

View File

@ -1,30 +0,0 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-02-27
*
* @workspace ray-template
*
* @remark
*/
/**
*
* :
* - ,
* - 西, axios instance config
* - , 使 instance
*/
import request from './instance'
import type { AxiosRequestConfig } from 'axios'
const useRequest = (config: AxiosRequestConfig) => {
const cfg = Object.assign({}, config, {})
return request(cfg)
}
export default useRequest

View File

@ -9,12 +9,19 @@
* @remark
*/
/**
*
* ,
*
*
*/
import axios from 'axios'
import { useDetermineEnv } from '@use-utils/hook'
import { getDetermineEnv } from '@use-utils/hook'
import RequestCanceler from './canceler'
import type { RawAxiosRequestHeaders, AxiosRequestConfig } from 'axios'
import type { RequestHeaderOptions } from './type'
import type { RequestHeaderOptions, AxiosInstanceExpand } from './type'
const canceler = new RequestCanceler()
@ -36,7 +43,7 @@ const appendRequestHeaders = (
})
}
const server = axios.create({
const server: AxiosInstanceExpand = axios.create({
baseURL: '', // `import.meta.env`,
withCredentials: false, // 是否允许跨域携带 `cookie`
timeout: 5 * 1000,
@ -47,7 +54,7 @@ const server = axios.create({
server.interceptors.request.use(
(request) => {
const { MODE } = useDetermineEnv()
const { MODE } = getDetermineEnv()
if (MODE === 'development') {
// TODO: 开发环境
@ -90,10 +97,3 @@ server.interceptors.response.use(
)
export default server
/**
*
* ,
*
*
*/

View File

@ -1,4 +1,10 @@
import type { AxiosHeaders } from 'axios'
import type {
AxiosHeaders,
AxiosRequestConfig,
HeadersDefaults,
AxiosDefaults,
Axios,
} from 'axios'
export type AxiosHeaderValue =
| AxiosHeaders
@ -12,3 +18,66 @@ export interface RequestHeaderOptions {
key: string
value: AxiosHeaderValue
}
export interface AxiosInstanceExpand extends Axios {
<T = unknown, D = unknown>(config: AxiosRequestConfig<D>): Promise<T>
<T = unknown, D = unknown>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<T>
getUri(config?: AxiosRequestConfig): string
request<R = unknown, D = unknown>(config: AxiosRequestConfig<D>): Promise<R>
get<R = unknown, D = unknown>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
delete<R = unknown, D = unknown>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
head<R = unknown, D = unknown>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
options<R = unknown, D = unknown>(
url: string,
config?: AxiosRequestConfig<D>,
): Promise<R>
post<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
put<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
patch<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
postForm<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
putForm<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
patchForm<R = unknown, D = unknown>(
url: string,
data?: D,
config?: AxiosRequestConfig<D>,
): Promise<R>
defaults: Omit<AxiosDefaults, 'headers'> & {
headers: HeadersDefaults & {
[key: string]: AxiosHeaderValue
}
}
}

View File

@ -351,7 +351,6 @@ const RayChart = defineComponent({
const resizeChart = () => {
if (echartInstance) {
echartInstance.resize()
console.log('resize')
}
}

View File

@ -48,6 +48,11 @@ const RayIcon = defineComponent({
type: Number,
default: 1,
},
cursorPointer: {
/** 是否启用小手鼠标类型 */
type: Boolean,
default: false,
},
},
setup(props) {
const modelColor = computed(() => props.color)
@ -63,6 +68,10 @@ const RayIcon = defineComponent({
'--ray-icon-depth': props.depth,
}
if (props.cursorPointer) {
cssVar['cursor'] = 'pointer'
}
return cssVar
})

View File

@ -71,6 +71,7 @@ const RayLink = defineComponent({
style={['cursor: pointer']}
onClick={this.handleLinkClick.bind(this, curr)}
objectFit="cover"
size={24}
/>
),
default: () => curr.tooltip,

6
src/icons/google.svg Normal file
View File

@ -0,0 +1,6 @@
<svg t="1680416935795" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="7487" width="64" height="64">
<path
d="M746.666667 597.333333a235.093333 235.093333 0 0 1-192 167.68 262.4 262.4 0 0 1-298.666667-232.533333A256 256 0 0 1 512 256a261.12 261.12 0 0 1 96.853333 18.773333 21.333333 21.333333 0 0 0 27.306667-8.96l61.44-113.066666a22.186667 22.186667 0 0 0-9.813333-29.866667A426.666667 426.666667 0 0 0 85.333333 524.373333 431.786667 431.786667 0 0 0 493.653333 938.666667 426.666667 426.666667 0 0 0 938.666667 534.186667v-85.333334a21.76 21.76 0 0 0-21.333334-21.333333h-384a21.333333 21.333333 0 0 0-21.333333 21.333333v128a21.333333 21.333333 0 0 0 21.333333 21.333334h213.333334"
p-id="7488" fill="currentColor"></path>
</svg>

After

Width:  |  Height:  |  Size: 790 B

602
src/icons/login_bg.svg Normal file
View File

@ -0,0 +1,602 @@
<svg height="1000" legacy-metrics="false" node-id="1" sillyvg="true" template-height="1000"
template-width="1000" version="1.1" viewBox="0 0 1000 1000" width="1000"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs node-id="184">
<clipPath id="XMLID_2_" node-id="7">
<path
d="M 445.55 611.51 C 445.55 611.51 268.05 751.30 154.36 619.57 C 40.68 487.83 150.33 199.09 287.44 236.06 C 358.71 255.27 481.76 241.45 583.51 223.74 C 727.75 198.63 864.01 301.89 876.46 447.78 C 881.49 506.67 865.64 565.36 808.89 611.51 C 627.29 759.19 673.52 649.86 630.70 593.86 C 587.88 537.86 507.85 538.14 445.55 611.51 Z"
fill="#000000" fill-rule="nonzero" node-id="187" stroke="none" target-height="465.62048"
target-width="770.2927" target-x="107.03866" target-y="219.96185"></path>
</clipPath>
<clipPath id="XMLID_3_" node-id="20">
<path
d="M 712.59 298.72 L 509.67 298.72 L 306.75 298.72 L 176.01 267.23 L 176.01 598.76 L 312.44 548.09 L 509.67 548.09 L 706.90 548.09 L 843.32 598.76 L 843.32 267.23 Z"
fill="#000000" fill-rule="nonzero" node-id="191" stroke="none" target-height="331.529"
target-width="667.30896" target-x="176.015" target-y="267.232"></path>
</clipPath>
<clipPath id="XMLID_4_" node-id="35">
<path
d="M 613.08 509.16 L 485.64 509.16 C 483.79 509.16 482.28 507.64 482.28 505.79 L 482.28 326.09 C 482.28 324.24 483.79 322.72 485.64 322.72 L 613.08 322.72 C 614.93 322.72 616.44 324.24 616.44 326.09 L 616.44 505.79 C 616.44 507.64 614.93 509.16 613.08 509.16 Z"
fill="#000000" fill-rule="nonzero" node-id="195" stroke="none" target-height="186.432"
target-width="134.16699" target-x="482.276" target-y="322.724"></path>
</clipPath>
<clipPath id="XMLID_5_" node-id="41">
<path
d="M 613.08 509.16 L 545.24 509.16 L 545.24 440.70 L 616.44 440.70 L 616.44 505.79 C 616.44 507.64 614.93 509.16 613.08 509.16 Z"
fill="#000000" fill-rule="nonzero" node-id="199" stroke="none" target-height="68.451996"
target-width="71.20697" target-x="545.236" target-y="440.704"></path>
</clipPath>
<clipPath id="SVGID_1_" node-id="55">
<path
d="M 693.23 437.44 C 692.26 437.05 691.20 436.83 690.09 436.85 L 674.98 437.08 L 673.86 434.58 C 673.20 433.14 671.74 432.23 670.15 432.30 L 656.92 432.88 C 655.52 432.94 654.27 433.76 653.66 435.01 L 652.11 438.18 L 637.28 438.18 C 635.99 438.18 634.79 438.54 633.77 439.14 C 631.54 440.08 629.69 441.92 628.84 444.37 L 622.00 464.12 L 602.66 443.20 C 602.08 442.57 601.10 442.54 600.47 443.11 L 589.76 453.01 C 589.14 453.59 589.10 454.56 589.67 455.18 L 618.72 486.61 C 619.49 487.44 620.38 488.08 621.35 488.54 C 621.77 488.77 622.21 488.98 622.68 489.15 C 627.27 490.74 632.33 488.28 633.92 483.69 L 635.72 478.51 L 638.55 495.76 L 681.45 492.69 C 681.45 492.69 701.01 496.41 701.01 491.03 L 701.01 447.01 C 701.01 442.32 697.66 438.37 693.23 437.44 Z"
fill="#000000" fill-rule="nonzero" node-id="203" stroke="none" target-height="63.458008"
target-width="111.74225" target-x="589.2698" target-y="432.302"></path>
</clipPath>
<clipPath id="XMLID_7_" node-id="63">
<path
d="M 603.64 721.96 L 626.02 721.96 L 625.98 720.48 L 626.08 718.97 L 626.43 716.90 L 627.08 714.77 L 628.21 712.51 L 629.20 711.11 L 630.51 709.80 L 632.17 708.57 L 633.99 707.62 L 636.28 706.88 L 639.14 706.38 L 640.99 706.13 L 642.84 705.76 L 645.31 705.09 L 647.81 704.16 L 650.29 702.85 L 651.80 701.76 L 653.07 700.47 L 654.11 698.98 L 654.81 697.33 L 655.10 695.38 L 654.96 693.05 L 603.64 693.05 L 603.64 721.96 Z"
fill="#000000" fill-rule="nonzero" node-id="207" stroke-linecap="butt" stroke-width="1"
target-height="28.90503" target-width="51.460632" target-x="603.6421" target-y="693.05145"></path>
</clipPath>
<clipPath id="SVGID_2_" node-id="71">
<path
d="M 638.55 495.76 L 623.71 663.29 L 661.43 663.29 L 665.81 516.43 L 676.84 663.29 L 712.84 663.29 L 690.92 491.03 Z"
fill="#000000" fill-rule="nonzero" node-id="211" stroke="none" target-height="172.26398"
target-width="89.130005" target-x="623.714" target-y="491.028"></path>
</clipPath>
<clipPath id="XMLID_8_" node-id="84">
<path
d="M 682.68 670.71 L 705.06 670.71 C 705.06 670.71 703.57 684.79 718.19 686.29 C 718.19 686.29 736.09 687.78 734.00 699.61 L 682.68 699.61 L 682.68 670.71 Z"
fill="#000000" fill-rule="nonzero" node-id="215" stroke="none" target-height="28.90503"
target-width="51.460632" target-x="682.684" target-y="670.706"></path>
</clipPath>
<clipPath id="SVGID_3_" node-id="122">
<path
d="M 419.98 400.41 C 402.97 418.03 394.12 416.89 394.12 416.89 L 369.01 393.51 C 369.01 393.51 369.61 382.05 384.73 366.38 C 400.91 349.62 421.92 343.64 431.65 353.04 C 441.39 362.43 436.16 383.64 419.98 400.41 Z"
fill="#000000" fill-rule="nonzero" node-id="219" stroke="none" target-height="68.28912"
target-width="67.533295" target-x="369.013" target-y="348.59686"></path>
</clipPath>
<clipPath id="SVGID_4_" node-id="135">
<path
d="M 416.75 393.30 C 399.74 410.93 390.88 409.78 390.88 409.78 L 365.78 386.40 C 365.78 386.40 366.37 374.94 381.50 359.28 C 397.68 342.51 418.69 336.54 428.42 345.93 C 438.16 355.33 432.93 376.54 416.75 393.30 Z"
fill="#000000" fill-rule="nonzero" node-id="223" stroke="none" target-height="68.28912"
target-width="67.53305" target-x="365.78" target-y="341.48987"></path>
</clipPath>
</defs>
<g node-id="562">
<path
d="M 445.55 611.51 C 445.55 611.51 268.05 751.30 154.36 619.57 C 40.68 487.83 150.33 199.09 287.44 236.06 C 358.71 255.27 481.76 241.45 583.51 223.74 C 727.75 198.63 864.01 301.89 876.46 447.78 C 881.49 506.67 865.64 565.36 808.89 611.51 C 627.29 759.19 673.52 649.86 630.70 593.86 C 587.88 537.86 507.85 538.14 445.55 611.51 Z"
fill="#ffebe5" fill-rule="nonzero" group-id="1" node-id="231" stroke="none"
target-height="465.62048" target-width="770.2927" target-x="107.03866" target-y="219.96185"></path>
<g node-id="572">
<g clip-path="url(#XMLID_2_)" group-id="1,11" node-id="233">
<path
d="M 86.84 350.90 C 70.59 350.90 60.85 349.61 60.62 349.58 L 60.90 347.60 C 61.45 347.68 116.94 355.00 185.69 334.08 C 249.10 314.79 337.12 266.80 396.30 147.78 L 398.09 148.67 C 371.81 201.51 337.73 244.96 296.78 277.81 C 264.01 304.09 226.80 323.68 186.18 336.02 C 145.70 348.33 109.78 350.90 86.84 350.90 Z"
fill="#ffffff" fill-rule="nonzero" group-id="1,11" node-id="235" stroke="none"
target-height="203.119" target-width="337.462" target-x="60.625" target-y="147.782"></path>
</g>
</g>
<g node-id="573">
<g clip-path="url(#XMLID_2_)" group-id="1,12" node-id="238">
<path
d="M 13.96 555.90 L 12.07 555.26 C 12.24 554.74 30.20 502.26 76.32 458.18 C 103.42 432.28 134.80 414.28 169.58 404.70 C 213.03 392.73 261.93 393.93 314.92 408.27 C 372.45 423.85 412.27 419.13 433.29 394.25 C 458.58 364.29 452.03 309.90 442.08 269.56 C 431.26 225.69 414.19 188.50 414.02 188.12 L 415.83 187.29 C 416.01 187.66 433.15 225.03 444.02 269.08 C 454.08 309.88 460.65 364.93 434.81 395.54 C 413.26 421.06 372.74 426.00 314.39 410.20 C 195.28 377.96 119.96 419.25 77.76 459.57 C 31.97 503.31 14.14 555.38 13.96 555.90 Z"
fill="#ffffff" fill-rule="nonzero" group-id="1,12" node-id="240" stroke="none"
target-height="368.61304" target-width="440.83047" target-x="12.066" target-y="187.287"></path>
</g>
</g>
<g node-id="574">
<g clip-path="url(#XMLID_2_)" group-id="1,13" node-id="243">
<path
d="M 81.45 770.19 C 81.23 769.70 58.91 720.91 44.38 664.58 C 35.84 631.47 31.61 602.25 31.82 577.75 C 32.09 546.99 39.39 523.57 53.53 508.16 C 79.69 479.64 129.29 478.24 200.93 504.00 C 354.52 559.21 431.39 580.17 484.59 581.32 C 540.57 582.51 571.43 561.54 611.99 519.75 C 627.28 504.00 644.77 497.37 663.98 500.02 C 694.11 504.20 728.42 530.89 765.95 579.34 C 794.88 616.69 818.17 657.40 829.48 678.35 L 827.72 679.30 C 806.56 640.11 732.22 511.51 663.70 502.01 C 645.16 499.44 628.25 505.88 613.42 521.15 C 573.59 562.19 543.00 583.37 489.15 583.37 C 487.63 583.37 486.10 583.35 484.54 583.32 C 431.11 582.16 354.06 561.17 200.26 505.88 C 129.44 480.43 80.57 481.65 55.00 509.51 C 23.67 543.66 32.99 612.42 46.32 664.08 C 60.81 720.24 83.05 768.87 83.27 769.36 L 81.45 770.19 Z"
fill="#ffffff" fill-rule="nonzero" group-id="1,13" node-id="245" stroke="none"
target-height="284.46222" target-width="797.65295" target-x="31.822" target-y="485.72577"></path>
</g>
</g>
<g clip-path="url(#XMLID_2_)" group-id="1,14" node-id="248">
<path
d="M 560.01 359.70 C 531.95 359.70 513.38 351.36 504.82 334.90 C 493.19 312.56 499.79 276.08 524.41 226.49 C 542.68 189.69 564.61 159.01 564.83 158.70 L 566.46 159.87 C 565.59 161.08 479.54 281.98 506.59 333.98 C 514.95 350.03 533.47 358.01 561.63 357.69 C 639.68 356.80 687.72 323.46 714.27 295.64 C 749.46 258.78 762.36 216.89 762.70 189.97 L 764.70 189.99 C 764.35 217.29 751.30 259.74 715.72 297.02 C 688.90 325.12 640.40 358.79 561.65 359.69 C 561.10 359.69 560.55 359.70 560.01 359.70 Z"
fill="#ffffff" fill-rule="nonzero" group-id="1,14" node-id="250" stroke="none"
target-height="200.996" target-width="265.41705" target-x="499.28497" target-y="158.703"></path>
</g>
</g>
<path
d="M 248.39 672.21 C 247.56 672.21 246.89 671.53 246.89 670.71 L 246.89 224.55 C 246.89 152.60 305.43 94.06 377.38 94.06 C 449.33 94.06 507.87 152.60 507.87 224.55 C 507.87 225.37 507.19 226.05 506.37 226.05 C 505.54 226.05 504.87 225.37 504.87 224.55 C 504.87 154.25 447.68 97.06 377.38 97.06 C 307.08 97.06 249.89 154.25 249.89 224.55 L 249.89 670.71 C 249.89 671.53 249.22 672.21 248.39 672.21 Z"
fill="#5a6c1c" fill-rule="nonzero" node-id="254" stroke="none" target-height="578.146"
target-width="260.973" target-x="246.893" target-y="94.06"></path>
<path d="M 932.15 745.28 L 87.19 745.28 L 174.35 652.48 L 844.99 652.48 Z" fill="#26205c"
fill-rule="nonzero" node-id="256" stroke="none" target-height="92.79797" target-width="844.969"
target-x="87.185" target-y="652.478"></path>
<path d="M 87.19 745.28 L 932.15 745.28 L 932.15 759.19 L 87.19 759.19 Z" fill="#26205c"
fill-rule="nonzero" node-id="258" stroke="none" target-height="13.909973" target-width="844.969"
target-x="87.185" target-y="745.276"></path>
<path
d="M 712.59 298.72 L 509.67 298.72 L 306.75 298.72 L 176.01 267.23 L 176.01 598.76 L 312.44 548.09 L 509.67 548.09 L 706.90 548.09 L 843.32 598.76 L 843.32 267.23 Z"
fill="#ffffff" fill-rule="nonzero" group-id="2" node-id="262" stroke="none"
target-height="331.529" target-width="667.30896" target-x="176.015" target-y="267.232"></path>
<g clip-path="url(#XMLID_3_)" group-id="2,15" node-id="264">
<path d="M 124.86 203.62 L 311.30 203.62 L 311.30 635.05 L 124.86 635.05 Z" fill="#eaeaff"
fill-rule="nonzero" group-id="2,15" node-id="266" stroke="none" target-height="431.42303"
target-width="186.44202" target-x="124.857" target-y="203.623"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,16" node-id="269">
<path d="M 707.72 208.95 L 889.21 208.95 L 889.21 643.22 L 707.72 643.22 Z" fill="#eaeaff"
fill-rule="nonzero" group-id="2,16" node-id="271" stroke="none" target-height="434.27402"
target-width="181.49298" target-x="707.721" target-y="208.949"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,17" node-id="274">
<path
d="M 318.26 586.82 C 318.23 586.05 316.06 509.73 350.60 473.90 C 362.47 461.58 377.38 455.31 394.93 455.25 C 421.33 455.17 453.70 446.49 481.51 432.04 C 508.35 418.09 525.72 401.36 526.84 388.37 C 527.86 376.63 515.82 368.19 492.01 363.95 C 468.73 359.80 455.19 352.86 452.85 343.87 C 451.40 338.31 454.26 332.39 461.14 326.75 C 478.35 312.67 520.39 301.82 549.80 316.15 C 576.11 328.98 588.56 334.36 597.41 332.05 C 606.35 329.72 611.76 319.40 622.52 298.84 L 622.83 298.25 L 624.60 299.18 L 624.29 299.77 C 611.79 323.64 606.09 334.53 593.36 334.53 C 584.07 334.54 571.05 328.74 548.92 317.95 C 520.65 304.18 478.80 314.88 462.41 328.30 C 458.06 331.86 453.21 337.36 454.78 343.37 C 456.88 351.43 470.23 358.04 492.36 361.98 C 523.92 367.60 529.62 379.53 528.83 388.54 C 526.23 418.55 451.14 457.08 394.93 457.25 C 377.95 457.31 363.52 463.37 352.04 475.28 C 318.09 510.51 320.23 585.99 320.25 586.75 L 318.26 586.82 Z"
fill="#5a78ec" fill-opacity="0.54" fill-rule="nonzero" group-id="2,17" node-id="276"
stroke-linecap="butt" stroke-opacity="0.54" stroke-width="1" target-height="288.563"
target-width="306.37097" target-x="318.229" target-y="298.253"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,18" node-id="279">
<path
d="M 464.50 587.75 C 461.25 586.83 384.92 565.11 382.73 537.40 C 381.94 527.32 391.06 517.82 409.87 509.17 C 441.59 494.57 466.21 490.27 485.99 486.83 C 517.99 481.25 537.30 477.89 554.72 436.65 C 568.19 404.78 591.10 410.42 611.31 415.40 C 624.54 418.67 637.05 421.75 646.47 415.14 C 654.91 409.22 660.12 395.87 662.41 374.31 C 666.30 337.77 667.27 313.91 667.92 298.11 C 669.04 270.55 669.28 264.82 682.05 254.30 L 683.32 255.85 C 671.24 265.79 671.04 270.74 669.92 298.19 C 669.27 314.01 668.29 337.92 664.40 374.53 C 662.05 396.69 656.56 410.50 647.62 416.77 C 637.45 423.90 624.52 420.72 610.83 417.34 C 590.44 412.32 569.37 407.13 556.56 437.43 C 538.71 479.67 519.00 483.11 486.34 488.80 C 466.67 492.23 442.19 496.49 410.70 510.98 C 392.74 519.25 384.00 528.09 384.73 537.25 C 386.81 563.57 464.26 585.60 465.04 585.82 L 464.50 587.75 Z"
fill="#5a78ec" fill-opacity="0.54" fill-rule="nonzero" group-id="2,18" node-id="281"
stroke-linecap="butt" stroke-opacity="0.54" stroke-width="1" target-height="333.444"
target-width="300.58798" target-x="382.733" target-y="254.301"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,19" node-id="284">
<path
d="M 665.11 573.59 L 663.11 573.53 C 664.02 543.04 643.70 516.88 602.72 495.79 C 592.56 490.56 583.64 490.11 576.20 494.46 C 552.71 508.21 550.38 565.08 550.36 565.65 L 548.36 565.58 C 548.45 563.20 550.75 507.04 575.19 492.74 C 583.26 488.02 592.83 488.44 603.63 494.01 C 645.36 515.49 666.04 542.26 665.11 573.59 Z"
fill="#5a78ec" fill-opacity="0.54" fill-rule="nonzero" group-id="2,19" node-id="286"
stroke-linecap="butt" stroke-opacity="0.54" stroke-width="1" target-height="84.06293"
target-width="116.74701" target-x="548.359" target-y="489.52405"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,20" node-id="289">
<path
d="M 467.85 573.66 L 466.24 572.47 C 586.17 410.20 626.99 427.77 656.80 440.60 C 661.24 442.51 665.43 444.31 669.58 445.37 C 701.96 453.61 708.46 565.33 708.72 570.08 L 706.72 570.19 C 706.66 569.04 700.05 455.19 669.08 447.31 C 664.79 446.21 660.52 444.38 656.01 442.44 C 626.82 429.87 586.83 412.67 467.85 573.66 Z"
fill="#5a78ec" fill-opacity="0.54" fill-rule="nonzero" group-id="2,20" node-id="291"
stroke-linecap="butt" stroke-opacity="0.54" stroke-width="1" target-height="140.92712"
target-width="242.47302" target-x="466.242" target-y="432.7309"></path>
</g>
<g clip-path="url(#XMLID_3_)" group-id="2,21" node-id="294">
<path
d="M 335.09 393.67 C 334.40 393.67 333.73 393.56 333.07 393.35 C 324.59 390.63 320.88 369.55 322.06 330.71 C 322.92 302.10 326.19 273.89 326.22 273.61 L 328.21 273.84 C 324.58 304.90 318.49 386.57 333.68 391.45 C 337.71 392.74 345.57 388.76 360.11 362.48 C 369.88 344.81 378.50 328.20 386.83 312.14 C 414.71 258.42 434.86 219.61 461.64 212.84 C 472.94 209.99 484.93 213.03 498.31 222.12 L 497.18 223.77 C 484.30 215.02 472.84 212.08 462.13 214.78 C 436.22 221.33 416.25 259.81 388.61 313.06 C 380.27 329.13 371.64 345.75 361.86 363.45 C 350.64 383.73 341.85 393.67 335.09 393.67 Z"
fill="#5a78ec" fill-opacity="0.54" fill-rule="nonzero" group-id="2,21" node-id="296"
stroke-linecap="butt" stroke-opacity="0.54" stroke-width="1" target-height="181.85529"
target-width="176.45483" target-x="321.85016" target-y="211.8107"></path>
</g>
<path
d="M 722.13 311.39 L 519.22 311.39 L 316.30 311.39 L 185.56 279.90 L 185.56 611.43 L 321.98 560.76 L 519.22 560.76 L 716.45 560.76 L 852.87 611.43 L 852.87 279.90 Z"
fill="none" id="XMLID_105_" node-id="29" stroke="#232323" stroke-linecap="round"
stroke-width="2" target-height="331.52902" target-width="667.309" target-x="185.56"
target-y="279.902"></path>
<path
d="M 620.35 514.83 L 478.37 514.83 C 476.52 514.83 475.00 513.31 475.00 511.46 L 475.00 320.42 C 475.00 318.57 476.52 317.05 478.37 317.05 L 620.35 317.05 C 622.20 317.05 623.72 318.57 623.72 320.42 L 623.72 511.46 C 623.71 513.31 622.20 514.83 620.35 514.83 Z"
fill="#5a78ec" fill-rule="nonzero" node-id="301" stroke="none" target-height="197.77304"
target-width="148.71103" target-x="475.004" target-y="317.054"></path>
<path
d="M 613.08 509.16 L 485.64 509.16 C 483.79 509.16 482.28 507.64 482.28 505.79 L 482.28 326.09 C 482.28 324.24 483.79 322.72 485.64 322.72 L 613.08 322.72 C 614.93 322.72 616.44 324.24 616.44 326.09 L 616.44 505.79 C 616.44 507.64 614.93 509.16 613.08 509.16 Z"
fill="#ffffff" fill-rule="nonzero" group-id="3" node-id="305" stroke="none"
target-height="186.432" target-width="134.16699" target-x="482.276" target-y="322.724"></path>
<g clip-path="url(#XMLID_4_)" group-id="3,22" node-id="307">
<path
d="M 545.20 507.97 C 545.20 542.68 517.06 570.82 482.35 570.82 C 447.64 570.82 419.50 542.68 419.50 507.97 C 419.50 473.26 447.64 445.12 482.35 445.12 C 517.06 445.12 545.20 473.26 545.20 507.97 Z"
fill="#ff6666" fill-rule="nonzero" group-id="3,22" node-id="309" stroke="none"
target-height="125.70001" target-width="125.70001" target-x="419.5" target-y="445.123"></path>
</g>
<g clip-path="url(#XMLID_5_)" group-id="4,23" node-id="315">
<path
d="M 616.43 438.97 C 616.43 477.73 585.00 509.16 546.24 509.16 C 507.47 509.16 476.05 477.73 476.05 438.97 C 476.05 400.20 507.47 368.78 546.24 368.78 C 585.00 368.78 616.43 400.20 616.43 438.97 Z"
fill="none" group-id="4,23" node-id="317" stroke="#ff6666" stroke-linecap="butt"
stroke-width="1" target-height="140.38" target-width="140.38004" target-x="476.046"
target-y="368.777"></path>
</g>
<path
d="M 613.08 509.16 L 545.24 509.16 L 545.24 440.70 L 616.44 440.70 L 616.44 505.79 C 616.44 507.64 614.93 509.16 613.08 509.16 Z"
fill="none" group-id="4" node-id="320" stroke="#ff6666" stroke-linecap="butt" stroke-width="1"
target-height="68.451996" target-width="71.20697" target-x="545.236" target-y="440.704"></path>
<path
d="M 676.84 410.68 C 676.84 419.19 669.94 426.09 661.43 426.09 C 652.92 426.09 646.02 419.19 646.02 410.68 C 646.02 402.17 652.92 395.27 661.43 395.27 C 669.94 395.27 676.84 402.17 676.84 410.68 Z"
fill="#ffb7b7" fill-rule="nonzero" group-id="5" node-id="325" stroke="none"
target-height="30.813995" target-width="30.814026" target-x="646.022" target-y="395.272"></path>
<path
d="M 669.33 393.49 C 669.33 396.76 666.68 399.41 663.41 399.41 C 660.14 399.41 657.49 396.76 657.49 393.49 C 657.49 390.22 660.14 387.57 663.41 387.57 C 666.68 387.57 669.33 390.22 669.33 393.49 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="327" stroke="none"
target-height="11.835999" target-width="11.835999" target-x="657.491" target-y="387.571"></path>
<path
d="M 677.69 379.78 C 677.69 386.14 672.53 391.29 666.17 391.29 C 659.81 391.29 654.66 386.14 654.66 379.78 C 654.66 373.42 659.81 368.26 666.17 368.26 C 672.53 368.26 677.69 373.42 677.69 379.78 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="329" stroke="none"
target-height="23.029999" target-width="23.029968" target-x="654.658" target-y="368.264"></path>
<path
d="M 661.43 400.45 C 661.43 400.45 659.70 409.72 646.02 409.91 L 644.95 409.91 C 644.95 409.91 644.31 394.25 661.88 393.66 C 661.88 393.66 676.47 393.95 677.69 409.91 L 676.84 409.91 C 676.84 409.91 663.29 410.01 661.43 400.45 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="331" stroke="none"
target-height="16.25" target-width="32.743042" target-x="644.946" target-y="393.662"></path>
<path
d="M 600.84 444.15 L 596.45 439.76 C 596.45 439.76 596.42 439.29 596.42 439.11 L 596.42 434.49 C 596.42 433.67 595.75 433.00 594.94 433.00 C 594.12 433.00 593.45 433.67 593.45 434.49 L 593.45 436.76 L 589.13 432.43 C 586.80 430.11 583.00 430.11 580.68 432.43 L 580.68 432.43 C 578.35 434.76 578.35 438.56 580.68 440.88 L 592.10 452.30 C 593.16 453.36 594.89 453.36 595.95 452.30 L 600.84 447.41 C 601.74 446.51 601.74 445.04 600.84 444.15 Z"
fill="#ffb7b7" fill-rule="nonzero" group-id="5" node-id="333" stroke="none"
target-height="22.406494" target-width="22.57843" target-x="578.935" target-y="430.69098"></path>
<path
d="M 693.23 437.44 C 692.26 437.05 691.20 436.83 690.09 436.85 L 674.98 437.08 L 673.86 434.58 C 673.20 433.14 671.74 432.23 670.15 432.30 L 656.92 432.88 C 655.52 432.94 654.27 433.76 653.66 435.01 L 652.11 438.18 L 637.28 438.18 C 635.99 438.18 634.79 438.54 633.77 439.14 C 631.54 440.08 629.69 441.92 628.84 444.37 L 622.00 464.12 L 602.66 443.20 C 602.08 442.57 601.10 442.54 600.47 443.11 L 589.76 453.01 C 589.14 453.59 589.10 454.56 589.67 455.18 L 618.72 486.61 C 619.49 487.44 620.38 488.08 621.35 488.54 C 621.77 488.77 622.21 488.98 622.68 489.15 C 627.27 490.74 632.33 488.28 633.92 483.69 L 635.72 478.51 L 638.55 495.76 L 681.45 492.69 C 681.45 492.69 701.01 496.41 701.01 491.03 L 701.01 447.01 C 701.01 442.32 697.66 438.37 693.23 437.44 Z"
fill="#a9d4ca" fill-rule="nonzero" group-id="5" node-id="335" stroke="none"
target-height="63.458008" target-width="111.74225" target-x="589.2698" target-y="432.302"></path>
<g clip-path="url(#SVGID_1_)" group-id="5,24" node-id="337">
<path d="M 635.19 458.24 L 635.86 488.03 L 634.54 473.29 Z" fill="#94beb3" fill-rule="nonzero"
group-id="5,24" node-id="339" stroke="none" target-height="29.78601" target-width="1.3170166"
target-x="634.544" target-y="458.244"></path>
</g>
<g clip-path="url(#SVGID_1_)" group-id="5,25" node-id="342">
<path d="M 676.84 494.81 L 679.81 450.80 L 679.81 497.65 Z" fill="#94beb3" fill-rule="nonzero"
group-id="5,25" node-id="344" stroke="none" target-height="46.85202" target-width="2.9760132"
target-x="676.836" target-y="450.801"></path>
</g>
<path
d="M 654.66 670.71 L 632.28 670.71 C 632.28 670.71 633.77 684.79 619.15 686.29 C 619.15 686.29 601.25 687.78 603.34 699.61 L 654.66 699.61 L 654.66 670.71 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="347" stroke="none"
target-height="28.90503" target-width="51.460632" target-x="603.19635" target-y="670.706"></path>
<g clip-path="url(#XMLID_7_)" group-id="5,26" node-id="349">
<path d="M 668.98 697.12 L 589.32 697.12 L 589.32 695.54 L 668.98 695.54 Z" fill="#ffffff"
fill-rule="nonzero" group-id="5,26" node-id="351" stroke="#ffffff" stroke-linecap="butt"
stroke-width="1" target-height="1.5750122" target-width="79.65399" target-x="589.3221"
target-y="695.54346"></path>
</g>
<path
d="M 654.66 670.71 L 632.28 670.71 C 632.28 670.71 633.77 684.79 619.15 686.29 C 619.15 686.29 601.25 687.78 603.34 699.61 L 654.66 699.61 L 654.66 670.71 Z"
fill="none" group-id="5" node-id="354" stroke="#ffffff" stroke-linecap="butt" stroke-width="1"
target-height="28.90503" target-width="51.460632" target-x="603.19635" target-y="670.706"></path>
<path
d="M 638.55 495.76 L 623.71 663.29 L 661.43 663.29 L 665.81 516.43 L 676.84 663.29 L 712.84 663.29 L 690.92 491.03 Z"
fill="#8ea594" fill-rule="nonzero" group-id="5" node-id="356" stroke="none"
target-height="172.26398" target-width="89.130005" target-x="623.714" target-y="491.028"></path>
<g clip-path="url(#SVGID_2_)" group-id="5,27" node-id="358">
<path d="M 633.85 499.55 L 718.36 491.03 L 718.36 479.67 L 628.92 495.29 Z" fill="#7e9a84"
fill-rule="nonzero" group-id="5,27" node-id="360" stroke="none" target-height="19.875977"
target-width="89.44" target-x="628.916" target-y="479.67"></path>
</g>
<path
d="M 628.92 658.14 C 628.89 658.14 628.87 658.14 628.84 658.14 C 628.29 658.09 627.88 657.61 627.92 657.06 L 639.60 505.62 C 639.63 505.19 639.93 504.83 640.35 504.73 C 648.30 502.74 648.87 498.22 648.89 498.03 C 648.95 497.49 649.45 497.09 649.98 497.14 C 650.53 497.19 650.93 497.67 650.88 498.21 C 650.86 498.45 650.28 504.02 641.54 506.48 L 629.91 657.22 C 629.87 657.74 629.43 658.14 628.92 658.14 Z"
fill="#ffffff" fill-rule="nonzero" group-id="5" node-id="363" stroke="none"
target-height="161.00299" target-width="22.964966" target-x="627.919" target-y="497.136"></path>
<path
d="M 707.72 658.14 C 707.22 658.14 706.79 657.78 706.73 657.28 L 687.32 516.56 C 687.25 516.02 687.63 515.51 688.18 515.44 C 688.74 515.35 689.23 515.74 689.30 516.29 L 708.71 657.00 C 708.78 657.55 708.40 658.05 707.85 658.13 C 707.81 658.14 707.76 658.14 707.72 658.14 Z"
fill="#ffffff" fill-rule="nonzero" group-id="5" node-id="365" stroke="none"
target-height="142.703" target-width="21.384033" target-x="687.324" target-y="515.436"></path>
<path d="M 718.36 500.94 L 664.35 487.83 L 658.27 520.96 L 713.62 534.68 Z" fill="#ffb000"
fill-rule="nonzero" group-id="5" node-id="367" stroke="none" target-height="46.85199"
target-width="60.086" target-x="658.27" target-y="487.833"></path>
<path
d="M 694.47 506.96 L 687.84 506.96 C 685.98 506.96 684.45 508.49 684.45 510.35 L 684.45 517.47 L 681.17 523.15 C 680.78 523.83 681.01 524.70 681.69 525.09 L 681.69 525.09 C 682.36 525.48 683.24 525.25 683.63 524.57 L 684.45 523.15 L 684.45 527.15 C 684.45 530.88 687.50 533.94 691.23 533.94 C 694.96 533.94 698.01 530.88 698.01 527.15 L 698.01 510.51 C 698.01 508.56 696.42 506.96 694.47 506.96 Z"
fill="#ffb7b7" fill-rule="nonzero" group-id="5" node-id="369" stroke="none"
target-height="26.976013" target-width="17.024963" target-x="680.989" target-y="506.961"></path>
<path
d="M 699.49 516.43 L 681.42 516.43 C 680.53 516.43 679.81 515.70 679.81 514.82 L 679.81 447.65 C 679.81 441.82 684.58 437.05 690.41 437.05 L 690.41 437.05 C 696.24 437.05 701.01 441.82 701.01 447.65 L 701.01 514.91 C 701.01 515.74 700.33 516.43 699.49 516.43 Z"
fill="#a9d4ca" fill-rule="nonzero" group-id="5" node-id="371" stroke="none"
target-height="79.380035" target-width="21.200012" target-x="679.812" target-y="437.046"></path>
<path d="M 634.80 663.29 L 633.85 670.71 L 653.88 670.71 L 654.00 663.29 Z" fill="#ffb7b7"
fill-rule="nonzero" group-id="5" node-id="373" stroke="none" target-height="7.4140015"
target-width="20.153015" target-x="633.85" target-y="663.292"></path>
<path
d="M 682.68 670.71 L 705.06 670.71 C 705.06 670.71 703.57 684.79 718.19 686.29 C 718.19 686.29 736.09 687.78 734.00 699.61 L 682.68 699.61 L 682.68 670.71 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="375" stroke="none"
target-height="28.90503" target-width="51.460632" target-x="682.684" target-y="670.706"></path>
<g clip-path="url(#XMLID_8_)" group-id="5,28" node-id="377">
<path d="M 668.37 695.54 L 748.02 695.54 L 748.02 697.12 L 668.37 697.12 Z" fill="#ffffff"
fill-rule="nonzero" group-id="5,28" node-id="379" stroke="#ffffff" stroke-linecap="butt"
stroke-width="1" target-height="1.5750122" target-width="79.65399" target-x="668.366"
target-y="695.544"></path>
</g>
<path
d="M 682.68 670.71 L 705.06 670.71 C 705.06 670.71 703.57 684.79 718.19 686.29 C 718.19 686.29 736.09 687.78 734.00 699.61 L 682.68 699.61 L 682.68 670.71 Z"
fill="none" group-id="5" node-id="382" stroke="#ffffff" stroke-linecap="butt" stroke-width="1"
target-height="28.90503" target-width="51.460632" target-x="682.684" target-y="670.706"></path>
<path d="M 702.55 663.29 L 703.49 670.71 L 683.46 670.71 L 683.34 663.29 Z" fill="#ffb7b7"
fill-rule="nonzero" group-id="5" node-id="384" stroke="none" target-height="7.4140015"
target-width="20.151978" target-x="683.34" target-y="663.292"></path>
<path
d="M 649.89 441.86 C 649.34 441.86 648.90 441.43 648.89 440.88 C 648.88 440.33 649.32 439.87 649.87 439.86 L 677.23 439.33 C 677.24 439.33 677.24 439.33 677.25 439.33 C 677.79 439.33 678.24 439.76 678.25 440.31 C 678.26 440.86 677.82 441.32 677.27 441.33 L 649.91 441.86 C 649.90 441.86 649.89 441.86 649.89 441.86 Z"
fill="#26205c" fill-rule="nonzero" group-id="5" node-id="386" stroke="none"
target-height="2.53302" target-width="29.362976" target-x="648.887" target-y="439.33"></path>
<path
d="M 819.94 653.74 C 819.67 653.12 794.14 591.03 823.92 545.57 L 824.76 546.12 C 795.27 591.14 820.60 652.73 820.86 653.35 L 819.94 653.74 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="390" stroke="none"
target-height="108.16803" target-width="15.25415" target-x="809.50684" target-y="545.568"></path>
<path
d="M 826.32 653.54 C 825.24 648.32 824.37 643.06 823.58 637.79 C 822.80 632.52 822.15 627.23 821.58 621.92 C 821.10 616.62 820.63 611.30 820.43 605.97 C 820.25 600.64 820.20 595.30 820.60 589.98 L 820.64 593.97 C 820.65 595.30 820.74 596.63 820.78 597.96 C 820.81 599.29 820.88 600.62 820.96 601.95 C 821.04 603.27 821.09 604.60 821.20 605.93 C 821.55 611.23 822.02 616.53 822.58 621.82 C 823.06 627.12 823.72 632.40 824.34 637.69 C 824.64 640.33 824.97 642.97 825.32 645.61 L 826.32 653.54 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="392" stroke="none"
target-height="63.565002" target-width="6.0200806" target-x="820.2959" target-y="589.978"></path>
<path
d="M 820.30 573.56 C 820.27 573.56 820.23 573.56 820.20 573.55 C 819.93 573.49 819.76 573.23 819.81 572.96 C 819.84 572.82 822.56 559.34 810.84 542.77 C 810.68 542.55 810.73 542.24 810.96 542.08 C 811.18 541.92 811.49 541.97 811.65 542.20 C 823.64 559.14 820.82 573.03 820.79 573.17 C 820.74 573.40 820.53 573.56 820.30 573.56 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="394" stroke="none"
target-height="31.57129" target-width="10.330933" target-x="810.75354" target-y="541.99274"></path>
<path
d="M 837.60 656.72 C 837.59 656.62 837.00 646.02 831.70 641.29 C 825.86 636.07 818.04 600.16 820.99 586.37 L 821.97 586.58 C 819.12 599.87 826.86 635.63 832.37 640.54 C 837.98 645.56 838.57 656.22 838.60 656.67 L 837.60 656.72 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="396" stroke="none"
target-height="70.35101" target-width="18.241394" target-x="820.3546" target-y="586.372"></path>
<path
d="M 778.58 615.28 C 778.58 615.28 788.44 613.11 796.92 594.17 C 796.92 594.17 802.25 591.01 807.58 604.72 C 807.58 604.72 809.80 604.23 809.06 599.69 C 808.32 595.16 827.11 596.19 830.80 602.26 C 830.80 602.26 809.80 617.50 792.78 619.57 C 792.78 619.57 775.92 618.97 778.58 615.28 Z"
fill="#aabb41" fill-rule="nonzero" group-id="6" node-id="398" stroke="none"
target-height="25.686584" target-width="52.494995" target-x="778.308" target-y="593.8794"></path>
<path
d="M 841.90 623.17 C 841.90 623.17 843.97 614.49 830.80 614.09 C 817.64 613.70 813.20 617.64 795.64 619.10 C 795.64 619.10 815.35 611.71 820.71 603.55 C 821.59 602.21 822.77 601.09 824.18 600.34 C 826.73 598.98 830.74 598.28 835.59 602.45 C 835.59 602.45 843.87 606.79 841.90 623.17 Z"
fill="#6f8037" fill-rule="nonzero" group-id="6" node-id="400" stroke="none"
target-height="23.851074" target-width="46.545654" target-x="795.64" target-y="599.31494"></path>
<path
d="M 834.01 653.54 C 834.80 652.36 835.51 651.12 836.14 649.85 C 836.77 648.58 837.38 647.30 837.88 645.98 C 838.91 643.34 839.76 640.65 840.39 637.89 C 840.55 637.20 840.67 636.51 840.81 635.82 C 840.97 635.13 841.08 634.43 841.17 633.73 L 841.48 631.63 C 841.53 630.92 841.60 630.22 841.68 629.51 C 841.96 626.69 841.95 623.85 841.96 620.99 C 842.14 622.40 842.31 623.83 842.41 625.26 C 842.43 626.69 842.54 628.13 842.45 629.56 C 842.41 632.44 841.94 635.29 841.36 638.11 C 840.70 640.92 839.80 643.67 838.58 646.28 C 837.37 648.88 835.92 651.40 834.01 653.54 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="402" stroke="none"
target-height="32.554016" target-width="8.437012" target-x="834.009" target-y="620.989"></path>
<path
d="M 853.14 573.56 C 853.14 573.56 860.39 578.79 869.71 576.21 C 879.03 573.63 878.54 581.79 874.77 582.68 C 870.99 583.57 869.77 583.26 865.50 582.95 C 857.96 582.40 853.14 573.56 853.14 573.56 Z"
fill="#6f8037" fill-rule="nonzero" group-id="6" node-id="404" stroke="none"
target-height="9.659363" target-width="24.13971" target-x="853.142" target-y="573.557"></path>
<path
d="M 870.21 583.30 C 870.21 583.30 850.33 581.69 843.08 582.28 C 835.83 582.88 821.78 583.06 820.56 591.05 C 820.56 591.05 810.68 586.95 821.63 569.27 C 821.63 569.27 830.80 554.99 843.90 564.83 L 843.75 573.06 L 847.74 566.97 C 847.74 566.97 857.95 579.87 868.38 582.83 L 870.21 583.30 Z"
fill="#aabb41" fill-rule="nonzero" group-id="6" node-id="406" stroke="none"
target-height="29.663391" target-width="53.733643" target-x="816.4714" target-y="561.3866"></path>
<path
d="M 880.29 528.95 C 880.29 528.95 879.41 519.68 869.42 517.88 C 859.43 516.08 857.88 524.88 857.88 524.88 C 857.88 524.88 867.49 519.19 880.29 528.95 Z"
fill="#6f8037" fill-rule="nonzero" group-id="6" node-id="408" stroke="none"
target-height="11.304871" target-width="22.413025" target-x="857.876" target-y="517.64813"></path>
<path
d="M 823.41 547.31 C 823.41 547.31 819.86 503.65 851.51 517.56 C 851.51 517.56 858.20 517.12 870.21 517.93 C 870.21 517.93 857.65 519.41 859.13 525.85 C 860.61 532.28 836.79 548.14 823.41 547.31 Z"
fill="#aabb41" fill-rule="nonzero" group-id="6" node-id="410" stroke="none"
target-height="32.479065" target-width="46.90332" target-x="823.3017" target-y="514.83093"></path>
<path
d="M 824.34 546.53 C 825.37 543.24 826.81 540.08 828.45 537.04 C 830.10 534.00 832.02 531.10 834.25 528.42 C 836.48 525.76 839.02 523.33 841.92 521.40 C 843.39 520.45 844.92 519.62 846.52 518.94 C 848.14 518.32 849.81 517.82 851.51 517.56 C 848.19 518.48 845.11 520.02 842.36 522.03 C 839.63 524.06 837.18 526.44 835.01 529.06 C 832.82 531.67 830.90 534.50 829.11 537.42 C 828.22 538.88 827.39 540.38 826.60 541.90 C 825.79 543.41 825.05 544.96 824.34 546.53 Z"
fill="#5a6c1c" fill-rule="nonzero" group-id="6" node-id="412" stroke="none"
target-height="28.971008" target-width="27.17102" target-x="824.344" target-y="517.563"></path>
<path
d="M 762.87 575.61 C 762.87 575.61 752.10 557.58 758.46 541.75 C 758.46 541.75 762.36 547.49 765.71 547.34 C 765.71 547.34 763.49 542.93 763.79 539.97 C 763.79 539.97 772.37 537.75 780.50 538.64 L 762.87 575.61 Z"
fill="#aabb41" fill-rule="nonzero" group-id="6" node-id="414" stroke="none"
target-height="37.179993" target-width="24.027893" target-x="756.4771" target-y="538.433"></path>
<path
d="M 763.29 578.00 C 763.29 578.00 756.09 550.28 785.88 529.96 L 788.64 539.53 L 791.70 531.08 C 791.70 531.08 805.05 528.64 811.52 543.08 C 811.52 543.08 781.74 535.68 763.29 578.00 Z"
fill="#6f8037" fill-rule="nonzero" group-id="6" node-id="416" stroke="none"
target-height="48.031006" target-width="48.991577" target-x="762.5304" target-y="529.964"></path>
<path d="M 805.21 651.37 L 853.14 651.37 L 838.35 695.75 L 820.00 695.75 Z" fill="#3f2700"
fill-rule="nonzero" group-id="6" node-id="418" stroke="#ffffff" stroke-linecap="butt"
stroke-width="1" target-height="44.38202" target-width="47.932007" target-x="805.21"
target-y="651.373"></path>
<path d="M 198.37 294.57 L 198.37 502.23 L 286.29 478.82 L 286.29 313.77 Z" fill="#ffffff"
fill-rule="nonzero" node-id="421" stroke="none" target-height="207.663" target-width="87.91499"
target-x="198.373" target-y="294.57"></path>
<path d="M 208.22 311.50 L 208.22 335.75 L 277.95 347.88 L 277.95 324.70 Z" fill="#5a78ec"
fill-rule="nonzero" node-id="423" stroke="none" target-height="36.378998"
target-width="69.72598" target-x="208.225" target-y="311.496"></path>
<path d="M 212.01 358.46 L 212.01 382.71 L 281.74 392.82 L 281.74 369.32 Z" fill="#5a78ec"
fill-opacity="0.28" fill-rule="nonzero" group-id="7" node-id="427" stroke-linecap="butt"
stroke-opacity="0.28" stroke-width="1" target-height="34.358" target-width="69.726"
target-x="212.015" target-y="358.46"></path>
<path d="M 224.52 352.42 L 224.52 376.68 L 294.25 386.78 L 294.25 363.29 Z" fill="#5a78ec"
fill-rule="nonzero" node-id="430" stroke="none" target-height="34.356995" target-width="69.726"
target-x="224.52" target-y="352.423"></path>
<path d="M 208.22 395.37 L 208.22 429.85 L 240.81 427.58 L 240.81 398.40 Z" fill="#ff6666"
fill-rule="nonzero" node-id="432" stroke="none" target-height="34.48401"
target-width="32.589996" target-x="208.225" target-y="395.37"></path>
<path d="M 208.22 438.95 L 208.22 475.71 L 240.81 468.51 L 240.81 436.80 Z" fill="#fdd740"
fill-rule="nonzero" node-id="434" stroke="none" target-height="38.905" target-width="32.589996"
target-x="208.225" target-y="436.802"></path>
<path d="M 215.43 520.42 L 215.43 546.19 L 248.39 535.58 L 248.39 510.57 Z" fill="#5a78ec"
fill-rule="nonzero" node-id="436" stroke="none" target-height="35.62097"
target-width="32.968994" target-x="215.425" target-y="510.57"></path>
<path d="M 269.80 506.40 L 269.80 532.17 L 302.77 521.56 L 302.77 496.55 Z" fill="#ff6666"
fill-rule="nonzero" node-id="438" stroke="none" target-height="35.62097"
target-width="32.969025" target-x="269.804" target-y="496.549"></path>
<path
d="M 787.03 395.61 C 787.03 398.66 784.55 401.14 781.49 401.14 C 778.44 401.14 775.96 398.66 775.96 395.61 C 775.96 392.55 778.44 390.08 781.49 390.08 C 784.55 390.08 787.03 392.55 787.03 395.61 Z"
fill="none" node-id="440" stroke="#ffffff" stroke-linecap="butt" stroke-width="1"
target-height="11.063995" target-width="11.064026" target-x="775.962" target-y="390.077"></path>
<path
d="M 393.51 360.55 C 393.51 360.55 373.24 352.22 354.14 370.85 L 376.91 390.15 L 393.51 360.55 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="443"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="31.448212"
target-width="39.363007" target-x="354.145" target-y="358.7038"></path>
<path
d="M 424.85 388.25 C 424.85 388.25 436.21 406.99 420.75 428.73 L 398.16 409.21 L 424.85 388.25 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="445"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="40.480988"
target-width="30.71051" target-x="398.161" target-y="388.247"></path>
<path
d="M 419.98 400.41 C 402.97 418.03 394.12 416.89 394.12 416.89 L 369.01 393.51 C 369.01 393.51 369.61 382.05 384.73 366.38 C 400.91 349.62 421.92 343.64 431.65 353.04 C 441.39 362.43 436.16 383.64 419.98 400.41 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="447"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="68.28912"
target-width="67.533295" target-x="369.013" target-y="348.59686"></path>
<g clip-path="url(#SVGID_3_)" group-id="8,29" node-id="449">
<path d="M 377.29 340.25 L 445.39 405.50 L 452.19 341.38 L 404.23 326.75 Z" fill="#6262b6"
fill-opacity="0.33" fill-rule="nonzero" group-id="8,29" node-id="451" stroke-linecap="butt"
stroke-opacity="0.33" stroke-width="1" target-height="78.75601" target-width="74.89401"
target-x="377.293" target-y="326.749"></path>
</g>
<path
d="M 410.52 386.74 C 410.52 392.19 406.10 396.61 400.65 396.61 C 395.20 396.61 390.79 392.19 390.79 386.74 C 390.79 381.29 395.20 376.88 400.65 376.88 C 406.10 376.88 410.52 381.29 410.52 386.74 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="454"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="19.733978"
target-width="19.733978" target-x="390.786" target-y="376.877"></path>
<path
d="M 380.46 441.41 C 395.42 424.98 377.93 411.87 377.93 411.87 C 377.93 411.87 364.00 395.03 348.30 410.75 C 348.30 410.75 344.71 413.76 341.93 419.67 C 341.93 419.67 340.88 421.52 357.20 416.38 C 357.20 416.38 342.91 429.88 348.69 442.54 C 361.61 447.71 374.40 432.79 374.40 432.79 C 370.05 449.34 371.85 448.20 371.85 448.20 C 377.62 445.13 380.46 441.41 380.46 441.41 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="456"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="44.156128"
target-width="44.52707" target-x="341.932" target-y="404.0399"></path>
<path
d="M 373.77 421.79 C 373.77 424.80 371.34 427.23 368.33 427.23 C 365.32 427.23 362.89 424.80 362.89 421.79 C 362.89 418.78 365.32 416.35 368.33 416.35 C 371.34 416.35 373.77 418.78 373.77 421.79 Z"
fill="#6262b6" fill-opacity="0.33" fill-rule="nonzero" group-id="8" node-id="458"
stroke-linecap="butt" stroke-opacity="0.33" stroke-width="1" target-height="10.8880005"
target-width="10.8880005" target-x="362.887" target-y="416.345"></path>
<path
d="M 390.27 353.44 C 390.27 353.44 370.01 345.11 350.91 363.74 L 373.68 383.05 L 390.27 353.44 Z"
fill="#2b4bb1" fill-rule="nonzero" group-id="9" node-id="462" stroke="none"
target-height="31.44815" target-width="39.363007" target-x="350.912" target-y="351.59784"></path>
<path
d="M 421.62 381.14 C 421.62 381.14 432.98 399.88 417.51 421.62 L 394.93 402.11 L 421.62 381.14 Z"
fill="#2b4bb1" fill-rule="nonzero" group-id="9" node-id="464" stroke="none"
target-height="40.480988" target-width="30.71051" target-x="394.927" target-y="381.14"></path>
<path
d="M 416.75 393.30 C 399.74 410.93 390.88 409.78 390.88 409.78 L 365.78 386.40 C 365.78 386.40 366.37 374.94 381.50 359.28 C 397.68 342.51 418.69 336.54 428.42 345.93 C 438.16 355.33 432.93 376.54 416.75 393.30 Z"
fill="#5a78eb" fill-rule="nonzero" group-id="9" node-id="466" stroke="none"
target-height="68.28912" target-width="67.53305" target-x="365.78" target-y="341.48987"></path>
<g clip-path="url(#SVGID_4_)" group-id="9,30" node-id="468">
<path d="M 374.06 333.15 L 442.15 398.40 L 448.95 334.27 L 401.00 319.64 Z" fill="#ff6666"
fill-rule="nonzero" group-id="9,30" node-id="470" stroke="none" target-height="78.75699"
target-width="74.89401" target-x="374.06" target-y="319.642"></path>
</g>
<path
d="M 407.29 379.64 C 407.29 385.09 402.87 389.50 397.42 389.50 C 391.97 389.50 387.55 385.09 387.55 379.64 C 387.55 374.19 391.97 369.77 397.42 369.77 C 402.87 369.77 407.29 374.19 407.29 379.64 Z"
fill="#ffffff" fill-rule="nonzero" group-id="9" node-id="473" stroke="none"
target-height="19.734009" target-width="19.733978" target-x="387.553" target-y="369.771"></path>
<path
d="M 377.23 434.31 C 392.18 417.87 374.69 404.76 374.69 404.76 C 374.69 404.76 360.77 387.92 345.06 403.64 C 345.06 403.64 341.48 406.65 338.70 412.57 C 338.70 412.57 337.65 414.42 353.97 409.28 C 353.97 409.28 339.67 422.78 345.46 435.43 C 358.37 440.60 371.17 425.68 371.17 425.68 C 366.82 442.23 368.62 441.09 368.62 441.09 C 374.39 438.03 377.23 434.31 377.23 434.31 Z"
fill="#fdd740" fill-rule="nonzero" group-id="9" node-id="475" stroke="none"
target-height="44.156097" target-width="44.5271" target-x="338.699" target-y="396.9339"></path>
<path
d="M 370.54 414.68 C 370.54 417.69 368.10 420.13 365.10 420.13 C 362.09 420.13 359.65 417.69 359.65 414.68 C 359.65 411.68 362.09 409.24 365.10 409.24 C 368.10 409.24 370.54 411.68 370.54 414.68 Z"
fill="#fb6e42" fill-rule="nonzero" group-id="9" node-id="477" stroke="none"
target-height="10.8880005" target-width="10.8880005" target-x="359.654" target-y="409.238"></path>
<path d="M 492.18 337.77 L 528.56 337.77 L 528.56 370.61 L 492.18 370.61 Z" fill="#5a78ec"
fill-rule="nonzero" node-id="480" stroke="none" target-height="32.84201"
target-width="36.378998" target-x="492.183" target-y="337.77"></path>
<path d="M 492.18 391.30 L 503.30 414.68 L 541.70 414.68 L 528.56 391.30 Z" fill="#5a78ec"
fill-rule="nonzero" node-id="482" stroke="none" target-height="23.386993"
target-width="49.51596" target-x="492.183" target-y="391.295"></path>
<path
d="M 535.13 337.77 C 535.13 337.77 532.92 351.67 538.48 357.48 C 544.03 363.29 544.22 372.08 544.22 375.64 L 576.56 375.64 C 576.56 375.64 577.51 362.59 567.47 354.19 C 560.47 348.34 563.30 337.77 563.30 337.77 L 535.13 337.77 Z"
fill="#5a78ec" fill-rule="nonzero" node-id="484" stroke="none" target-height="37.86902"
target-width="41.841736" target-x="534.71924" target-y="337.77"></path>
<path
d="M 793.83 275.73 C 796.83 278.73 807.83 295.73 794.83 321.73 C 794.83 321.73 776.49 357.49 738.05 342.08 C 732.36 339.80 726.83 334.73 724.83 332.73 C 722.83 330.73 722.43 328.93 721.83 327.73 L 758.83 331.73 L 786.83 308.73 C 786.83 308.73 791.59 273.49 793.83 275.73 Z"
fill="#1c1b1b" fill-rule="nonzero" group-id="10" node-id="487" stroke="none"
target-height="70.26761" target-width="79.19916" target-x="721.83" target-y="275.65488"></path>
<path
d="M 717.83 322.73 L 735.83 307.73 C 735.83 307.73 730.33 298.23 737.33 286.23 L 727.83 277.73 L 713.83 313.73 C 713.83 313.73 716.83 322.73 717.83 322.73 Z"
fill="#1c1b1b" fill-rule="nonzero" group-id="10" node-id="489" stroke="none" target-height="45"
target-width="23.5" target-x="713.83" target-y="277.725"></path>
<path
d="M 727.83 264.73 L 725.83 268.73 L 740.83 281.73 C 740.83 281.73 754.83 267.73 772.83 282.73 L 789.83 269.73 L 783.83 264.73 L 727.83 264.73 Z"
fill="#1c1b1b" fill-rule="nonzero" group-id="10" node-id="491" stroke="none" target-height="18"
target-width="64" target-x="725.83" target-y="264.725"></path>
<path
d="M 733.19 306.95 C 731.41 301.93 731.20 296.20 732.94 290.57 C 733.58 288.51 734.44 286.58 735.49 284.82 L 720.20 271.88 C 717.62 275.74 715.54 280.04 714.09 284.74 C 710.25 297.14 711.55 309.82 716.74 320.21 L 733.19 306.95 Z"
fill="#ff6666" fill-rule="nonzero" group-id="10" node-id="493" stroke="none"
target-height="48.328003" target-width="23.619751" target-x="711.86523" target-y="271.885"></path>
<path
d="M 768.82 253.31 C 753.24 248.49 736.80 253.61 725.59 265.19 L 741.15 278.16 C 747.08 273.21 755.00 271.22 762.56 273.56 C 766.10 274.66 769.16 276.58 771.64 279.08 L 788.06 266.19 C 783.11 260.26 776.58 255.71 768.82 253.31 Z"
fill="#ffd840" fill-rule="nonzero" group-id="10" node-id="495" stroke="none"
target-height="27.589706" target-width="62.468018" target-x="725.592" target-y="251.49529"></path>
<path
d="M 776.17 285.55 C 778.80 291.09 779.42 297.78 777.39 304.32 C 773.31 317.51 760.05 325.13 747.78 321.33 C 743.60 320.04 740.08 317.59 737.41 314.40 L 720.77 326.79 C 725.86 333.65 732.94 338.93 741.51 341.58 C 764.20 348.60 788.70 334.53 796.25 310.15 C 800.27 297.14 798.64 283.82 792.81 273.16 L 776.17 285.55 Z"
fill="#5a78ec" fill-rule="nonzero" group-id="10" node-id="497" stroke="none"
target-height="70.22119" target-width="77.7041" target-x="720.77" target-y="273.164"></path>
<path
d="M 734.40 333.40 C 734.31 333.40 734.21 333.38 734.13 333.32 C 733.15 332.69 732.16 331.99 731.21 331.26 C 729.60 330.01 728.00 328.61 726.48 327.08 C 726.28 326.88 726.28 326.57 726.48 326.37 C 726.67 326.18 726.99 326.18 727.18 326.37 C 728.68 327.87 730.24 329.25 731.82 330.46 C 732.75 331.18 733.71 331.86 734.67 332.48 C 734.90 332.63 734.97 332.94 734.82 333.18 C 734.73 333.32 734.56 333.40 734.40 333.40 Z"
fill="#ffffff" fill-rule="nonzero" group-id="10" node-id="499" stroke="none"
target-height="7.1782837" target-width="8.56012" target-x="726.3307" target-y="326.22473"></path>
<path
d="M 753.56 339.16 C 749.61 339.16 745.49 338.53 741.54 337.06 C 741.28 336.97 741.15 336.68 741.25 336.42 C 741.34 336.16 741.63 336.03 741.89 336.12 C 752.30 339.99 763.93 337.89 770.05 333.81 C 770.28 333.65 770.59 333.72 770.75 333.95 C 770.90 334.18 770.84 334.49 770.61 334.64 C 766.61 337.31 760.34 339.16 753.56 339.16 Z"
fill="#ffffff" fill-rule="nonzero" group-id="10" node-id="501" stroke="none"
target-height="5.4275513" target-width="29.574097" target-x="741.246" target-y="333.73346"></path>
<path
d="M 779.38 328.94 C 779.23 328.94 779.09 328.88 778.99 328.76 C 778.81 328.55 778.84 328.23 779.05 328.05 C 801.48 309.29 791.96 283.66 791.86 283.40 C 791.76 283.15 791.89 282.86 792.15 282.76 C 792.41 282.66 792.70 282.79 792.80 283.05 C 792.90 283.31 802.66 309.60 779.70 328.82 C 779.60 328.90 779.49 328.94 779.38 328.94 Z"
fill="#ffffff" fill-rule="nonzero" group-id="10" node-id="503" stroke="none"
target-height="46.177002" target-width="16.018799" target-x="778.8771" target-y="282.759"></path>
<path
d="M 231.91 561.09 C 231.70 561.09 231.50 561.02 231.32 560.90 C 231.06 560.71 230.91 560.41 230.91 560.09 L 230.91 540.89 C 230.91 540.33 231.36 539.89 231.91 539.89 C 232.46 539.89 232.91 540.33 232.91 540.89 L 232.91 558.70 L 288.57 540.16 L 288.57 525.81 C 288.57 525.25 289.02 524.81 289.57 524.81 C 290.13 524.81 290.57 525.25 290.57 525.81 L 290.57 540.89 C 290.57 541.32 290.30 541.70 289.89 541.84 L 232.22 561.03 C 232.12 561.07 232.01 561.09 231.91 561.09 Z"
fill="#6363c0" fill-rule="nonzero" node-id="506" stroke="none" target-height="36.278015"
target-width="59.664" target-x="230.909" target-y="524.808"></path>
<path
d="M 289.57 541.89 C 289.15 541.89 288.77 541.62 288.63 541.21 C 288.45 540.68 288.73 540.11 289.25 539.94 L 311.17 532.55 C 311.26 532.52 311.35 532.50 311.44 532.50 L 340.24 531.21 L 340.24 502.23 C 340.24 501.68 340.68 501.23 341.24 501.23 L 475.00 501.23 C 475.56 501.23 476.00 501.68 476.00 502.23 C 476.00 502.79 475.56 503.23 475.00 503.23 L 342.24 503.23 L 342.24 532.17 C 342.24 532.70 341.81 533.14 341.28 533.17 L 311.67 534.49 L 289.89 541.83 C 289.79 541.87 289.68 541.89 289.57 541.89 Z"
fill="#6363c0" fill-rule="nonzero" node-id="508" stroke="none" target-height="40.652985"
target-width="187.37799" target-x="288.626" target-y="501.233"></path>
<path
d="M 805.64 474.69 L 746.29 464.69 C 739.70 464.69 734.32 459.30 734.32 452.72 L 734.32 399.45 C 734.32 392.87 739.70 387.48 746.29 387.48 L 805.64 377.48 C 812.22 377.48 817.61 382.87 817.61 389.45 L 817.61 462.72 C 817.61 469.30 812.22 474.69 805.64 474.69 Z"
fill="#5a78ec" fill-rule="nonzero" node-id="510" stroke="none" target-height="97.20801"
target-width="83.290955" target-x="734.317" target-y="377.482"></path>
<path
d="M 810.63 481.41 L 752.12 471.55 C 745.63 471.55 740.31 466.24 740.31 459.75 L 740.31 407.23 C 740.31 400.74 745.63 395.43 752.12 395.43 L 810.63 385.57 C 817.12 385.57 822.44 390.88 822.44 397.37 L 822.44 469.61 C 822.44 476.10 817.12 481.41 810.63 481.41 Z"
fill="none" node-id="512" stroke="#232323" stroke-linecap="butt" stroke-width="1"
target-height="95.843994" target-width="82.12195" target-x="740.314" target-y="385.57"></path>
<path
d="M 793.03 424.15 C 793.03 435.03 784.20 443.85 773.32 443.85 C 762.44 443.85 753.62 435.03 753.62 424.15 C 753.62 413.26 762.44 404.44 773.32 404.44 C 784.20 404.44 793.03 413.26 793.03 424.15 Z"
fill="#ffffff" fill-rule="nonzero" node-id="514" stroke="none" target-height="39.410004"
target-width="39.409973" target-x="753.617" target-y="404.441"></path>
<path
d="M 804.24 396.94 C 804.24 400.12 801.65 402.71 798.47 402.71 C 795.28 402.71 792.70 400.12 792.70 396.94 C 792.70 393.75 795.28 391.16 798.47 391.16 C 801.65 391.16 804.24 393.75 804.24 396.94 Z"
fill="none" node-id="516" stroke="#ffffff" stroke-linecap="butt" stroke-width="1"
target-height="11.544006" target-width="11.544006" target-x="792.695" target-y="391.163"></path>
<path
d="M 601.80 390.22 L 555.26 390.22 C 554.99 390.22 554.76 390.00 554.76 389.72 C 554.76 389.45 554.99 389.22 555.26 389.22 L 601.80 389.22 C 602.07 389.22 602.30 389.45 602.30 389.72 C 602.30 390.00 602.07 390.22 601.80 390.22 Z"
fill="#232323" fill-rule="nonzero" node-id="518" stroke="none" target-height="1"
target-width="47.53595" target-x="554.762" target-y="389.224"></path>
<path
d="M 576.63 396.05 L 555.26 396.05 C 554.99 396.05 554.76 395.83 554.76 395.55 C 554.76 395.28 554.99 395.05 555.26 395.05 L 576.63 395.05 C 576.91 395.05 577.13 395.28 577.13 395.55 C 577.13 395.83 576.91 396.05 576.63 396.05 Z"
fill="#232323" fill-rule="nonzero" node-id="520" stroke="none" target-height="1"
target-width="22.371948" target-x="554.762" target-y="395.052"></path>
<path
d="M 592.89 396.05 L 582.89 396.05 C 582.61 396.05 582.39 395.83 582.39 395.55 C 582.39 395.28 582.61 395.05 582.89 395.05 L 592.89 395.05 C 593.17 395.05 593.39 395.28 593.39 395.55 C 593.39 395.83 593.17 396.05 592.89 396.05 Z"
fill="#232323" fill-rule="nonzero" node-id="522" stroke="none" target-height="1"
target-width="11.003967" target-x="582.387" target-y="395.052"></path>
<path
d="M 564.91 401.88 L 555.26 401.88 C 554.99 401.88 554.76 401.66 554.76 401.38 C 554.76 401.11 554.99 400.88 555.26 400.88 L 564.91 400.88 C 565.19 400.88 565.41 401.11 565.41 401.38 C 565.41 401.66 565.19 401.88 564.91 401.88 Z"
fill="#232323" fill-rule="nonzero" node-id="524" stroke="none" target-height="1"
target-width="10.651978" target-x="554.762" target-y="400.881"></path>
<path
d="M 587.66 401.88 L 570.77 401.88 C 570.50 401.88 570.27 401.66 570.27 401.38 C 570.27 401.11 570.50 400.88 570.77 400.88 L 587.66 400.88 C 587.94 400.88 588.16 401.11 588.16 401.38 C 588.16 401.66 587.94 401.88 587.66 401.88 Z"
fill="#232323" fill-rule="nonzero" node-id="526" stroke="none" target-height="1"
target-width="17.890991" target-x="570.274" target-y="400.881"></path>
<path
d="M 610.59 401.88 L 591.97 401.88 C 591.70 401.88 591.47 401.66 591.47 401.38 C 591.47 401.11 591.70 400.88 591.97 400.88 L 610.59 400.88 C 610.87 400.88 611.09 401.11 611.09 401.38 C 611.09 401.66 610.87 401.88 610.59 401.88 Z"
fill="#232323" fill-rule="nonzero" node-id="528" stroke="none" target-height="1"
target-width="19.61499" target-x="591.474" target-y="400.881"></path>
<path
d="M 595.59 407.71 L 555.26 407.71 C 554.99 407.71 554.76 407.49 554.76 407.21 C 554.76 406.93 554.99 406.71 555.26 406.71 L 595.59 406.71 C 595.87 406.71 596.09 406.93 596.09 407.21 C 596.09 407.49 595.87 407.71 595.59 407.71 Z"
fill="#232323" fill-rule="nonzero" node-id="530" stroke="none" target-height="1"
target-width="41.33197" target-x="554.762" target-y="406.71"></path>
<path
d="M 606.80 407.71 L 600.07 407.71 C 599.80 407.71 599.57 407.49 599.57 407.21 C 599.57 406.93 599.80 406.71 600.07 406.71 L 606.80 406.71 C 607.07 406.71 607.30 406.93 607.30 407.21 C 607.30 407.49 607.07 407.71 606.80 407.71 Z"
fill="#232323" fill-rule="nonzero" node-id="532" stroke="none" target-height="1"
target-width="7.7230225" target-x="599.574" target-y="406.71"></path>
<path
d="M 576.63 413.54 L 555.26 413.54 C 554.99 413.54 554.76 413.31 554.76 413.04 C 554.76 412.76 554.99 412.54 555.26 412.54 L 576.63 412.54 C 576.91 412.54 577.13 412.76 577.13 413.04 C 577.13 413.31 576.91 413.54 576.63 413.54 Z"
fill="#232323" fill-rule="nonzero" node-id="534" stroke="none" target-height="1"
target-width="22.371948" target-x="554.762" target-y="412.538"></path>
<path
d="M 603.43 413.54 L 580.60 413.54 C 580.32 413.54 580.10 413.31 580.10 413.04 C 580.10 412.76 580.32 412.54 580.60 412.54 L 603.43 412.54 C 603.71 412.54 603.93 412.76 603.93 413.04 C 603.93 413.31 603.71 413.54 603.43 413.54 Z"
fill="#232323" fill-rule="nonzero" node-id="536" stroke="none" target-height="1"
target-width="23.836975" target-x="580.098" target-y="412.538"></path>
<path
d="M 525.92 374.40 L 501.97 374.40 C 499.38 374.40 497.27 372.29 497.27 369.70 L 497.27 345.75 C 497.27 343.17 499.38 341.05 501.97 341.05 L 525.92 341.05 C 528.50 341.05 530.62 343.17 530.62 345.75 L 530.62 369.70 C 530.62 372.29 528.50 374.40 525.92 374.40 Z"
fill="none" node-id="538" stroke="#232323" stroke-linecap="butt" stroke-width="1"
target-height="33.348022" target-width="33.347992" target-x="497.27" target-y="341.054"></path>
<path
d="M 543.96 416.90 L 494.47 416.90 C 492.52 416.90 490.92 415.30 490.92 413.35 L 490.92 413.35 C 490.92 411.39 492.52 409.80 494.47 409.80 L 543.96 409.80 C 545.91 409.80 547.51 411.39 547.51 413.35 L 547.51 413.35 C 547.51 415.30 545.91 416.90 543.96 416.90 Z"
fill="none" node-id="540" stroke="#232323" stroke-linecap="butt" stroke-width="1"
target-height="7.1059875" target-width="56.58896" target-x="490.92" target-y="409.795"></path>
<path d="M 440.14 275.17 L 506.35 222.87 L 590.58 272.90 Z" fill="#aabb41" fill-rule="nonzero"
node-id="542" stroke="none" target-height="52.298996" target-width="150.44202"
target-x="440.141" target-y="222.873"></path>
<path
d="M 220.35 151.26 C 220.35 151.26 199.13 217.95 246.88 249.02 C 246.88 249.02 259.00 173.48 220.35 151.26 Z"
fill="#aabb41" fill-rule="nonzero" node-id="544" stroke="none" target-height="97.767"
target-width="33.031418" target-x="215.6429" target-y="151.256"></path>
<path
d="M 279.76 140.47 C 279.76 140.47 315.85 100.10 352.60 130.79 C 352.60 130.79 335.39 160.75 279.76 140.47 Z"
fill="#aabb41" fill-rule="nonzero" node-id="546" stroke="none" target-height="28.173912"
target-width="72.84" target-x="279.764" target-y="119.28684"></path>
<path
d="M 395.43 95.56 C 395.43 95.56 415.13 62.20 445.07 74.33 C 445.07 74.33 445.07 100.87 395.43 95.56 Z"
fill="#aabb41" fill-rule="nonzero" node-id="548" stroke="none" target-height="24.538254"
target-width="49.642" target-x="395.425" target-y="71.69118"></path>
<path
d="M 447.45 116.40 C 447.45 116.40 426.88 146.33 462.88 180.06 C 462.88 180.06 482.43 146.72 447.45 116.40 Z"
fill="#aabb41" fill-rule="nonzero" node-id="550" stroke="none" target-height="63.656998"
target-width="26.6857" target-x="441.61194" target-y="116.399"></path>
<path
d="M 864.45 358.43 L 857.92 365.24 C 856.30 366.93 853.90 367.62 851.63 367.06 L 842.47 364.81 C 840.20 364.25 838.40 362.52 837.75 360.27 L 835.12 351.21 C 834.47 348.97 835.07 346.54 836.69 344.86 L 843.22 338.05 C 844.84 336.36 847.24 335.67 849.51 336.23 L 858.67 338.48 C 860.94 339.04 862.74 340.77 863.39 343.01 L 866.02 352.07 C 866.67 354.32 866.07 356.75 864.45 358.43 Z"
fill="none" node-id="552" stroke="#5a78ec" stroke-linecap="butt" stroke-width="2"
target-height="31.213776" target-width="31.41394" target-x="834.86255" target-y="336.03708"></path>
<path
d="M 457.77 308.38 L 450.04 303.91 C 447.03 302.18 446.01 298.34 447.74 295.34 L 451.03 289.64 C 452.76 286.64 456.60 285.62 459.60 287.35 L 467.33 291.81 C 470.33 293.55 471.36 297.38 469.63 300.38 L 466.34 306.08 C 464.61 309.08 460.77 310.11 457.77 308.38 Z"
fill="none" node-id="554" stroke="#5a78ec" stroke-linecap="butt" stroke-width="2"
target-height="22.716278" target-width="23.578949" target-x="446.89355" target-y="286.5035"></path>
<path
d="M 331.72 282.15 C 331.72 286.80 327.95 290.57 323.30 290.57 C 318.65 290.57 314.88 286.80 314.88 282.15 C 314.88 277.49 318.65 273.72 323.30 273.72 C 327.95 273.72 331.72 277.49 331.72 282.15 Z"
fill="#5a78ec" fill-rule="nonzero" node-id="556" stroke="none" target-height="16.843994"
target-width="16.843994" target-x="314.877" target-y="273.724"></path>
<path
d="M 178.92 463.37 L 154.86 460.65 C 152.28 460.35 150.98 457.38 152.53 455.29 L 166.91 435.81 C 168.46 433.72 171.69 434.09 172.72 436.47 L 182.40 458.67 C 183.43 461.05 181.50 463.66 178.92 463.37 Z"
fill="none" node-id="558" stroke="#5a78ec" stroke-linecap="butt" stroke-width="2"
target-height="28.908386" target-width="30.808258" target-x="151.86993" target-y="434.46262"></path>
<path
d="M 440.14 466.57 C 440.14 471.10 436.46 474.78 431.93 474.78 C 427.40 474.78 423.72 471.10 423.72 466.57 C 423.72 462.03 427.40 458.36 431.93 458.36 C 436.46 458.36 440.14 462.03 440.14 466.57 Z"
fill="none" node-id="560" stroke="#5a78ec" stroke-linecap="butt" stroke-width="2"
target-height="16.421997" target-width="16.421997" target-x="423.719" target-y="458.358"></path>
</svg>

After

Width:  |  Height:  |  Size: 60 KiB

6
src/icons/office.svg Normal file
View File

@ -0,0 +1,6 @@
<svg t="1679462172677" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="5971" width="64" height="64">
<path
d="M648.533333 1024h-3.413333l-546.133333-170.666667c-6.826667-3.413333-13.653333-10.24-10.24-20.48 0-10.24 6.826667-13.653333 17.066666-13.653333l559.786667 64.853333V143.36l-409.6 126.293333v430.08c0 6.826667-3.413333 13.653333-10.24 13.653334l-136.533333 68.266666c-6.826667 3.413333-10.24 3.413333-17.066667 0s-6.826667-10.24-6.826667-13.653333v-546.133333c0-6.826667 3.413333-13.653333 10.24-17.066667l529.066667-204.8h10.24l290.133333 68.266667c6.826667 3.413333 13.653333 10.24 13.653334 17.066666v819.2c0 6.826667-3.413333 13.653333-10.24 17.066667l-273.066667 102.4H648.533333zM283.306667 873.813333L648.533333 989.866667l256-95.573334V98.986667l-273.066666-64.853334-512 197.973334v505.173333l102.4-51.2V256c0-6.826667 3.413333-13.653333 13.653333-17.066667l443.733333-136.533333c6.826667 0 10.24 0 13.653334 3.413333 3.413333 3.413333 6.826667 6.826667 6.826666 13.653334v785.066666c0 3.413333-3.413333 10.24-6.826666 13.653334-3.413333 3.413333-6.826667 3.413333-13.653334 3.413333L283.306667 873.813333z"
fill="currentColor" p-id="5972"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

6
src/icons/qrcode.svg Normal file
View File

@ -0,0 +1,6 @@
<svg t="1680413645364" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="5387" width="64" height="64">
<path
d="M224 416.096V224l192-0.096 0.096 192.096L224 416.096zM416.096 160H223.904A64 64 0 0 0 160 223.904v192.192A64 64 0 0 0 223.904 480h192.192A64 64 0 0 0 480 416.096V223.904A64 64 0 0 0 416.096 160zM224 800.096V608l192-0.096 0.096 192.096L224 800.096zM416.096 544H223.904A64 64 0 0 0 160 607.904v192.192A64 64 0 0 0 223.904 864h192.192A64 64 0 0 0 480 800.096v-192.192A64 64 0 0 0 416.096 544zM608 416.096V224l192-0.096 0.096 192.096-192.096 0.096zM800.096 160h-192.192A64 64 0 0 0 544 223.904v192.192A64 64 0 0 0 607.904 480h192.192A64 64 0 0 0 864 416.096V223.904A64 64 0 0 0 800.096 160zM704 608a32 32 0 0 0-32 32v192a32 32 0 0 0 64 0v-192a32 32 0 0 0-32-32M576 608a32 32 0 0 0-32 32v192a32 32 0 0 0 64 0v-192a32 32 0 0 0-32-32M832 544a32 32 0 0 0-32 32v256a32 32 0 0 0 64 0v-256a32 32 0 0 0-32-32"
fill="currentColor" p-id="5388"></path>
</svg>

After

Width:  |  Height:  |  Size: 1010 B

6
src/icons/twitter.svg Normal file
View File

@ -0,0 +1,6 @@
<svg t="1680416858125" class="icon" viewBox="0 0 1024 1024" version="1.1"
xmlns="http://www.w3.org/2000/svg" p-id="5646" width="64" height="64">
<path
d="M919.759462 318.994613c0-9.605475-0.184234-19.102577-0.608696-28.534655 41.060787-30.595551 76.68666-68.894629 104.863684-112.720738a403.247526 403.247526 0 0 1-120.68436 33.017692c43.401647-26.708567 76.68666-69.423851 92.415219-120.68436-40.638132 24.645865-85.589515 42.265535-133.383889 51.446549-38.295465-43.575045-92.944441-71.329413-153.358869-72.360764-116.027926-1.918205-210.084998 96.132418-210.084999 218.973404 0 17.460724 1.826088 34.394031 5.451171 50.745736-174.722834-11.243716-329.55016-102.190479-433.116978-239.293373-18.071226 32.847907-28.438925 71.237296-28.438925 112.377556 0 77.811934 37.090717 146.970271 93.44657 187.779994-34.500598-1.560574-66.819283-12.009553-95.166091-29.141545v2.85744c0 108.752474 72.440238 199.870827 168.560013 221.13003-17.621477 5.012259-36.207475 7.62044-55.322696 7.526516a191.542349 191.542349 0 0 1-39.500214-4.325895c26.708567 89.120675 104.332655 154.231274 196.231295 156.400543-71.923659 59.635948-162.525433 95.258208-260.892145 95.00895-16.960401 0-33.720311-1.137918-50.15149-3.200621 93.011271 63.80109 203.418242 100.960443 322.104923 100.960443 386.350343 0.092117 597.636477-336.191629 597.636477-627.962902z"
fill="currentColor" p-id="5647"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,100 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-04-02
*
* @workspace ray-template
*
* @remark
*/
import {
NSpace,
NCard,
NTabs,
NTabPane,
NGradientText,
NDropdown,
NDivider,
NGrid,
NGridItem,
NSwitch,
NTooltip,
} from 'naive-ui'
import RayIcon from '@/components/RayIcon'
import { useSetting } from '@/store'
const ThemeSwitch = defineComponent({
name: 'ThemeSwitch',
setup() {
const { t } = useI18n()
const settingStore = useSetting()
const { changeSwitcher } = settingStore
const { themeValue } = storeToRefs(settingStore)
const handleRailStyle = ({ checked }: { checked: boolean }) => {
return checked
? {
backgroundColor: '#000000',
}
: {}
}
return {
t,
changeSwitcher,
themeValue,
handleRailStyle,
}
},
render() {
const { t } = this
return (
<NSpace justify="center">
<NTooltip>
{{
trigger: () => (
<NSwitch
v-model:value={this.themeValue}
railStyle={this.handleRailStyle.bind(this)}
onUpdateValue={(bool: boolean) =>
this.changeSwitcher(bool, 'themeValue')
}
>
{{
'checked-icon': () =>
h(
RayIcon,
{
name: 'dark',
},
{},
),
'unchecked-icon': () =>
h(
RayIcon,
{
name: 'light',
},
{},
),
checked: () => '亮',
unchecked: () => '暗',
}}
</NSwitch>
),
default: () =>
this.themeValue
? t('LayoutHeaderSettingOptions.ThemeOptions.Dark')
: t('LayoutHeaderSettingOptions.ThemeOptions.Light'),
}}
</NTooltip>
</NSpace>
)
},
})
export default ThemeSwitch

View File

@ -6,11 +6,11 @@ import {
NSpace,
NSwitch,
NColorPicker,
NTooltip,
NDescriptions,
NDescriptionsItem,
} from 'naive-ui'
import RayIcon from '@/components/RayIcon/index'
import ThemeSwitch from '@/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index'
import { useSwatchesColorOptions } from './hook'
import { useSetting } from '@/store'
@ -58,7 +58,7 @@ const SettingDrawer = defineComponent({
return {
modelShow,
ray: t,
t,
handleRailStyle,
changePrimaryColor,
themeValue,
@ -69,61 +69,22 @@ const SettingDrawer = defineComponent({
}
},
render() {
const { t } = this
return (
<NDrawer
v-model:show={this.modelShow}
placement={this.placement}
width={this.width}
>
<NDrawerContent title={this.ray('LayoutHeaderSettingOptions.Title')}>
<NDrawerContent title={t('LayoutHeaderSettingOptions.Title')}>
<NSpace class="setting-drawer__space" vertical>
<NDivider titlePlacement="center">
{this.ray('LayoutHeaderSettingOptions.ThemeOptions.Title')}
{t('LayoutHeaderSettingOptions.ThemeOptions.Title')}
</NDivider>
<NSpace justify="center">
<NTooltip>
{{
trigger: () => (
<NSwitch
v-model:value={this.themeValue}
railStyle={this.handleRailStyle.bind(this)}
onUpdateValue={(bool: boolean) =>
this.changeSwitcher(bool, 'themeValue')
}
>
{{
'checked-icon': () =>
h(
RayIcon,
{
name: 'dark',
},
{},
),
'unchecked-icon': () =>
h(
RayIcon,
{
name: 'light',
},
{},
),
}}
</NSwitch>
),
default: () =>
this.themeValue
? this.ray('LayoutHeaderSettingOptions.ThemeOptions.Dark')
: this.ray(
'LayoutHeaderSettingOptions.ThemeOptions.Light',
),
}}
</NTooltip>
</NSpace>
<ThemeSwitch />
<NDivider titlePlacement="center">
{this.ray(
'LayoutHeaderSettingOptions.ThemeOptions.PrimaryColorConfig',
)}
{t('LayoutHeaderSettingOptions.ThemeOptions.PrimaryColorConfig')}
</NDivider>
<NColorPicker
swatches={useSwatchesColorOptions()}

View File

@ -7,7 +7,6 @@ import SiderBar from './components/SiderBar/index'
import MenuTag from './components/MenuTag/index'
import { useSetting } from '@/store'
import { addClass, removeClass } from '@/utils/element'
const Layout = defineComponent({
name: 'Layout',
@ -39,30 +38,6 @@ const Layout = defineComponent({
layout: { copyright },
} = __APP_CFG__
watch(
() => themeValue.value,
(newData) => {
/**
*
* body class
*
* themeValue
*/
const body = document.body
const darkClassName = 'ray-template--dark'
const lightClassName = 'ray-template--light'
newData
? removeClass(body, lightClassName)
: removeClass(body, darkClassName)
addClass(body, newData ? darkClassName : lightClassName)
},
{
immediate: true,
},
)
return {
windowHeight,
modelReloadRoute,

18
src/office/index.ts Normal file
View File

@ -0,0 +1,18 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-22
*
* @workspace ray-template
*
* @remark
*/
import { getDetermineEnv } from '@use-utils/hook'
import request from '@/axios/instance'
export const getOfficeDocumentApi = async (uuid: string) => {
const { VITE_APP_OFFICE_PROXY_URL } = getDetermineEnv()
const { get } = request
}

View File

@ -8,9 +8,11 @@ import table from './table'
import doc from './doc'
import multiMenu from './multi-menu'
import docLocal from './doc-local'
import office from './office'
const routes = [
dashboard,
office,
echart,
table,
axios,

View File

@ -0,0 +1,36 @@
export default {
path: '/office',
name: 'office',
component: () => import('@/views/office/index'),
meta: {
i18nKey: 'Office',
icon: 'office',
hidden: true,
},
children: [
{
path: '/document',
name: 'document',
component: () => import('@/views/office/views/document/index'),
meta: {
i18nKey: 'Office_Document',
},
},
{
path: '/presentation',
name: 'presentation',
component: () => import('@/views/office/views/presentation/index'),
meta: {
i18nKey: 'Office_Presentation',
},
},
{
path: '/spreadsheet',
name: 'spreadsheet',
component: () => import('@/views/office/views/spreadsheet/index'),
meta: {
i18nKey: 'Office_Spreadsheet',
},
},
],
}

View File

@ -2,7 +2,7 @@ import { getDefaultLocal } from '@/language/index'
import { setCache } from '@use-utils/cache'
import type { ConditionalPick } from '@/types/type-utils'
import type { ConfigProviderProps, GlobalThemeOverrides } from 'naive-ui'
import type { GlobalThemeOverrides } from 'naive-ui'
interface SettingState {
drawerPlacement: NaiveDrawerPlacement
@ -18,12 +18,14 @@ interface SettingState {
export const useSetting = defineStore(
'setting',
() => {
const { primaryColor } = __APP_CFG__
const settingState = reactive<SettingState>({
drawerPlacement: 'right' as NaiveDrawerPlacement,
primaryColorOverride: {
common: {
primaryColor: '#2d8cf0', // 主题色
primaryColorHover: '#2d8cf0',
primaryColor: primaryColor, // 主题色
primaryColorHover: primaryColor,
},
},
themeValue: false, // `true` 为黑夜主题, `false` 为白色主题
@ -35,17 +37,23 @@ export const useSetting = defineStore(
})
const { locale } = useI18n()
/** 修改当前语言 */
const updateLocale = (key: string) => {
// TODO: 修改语言
locale.value = key
settingState.localeLanguage = key
setCache('localeLanguage', key, 'localStorage')
}
/** 切换主题色 */
const changePrimaryColor = (value: string) => {
settingState.primaryColorOverride.common!.primaryColor = value
settingState.primaryColorOverride.common!.primaryColorHover = value
const body = document.body
/** 设置主题色变量 */
body.style.setProperty('--ray-theme-primary-color', value)
}
/**

15
src/types/axios.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
export {}
declare global {
/**
*
*
*
*
*/
declare interface AxiosResponseBody<T = unknown> {
data: T
message: string
code: number
}
}

View File

@ -34,6 +34,7 @@ export interface Config {
sideBarLogo?: LayoutSideBarLogo
mixinCSS?: string
rootRoute?: RootRoute
primaryColor?: string
}
export type Recordable<T = unknown> = Record<string, T>
@ -50,6 +51,7 @@ export interface AppConfig {
sideBarLogo?: LayoutSideBarLogo
}
rootRoute: RootRoute
primaryColor: string
}
export type AppConfigExport = Config & UserConfigExport

View File

@ -1,5 +1,26 @@
export {}
import type { ECharts } from 'echarts/core'
import type {
MessageApi,
DialogApi,
LoadingBarApi,
NotificationApi,
MenuOption,
MenuDividerOption,
MenuGroupOption,
} from 'naive-ui'
import type { VNodeChild } from 'vue'
declare global {
declare type ComponentSize = 'small' | 'medium' | 'large'
declare type EChartsInstance = ECharts
declare type NaiveDrawerPlacement = 'top' | 'right' | 'bottom' | 'left'
declare type NaiveMenuOptions =
| MenuOption
| MenuDividerOption
| MenuGroupOption
}

54
src/types/index.d.ts vendored
View File

@ -1,27 +1,16 @@
export {}
import type CryptoJS from 'crypto-js'
import type {
MessageApi,
DialogApi,
LoadingBarApi,
NotificationApi,
MenuOption,
MenuDividerOption,
MenuGroupOption,
} from 'naive-ui'
import type { ECharts } from 'echarts/core'
import type { VNodeChild } from 'vue'
import type { LayoutSideBarLogo, LayoutCopyright, AppConfig } from './cfg'
import type { AppConfig } from './cfg'
export global {
declare const __APP_CFG__: AppConfig
declare type NaiveMenuOptions =
| MenuOption
| MenuDividerOption
| MenuGroupOption
declare interface Window {
// 是否存在无界
__POWERED_BY_WUJIE__?: boolean
@ -51,41 +40,10 @@ export global {
$dialog: DialogApi
$loadingBar: LoadingBarApi
$notification: NotificationApi
// eslint-disable-next-line @typescript-eslint/no-explicit-any
DocsAPI?: any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
DocEditor?: any
}
declare interface IUnknownObjectKey {
[propName: string]: unknown
}
declare type EventListenerOrEventListenerObject =
| EventListener
| EventListenerObject
declare type ValidteValueType =
| 'Number'
| 'String'
| 'Boolean'
| 'Object'
| 'Function'
| 'Null'
| 'Undefined'
| 'Array'
| 'Date'
| 'Math'
| 'RegExp'
| 'Error'
declare type WordArray = CryptoJS.lib.WordArray
declare type CipherOption = CryptoJS.lib.CipherOption
declare type CipherParams = CryptoJS.lib.CipherParams
declare type VoidFunc = (...args: unknown[]) => void
declare type NaiveDrawerPlacement = 'top' | 'right' | 'bottom' | 'left'
declare type AnyFunc = (...args: unknown[]) => unknown
declare type EChartsInstance = ECharts
}

38
src/types/utils.d.ts vendored Normal file
View File

@ -0,0 +1,38 @@
export {}
import type CryptoJS from 'crypto-js'
import type { VNodeChild } from 'vue'
export global {
declare interface IUnknownObjectKey {
[propName: string]: unknown
}
declare type EventListenerOrEventListenerObject =
| EventListener
| EventListenerObject
declare type ValidteValueType =
| 'Number'
| 'String'
| 'Boolean'
| 'Object'
| 'Function'
| 'Null'
| 'Undefined'
| 'Array'
| 'Date'
| 'Math'
| 'RegExp'
| 'Error'
declare type WordArray = CryptoJS.lib.WordArray
declare type CipherOption = CryptoJS.lib.CipherOption
declare type CipherParams = CryptoJS.lib.CipherParams
declare type VoidFunc = (...args: unknown[]) => void
declare type AnyFunc = (...args: unknown[]) => unknown
}

View File

@ -2,7 +2,7 @@
*
* @returns
*/
export const useDetermineEnv = () => {
export const getDetermineEnv = () => {
const env = import.meta.env
return env

View File

@ -45,7 +45,7 @@ const Axios = defineComponent({
try {
const cb = await onAxiosTest(value)
state.weatherData = cb.data as unknown as IUnknownObjectKey[]
state.weatherData = cb.data
} catch (e) {
window.$message.error('请求已被取消')
}
@ -53,7 +53,8 @@ const Axios = defineComponent({
onBeforeMount(async () => {
const cb = await onAxiosTest('成都')
state.weatherData = cb.data as unknown as IUnknownObjectKey[]
state.weatherData = cb.data
})
return {

View File

@ -0,0 +1,5 @@
.qrcode-signin {
width: 100%;
height: 220px;
@include flexCenter;
}

View File

@ -0,0 +1,43 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-04-02
*
* @workspace ray-template
*
* @remark
*/
import './index.scss'
import QRCode from 'qrcode.vue'
/**
*
*
*
*
*/
const QRCodeSignin = defineComponent({
name: 'QRCodeSignin',
setup() {
const qrcodeState = reactive({
qrcodeValue: 'https://github.com/XiaoDaiGua-Ray/xiaodaigua-ray.github.io',
})
return {
...toRefs(qrcodeState),
}
},
render() {
return (
<div class="qrcode-signin">
<QRCode value={this.qrcodeValue} size={200} />
</div>
)
},
})
export default QRCodeSignin

View File

@ -0,0 +1,5 @@
.ray-template--light {
& .sso-signin {
color: #878787;
}
}

View File

@ -0,0 +1,83 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-04-02
*
* @workspace ray-template
*
* @remark
*/
/**
*
* SSO
*
*
*/
import './index.scss'
import { NSpace, NPopover } from 'naive-ui'
import RayIcon from '@/components/RayIcon/index'
interface SSOSigninOptions {
icon: string
key: string
tooltipLabel: string
}
const SSOSignin = defineComponent({
name: 'SSOSignin',
setup() {
const ssoSigninOptions = [
{
icon: 'github',
key: 'github',
tooltipLabel: 'Github登陆',
},
{
icon: 'google',
key: 'google',
tooltipLabel: 'Google登陆',
},
{
icon: 'twitter',
key: 'twitter',
tooltipLabel: 'Twitter登陆',
},
]
const handleSSOSigninClick = (option: SSOSigninOptions) => {
window.$message.info(`调用${option.tooltipLabel}`)
}
return {
ssoSigninOptions,
handleSSOSigninClick,
}
},
render() {
return (
<NSpace class="sso-signin" align="center" itemStyle={{ display: 'flex' }}>
{this.ssoSigninOptions.map((curr) => (
<NPopover>
{{
trigger: () => (
<RayIcon
name={curr.icon}
size="24"
cursorPointer
onClick={this.handleSSOSigninClick.bind(this, curr)}
/>
),
default: () => curr.tooltipLabel,
}}
</NPopover>
))}
</NSpace>
)
},
})
export default SSOSignin

View File

@ -1,4 +1,5 @@
import { NForm, NFormItem, NInput, NButton } from 'naive-ui'
import { NForm, NFormItem, NInput, NButton, NSpace, NDivider } from 'naive-ui'
import { setCache } from '@/utils/cache'
import { useSpin } from '@/spin'
import { useSignin } from '@/store'
@ -8,6 +9,8 @@ import type { FormInst } from 'naive-ui'
const Signin = defineComponent({
name: 'Signin',
setup() {
const loginFormRef = ref<FormInst>()
const { t } = useI18n()
const signinStore = useSignin()
@ -23,7 +26,6 @@ const Signin = defineComponent({
const router = useRouter()
const signinForm = ref(useSigninForm())
const loginFormRef = ref<FormInst>()
const rules = {
name: {
@ -37,6 +39,8 @@ const Signin = defineComponent({
trigger: ['blur', 'input'],
},
}
/** 普通登陆形式 */
const handleLogin = () => {
loginFormRef.value?.validate((valid) => {
if (!valid) {
@ -69,19 +73,21 @@ const Signin = defineComponent({
}
},
render() {
const { t } = this
return (
<NForm model={this.signinForm} ref="loginFormRef" rules={this.rules}>
<NFormItem label={this.t('LoginModule.Name')} path="name">
<NFormItem label={t('LoginModule.Name')} path="name">
<NInput
v-model:value={this.signinForm.name}
placeholder={this.t('LoginModule.NamePlaceholder')}
placeholder={t('LoginModule.NamePlaceholder')}
/>
</NFormItem>
<NFormItem label={this.t('LoginModule.Password')} path="pwd">
<NFormItem label={t('LoginModule.Password')} path="pwd">
<NInput
v-model:value={this.signinForm.pwd}
type="password"
placeholder={this.t('LoginModule.PasswordPlaceholder')}
placeholder={t('LoginModule.PasswordPlaceholder')}
/>
</NFormItem>
<NButton
@ -89,7 +95,7 @@ const Signin = defineComponent({
type="primary"
onClick={this.handleLogin.bind(this)}
>
{this.t('LoginModule.Login')}
{t('LoginModule.Login')}
</NButton>
</NForm>
)

View File

@ -1,18 +1,94 @@
$positionX: 24px;
$positionY: 24px;
.login {
@include flexCenter;
flex-direction: column;
font-size: 36px;
display: flex;
& .login-title {
padding: 18px 0;
}
& .login-wrapper {
position: relative;
flex: auto;
& .login-icon {
border: none;
outline: none;
}
&.login-wrapper--divider {
position: relative;
& .n-card {
width: 360px;
&::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
background: linear-gradient(135deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%),
linear-gradient(45deg, transparent, transparent 75%, #2080f0, transparent 80%, transparent 100%);
background-size: 1em 1em;
background-repeat: repeat-x, repeat-x;
transform: rotate(90deg);
}
}
& .login-title__wrapper {
position: absolute;
left: $positionX;
top: $positionY;
}
& .login-action__wrapper {
position: absolute;
height: 54.4px;
right: $positionX;
top: $positionY;
}
& .login-copyright__wrapper {
position: absolute;
width: 100%;
text-align: center;
bottom: $positionY;
font-size: 14px;
}
& .login-wrapper__content {
width: 100%;
height: 100%;
& .n-grid {
height: 100%;
}
& .login__left-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: background-color 0.3s var(--r-bezier);
}
& .login__right-wrapper {
@include flexCenter;
& .login__right-wrapper__content {
width: 50%;
background-color: transparent;
}
}
}
}
}
.ray-template--light {
& .login__left-wrapper {
background-color: rgba(32, 128, 240, 0.22);
}
& .login__right-wrapper {
background-color: #ffffff;
}
}
.ray-template--dark {
& .login__left-wrapper {
background-color: #2c354b;
}
& .login__right-wrapper {
background-color: #2a3146;
}
}

View File

@ -1,4 +1,5 @@
import './index.scss'
import {
NSpace,
NCard,
@ -7,22 +8,33 @@ import {
NGradientText,
NDropdown,
NDivider,
NGrid,
NGridItem,
} from 'naive-ui'
import Signin from './components/Signin/index'
import Register from './components/Register/index'
import { useSetting } from '@/store'
import QRCodeSignin from './components/QRCodeSignin/index'
import SSOSignin from './components/SSOSignin/index'
import RayIcon from '@/components/RayIcon'
import { localOptions } from '@/language/index'
import RayLink from '@/components/RayLink/index'
import ThemeSwitch from '@/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index'
import { useSetting } from '@/store'
import { localOptions } from '@/language/index'
const Login = defineComponent({
name: 'Login',
setup() {
const { t } = useI18n()
const {
layout: { copyright },
} = __APP_CFG__
const state = reactive({
tabsValue: 'signin',
})
const { t } = useI18n()
const { height: windowHeight } = useWindowSize()
const { height: windowHeight, width: windowWidth } = useWindowSize()
const settingStore = useSetting()
const { updateLocale } = settingStore
@ -30,35 +42,115 @@ const Login = defineComponent({
...toRefs(state),
windowHeight,
updateLocale,
ray: t,
t,
copyright,
windowWidth,
}
},
render() {
const { t } = this
return (
<div class={['login']} style={[`height: ${this.windowHeight}px`]}>
<NSpace>
<NGradientText class="login-title" type="info">
Ray Template
</NGradientText>
<NDropdown
options={localOptions}
onSelect={(key) => this.updateLocale(key)}
>
<RayIcon customClassName="login-icon" name="language" size="18" />
</NDropdown>
</NSpace>
<NCard>
<NTabs v-model:value={this.tabsValue}>
<NTabPane tab={this.ray('LoginModule.Signin')} name="signin">
<Signin />
</NTabPane>
<NTabPane tab={this.ray('LoginModule.Register')} name="register">
<Register />
</NTabPane>
</NTabs>
<NDivider></NDivider>
<RayLink />
</NCard>
<div
class={[
'login-wrapper',
this.windowWidth >= 1200 ? 'login-wrapper--divider' : '',
]}
>
<div class={['login-wrapper__content']}>
<NSpace align="center" class="login-title__wrapper">
<RayIcon name="ray" size="48" />
<NGradientText class="login-title" type="info" size={28}>
Ray Template
</NGradientText>
</NSpace>
<NSpace
align="center"
class="login-action__wrapper"
itemStyle={{
display: 'flex',
}}
>
<ThemeSwitch />
<NDropdown
options={localOptions}
onSelect={(key) => this.updateLocale(key)}
>
<RayIcon
customClassName="login-icon"
name="language"
size="18"
/>
</NDropdown>
</NSpace>
<NGrid
cols={'s:1 m:1 l:2 xl:2 2xl:2'}
itemResponsive={false}
responsive="screen"
>
<NGridItem
span={'s:0 m:0 l:1 xl:1 2xl:1'}
class="login__left-wrapper"
>
<NSpace align="center" vertical>
<RayIcon name="login_bg" width="368" height="368" />
<NGradientText class="login-title" type="info" size={36}>
</NGradientText>
</NSpace>
</NGridItem>
<NGridItem span={1} class="login__right-wrapper">
<NCard
class="login__right-wrapper__content"
embedded
bordered={false}
>
<NTabs
v-model:value={this.tabsValue}
type="line"
animated
size="large"
>
{{
default: () => (
<>
<NTabPane tab={t('LoginModule.Signin')} name="signin">
<Signin />
</NTabPane>
<NTabPane
tab={t('LoginModule.Register')}
name="register"
>
<Register />
</NTabPane>
<NTabPane
tab={t('LoginModule.QRCodeSignin')}
name="qrcodeSignin"
>
<QRCodeSignin />
</NTabPane>
</>
),
}}
</NTabs>
<NDivider></NDivider>
<SSOSignin />
<NDivider></NDivider>
<RayLink />
</NCard>
</NGridItem>
</NGrid>
<NSpace
align="center"
justify="center"
class="login-copyright__wrapper"
wrapItem={false}
>
{this.copyright}
</NSpace>
</div>
</div>
</div>
)
},

View File

@ -0,0 +1,21 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-22
*
* @workspace ray-template
*
* @remark
*/
import { RouterView } from 'vue-router'
const Office = defineComponent({
name: 'Office',
render() {
return <RouterView />
},
})
export default Office

View File

@ -0,0 +1,57 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-22
*
* @workspace ray-template
*
* @remark
*/
import { uuid } from '@/utils/hook'
import type { PropType } from 'vue'
const Document = defineComponent({
name: 'Document',
setup() {
const editorUUID = uuid()
const state = reactive({})
const config = {
document: {
fileType: 'docx',
key: editorUUID,
title: 'Example Document Title.docx',
url: 'https://example.com/url-to-example-document.docx',
},
documentType: 'word',
authorization: 'a2122252',
token: 'a2122252',
Authorization: 'a2122252',
editorConfig: {
lang: 'zh-cn',
},
}
const registerEdtior = () => {
const uid = uuid(12)
}
onMounted(() => {
nextTick(() => {
registerEdtior()
})
})
return {
...toRefs(state),
editorUUID,
}
},
render() {
return <div> </div>
},
})
export default Document

View File

@ -0,0 +1,24 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-22
*
* @workspace ray-template
*
* @remark
*/
import type { PropType } from 'vue'
const Presentation = defineComponent({
name: 'Presentation',
setup() {
return {}
},
render() {
return <div></div>
},
})
export default Presentation

View File

@ -0,0 +1,24 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-03-22
*
* @workspace ray-template
*
* @remark
*/
import type { PropType } from 'vue'
const Spreadsheet = defineComponent({
name: 'Spreadsheet',
setup() {
return {}
},
render() {
return <div></div>
},
})
export default Spreadsheet

View File

@ -25,7 +25,8 @@
"@use-micro/*": ["src/micro/*"]
},
"suppressImplicitAnyIndexErrors": true,
"types": ["@intlify/unplugin-vue-i18n/messages", "naive-ui/volar"]
"types": ["@intlify/unplugin-vue-i18n/messages", "naive-ui/volar"],
"ignoreDeprecations": "5.0"
},
"include": [
"src/**/*.ts",

View File

@ -32,6 +32,7 @@ const {
sideBarLogo,
mixinCSS,
rootRoute,
primaryColor,
} = config
/**
@ -51,6 +52,7 @@ const __APP_CFG__ = {
sideBarLogo,
},
rootRoute,
primaryColor,
}
// https://vitejs.dev/config/