├── .eslintrc.cjs ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── public └── favicon.ico ├── src ├── App.vue ├── assets │ ├── favicon.png │ ├── logo.svg │ └── wireMockLogo.png ├── components │ └── EditableCell.vue ├── lib │ ├── axios.ts │ ├── helper.ts │ └── localStorage.ts ├── main.ts ├── router │ └── index.ts ├── service │ ├── api │ │ ├── NearMisses.ts │ │ ├── Recordings.ts │ │ ├── Requests.ts │ │ ├── Scenarios.ts │ │ ├── StubMappings.ts │ │ └── System.ts │ ├── const │ │ └── stubEnum.ts │ └── render │ │ ├── convert │ │ ├── __tests__ │ │ │ └── renderDataToApiData.spec.ts │ │ ├── apiDataToRenderData.ts │ │ ├── renderDataToApiData.ts │ │ └── renderModel.ts │ │ └── style.ts ├── stores │ ├── UseProjectsStore.ts │ └── UseShareStatesStore.ts └── views │ ├── HomeHeader.vue │ ├── HomeMain.vue │ ├── components │ └── StatusTag.vue │ ├── logs │ └── Logs.vue │ ├── projects │ └── Projects.vue │ └── stubs │ ├── GeneralInfo.vue │ ├── Request.vue │ ├── Response.vue │ ├── Stubs.vue │ ├── Webhook.vue │ ├── WebhookAddButton.vue │ └── components │ ├── MatchNode.vue │ ├── PlainHeaders.vue │ └── headers.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.vitest.json ├── vite.config.ts └── vitest.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/README.md -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/env.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/wireMockLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/assets/wireMockLogo.png -------------------------------------------------------------------------------- /src/components/EditableCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/components/EditableCell.vue -------------------------------------------------------------------------------- /src/lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/lib/axios.ts -------------------------------------------------------------------------------- /src/lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/lib/helper.ts -------------------------------------------------------------------------------- /src/lib/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/lib/localStorage.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/service/api/NearMisses.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/service/api/Recordings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/api/Recordings.ts -------------------------------------------------------------------------------- /src/service/api/Requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/api/Requests.ts -------------------------------------------------------------------------------- /src/service/api/Scenarios.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/service/api/StubMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/api/StubMappings.ts -------------------------------------------------------------------------------- /src/service/api/System.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/service/const/stubEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/const/stubEnum.ts -------------------------------------------------------------------------------- /src/service/render/convert/__tests__/renderDataToApiData.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/render/convert/__tests__/renderDataToApiData.spec.ts -------------------------------------------------------------------------------- /src/service/render/convert/apiDataToRenderData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/render/convert/apiDataToRenderData.ts -------------------------------------------------------------------------------- /src/service/render/convert/renderDataToApiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/render/convert/renderDataToApiData.ts -------------------------------------------------------------------------------- /src/service/render/convert/renderModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/render/convert/renderModel.ts -------------------------------------------------------------------------------- /src/service/render/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/service/render/style.ts -------------------------------------------------------------------------------- /src/stores/UseProjectsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/stores/UseProjectsStore.ts -------------------------------------------------------------------------------- /src/stores/UseShareStatesStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/stores/UseShareStatesStore.ts -------------------------------------------------------------------------------- /src/views/HomeHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/HomeHeader.vue -------------------------------------------------------------------------------- /src/views/HomeMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/HomeMain.vue -------------------------------------------------------------------------------- /src/views/components/StatusTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/components/StatusTag.vue -------------------------------------------------------------------------------- /src/views/logs/Logs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/logs/Logs.vue -------------------------------------------------------------------------------- /src/views/projects/Projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/projects/Projects.vue -------------------------------------------------------------------------------- /src/views/stubs/GeneralInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/GeneralInfo.vue -------------------------------------------------------------------------------- /src/views/stubs/Request.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/Request.vue -------------------------------------------------------------------------------- /src/views/stubs/Response.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/Response.vue -------------------------------------------------------------------------------- /src/views/stubs/Stubs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/Stubs.vue -------------------------------------------------------------------------------- /src/views/stubs/Webhook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/Webhook.vue -------------------------------------------------------------------------------- /src/views/stubs/WebhookAddButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/WebhookAddButton.vue -------------------------------------------------------------------------------- /src/views/stubs/components/MatchNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/components/MatchNode.vue -------------------------------------------------------------------------------- /src/views/stubs/components/PlainHeaders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/components/PlainHeaders.vue -------------------------------------------------------------------------------- /src/views/stubs/components/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/src/views/stubs/components/headers.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.vitest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/tsconfig.vitest.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ly1012/wiremock-ui/HEAD/vitest.config.ts --------------------------------------------------------------------------------