mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-11-05 20:36:09 +08:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8697382a1 | |||
| 47f7885f19 | |||
| 9c34d682c4 | |||
| 87d4811509 | |||
| d082883bc5 |
@ -1,3 +1,7 @@
|
|||||||
|
## 6.5.5
|
||||||
|
|
||||||
|
* Removed the custom element registration enhancement for strict CSP builds so that they won't contain `new Function`.
|
||||||
|
|
||||||
## 6.5.4
|
## 6.5.4
|
||||||
|
|
||||||
* Cleaned up the `console.log` call sneaked in by mistake.
|
* Cleaned up the `console.log` call sneaked in by mistake.
|
||||||
|
|||||||
14
README.md
14
README.md
@ -225,9 +225,9 @@ Drop `<script>` inside your HTML file and access the component via `window.VueEC
|
|||||||
|
|
||||||
<!-- vue3Scripts:start -->
|
<!-- vue3Scripts:start -->
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.45"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.4"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.1"></script>
|
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.5.4"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.6.0"></script>
|
||||||
```
|
```
|
||||||
<!-- vue3Scripts:end -->
|
<!-- vue3Scripts:end -->
|
||||||
|
|
||||||
@ -246,8 +246,8 @@ app.component('v-chart', VueECharts)
|
|||||||
<!-- vue2Scripts:start -->
|
<!-- vue2Scripts:start -->
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.1"></script>
|
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.5.4"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.6.0"></script>
|
||||||
```
|
```
|
||||||
<!-- vue2Scripts:end -->
|
<!-- vue2Scripts:end -->
|
||||||
|
|
||||||
@ -290,9 +290,9 @@ See more examples [here](https://github.com/ecomfe/vue-echarts/tree/main/src/dem
|
|||||||
|
|
||||||
Group name to be used in chart [connection](https://echarts.apache.org/en/api.html#echarts.connect). See `echartsInstance.group` [here →](https://echarts.apache.org/en/api.html#echartsInstance.group)
|
Group name to be used in chart [connection](https://echarts.apache.org/en/api.html#echarts.connect). See `echartsInstance.group` [here →](https://echarts.apache.org/en/api.html#echartsInstance.group)
|
||||||
|
|
||||||
- `autoresize: boolean` (default: `false`)
|
- `autoresize: boolean | { throttle?: number, onResize?: () => void }` (default: `false`)
|
||||||
|
|
||||||
Whether the chart should be resized automatically whenever its root is resized.
|
Whether the chart should be resized automatically whenever its root is resized. Use the options object to specify a custom throttle delay (in milliseconds) and/or an extra resize callback function.
|
||||||
|
|
||||||
- `loading: boolean` (default: `false`)
|
- `loading: boolean` (default: `false`)
|
||||||
|
|
||||||
|
|||||||
@ -225,9 +225,9 @@ import "echarts";
|
|||||||
|
|
||||||
<!-- vue3Scripts:start -->
|
<!-- vue3Scripts:start -->
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.45"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue@3.3.4"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.1"></script>
|
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.5.4"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.6.0"></script>
|
||||||
```
|
```
|
||||||
<!-- vue3Scripts:end -->
|
<!-- vue3Scripts:end -->
|
||||||
|
|
||||||
@ -246,8 +246,8 @@ app.component('v-chart', VueECharts)
|
|||||||
<!-- vue2Scripts:start -->
|
<!-- vue2Scripts:start -->
|
||||||
```html
|
```html
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.1"></script>
|
<script src="https://cdn.jsdelivr.net/npm/echarts@5.4.2"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.5.4"></script>
|
<script src="https://cdn.jsdelivr.net/npm/vue-echarts@6.6.0"></script>
|
||||||
```
|
```
|
||||||
<!-- vue2Scripts:end -->
|
<!-- vue2Scripts:end -->
|
||||||
|
|
||||||
@ -290,9 +290,9 @@ Vue.component("v-chart", VueECharts);
|
|||||||
|
|
||||||
图表的分组,用于[联动](https://echarts.apache.org/zh/api.html#echarts.connect)。请参考 `echartsInstance.group`。[前往 →](https://echarts.apache.org/zh/api.html#echartsInstance.group)
|
图表的分组,用于[联动](https://echarts.apache.org/zh/api.html#echarts.connect)。请参考 `echartsInstance.group`。[前往 →](https://echarts.apache.org/zh/api.html#echartsInstance.group)
|
||||||
|
|
||||||
- `autoresize: boolean`(默认值`false`)
|
- `autoresize: boolean | { throttle?: number, onResize?: () => void }`(默认值`false`)
|
||||||
|
|
||||||
图表在组件根元素尺寸变化时是否需要自动进行重绘。
|
图表在组件根元素尺寸变化时是否需要自动进行重绘。也可以传入一个选项对象来指定自定义的节流延迟和尺寸变化时的额外回调函数。
|
||||||
|
|
||||||
- `loading: boolean`(默认值:`false`)
|
- `loading: boolean`(默认值:`false`)
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-echarts",
|
"name": "vue-echarts",
|
||||||
"version": "6.5.4",
|
"version": "6.6.0",
|
||||||
"description": "Vue.js component for Apache ECharts.",
|
"description": "Vue.js component for Apache ECharts.",
|
||||||
"author": "GU Yiling <justice360@gmail.com>",
|
"author": "GU Yiling <justice360@gmail.com>",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -28,6 +28,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.18.6",
|
"@babel/core": "^7.18.6",
|
||||||
"@rollup/plugin-node-resolve": "^11.2.1",
|
"@rollup/plugin-node-resolve": "^11.2.1",
|
||||||
|
"@rollup/plugin-replace": "^5.0.2",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
||||||
"@typescript-eslint/parser": "^4.33.0",
|
"@typescript-eslint/parser": "^4.33.0",
|
||||||
"@vue/cli-plugin-babel": "^5.0.7",
|
"@vue/cli-plugin-babel": "^5.0.7",
|
||||||
@ -45,6 +46,7 @@
|
|||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-plugin-prettier": "^3.4.1",
|
"eslint-plugin-prettier": "^3.4.1",
|
||||||
"eslint-plugin-vue": "^8.7.1",
|
"eslint-plugin-vue": "^8.7.1",
|
||||||
|
"pinia": "^2.1.3",
|
||||||
"postcss": "^8.4.14",
|
"postcss": "^8.4.14",
|
||||||
"postcss-loader": "^5.3.0",
|
"postcss-loader": "^5.3.0",
|
||||||
"postcss-nested": "^5.0.6",
|
"postcss-nested": "^5.0.6",
|
||||||
@ -60,7 +62,7 @@
|
|||||||
"rollup-plugin-ts": "^2.0.7",
|
"rollup-plugin-ts": "^2.0.7",
|
||||||
"tslib": "^2.4.0",
|
"tslib": "^2.4.0",
|
||||||
"typescript": "4.6.4",
|
"typescript": "4.6.4",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.3.4",
|
||||||
"vue2": "npm:vue@^2.7.14",
|
"vue2": "npm:vue@^2.7.14",
|
||||||
"webpack": "^5.73.0"
|
"webpack": "^5.73.0"
|
||||||
},
|
},
|
||||||
|
|||||||
2982
pnpm-lock.yaml
generated
2982
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,25 +1,28 @@
|
|||||||
import typescript from "rollup-plugin-ts";
|
import typescript from "rollup-plugin-ts";
|
||||||
import { terser } from "rollup-plugin-terser";
|
import { terser } from "rollup-plugin-terser";
|
||||||
import resolve from "@rollup/plugin-node-resolve";
|
import resolve from "@rollup/plugin-node-resolve";
|
||||||
|
import replace from "@rollup/plugin-replace";
|
||||||
import styles from "rollup-plugin-styles";
|
import styles from "rollup-plugin-styles";
|
||||||
import { injectVueDemi } from "./scripts/rollup";
|
import { injectVueDemi } from "./scripts/rollup";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert Rollup option to a style extracted/injected version
|
* Modifies the Rollup options for a build to support strict CSP
|
||||||
* @param {import('rollup').RollupOptions} option
|
* @param {import('rollup').RollupOptions} options the original options
|
||||||
* @param {boolean} extract
|
* @param {boolean} csp whether to support strict CSP
|
||||||
* @returns {import('rollup').RollupOptions}
|
* @returns {import('rollup').RollupOptions} the modified options
|
||||||
*/
|
*/
|
||||||
function handleStyle(option, extract) {
|
function configBuild(options, csp) {
|
||||||
// inject styles plugin
|
const result = { ...options };
|
||||||
const result = { ...option };
|
|
||||||
const { plugins, output } = result;
|
const { plugins, output } = result;
|
||||||
result.plugins = (plugins || []).concat(
|
|
||||||
extract ? styles({ mode: ["extract", "style.css"] }) : styles()
|
result.plugins = [
|
||||||
);
|
...(csp ? [replace({ __CSP__: `${csp}`, preventAssignment: true })] : []),
|
||||||
|
...plugins,
|
||||||
|
csp ? styles({ mode: ["extract", "style.css"] }) : styles()
|
||||||
|
];
|
||||||
|
|
||||||
// modify output file names
|
// modify output file names
|
||||||
if (extract && output) {
|
if (csp && output) {
|
||||||
result.output = (Array.isArray(output) ? output : [output]).map(output => {
|
result.output = (Array.isArray(output) ? output : [output]).map(output => {
|
||||||
return {
|
return {
|
||||||
...output,
|
...output,
|
||||||
@ -33,7 +36,7 @@ function handleStyle(option, extract) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** @type {import('rollup').RollupOptions[]} */
|
/** @type {import('rollup').RollupOptions[]} */
|
||||||
const options = [
|
const builds = [
|
||||||
{
|
{
|
||||||
input: "src/index.ts",
|
input: "src/index.ts",
|
||||||
plugins: [
|
plugins: [
|
||||||
@ -133,6 +136,6 @@ const options = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
...options.map(option => handleStyle(option, false)),
|
...builds.map(options => configBuild(options, false)),
|
||||||
...options.map(option => handleStyle(option, true))
|
...builds.map(options => configBuild(options, true))
|
||||||
];
|
];
|
||||||
|
|||||||
@ -8,9 +8,9 @@ const { readFile, writeFile } = fs.promises;
|
|||||||
const CDN_PREFIX = "https://cdn.jsdelivr.net/npm/";
|
const CDN_PREFIX = "https://cdn.jsdelivr.net/npm/";
|
||||||
|
|
||||||
const DEP_VERSIONS = {
|
const DEP_VERSIONS = {
|
||||||
"vue@3": "3.2.45",
|
"vue@3": "3.3.4",
|
||||||
"vue@2": "2.7.14",
|
"vue@2": "2.7.14",
|
||||||
echarts: "5.4.1",
|
echarts: "5.4.2",
|
||||||
[name]: version
|
[name]: version
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,8 @@ import { omitOn, unwrapInjected } from "./utils";
|
|||||||
import { register, TAG_NAME, type EChartsElement } from "./wc";
|
import { register, TAG_NAME, type EChartsElement } from "./wc";
|
||||||
import "./style.css";
|
import "./style.css";
|
||||||
|
|
||||||
const wcRegistered = register();
|
const __CSP__ = false;
|
||||||
|
const wcRegistered = __CSP__ ? false : register();
|
||||||
|
|
||||||
if (Vue2) {
|
if (Vue2) {
|
||||||
Vue2.config.ignoredElements.push(TAG_NAME);
|
Vue2.config.ignoredElements.push(TAG_NAME);
|
||||||
|
|||||||
@ -1,26 +1,42 @@
|
|||||||
import { Ref, watch } from "vue-demi";
|
import { watch, type Ref, type PropType } from "vue-demi";
|
||||||
import { throttle } from "echarts/core";
|
import { throttle } from "echarts/core";
|
||||||
import { addListener, removeListener, ResizeCallback } from "resize-detector";
|
import {
|
||||||
import { EChartsType } from "../types";
|
addListener,
|
||||||
|
removeListener,
|
||||||
|
type ResizeCallback
|
||||||
|
} from "resize-detector";
|
||||||
|
import { type EChartsType } from "../types";
|
||||||
|
|
||||||
|
type AutoresizeProp =
|
||||||
|
| boolean
|
||||||
|
| {
|
||||||
|
throttle?: number;
|
||||||
|
onResize?: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
export function useAutoresize(
|
export function useAutoresize(
|
||||||
chart: Ref<EChartsType | undefined>,
|
chart: Ref<EChartsType | undefined>,
|
||||||
autoresize: Ref<boolean>,
|
autoresize: Ref<AutoresizeProp | undefined>,
|
||||||
root: Ref<HTMLElement | undefined>
|
root: Ref<HTMLElement | undefined>
|
||||||
): void {
|
): void {
|
||||||
let resizeListener: ResizeCallback | null = null;
|
let resizeListener: ResizeCallback | null = null;
|
||||||
|
|
||||||
watch([root, chart, autoresize], ([root, chart, autoresize], _, cleanup) => {
|
watch([root, chart, autoresize], ([root, chart, autoresize], _, cleanup) => {
|
||||||
if (root && chart && autoresize) {
|
if (root && chart && autoresize) {
|
||||||
resizeListener = throttle(() => {
|
const autoresizeOptions = autoresize === true ? {} : autoresize;
|
||||||
chart.resize();
|
const { throttle: wait = 100, onResize } = autoresizeOptions;
|
||||||
}, 100);
|
|
||||||
|
|
||||||
|
const callback = () => {
|
||||||
|
chart.resize();
|
||||||
|
onResize?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
resizeListener = wait ? throttle(callback, wait) : callback;
|
||||||
addListener(root, resizeListener);
|
addListener(root, resizeListener);
|
||||||
}
|
}
|
||||||
|
|
||||||
cleanup(() => {
|
cleanup(() => {
|
||||||
if (resizeListener && root) {
|
if (root && resizeListener) {
|
||||||
removeListener(root, resizeListener);
|
removeListener(root, resizeListener);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -28,5 +44,5 @@ export function useAutoresize(
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const autoresizeProps = {
|
export const autoresizeProps = {
|
||||||
autoresize: Boolean
|
autoresize: [Boolean, Object] as PropType<AutoresizeProp>
|
||||||
};
|
};
|
||||||
|
|||||||
@ -4,21 +4,20 @@ import {
|
|||||||
computed,
|
computed,
|
||||||
watchEffect,
|
watchEffect,
|
||||||
type Ref,
|
type Ref,
|
||||||
type InjectionKey
|
type InjectionKey,
|
||||||
|
type PropType
|
||||||
} from "vue-demi";
|
} from "vue-demi";
|
||||||
import { EChartsType } from "../types";
|
import type { EChartsType, LoadingOptions } from "../types";
|
||||||
|
|
||||||
export const LOADING_OPTIONS_KEY =
|
export const LOADING_OPTIONS_KEY =
|
||||||
"ecLoadingOptions" as unknown as InjectionKey<
|
"ecLoadingOptions" as unknown as InjectionKey<
|
||||||
UnknownRecord | Ref<UnknownRecord>
|
LoadingOptions | Ref<LoadingOptions>
|
||||||
>;
|
>;
|
||||||
|
|
||||||
type UnknownRecord = Record<string, unknown>;
|
|
||||||
|
|
||||||
export function useLoading(
|
export function useLoading(
|
||||||
chart: Ref<EChartsType | undefined>,
|
chart: Ref<EChartsType | undefined>,
|
||||||
loading: Ref<boolean>,
|
loading: Ref<boolean>,
|
||||||
loadingOptions: Ref<UnknownRecord | undefined>
|
loadingOptions: Ref<LoadingOptions | undefined>
|
||||||
): void {
|
): void {
|
||||||
const defaultLoadingOptions = inject(LOADING_OPTIONS_KEY, {});
|
const defaultLoadingOptions = inject(LOADING_OPTIONS_KEY, {});
|
||||||
const realLoadingOptions = computed(() => ({
|
const realLoadingOptions = computed(() => ({
|
||||||
@ -42,5 +41,5 @@ export function useLoading(
|
|||||||
|
|
||||||
export const loadingProps = {
|
export const loadingProps = {
|
||||||
loading: Boolean,
|
loading: Boolean,
|
||||||
loadingOptions: Object
|
loadingOptions: Object as PropType<LoadingOptions>
|
||||||
};
|
};
|
||||||
|
|||||||
@ -165,8 +165,8 @@
|
|||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- <h2 id="radar">
|
<h2 id="radar">
|
||||||
<a href="#radar">Radar chart <small>(with Vuex integration)</small></a>
|
<a href="#radar">Radar chart <small>(with Pinia integration)</small></a>
|
||||||
<button
|
<button
|
||||||
:class="{
|
:class="{
|
||||||
round: true,
|
round: true,
|
||||||
@ -179,20 +179,35 @@
|
|||||||
<section v-if="expand.radar">
|
<section v-if="expand.radar">
|
||||||
<figure>
|
<figure>
|
||||||
<v-chart
|
<v-chart
|
||||||
class="echarts" :option="scoreRadar" :init-options="initOptions" autoresize />
|
:option="getRadarData(metricIndex)"
|
||||||
|
:init-options="initOptions"
|
||||||
|
autoresize
|
||||||
|
/>
|
||||||
</figure>
|
</figure>
|
||||||
<p>
|
<p>
|
||||||
<select v-model="metricIndex">
|
<select v-model="metricIndex">
|
||||||
<option v-for="(metric, index) in metrics" :value="index" :key="index"
|
<option
|
||||||
>{{ metric }}
|
v-for="(metric, index) in metrics"
|
||||||
|
:value="index"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
|
{{ metric }}
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
<button @click="increase(1)" :disabled="isMax">Increase</button>
|
<button
|
||||||
<button @click="increase(-1)" :disabled="isMin">Decrease</button>
|
@click="increase(metricIndex, 1)"
|
||||||
<input id="async" type="checkbox" v-model="asyncCount" />
|
:disabled="isMax(metricIndex)"
|
||||||
<label for="async">Async</label>
|
>
|
||||||
|
Increase
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
@click="increase(metricIndex, -1)"
|
||||||
|
:disabled="isMin(metricIndex)"
|
||||||
|
>
|
||||||
|
Decrease
|
||||||
|
</button>
|
||||||
</p>
|
</p>
|
||||||
</section>-->
|
</section>
|
||||||
|
|
||||||
<h2 id="connect">
|
<h2 id="connect">
|
||||||
<a href="#connect">Connectable charts</a>
|
<a href="#connect">Connectable charts</a>
|
||||||
@ -334,6 +349,7 @@ import {
|
|||||||
} from "echarts/components";
|
} from "echarts/components";
|
||||||
import { CanvasRenderer, SVGRenderer } from "echarts/renderers";
|
import { CanvasRenderer, SVGRenderer } from "echarts/renderers";
|
||||||
import "echarts-liquidfill";
|
import "echarts-liquidfill";
|
||||||
|
import { mapState, mapActions } from "pinia";
|
||||||
import logo from "./data/logo";
|
import logo from "./data/logo";
|
||||||
import getBar from "./data/bar";
|
import getBar from "./data/bar";
|
||||||
import pie from "./data/pie";
|
import pie from "./data/pie";
|
||||||
@ -341,6 +357,7 @@ import polar from "./data/polar";
|
|||||||
import scatter from "./data/scatter";
|
import scatter from "./data/scatter";
|
||||||
import map from "./data/map";
|
import map from "./data/map";
|
||||||
import { c1, c2 } from "./data/connect";
|
import { c1, c2 } from "./data/connect";
|
||||||
|
import { useScoreStore } from "./store";
|
||||||
|
|
||||||
// custom theme
|
// custom theme
|
||||||
import theme from "./theme.json";
|
import theme from "./theme.json";
|
||||||
@ -434,6 +451,15 @@ export default {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
computed: {
|
||||||
|
autoresize() {
|
||||||
|
return { throttle: 200, onResize: this.handleResize };
|
||||||
|
},
|
||||||
|
...mapState(useScoreStore, ["scores"]),
|
||||||
|
metrics() {
|
||||||
|
return this.scores.map(({ name }) => name);
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleClick(...args) {
|
handleClick(...args) {
|
||||||
console.log("click from echarts", ...args);
|
console.log("click from echarts", ...args);
|
||||||
@ -441,6 +467,9 @@ export default {
|
|||||||
handleZrClick(...args) {
|
handleZrClick(...args) {
|
||||||
console.log("click from zrender", ...args);
|
console.log("click from zrender", ...args);
|
||||||
},
|
},
|
||||||
|
handleResize() {
|
||||||
|
console.log("resize");
|
||||||
|
},
|
||||||
refresh() {
|
refresh() {
|
||||||
// simulating async data from server
|
// simulating async data from server
|
||||||
this.seconds = 3;
|
this.seconds = 3;
|
||||||
@ -566,7 +595,8 @@ export default {
|
|||||||
},
|
},
|
||||||
stopActions() {
|
stopActions() {
|
||||||
clearInterval(this.actionTimer);
|
clearInterval(this.actionTimer);
|
||||||
}
|
},
|
||||||
|
...mapActions(useScoreStore, ["getRadarData", "increase", "isMax", "isMin"])
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
connected: {
|
connected: {
|
||||||
|
|||||||
@ -1,4 +1,8 @@
|
|||||||
import { createApp } from "vue";
|
import { createApp } from "vue";
|
||||||
|
import { createPinia } from "pinia";
|
||||||
import Demo from "./Demo.vue";
|
import Demo from "./Demo.vue";
|
||||||
|
|
||||||
createApp(Demo).mount("#app");
|
const pinia = createPinia();
|
||||||
|
const app = createApp(Demo);
|
||||||
|
app.use(pinia);
|
||||||
|
app.mount("#app");
|
||||||
|
|||||||
76
src/demo/store.ts
Normal file
76
src/demo/store.ts
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
import { defineStore } from "pinia";
|
||||||
|
|
||||||
|
export const useScoreStore = defineStore("score", {
|
||||||
|
state: () => {
|
||||||
|
return {
|
||||||
|
scores: [
|
||||||
|
{ name: "Attack", max: 20, value: 19 },
|
||||||
|
{ name: "Defense", max: 20, value: 9 },
|
||||||
|
{ name: "Speed", max: 20, value: 18 },
|
||||||
|
{ name: "Strength", max: 20, value: 16 },
|
||||||
|
{ name: "Endurance", max: 20, value: 16 },
|
||||||
|
{ name: "Agility", max: 20, value: 20 }
|
||||||
|
],
|
||||||
|
index: 0
|
||||||
|
};
|
||||||
|
},
|
||||||
|
getters: {
|
||||||
|
scoreRadar({ scores }) {
|
||||||
|
return {
|
||||||
|
title: {
|
||||||
|
text: "Player Ability"
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
radar: {
|
||||||
|
indicator: scores.map(({ name, max }) => {
|
||||||
|
return { name, max };
|
||||||
|
})
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "Value",
|
||||||
|
type: "radar",
|
||||||
|
data: [{ value: scores.map(({ value }) => value) }]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
getRadarData(activeIndex: number) {
|
||||||
|
return {
|
||||||
|
animation: false,
|
||||||
|
title: {
|
||||||
|
text: "Player Ability"
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
radar: {
|
||||||
|
indicator: this.scores.map(({ name, max }, index) => {
|
||||||
|
if (index === activeIndex) {
|
||||||
|
return { name, max, color: "goldenrod" };
|
||||||
|
}
|
||||||
|
return { name, max };
|
||||||
|
})
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "Value",
|
||||||
|
type: "radar",
|
||||||
|
data: [{ value: this.scores.map(({ value }) => value) }]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
increase(index: number, amount: number) {
|
||||||
|
const metric = this.scores[index];
|
||||||
|
metric.value = Math.max(Math.min(metric.value + amount, metric.max), 0);
|
||||||
|
},
|
||||||
|
isMax(index: number) {
|
||||||
|
const { value, max } = this.scores[index];
|
||||||
|
return value === max;
|
||||||
|
},
|
||||||
|
isMin(index: number) {
|
||||||
|
return this.scores[index].value === 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
15
src/types.ts
15
src/types.ts
@ -25,6 +25,21 @@ export type EventTarget = EChartsType | ZRenderType;
|
|||||||
type SetOptionType = EChartsType["setOption"];
|
type SetOptionType = EChartsType["setOption"];
|
||||||
export type Option = Parameters<SetOptionType>[0];
|
export type Option = Parameters<SetOptionType>[0];
|
||||||
|
|
||||||
|
export type LoadingOptions = {
|
||||||
|
text?: string;
|
||||||
|
textColor?: string;
|
||||||
|
fontSize?: number | string;
|
||||||
|
fontWeight?: number | string;
|
||||||
|
fontStyle?: string;
|
||||||
|
fontFamily?: string;
|
||||||
|
maskColor?: string;
|
||||||
|
showSpinner?: boolean;
|
||||||
|
color?: string;
|
||||||
|
spinnerRadius?: number;
|
||||||
|
lineWidth?: number;
|
||||||
|
zlevel?: number;
|
||||||
|
};
|
||||||
|
|
||||||
type MouseEventName =
|
type MouseEventName =
|
||||||
| "click"
|
| "click"
|
||||||
| "dblclick"
|
| "dblclick"
|
||||||
|
|||||||
@ -21,6 +21,13 @@ module.exports = {
|
|||||||
.test(/\.svg$/)
|
.test(/\.svg$/)
|
||||||
.use("raw-loader")
|
.use("raw-loader")
|
||||||
.loader("raw-loader");
|
.loader("raw-loader");
|
||||||
|
|
||||||
|
config.plugin("define").tap(([options]) => [
|
||||||
|
{
|
||||||
|
...options,
|
||||||
|
__CSP__: "false"
|
||||||
|
}
|
||||||
|
]);
|
||||||
},
|
},
|
||||||
devServer: {
|
devServer: {
|
||||||
allowedHosts: "all"
|
allowedHosts: "all"
|
||||||
|
|||||||
Reference in New Issue
Block a user