Compare commits
141 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b04389716 | |||
| 3ff19ba722 | |||
| 8011f3b053 | |||
| 6bfcd0f8e0 | |||
| 06b3286206 | |||
| 64236aa59a | |||
| 4afff41230 | |||
| 8b6e38d18c | |||
| c245747e2b | |||
| a86ba561ea | |||
| a37c9916b5 | |||
| 97ce0febec | |||
| 5220eeb236 | |||
| 80a694dd23 | |||
| 72290b6098 | |||
| 03f496ab08 | |||
| be4d99d1c7 | |||
| f328f5028b | |||
| 52eacbf827 | |||
| 53d53738f4 | |||
| 3f6afa5d4c | |||
| 8392e2fa29 | |||
| 9e0e2b0225 | |||
| d762cb0536 | |||
| def6190cc1 | |||
| 4f7c3caa73 | |||
| 01d3d3657f | |||
| b83b6092da | |||
| b3098210ab | |||
| b64f98c834 | |||
| d619918c63 | |||
| 586f02df0a | |||
| 7f9caa5100 | |||
| 95b8247029 | |||
| 70c5ec8d2e | |||
| 977a8adaec | |||
| cc6215860f | |||
| 37c8b6f084 | |||
| 0a65bf6c55 | |||
| 22b8509ebe | |||
| 8698a53caf | |||
| dcfd3f7c4e | |||
| c98458b75e | |||
| 0e2e267b71 | |||
| 0a3274b5b1 | |||
| 4c6c3edcf5 | |||
| 72665f8b50 | |||
| 9bb0bcb735 | |||
| 56dc42b58e | |||
| 3a17f7485f | |||
| 39b58d6e7c | |||
| bd70e0f071 | |||
| 32594e2f67 | |||
| 05dbf33b4f | |||
| 4022d2ea2f | |||
| 85fec2f348 | |||
| 85f91a59cd | |||
| 857c176a38 | |||
| 7d0070820c | |||
| bd1de41764 | |||
| 0799bfd838 | |||
| 730275ea7c | |||
| a0c578b31b | |||
| d21aec63d0 | |||
| 80c5194735 | |||
| 93bbedf189 | |||
| b35293575a | |||
| 633f7f4c26 | |||
| b68e9da715 | |||
| 05ae446af7 | |||
| 09e5c53558 | |||
| fe70b19f2a | |||
| 32fbf51943 | |||
| 39f2688611 | |||
| 1090249e08 | |||
| c38debb458 | |||
| ee552d65ec | |||
| 4859a265e7 | |||
| 82d051a7a4 | |||
| c9ad50b01e | |||
| 50f573e8c6 | |||
| f1720c88e8 | |||
| efefebe202 | |||
| 218f616df4 | |||
| 8d737f6429 | |||
| b7abeb4c34 | |||
| 5440b0831d | |||
| fc344684cc | |||
| 8c61e260d4 | |||
| f4f6512969 | |||
| b9b1e438b9 | |||
| 1eb5f3de9e | |||
| 862aebb158 | |||
| 82a016dca7 | |||
| 744804d445 | |||
| 13a9baa175 | |||
| 01bb9f9c2e | |||
| 80b0226a16 | |||
| 7596b7ec2c | |||
| 90e257127c | |||
| 72f28abf10 | |||
| ff6622bc29 | |||
| c9459eb8f4 | |||
| f51886e45a | |||
| 91803d3fef | |||
| 61972c35e6 | |||
| 466ec2084b | |||
| 75b04ad247 | |||
| a3a0fb358c | |||
| b602819179 | |||
| 346d20fc08 | |||
| 56ae593d5e | |||
| 4f6b79c686 | |||
| 4f89b932fb | |||
| 2106675a0a | |||
| 1b68e0174d | |||
| b47f692ac1 | |||
| b6d776d94e | |||
| 3a97f6a7ac | |||
| c03e524f37 | |||
| 89e947d462 | |||
| f286933a81 | |||
| 9bc5f083eb | |||
| a48cc17c08 | |||
| 9098ffbfbc | |||
| 603b55b44f | |||
| ad94c93932 | |||
| e7eb7c4010 | |||
| e2c2d1b99d | |||
| 9756914434 | |||
| 0b397ee31d | |||
| d726c8424e | |||
| 6b0c6d63a4 | |||
| 1723a1b0bd | |||
| 86ba9112de | |||
| cd41e46ef5 | |||
| 32d5f0269b | |||
| 1750e406e0 | |||
| 7457d59dea | |||
| 2578f5c8d4 | |||
| 6af6764c30 |
@@ -0,0 +1,23 @@
|
|||||||
|
name: Build & Deploy to VPS
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
env:
|
||||||
|
PROJECT_NAME: pojazdownik-td2
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build the app
|
||||||
|
run: yarn && yarn build
|
||||||
|
- name: Setup SSH key for connection with the server
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "${{ secrets.VPS_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
|
||||||
|
- name: Send new files
|
||||||
|
run: rsync -avP -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa -p 2022" ./dist/ ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }}:/var/www/$PROJECT_NAME --delete
|
||||||
@@ -5,13 +5,13 @@ name: Deploy to Firebase Hosting on merge
|
|||||||
'on':
|
'on':
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main-old
|
||||||
jobs:
|
jobs:
|
||||||
build_and_deploy:
|
build_and_deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: npm ci && npm run build
|
- run: yarn && yarn build
|
||||||
- uses: FirebaseExtended/action-hosting-deploy@v0
|
- uses: FirebaseExtended/action-hosting-deploy@v0
|
||||||
with:
|
with:
|
||||||
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: npm ci && npm run build
|
- run: yarn && yarn build
|
||||||
- uses: FirebaseExtended/action-hosting-deploy@v0
|
- uses: FirebaseExtended/action-hosting-deploy@v0
|
||||||
with:
|
with:
|
||||||
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ pnpm-debug.log*
|
|||||||
*.sw?
|
*.sw?
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
|
# Lock files
|
||||||
|
*.lock
|
||||||
|
|
||||||
# Dev files
|
# Dev files
|
||||||
stockInfoDev.json
|
stockInfoDev.json
|
||||||
|
|
||||||
# Lock files
|
|
||||||
yarn.lock
|
|
||||||
@@ -2,5 +2,5 @@
|
|||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "es5",
|
"trailingComma": "es5",
|
||||||
"printWidth": 100
|
"printWidth": 150
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,27 +1,56 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
||||||
|
|
||||||
<title>Pojazdownik</title>
|
<head>
|
||||||
<meta name="description" content="Edytor pociągów online do symulatora Train Driver 2" />
|
<meta charset="utf-8" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||||
|
|
||||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
<title>Pojazdownik</title>
|
||||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
<meta name="description" content="Edytor składów online dla symulatora Train Driver 2" />
|
||||||
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
|
|
||||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||||
<link rel="manifest" href="/site.webmanifest" />
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
||||||
|
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
|
||||||
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
|
||||||
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
|
|
||||||
|
<meta name="msapplication-TileColor" content="#da532c" />
|
||||||
|
<meta name="theme-color" content="#111" />
|
||||||
|
|
||||||
|
<!-- Static OpenGraph meta -->
|
||||||
|
<meta name="description" content="Edytor składów online dla symulatora Train Driver 2" />
|
||||||
|
<meta property="og:url" content="https://pojazdownik-td2.web.app/" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:title" content="Pojazdownik" />
|
||||||
|
<meta property="og:description" content="Edytor składów online dla symulatora Train Driver 2" />
|
||||||
|
<meta property="og:image"
|
||||||
|
content="https://raw.githubusercontent.com/Spythere/api/refs/heads/main/thumbnails/pojazdownik-banner.png" />
|
||||||
|
<meta property="og:image:width" content="1200" />
|
||||||
|
<meta property="og:image:height" content="630" />
|
||||||
|
<meta property="og:site_name" content="Pojazdownik" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:title" content="Pojazdownik" />
|
||||||
|
<meta name="twitter:description" content="Edytor składów online dla symulatora Train Driver 2" />
|
||||||
|
<meta name="twitter:image"
|
||||||
|
content="https://raw.githubusercontent.com/Spythere/api/refs/heads/main/thumbnails/pojazdownik-banner.png" />
|
||||||
|
|
||||||
|
<!-- Preload -->
|
||||||
|
<link rel="preload" href="/fonts/Lato-Bold.woff2" as="font" type="font/woff2" crossorigin />
|
||||||
|
<link rel="preload" href="/fonts/Lato-Regular.woff2" as="font" type="font/woff2" crossorigin />
|
||||||
|
|
||||||
|
<link rel="preload" as="image" href="/logo-pl.svg" />
|
||||||
|
<link rel="preload" as="image" href="/logo-en.svg" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<noscript>
|
||||||
|
<strong> We're sorry but Pojazdownik doesn't work properly without JavaScript enabled. Please enable it to continue.
|
||||||
|
</strong>
|
||||||
|
</noscript>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.ts"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c" />
|
|
||||||
<meta name="theme-color" content="#111" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<noscript>
|
|
||||||
<strong> We're sorry but Pojazdownik doesn't work properly without JavaScript enabled. Please enable it to continue. </strong>
|
|
||||||
</noscript>
|
|
||||||
<div id="app"></div>
|
|
||||||
<script type="module" src="/src/main.ts"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
@@ -1,36 +1,38 @@
|
|||||||
{
|
{
|
||||||
"name": "pojazdownik",
|
"name": "pojazdownik",
|
||||||
"version": "1.8.7",
|
"version": "1.10.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vue-tsc --noEmit && vite build",
|
"build": "vue-tsc --noEmit && vite build",
|
||||||
"preview": "yarn build && vite preview --port 4174",
|
"preview": "yarn build && vite preview",
|
||||||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
||||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||||
"format": "prettier --write src/"
|
"format": "prettier --write src/"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.4.0",
|
"lucide-vue-next": "^0.576.0",
|
||||||
"pinia": "^2.0.17",
|
"pinia": "^3.0.3",
|
||||||
"prettier": "^3.0.3",
|
"prettier": "^3.0.3",
|
||||||
"vue": "^3.2.37",
|
"vue": "^3.2.37",
|
||||||
"vue-i18n": "9.11.0"
|
"vue-i18n": "11.2.8",
|
||||||
|
"vue-router": "5.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rushstack/eslint-patch": "^1.3.3",
|
"@rushstack/eslint-patch": "^1.3.3",
|
||||||
"@vite-pwa/assets-generator": "^0.2.3",
|
"@types/node": "^25.3.3",
|
||||||
"@vitejs/plugin-vue": "^5.0.3",
|
"@vite-pwa/assets-generator": "^1.0.2",
|
||||||
"@vue/eslint-config-prettier": "^9.0.0",
|
"@vitejs/plugin-vue": "^6.0.1",
|
||||||
"@vue/eslint-config-typescript": "^12.0.0",
|
"@vue/eslint-config-prettier": "^10.2.0",
|
||||||
"@vue/tsconfig": "^0.5.1",
|
"@vue/eslint-config-typescript": "^14.6.0",
|
||||||
"eslint": "^8.49.0",
|
"@vue/tsconfig": "^0.9.0",
|
||||||
"eslint-plugin-vue": "^9.17.0",
|
"eslint": "^10.0.2",
|
||||||
|
"eslint-plugin-vue": "^10.5.1",
|
||||||
"sass": "^1.59.3",
|
"sass": "^1.59.3",
|
||||||
"typescript": "^5.0.2",
|
"typescript": "^5.0.2",
|
||||||
"vite": "^5.0.12",
|
"vite": "^7.1.12",
|
||||||
"vite-plugin-pwa": "^0.17.5",
|
"vite-plugin-pwa": "^1.1.0",
|
||||||
"vue-tsc": "^1.2.0"
|
"vue-tsc": "^3.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 74 KiB |
@@ -1,48 +1,86 @@
|
|||||||
<template>
|
<template>
|
||||||
<AppModals />
|
<AppModals />
|
||||||
<ImageFullscreenPreview v-if="store.vehiclePreviewSrc" />
|
<ImageFullscreenPreview v-if="store.vehiclePreviewSrc" />
|
||||||
<AppContainerView />
|
|
||||||
|
<transition name="slide-bottom-anim">
|
||||||
|
<MigrationInfo v-if="store.isMigrationInfoOpen" />
|
||||||
|
</transition>
|
||||||
|
|
||||||
|
<router-view></router-view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts" setup>
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import { useStore } from './store';
|
import { useStore } from './store';
|
||||||
import ImageFullscreenPreview from './components/utils/ImageFullscreenPreview.vue';
|
import ImageFullscreenPreview from './components/utils/ImageFullscreenPreview.vue';
|
||||||
import AppContainerView from './views/AppContainerView.vue';
|
|
||||||
import AppModals from './components/app/AppModals.vue';
|
import AppModals from './components/app/AppModals.vue';
|
||||||
|
import { computed, onMounted, watchEffect } from 'vue';
|
||||||
|
import { registerSW } from 'virtual:pwa-register';
|
||||||
|
import MigrationInfo from './components/app/MigrationInfo.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
const store = useStore();
|
||||||
components: { ImageFullscreenPreview, AppContainerView, AppModals },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
store: useStore(),
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
async created() {
|
registerSW({
|
||||||
this.store.handleRouting();
|
immediate: true,
|
||||||
this.store.setupAPIData();
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
loadStockDataFromStorage();
|
||||||
|
handleMigrationInfo();
|
||||||
|
store.setupAPIData();
|
||||||
|
});
|
||||||
|
|
||||||
|
const currentStockString = computed(() => store.stockString);
|
||||||
|
|
||||||
|
watchEffect(() => {
|
||||||
|
if (currentStockString.value != store.chosenStorageStockString) {
|
||||||
|
store.chosenStorageStockName = '';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function handleMigrationInfo() {
|
||||||
|
// Show only on old domain
|
||||||
|
if (location.hostname !== 'pojazdownik-td2.web.app') return;
|
||||||
|
|
||||||
|
const showInfo = localStorage.getItem('showMigrationInfo');
|
||||||
|
|
||||||
|
// Do not show if already acknowledged
|
||||||
|
if (showInfo === 'false') return;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
store.isMigrationInfoOpen = true;
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadStockDataFromStorage() {
|
||||||
|
const savedData = localStorage.getItem('savedStockData');
|
||||||
|
|
||||||
|
if (!savedData) {
|
||||||
|
localStorage.setItem('savedStockData', JSON.stringify({}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
store.storageStockData = JSON.parse(savedData);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Wystąpił błąd podczas przetwarzania danych o składach z localStorage!', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@import './styles/global.scss';
|
@use './styles/global';
|
||||||
|
@use './styles/responsive';
|
||||||
|
|
||||||
/* APP */
|
/* APP */
|
||||||
#app {
|
#app {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
||||||
color: $textColor;
|
color: var(--textColor);
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
@include responsive.midScreen {
|
||||||
font-size: calc(0.7rem + 0.75vw);
|
font-size: calc(0.7rem + 0.75vw);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (orientation: landscape) and (max-width: $breakpointMd) {
|
|
||||||
font-size: calc(0.75rem + 0.4vw);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -6,19 +6,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts" setup>
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
import { useStore } from '../../store';
|
import { useStore } from '../../store';
|
||||||
import RealStockCard from '../cards/RealStockCard.vue';
|
import RealStockCard from '../cards/RealStockCard.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
const store = useStore();
|
||||||
components: { RealStockCard },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
store: useStore(),
|
|
||||||
};
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
|
||||||
|
|||||||
@@ -1,21 +1,20 @@
|
|||||||
<template>
|
<template>
|
||||||
<footer>
|
<footer>
|
||||||
<i18n-t keypath="footer.disclaimer" tag="div" class="text--grayed">
|
|
||||||
<template #tos>
|
|
||||||
<a style="color: #ccc" :href="$t('footer.tos-href')" target="_blank">
|
|
||||||
{{ $t('footer.tos') }}
|
|
||||||
</a>
|
|
||||||
</template>
|
|
||||||
</i18n-t>
|
|
||||||
|
|
||||||
<div class="text--grayed" v-if="store.vehiclesData">
|
|
||||||
{{ $t('footer.version-check', { version: store.vehiclesData.simulatorVersion }) }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
©
|
©
|
||||||
<a href="https://td2.info.pl/profile/?u=20777" target="_blank">Spythere</a>
|
<a href="https://td2.info.pl/profile/?u=20777" target="_blank">Spythere</a>
|
||||||
{{ new Date().getUTCFullYear() }} | v{{ VERSION }}{{ !isOnProductionHost ? 'dev' : '' }}
|
{{ new Date().getUTCFullYear() }} |
|
||||||
|
<a class="release-link" :href="githubReleaseHref" target="_blank">v{{ VERSION }}{{ !isOnProductionHost ? 'dev' : '' }}</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="text--grayed" v-if="store.vehiclesData">
|
||||||
|
{{
|
||||||
|
$t('footer.vehicles-count', {
|
||||||
|
all: vehiclesCounters.all,
|
||||||
|
units: vehiclesCounters.units,
|
||||||
|
cars: vehiclesCounters.cars,
|
||||||
|
})
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</template>
|
</template>
|
||||||
@@ -28,17 +27,50 @@ import { useStore } from '../../store';
|
|||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isOnProductionHost: location.hostname == 'pojazdownik-td2.web.app',
|
isOnProductionHost: location.hostname == 'pojazdownik-td2.web.app' || location.hostname == 'pojazdownik-td2.spythere.eu',
|
||||||
VERSION: packageInfo.version,
|
VERSION: packageInfo.version,
|
||||||
store: useStore(),
|
store: useStore(),
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
githubReleaseHref() {
|
||||||
|
return `https://github.com/Spythere/pojazdownik/releases/tag/${this.VERSION}`;
|
||||||
|
},
|
||||||
|
|
||||||
|
vehiclesCounters() {
|
||||||
|
let counters = {
|
||||||
|
all: 0,
|
||||||
|
cars: 0,
|
||||||
|
units: 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!this.store.vehiclesData) return counters;
|
||||||
|
|
||||||
|
this.store.vehiclesData?.forEach((v) => {
|
||||||
|
counters.all += 1;
|
||||||
|
|
||||||
|
if (v.group.locoProps !== null) counters.units += 1;
|
||||||
|
else counters.cars += 1;
|
||||||
|
});
|
||||||
|
|
||||||
|
return counters;
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 1em 1em 0 1em;
|
padding: 0 0.5em 0.5em 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.release-link {
|
||||||
|
color: var(--accentColor);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<LogoSection />
|
<LogoSection />
|
||||||
<InputsSection />
|
<InputsSection />
|
||||||
<TrainImageSection />
|
<TrainImageSection />
|
||||||
<StockSection />
|
<TabsSection />
|
||||||
</main>
|
</main>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -12,39 +12,37 @@ import { defineComponent } from 'vue';
|
|||||||
import LogoSection from '../sections/LogoSection.vue';
|
import LogoSection from '../sections/LogoSection.vue';
|
||||||
import InputsSection from '../sections/InputsSection.vue';
|
import InputsSection from '../sections/InputsSection.vue';
|
||||||
import TrainImageSection from '../sections/TrainImageSection.vue';
|
import TrainImageSection from '../sections/TrainImageSection.vue';
|
||||||
import StockSection from '../sections/StockSection.vue';
|
import TabsSection from '../sections/TabsSection.vue';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: { LogoSection, InputsSection, TrainImageSection, StockSection },
|
components: { LogoSection, InputsSection, TrainImageSection, TabsSection },
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global.scss';
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
main {
|
main {
|
||||||
display: grid;
|
display: grid;
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
|
|
||||||
width: 100%;
|
width: 100vw;
|
||||||
max-width: 1350px;
|
max-width: 1600px;
|
||||||
|
|
||||||
grid-template-columns: 1fr 2fr;
|
grid-template-columns: minmax(380px, 1fr) 3fr;
|
||||||
grid-template-rows: auto 360px minmax(300px, 1fr);
|
grid-template-rows: auto 350px minmax(300px, 1fr);
|
||||||
|
|
||||||
background-color: darken($color: $bgColor, $amount: 5);
|
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
|
overflow: hidden;
|
||||||
min-height: 950px;
|
|
||||||
|
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
@include responsive.midScreen {
|
||||||
main {
|
main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 1em;
|
gap: 1em;
|
||||||
|
height: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -0,0 +1,59 @@
|
|||||||
|
<template>
|
||||||
|
<div class="migrate-info">
|
||||||
|
<div class="info-content">
|
||||||
|
<i18n-t keypath="migrate-info.line-1" for="migrate-info" tag="div">
|
||||||
|
<a href="https://pojazdownik-td2.spythere.eu/" target="_blank">{{ t('migrate-info.link') }}</a>
|
||||||
|
</i18n-t>
|
||||||
|
<button class="btn accept-btn" @click="onAcceptButtonClick">{{ t('migrate-info.accept-btn') }}</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useStore } from '../../store';
|
||||||
|
|
||||||
|
const store = useStore();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
function onAcceptButtonClick() {
|
||||||
|
store.isMigrationInfoOpen = false;
|
||||||
|
localStorage.setItem('showMigrationInfo', 'false');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.migrate-info {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 100;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
|
||||||
|
padding: 0.25em;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
background-color: var(--accentColor);
|
||||||
|
color: black;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.info-content {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: underline;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
<datalist id="readyStockDataList">
|
<datalist id="readyStockDataList">
|
||||||
<option
|
<option
|
||||||
v-for="stock in store.realCompositionList"
|
v-for="stock in filteredCompositionList"
|
||||||
:value="stock.stockId"
|
:value="stock.stockId"
|
||||||
:key="stock.name"
|
:key="stock.name"
|
||||||
>
|
>
|
||||||
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
<datalist id="readyStockStringList">
|
<datalist id="readyStockStringList">
|
||||||
<option
|
<option
|
||||||
v-for="stockType in computedAvailableStockTypes"
|
v-for="stockType in availableCompositionTypes"
|
||||||
:value="stockType"
|
:value="stockType"
|
||||||
:key="stockType"
|
:key="stockType"
|
||||||
>
|
>
|
||||||
@@ -54,7 +54,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="card_list" ref="list" @scroll="onListScroll">
|
<ul class="card_list" ref="list" @scroll="onListScroll">
|
||||||
<li v-for="rStock in computedReadyStockList" :key="rStock.stockId">
|
<li v-for="rStock in filteredCompositionList" :key="rStock.stockId">
|
||||||
<!-- :data-last-selected="store.ch === rStock.stockId" -->
|
<!-- :data-last-selected="store.ch === rStock.stockId" -->
|
||||||
<div
|
<div
|
||||||
class="stock-title"
|
class="stock-title"
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
<div class="thumbnail-container">
|
<div class="thumbnail-container">
|
||||||
<div>{{ stockType }}</div>
|
<div>{{ stockType }}</div>
|
||||||
<img
|
<img
|
||||||
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stockType}.png`"
|
:src="`https://stacjownik.spythere.eu/static/thumbnails/${stockType}.png`"
|
||||||
:title="stockType"
|
:title="stockType"
|
||||||
style="opacity: 0"
|
style="opacity: 0"
|
||||||
@error="(e) => onStockItemError(e, stockType)"
|
@error="(e) => onStockItemError(e, stockType)"
|
||||||
@@ -100,7 +100,7 @@ import { useStore } from '../../store';
|
|||||||
import imageMixin from '../../mixins/imageMixin';
|
import imageMixin from '../../mixins/imageMixin';
|
||||||
import stockMixin from '../../mixins/stockMixin';
|
import stockMixin from '../../mixins/stockMixin';
|
||||||
|
|
||||||
import { IRealComposition, VehicleGroupType } from '../../types';
|
import { IRealComposition, VehicleGroupType } from '../../types/common.types';
|
||||||
|
|
||||||
function getVehicleType(stockType: string): VehicleGroupType {
|
function getVehicleType(stockType: string): VehicleGroupType {
|
||||||
if (/^E/.test(stockType)) return 'loco-electric';
|
if (/^E/.test(stockType)) return 'loco-electric';
|
||||||
@@ -141,7 +141,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
computed: {
|
computed: {
|
||||||
computedReadyStockList(): IRealComposition[] {
|
filteredCompositionList() {
|
||||||
return this.store.realCompositionList
|
return this.store.realCompositionList
|
||||||
.filter(
|
.filter(
|
||||||
(rc) =>
|
(rc) =>
|
||||||
@@ -155,7 +155,7 @@ export default defineComponent({
|
|||||||
.filter((_, i) => i <= this.visibleIndexesTo);
|
.filter((_, i) => i <= this.visibleIndexesTo);
|
||||||
},
|
},
|
||||||
|
|
||||||
computedAvailableStockTypes() {
|
availableCompositionTypes() {
|
||||||
return this.store.realCompositionList
|
return this.store.realCompositionList
|
||||||
.reduce((acc, rs) => {
|
.reduce((acc, rs) => {
|
||||||
rs.stockString.split(';').forEach((s) => {
|
rs.stockString.split(';').forEach((s) => {
|
||||||
@@ -169,7 +169,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
computedReadyStockList(curr, prev) {
|
filteredCompositionList(curr, prev) {
|
||||||
if (curr.length < prev.length) {
|
if (curr.length < prev.length) {
|
||||||
this.visibleIndexesTo = 20;
|
this.visibleIndexesTo = 20;
|
||||||
(this.$refs['list'] as HTMLElement).scrollTo({
|
(this.$refs['list'] as HTMLElement).scrollTo({
|
||||||
@@ -220,7 +220,7 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global.scss';
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
.action-exit {
|
.action-exit {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -249,7 +249,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointSm) {
|
@include responsive.smallScreen {
|
||||||
height: 80vh;
|
height: 80vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -281,7 +281,7 @@ export default defineComponent({
|
|||||||
width: 35%;
|
width: 35%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointSm) {
|
@include responsive.smallScreen {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
@@ -309,7 +309,7 @@ ul {
|
|||||||
padding: 0.1em;
|
padding: 0.1em;
|
||||||
|
|
||||||
&[data-last-selected='true'] .stock-title {
|
&[data-last-selected='true'] .stock-title {
|
||||||
border: 1px solid $accentColor;
|
border: 1px solid var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.stock-title {
|
.stock-title {
|
||||||
@@ -325,7 +325,7 @@ ul {
|
|||||||
background: #222;
|
background: #222;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointSm) {
|
@include responsive.smallScreen {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
// grid-template-rows: 1fr 1fr;
|
// grid-template-rows: 1fr 1fr;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="inputs-section">
|
<section class="inputs-section">
|
||||||
<div class="input_container">
|
<div class="input_container">
|
||||||
<h2 class="input_header">{{ $t('inputs.title') }}</h2>
|
|
||||||
|
|
||||||
<div class="input_list type">
|
<div class="input_list type">
|
||||||
|
<label for="cargo-select">{{ $t('inputs.vehicles-title') }}</label>
|
||||||
|
|
||||||
<div class="vehicle-types locos">
|
<div class="vehicle-types locos">
|
||||||
<button
|
<button
|
||||||
v-for="locoType in locomotiveTypeList"
|
v-for="locoType in locomotiveTypeList"
|
||||||
@@ -35,6 +35,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="input_list type">
|
<div class="input_list type">
|
||||||
|
<label for="cargo-select">{{ $t('inputs.carwagons-title') }}</label>
|
||||||
|
|
||||||
<div class="vehicle-types carwagons">
|
<div class="vehicle-types carwagons">
|
||||||
<button
|
<button
|
||||||
v-for="carType in carTypeList"
|
v-for="carType in carTypeList"
|
||||||
@@ -126,7 +128,7 @@ import imageMixin from '../../mixins/imageMixin';
|
|||||||
import { useStore } from '../../store';
|
import { useStore } from '../../store';
|
||||||
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
|
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
|
||||||
import stockMixin from '../../mixins/stockMixin';
|
import stockMixin from '../../mixins/stockMixin';
|
||||||
import { LocoGroupType, WagonGroupType } from '../../types';
|
import { LocoGroupType, WagonGroupType } from '../../types/common.types';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
mixins: [imageMixin, stockPreviewMixin, stockMixin],
|
mixins: [imageMixin, stockPreviewMixin, stockMixin],
|
||||||
@@ -134,33 +136,15 @@ export default defineComponent({
|
|||||||
data: () => ({
|
data: () => ({
|
||||||
store: useStore(),
|
store: useStore(),
|
||||||
locomotiveTypeList: [
|
locomotiveTypeList: [
|
||||||
{
|
{ id: 'loco-electric', desc: 'ELEKTRYCZNE' },
|
||||||
id: 'loco-electric',
|
{ id: 'loco-diesel', desc: 'SPALINOWE' },
|
||||||
desc: 'ELEKTRYCZNE',
|
{ id: 'unit-electric', desc: 'ELEKTR. ZESPOŁY TRAKCYJNE' },
|
||||||
},
|
{ id: 'unit-diesel', desc: 'SPAL. ZESPOŁY TRAKCYJNE' },
|
||||||
{
|
|
||||||
id: 'loco-diesel',
|
|
||||||
desc: 'SPALINOWE',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'unit-electric',
|
|
||||||
desc: 'ELEKTR. ZESPOŁY TRAKCYJNE',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'unit-diesel',
|
|
||||||
desc: 'SPAL. ZESPOŁY TRAKCYJNE',
|
|
||||||
},
|
|
||||||
] as { id: LocoGroupType; desc: string }[],
|
] as { id: LocoGroupType; desc: string }[],
|
||||||
|
|
||||||
carTypeList: [
|
carTypeList: [
|
||||||
{
|
{ id: 'wagon-passenger', desc: 'PASAŻERSKIE' },
|
||||||
id: 'wagon-passenger',
|
{ id: 'wagon-freight', desc: 'TOWAROWE' },
|
||||||
desc: 'PASAŻERSKIE',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'wagon-freight',
|
|
||||||
desc: 'TOWAROWE',
|
|
||||||
},
|
|
||||||
] as { id: WagonGroupType; desc: string }[],
|
] as { id: WagonGroupType; desc: string }[],
|
||||||
}),
|
}),
|
||||||
|
|
||||||
@@ -240,7 +224,7 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global';
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
.inputs-section {
|
.inputs-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -255,16 +239,12 @@ export default defineComponent({
|
|||||||
max-width: 380px;
|
max-width: 380px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input_header {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
button.btn--choice {
|
button.btn--choice {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
padding: 0.3em 0.6em;
|
padding: 0.3em 0.6em;
|
||||||
|
|
||||||
&[data-selected='true'] {
|
&[data-selected='true'] {
|
||||||
background-color: $accentColor;
|
background-color: var(--accentColor);
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -282,12 +262,12 @@ button.btn--choice {
|
|||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
margin-bottom: 0.3em;
|
margin-bottom: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
select:focus {
|
select:focus {
|
||||||
border-color: $accentColor;
|
border-color: var(--accentColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -306,9 +286,13 @@ button.btn--choice {
|
|||||||
gap: 0.25em;
|
gap: 0.25em;
|
||||||
|
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
@include responsive.midScreen {
|
||||||
.inputs-section {
|
.inputs-section {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
@@ -21,14 +21,8 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
localeActions: [
|
localeActions: [
|
||||||
{
|
{ name: 'POLSKI', locale: 'pl' },
|
||||||
name: 'POLSKI',
|
{ name: 'ENGLISH', locale: 'en' },
|
||||||
locale: 'pl',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'ENGLISH',
|
|
||||||
locale: 'en',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@@ -46,8 +40,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global.scss';
|
|
||||||
|
|
||||||
.logo-section {
|
.logo-section {
|
||||||
grid-row: 1;
|
grid-row: 1;
|
||||||
grid-column: 1;
|
grid-column: 1;
|
||||||
@@ -66,7 +58,7 @@ export default {
|
|||||||
|
|
||||||
button[data-selected='true'] {
|
button[data-selected='true'] {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,143 +0,0 @@
|
|||||||
<template>
|
|
||||||
<section class="stock-section">
|
|
||||||
<div class="section_modes">
|
|
||||||
<button
|
|
||||||
v-for="(id, i) in sectionModes"
|
|
||||||
:key="id"
|
|
||||||
class="btn"
|
|
||||||
ref="sectionButtonRefs"
|
|
||||||
@click="chooseSection(id)"
|
|
||||||
:data-selected="store.stockSectionMode == id"
|
|
||||||
>
|
|
||||||
<span class="text--accent">{{ i + 1 }}.</span> {{ $t(`topbar.${id}`) }}
|
|
||||||
<span v-if="id == 'stock-list'">({{ store.stockList.length }})</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<transition name="tab-change" mode="out-in">
|
|
||||||
<keep-alive>
|
|
||||||
<component :is="chosenSectionComponent"></component>
|
|
||||||
</keep-alive>
|
|
||||||
</transition>
|
|
||||||
</section>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { computed, onMounted, ref } from 'vue';
|
|
||||||
import { useStore } from '../../store';
|
|
||||||
import StockListTab from '../tabs/StockListTab.vue';
|
|
||||||
import StockGeneratorTab from '../tabs/StockGeneratorTab.vue';
|
|
||||||
import NumberGeneratorTab from '../tabs/NumberGeneratorTab.vue';
|
|
||||||
import WikiListTab from '../tabs/WikiListTab.vue';
|
|
||||||
|
|
||||||
const sectionButtonRefs = ref([]);
|
|
||||||
|
|
||||||
const store = useStore();
|
|
||||||
type SectionMode = typeof store.stockSectionMode;
|
|
||||||
|
|
||||||
const sectionModes: SectionMode[] = [
|
|
||||||
'stock-list',
|
|
||||||
'wiki-list',
|
|
||||||
'number-generator',
|
|
||||||
'stock-generator',
|
|
||||||
];
|
|
||||||
|
|
||||||
onMounted(() => {
|
|
||||||
window.addEventListener('keydown', (e) => {
|
|
||||||
if (e.target instanceof HTMLInputElement) return;
|
|
||||||
|
|
||||||
if (/^[1234]$/.test(e.key)) {
|
|
||||||
const keyNum = Number(e.key);
|
|
||||||
|
|
||||||
store.stockSectionMode = sectionModes[keyNum - 1];
|
|
||||||
(sectionButtonRefs.value[keyNum - 1] as HTMLButtonElement)?.focus();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const chosenSectionComponent = computed(() => {
|
|
||||||
switch (store.stockSectionMode) {
|
|
||||||
case 'stock-list':
|
|
||||||
return StockListTab;
|
|
||||||
|
|
||||||
case 'wiki-list':
|
|
||||||
return WikiListTab;
|
|
||||||
|
|
||||||
case 'stock-generator':
|
|
||||||
return StockGeneratorTab;
|
|
||||||
|
|
||||||
case 'number-generator':
|
|
||||||
return NumberGeneratorTab;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return StockListTab;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function chooseSection(sectionId: SectionMode) {
|
|
||||||
store.stockSectionMode = sectionId;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@import '../../styles/global.scss';
|
|
||||||
|
|
||||||
// Tab change animation
|
|
||||||
.tab-change {
|
|
||||||
&-enter-from,
|
|
||||||
&-leave-to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-enter-active,
|
|
||||||
&-leave-active {
|
|
||||||
transition: all 100ms ease-in-out;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Section styles
|
|
||||||
.stock-section {
|
|
||||||
grid-row: 1 / 4;
|
|
||||||
grid-column: 2;
|
|
||||||
|
|
||||||
overflow: hidden;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.section_modes {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(4, 1fr);
|
|
||||||
|
|
||||||
gap: 0.5em;
|
|
||||||
|
|
||||||
margin-bottom: 1em;
|
|
||||||
|
|
||||||
button {
|
|
||||||
position: relative;
|
|
||||||
border-radius: 0.5em 0.5em 0 0;
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
|
|
||||||
content: '';
|
|
||||||
width: 0;
|
|
||||||
height: 2px;
|
|
||||||
transition: all 100ms;
|
|
||||||
background-color: $accentColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
&[data-selected='true']::after {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 650px) {
|
|
||||||
.section_modes {
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
<template>
|
||||||
|
<section class="tabs-section">
|
||||||
|
<div class="tabs-modes">
|
||||||
|
<router-link v-for="(route, i) in routes" :key="route.name" class="link-btn" :to="route.href" :style="{ 'grid-area': route.name }">
|
||||||
|
<span class="text--accent">{{ i + 1 }}.</span> {{ $t(`topbar.${route.name}`) }}
|
||||||
|
<span class="text--grayed" v-if="route.name == 'stock'">({{ store.stockList.length }})</span>
|
||||||
|
</router-link>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<transition name="tab-change" mode="out-in">
|
||||||
|
<keep-alive>
|
||||||
|
<component :is="route.meta.viewMode"></component>
|
||||||
|
</keep-alive>
|
||||||
|
</transition>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { onMounted } from 'vue';
|
||||||
|
import { useStore } from '../../store';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
const store = useStore();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const routes = [
|
||||||
|
{
|
||||||
|
name: 'stock',
|
||||||
|
href: '/',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'wiki',
|
||||||
|
href: '/wiki',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'storage',
|
||||||
|
href: '/storage',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'numgen',
|
||||||
|
href: '/numgen',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'stockgen',
|
||||||
|
href: '/stockgen',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
window.addEventListener('keydown', (e) => {
|
||||||
|
if (e.target instanceof HTMLInputElement) return;
|
||||||
|
|
||||||
|
if (/^[12345]$/.test(e.key)) {
|
||||||
|
const keyNum = Number(e.key);
|
||||||
|
|
||||||
|
router.push(routes[keyNum - 1].href);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
|
// Tab change animation
|
||||||
|
.tab-change {
|
||||||
|
&-enter-from,
|
||||||
|
&-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-enter-active,
|
||||||
|
&-leave-active {
|
||||||
|
transition: all 100ms ease-in-out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Section styles
|
||||||
|
.tabs-section {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
|
gap: 1em;
|
||||||
|
|
||||||
|
grid-row: 1 / 4;
|
||||||
|
grid-column: 2;
|
||||||
|
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs-modes {
|
||||||
|
display: grid;
|
||||||
|
gap: 0.5em;
|
||||||
|
grid-template-areas: 'stock wiki storage numgen stockgen';
|
||||||
|
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1200px) {
|
||||||
|
.tabs-modes {
|
||||||
|
grid-template-areas:
|
||||||
|
'stock stock wiki wiki storage storage'
|
||||||
|
'numgen numgen numgen stockgen stockgen stockgen';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.smallScreen {
|
||||||
|
.tabs-modes {
|
||||||
|
grid-template-areas:
|
||||||
|
'stock wiki'
|
||||||
|
'storage storage'
|
||||||
|
'numgen stockgen';
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.midScreen {
|
||||||
|
.tabs-section {
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -4,11 +4,8 @@
|
|||||||
<div class="image-wrapper">
|
<div class="image-wrapper">
|
||||||
<img
|
<img
|
||||||
:src="getThumbnailURL(store.chosenVehicle.type, 'small')"
|
:src="getThumbnailURL(store.chosenVehicle.type, 'small')"
|
||||||
:data-preview-active="store.chosenVehicle !== null"
|
:data-preview-available="isDataPreviewAvailable"
|
||||||
:data-sponsor-only="
|
:data-sponsor-only="store.chosenVehicle.sponsorOnlyTimestamp && store.chosenVehicle.sponsorOnlyTimestamp > Date.now()"
|
||||||
store.chosenVehicle.sponsorOnlyTimestamp &&
|
|
||||||
store.chosenVehicle.sponsorOnlyTimestamp > Date.now()
|
|
||||||
"
|
|
||||||
:data-team-only="store.chosenVehicle.teamOnly"
|
:data-team-only="store.chosenVehicle.teamOnly"
|
||||||
@click="onImageClick"
|
@click="onImageClick"
|
||||||
@keydown.enter="onImageClick"
|
@keydown.enter="onImageClick"
|
||||||
@@ -21,23 +18,15 @@
|
|||||||
<div class="image-info">
|
<div class="image-info">
|
||||||
<b class="text--accent">{{ store.chosenVehicle.type }}</b> •
|
<b class="text--accent">{{ store.chosenVehicle.type }}</b> •
|
||||||
<b style="color: #ccc">
|
<b style="color: #ccc">
|
||||||
{{
|
{{ $t(`preview.${isTractionUnit(store.chosenVehicle) ? store.chosenVehicle.group : store.chosenVehicle.group}`) }}
|
||||||
$t(
|
|
||||||
`preview.${isTractionUnit(store.chosenVehicle) ? store.chosenVehicle.group : store.chosenVehicle.group}`
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</b>
|
</b>
|
||||||
|
|
||||||
<div style="color: #ccc">
|
<div style="color: #ccc">
|
||||||
<div>
|
<div>
|
||||||
{{ store.chosenVehicle.length }}m |
|
{{ store.chosenVehicle.length }}m | {{ (store.chosenVehicle.weight / 1000).toFixed(1) }}t | {{ store.chosenVehicle.maxSpeed }} km/h
|
||||||
{{ (store.chosenVehicle.weight / 1000).toFixed(1) }}t |
|
|
||||||
{{ store.chosenVehicle.maxSpeed }} km/h
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="isTractionUnit(store.chosenVehicle)">
|
<div v-if="isTractionUnit(store.chosenVehicle)">{{ $t('preview.cabin') }} {{ store.chosenVehicle.cabinType }}</div>
|
||||||
{{ $t('preview.cabin') }} {{ store.chosenVehicle.cabinType }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
{{
|
{{
|
||||||
@@ -47,18 +36,10 @@
|
|||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<b
|
<b v-if="store.chosenVehicle.sponsorOnlyTimestamp && store.chosenVehicle.sponsorOnlyTimestamp > Date.now()" class="sponsor-only">
|
||||||
v-if="
|
|
||||||
store.chosenVehicle.sponsorOnlyTimestamp &&
|
|
||||||
store.chosenVehicle.sponsorOnlyTimestamp > Date.now()
|
|
||||||
"
|
|
||||||
class="sponsor-only"
|
|
||||||
>
|
|
||||||
{{
|
{{
|
||||||
$t('preview.sponsor-only', [
|
$t('preview.sponsor-only', [
|
||||||
new Date(store.chosenVehicle.sponsorOnlyTimestamp).toLocaleDateString(
|
new Date(store.chosenVehicle.sponsorOnlyTimestamp).toLocaleDateString($i18n.locale == 'pl' ? 'pl-PL' : 'en-GB'),
|
||||||
$i18n.locale == 'pl' ? 'pl-PL' : 'en-GB'
|
|
||||||
),
|
|
||||||
])
|
])
|
||||||
}}
|
}}
|
||||||
</b>
|
</b>
|
||||||
@@ -111,37 +92,48 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
isDataPreviewAvailable() {
|
||||||
|
return this.imageStatus == 'loaded' && this.store.chosenVehicle != null;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
isTractionUnit,
|
isTractionUnit,
|
||||||
|
|
||||||
onImageError(e: Event) {
|
onImageError(e: Event) {
|
||||||
const el = e.target as HTMLImageElement;
|
const el = e.target as HTMLImageElement;
|
||||||
if (el.src == '/images/placeholder.jpg') return;
|
if (el.src == '/images/no-vehicle-image.png') return;
|
||||||
|
|
||||||
el.src = '/images/placeholder.jpg';
|
el.src = '/images/no-vehicle-image.png';
|
||||||
this.imageStatus = 'error';
|
this.imageStatus = 'error';
|
||||||
},
|
},
|
||||||
|
|
||||||
onImageLoad(e: Event) {
|
onImageLoad(e: Event) {
|
||||||
|
if (this.imageStatus == 'error') return;
|
||||||
|
|
||||||
this.imageStatus = 'loaded';
|
this.imageStatus = 'loaded';
|
||||||
},
|
},
|
||||||
|
|
||||||
onImageClick(e: Event) {
|
onImageClick(e: Event) {
|
||||||
const target = e.target as HTMLElement;
|
const target = e.target as HTMLImageElement;
|
||||||
|
|
||||||
const chosenVehicle = this.store.chosenVehicle;
|
const chosenVehicle = this.store.chosenVehicle;
|
||||||
|
|
||||||
if (!chosenVehicle) return;
|
if (!chosenVehicle) return;
|
||||||
|
|
||||||
this.store.lastFocusedElement = target;
|
this.store.lastFocusedElement = target;
|
||||||
this.store.vehiclePreviewSrc = this.getThumbnailURL(chosenVehicle.type, 'large');
|
|
||||||
|
if (this.isDataPreviewAvailable) {
|
||||||
|
this.store.vehiclePreviewSrc = this.getThumbnailURL(chosenVehicle.type, 'large');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global';
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
.train-image-section {
|
.train-image-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -153,25 +145,25 @@ export default defineComponent({
|
|||||||
|
|
||||||
& > div {
|
& > div {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-width: 100%;
|
width: 100%;
|
||||||
width: 380px;
|
max-width: 380px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&[data-preview-active='true'] {
|
&[data-preview-available='true'] {
|
||||||
border: 1px solid white;
|
border: 1px solid white;
|
||||||
cursor: zoom-in;
|
cursor: zoom-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-sponsor-only='true'] {
|
&[data-sponsor-only='true'] {
|
||||||
border: 1px solid $sponsorColor;
|
border: 1px solid var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-team-only='true'] {
|
&[data-team-only='true'] {
|
||||||
border: 1px solid $teamColor;
|
border: 1px solid var(--teamColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -205,25 +197,25 @@ img {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 380px;
|
max-width: 380px;
|
||||||
|
|
||||||
background-color: $secondaryColor;
|
background-color: var(--secondaryColor);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.placeholder {
|
.placeholder {
|
||||||
height: 250px;
|
height: 250px;
|
||||||
|
|
||||||
background-color: $bgColor;
|
background-color: var(--bgColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sponsor-only {
|
.sponsor-only {
|
||||||
color: $sponsorColor;
|
color: var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.team-only {
|
.team-only {
|
||||||
color: $teamColor;
|
color: var(--teamColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
@include responsive.midScreen {
|
||||||
.train-image-section {
|
.train-image-section {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="number-generator tab">
|
<div class="number-generator-tab">
|
||||||
<div class="tab_header">
|
<div class="tab_header">
|
||||||
<h2>{{ $t('numgen.title') }}</h2>
|
<h2>{{ $t('numgen.title') }}</h2>
|
||||||
<h3>{{ $t('numgen.subtitle') }}</h3>
|
<h3>{{ $t('numgen.subtitle') }}</h3>
|
||||||
@@ -224,8 +224,15 @@ const randomizeTrainNumber = (randomizeRegions = false) => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/tab.scss';
|
@use '@/styles/tab';
|
||||||
@import '../../styles/global.scss';
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
|
.number-generator-tab {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1em;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.category-select {
|
.category-select {
|
||||||
select {
|
select {
|
||||||
@@ -264,7 +271,7 @@ const randomizeTrainNumber = (randomizeRegions = false) => {
|
|||||||
|
|
||||||
margin: 0.5em 0;
|
margin: 0.5em 0;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
background-color: $secondaryColor;
|
background-color: var(--secondaryColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.category-rules {
|
.category-rules {
|
||||||
@@ -282,13 +289,13 @@ const randomizeTrainNumber = (randomizeRegions = false) => {
|
|||||||
margin: 0.25em 0;
|
margin: 0.25em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
@include responsive.midScreen {
|
||||||
.number-generator {
|
.number-generator-tab {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointSm) {
|
@include responsive.smallScreen {
|
||||||
.regions-select {
|
.regions-select {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,114 +1,96 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="stock-generator tab">
|
<div class="stock-generator-tab">
|
||||||
<div class="tab_header">
|
<div>
|
||||||
<h2>{{ $t('stockgen.title') }}</h2>
|
<h2>{{ $t('stockgen.properties-title') }}</h2>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tab_content">
|
<b class="text--accent">
|
||||||
<div>
|
{{ $t('stockgen.properties-desc') }}
|
||||||
<h2>{{ $t('stockgen.properties-title') }}</h2>
|
</b>
|
||||||
|
|
||||||
<b class="text--accent">
|
<div class="inputs">
|
||||||
{{ $t('stockgen.properties-desc') }}
|
<label>
|
||||||
</b>
|
<span>{{ $t('stockgen.input-mass') }}</span>
|
||||||
|
<input type="number" v-model="maxTons" step="100" max="4000" min="0" />
|
||||||
|
</label>
|
||||||
|
|
||||||
<div class="inputs">
|
<label>
|
||||||
<label>
|
<span>{{ $t('stockgen.input-length') }}</span>
|
||||||
<span>{{ $t('stockgen.input-mass') }}</span>
|
<input type="number" v-model="maxLength" step="25" max="650" min="0" />
|
||||||
<input type="number" v-model="maxTons" step="100" max="4000" min="0" />
|
</label>
|
||||||
</label>
|
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
<span>{{ $t('stockgen.input-length') }}</span>
|
<span>{{ $t('stockgen.input-carcount') }}</span>
|
||||||
<input type="number" v-model="maxLength" step="25" max="650" min="0" />
|
<input type="number" v-model="maxCarCount" step="1" max="60" min="1" />
|
||||||
</label>
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
<label>
|
<!-- <hr style="margin: 1em 0" /> -->
|
||||||
<span>{{ $t('stockgen.input-carcount') }}</span>
|
|
||||||
<input type="number" v-model="maxCarCount" step="1" max="60" min="1" />
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- <hr style="margin: 1em 0" /> -->
|
<!-- <div class="generator_options">
|
||||||
|
|
||||||
<!-- <div class="generator_options">
|
|
||||||
<Checkbox v-model="isCarGroupingEnabled">Grupuj wylosowane wagony (ustawia podobne wagony obok siebie w składzie)</Checkbox>
|
<Checkbox v-model="isCarGroupingEnabled">Grupuj wylosowane wagony (ustawia podobne wagony obok siebie w składzie)</Checkbox>
|
||||||
</div> -->
|
</div> -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>{{ $t('stockgen.cargo-title') }}</h2>
|
||||||
|
<b>{{ $t('stockgen.cargo-desc') }}</b>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="generator_cargo">
|
||||||
|
<button
|
||||||
|
v-for="cargo in computedCargoData"
|
||||||
|
:key="cargo.name"
|
||||||
|
class="btn"
|
||||||
|
:data-chosen="chosenCargoTypes.includes(cargo.name)"
|
||||||
|
@click="toggleCargoChosen(cargo.name, cargo.cargoList)"
|
||||||
|
>
|
||||||
|
{{ $t(`cargo.${cargo.name}`) }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>{{ $t('stockgen.chosen-title') }}</h2>
|
||||||
|
|
||||||
|
<div class="generator_warning">
|
||||||
|
<span v-if="computedChosenCarTypes.size == 0">
|
||||||
|
{{ $t('stockgen.chosen-empty-warning') }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span v-else>
|
||||||
|
{{ $t('stockgen.chosen-warning') }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div>
|
<div class="generator_vehicles" v-if="computedChosenCarTypes.size != 0">
|
||||||
<h2>{{ $t('stockgen.cargo-title') }}</h2>
|
<button
|
||||||
<b>{{ $t('stockgen.cargo-desc') }}</b>
|
:data-chosen="true"
|
||||||
</div>
|
:data-excluded="excludedCarTypes.includes(carType)"
|
||||||
|
class="btn"
|
||||||
|
v-for="carType in computedChosenCarTypes"
|
||||||
|
:key="carType"
|
||||||
|
@mouseover="onMouseHover(carType)"
|
||||||
|
@mouseleave="onMouseLeave"
|
||||||
|
@click="toggleCarExclusion(carType)"
|
||||||
|
>
|
||||||
|
{{ carType }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="generator_cargo">
|
<hr />
|
||||||
<button
|
|
||||||
v-for="cargo in computedCargoData"
|
|
||||||
:key="cargo.name"
|
|
||||||
class="btn"
|
|
||||||
:data-chosen="chosenCargoTypes.includes(cargo.name)"
|
|
||||||
@click="toggleCargoChosen(cargo.name, cargo.cargoList)"
|
|
||||||
>
|
|
||||||
{{ $t(`cargo.${cargo.name}`) }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
<div class="tab_actions">
|
||||||
<h2>{{ $t('stockgen.chosen-title') }}</h2>
|
<button class="btn" :data-disabled="computedChosenCarTypes.size == 0" @click="generateStock()">
|
||||||
|
{{ $t('stockgen.action-generate') }}
|
||||||
|
</button>
|
||||||
|
|
||||||
<div class="generator_warning">
|
<button class="btn" :data-disabled="computedChosenCarTypes.size == 0" @click="generateStock(true)">
|
||||||
<span v-if="computedChosenCarTypes.size == 0">
|
{{ $t('stockgen.action-generate-empty') }}
|
||||||
{{ $t('stockgen.chosen-empty-warning') }}
|
</button>
|
||||||
</span>
|
|
||||||
|
|
||||||
<span v-else>
|
<button class="btn" :data-disabled="computedChosenCarTypes.size == 0" @click="resetChosenCargo">
|
||||||
{{ $t('stockgen.chosen-warning') }}
|
{{ $t('stockgen.action-reset') }}
|
||||||
</span>
|
</button>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="generator_vehicles" v-if="computedChosenCarTypes.size != 0">
|
|
||||||
<button
|
|
||||||
:data-chosen="true"
|
|
||||||
:data-excluded="excludedCarTypes.includes(carType)"
|
|
||||||
class="btn"
|
|
||||||
v-for="carType in computedChosenCarTypes"
|
|
||||||
:key="carType"
|
|
||||||
@mouseover="onMouseHover(carType)"
|
|
||||||
@mouseleave="onMouseLeave"
|
|
||||||
@click="toggleCarExclusion(carType)"
|
|
||||||
>
|
|
||||||
{{ carType }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
|
|
||||||
<div class="tab_actions">
|
|
||||||
<button
|
|
||||||
class="btn"
|
|
||||||
:data-disabled="computedChosenCarTypes.size == 0"
|
|
||||||
@click="generateStock()"
|
|
||||||
>
|
|
||||||
{{ $t('stockgen.action-generate') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="btn"
|
|
||||||
:data-disabled="computedChosenCarTypes.size == 0"
|
|
||||||
@click="generateStock(true)"
|
|
||||||
>
|
|
||||||
{{ $t('stockgen.action-generate-empty') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="btn"
|
|
||||||
:data-disabled="computedChosenCarTypes.size == 0"
|
|
||||||
@click="resetChosenCargo"
|
|
||||||
>
|
|
||||||
{{ $t('stockgen.action-reset') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -118,9 +100,11 @@ import { defineComponent } from 'vue';
|
|||||||
import { useStore } from '../../store';
|
import { useStore } from '../../store';
|
||||||
|
|
||||||
import stockMixin from '../../mixins/stockMixin';
|
import stockMixin from '../../mixins/stockMixin';
|
||||||
import { ICargo, ICarWagon, IStock } from '../../types';
|
import { ICargo, ICarWagon, IStock } from '../../types/common.types';
|
||||||
import { isTractionUnit } from '../../utils/vehicleUtils';
|
import { isTractionUnit } from '../../utils/vehicleUtils';
|
||||||
|
|
||||||
|
import generatorDataJSON from '../../data/generatorData.json';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'stock-generator',
|
name: 'stock-generator',
|
||||||
mixins: [stockMixin],
|
mixins: [stockMixin],
|
||||||
@@ -150,15 +134,13 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
computedCargoData() {
|
computedCargoData() {
|
||||||
if (!this.store.vehiclesData?.generator.cargo) return [];
|
const cargoGeneratorData = generatorDataJSON.cargo;
|
||||||
|
|
||||||
const cargoGeneratorData = this.store.vehiclesData.generator.cargo;
|
|
||||||
|
|
||||||
return Object.keys(cargoGeneratorData)
|
return Object.keys(cargoGeneratorData)
|
||||||
.sort((v1, v2) => this.$t(`cargo.${v1}`).localeCompare(this.$t(`cargo.${v2}`)))
|
.sort((v1, v2) => this.$t(`cargo.${v1}`).localeCompare(this.$t(`cargo.${v2}`)))
|
||||||
.map((v) => ({
|
.map((v) => ({
|
||||||
name: v,
|
name: v,
|
||||||
cargoList: cargoGeneratorData[v],
|
cargoList: cargoGeneratorData[v as keyof typeof generatorDataJSON.cargo],
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -187,16 +169,14 @@ export default defineComponent({
|
|||||||
if (!this.isCarGroupingEnabled) return false;
|
if (!this.isCarGroupingEnabled) return false;
|
||||||
|
|
||||||
stockList.sort((s1, s2) => {
|
stockList.sort((s1, s2) => {
|
||||||
return (s1.vehicleRef.constructionType + s1.cargo?.id).localeCompare(
|
return (s1.vehicleRef.constructionType + s1.cargo?.id).localeCompare(s2.vehicleRef.constructionType + s2.cargo?.id);
|
||||||
s2.vehicleRef.constructionType + s2.cargo?.id
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
generateStock(empty = false) {
|
generateStock(empty = false) {
|
||||||
const generatedChosenStockList = this.chosenCargoTypes.reduce(
|
const generatedChosenStockList = this.chosenCargoTypes.reduce(
|
||||||
(acc, type) => {
|
(acc, type) => {
|
||||||
this.store.vehiclesData?.generator.cargo[type]
|
generatorDataJSON.cargo[type as keyof typeof generatorDataJSON.cargo]
|
||||||
.filter((c) => !this.excludedCarTypes.includes(c.split(':')[0]))
|
.filter((c) => !this.excludedCarTypes.includes(c.split(':')[0]))
|
||||||
.forEach((c) => {
|
.forEach((c) => {
|
||||||
const [type, cargoType] = c.split(':');
|
const [type, cargoType] = c.split(':');
|
||||||
@@ -206,14 +186,11 @@ export default defineComponent({
|
|||||||
|
|
||||||
if (!cargoType || empty) cargoObjs.push(undefined);
|
if (!cargoType || empty) cargoObjs.push(undefined);
|
||||||
else if (cargoType == 'all') cargoObjs.push(...carWagonObjs[0]!.cargoTypes);
|
else if (cargoType == 'all') cargoObjs.push(...carWagonObjs[0]!.cargoTypes);
|
||||||
else
|
else cargoObjs.push(carWagonObjs[0]?.cargoTypes.find((cargo) => cargo.id == cargoType));
|
||||||
cargoObjs.push(carWagonObjs[0]?.cargoTypes.find((cargo) => cargo.id == cargoType));
|
|
||||||
|
|
||||||
carWagonObjs.forEach((cw) => {
|
carWagonObjs.forEach((cw) => {
|
||||||
cargoObjs.forEach((cargoObj) => {
|
cargoObjs.forEach((cargoObj) => {
|
||||||
const chosenStock = acc.find((a) =>
|
const chosenStock = acc.find((a) => a.constructionType.includes(cw.constructionType));
|
||||||
a.constructionType.includes(cw.constructionType)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!chosenStock)
|
if (!chosenStock)
|
||||||
acc.push({
|
acc.push({
|
||||||
@@ -227,36 +204,21 @@ export default defineComponent({
|
|||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
},
|
},
|
||||||
[] as {
|
[] as { constructionType: string; carPool: { carWagon: ICarWagon; cargo?: ICargo }[] }[]
|
||||||
constructionType: string;
|
|
||||||
carPool: { carWagon: ICarWagon; cargo?: ICargo }[];
|
|
||||||
}[]
|
|
||||||
);
|
);
|
||||||
|
|
||||||
let bestGeneration: { stockList: IStock[]; value: number } = {
|
let bestGeneration: { stockList: IStock[]; value: number } = { stockList: [], value: 0 };
|
||||||
stockList: [],
|
|
||||||
value: 0,
|
|
||||||
};
|
|
||||||
|
|
||||||
for (let i = 0; i < 10; i++) {
|
for (let i = 0; i < 10; i++) {
|
||||||
this.store.stockList.splice(
|
this.store.stockList.splice(this.store.stockList.length > 0 && isTractionUnit(this.store.stockList[0].vehicleRef) ? 1 : 0);
|
||||||
this.store.stockList.length > 0 && isTractionUnit(this.store.stockList[0].vehicleRef)
|
|
||||||
? 1
|
|
||||||
: 0
|
|
||||||
);
|
|
||||||
|
|
||||||
let carCount = 0;
|
let carCount = 0;
|
||||||
const maxWeight =
|
const maxWeight = this.store.acceptableWeight > 0 ? Math.min(this.store.acceptableWeight, this.maxTons * 1000) : this.maxTons * 1000;
|
||||||
this.store.acceptableWeight > 0
|
|
||||||
? Math.min(this.store.acceptableWeight, this.maxTons * 1000)
|
|
||||||
: this.maxTons * 1000;
|
|
||||||
|
|
||||||
// eslint-disable-next-line no-constant-condition
|
// eslint-disable-next-line no-constant-condition
|
||||||
while (true) {
|
while (true) {
|
||||||
const randomStockType =
|
const randomStockType = generatedChosenStockList[~~(Math.random() * generatedChosenStockList.length)];
|
||||||
generatedChosenStockList[~~(Math.random() * generatedChosenStockList.length)];
|
const { carWagon, cargo } = randomStockType.carPool[~~(Math.random() * randomStockType.carPool.length)];
|
||||||
const { carWagon, cargo } =
|
|
||||||
randomStockType.carPool[~~(Math.random() * randomStockType.carPool.length)];
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.store.totalWeight + (carWagon.weight + (cargo?.weight ?? 0)) > maxWeight ||
|
this.store.totalWeight + (carWagon.weight + (cargo?.weight ?? 0)) > maxWeight ||
|
||||||
@@ -280,10 +242,9 @@ export default defineComponent({
|
|||||||
|
|
||||||
const bestStockList = bestGeneration.stockList;
|
const bestStockList = bestGeneration.stockList;
|
||||||
|
|
||||||
this.groupStock(bestStockList);
|
|
||||||
|
|
||||||
this.store.stockList = bestGeneration.stockList;
|
this.store.stockList = bestGeneration.stockList;
|
||||||
this.store.stockSectionMode = 'stock-list';
|
this.groupStock(bestStockList);
|
||||||
|
this.$router.push('/');
|
||||||
},
|
},
|
||||||
|
|
||||||
previewCar(type: string) {
|
previewCar(type: string) {
|
||||||
@@ -325,8 +286,15 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global.scss';
|
@use '@/styles/tab';
|
||||||
@import '../../styles/tab.scss';
|
|
||||||
|
.stock-generator-tab {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 1em;
|
||||||
|
overflow: auto;
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@@ -347,8 +315,6 @@ h2 {
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
background-color: $secondaryColor;
|
|
||||||
|
|
||||||
&[data-excluded='true'] {
|
&[data-excluded='true'] {
|
||||||
background-color: gray;
|
background-color: gray;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
@@ -361,7 +327,7 @@ h2 {
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
||||||
transform: translate(-8px, -50%);
|
transform: translate(-8px, -50%);
|
||||||
background-color: $bgColor;
|
background-color: var(--bgColor);
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -402,7 +368,7 @@ h2 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.generator_warning {
|
.generator_warning {
|
||||||
background-color: $accentColor;
|
background-color: var(--accentColor);
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|||||||
@@ -1,702 +1,57 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="stock-list-tab">
|
<section class="stock-list-tab">
|
||||||
<div class="tab_header">
|
<!-- Stock Actions -->
|
||||||
<h2>{{ $t('stocklist.title') }}</h2>
|
<StockActions />
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="tab_content">
|
<!-- Stock Specs -->
|
||||||
<div class="stock_actions">
|
<StockSpecs />
|
||||||
<button class="btn btn--image" @click="clickFileInput">
|
|
||||||
<input type="file" @change="uploadStock" ref="conFile" accept=".con,.txt" />
|
|
||||||
<img src="/images/icon-upload.svg" alt="upload icon" />
|
|
||||||
{{ $t('stocklist.action-upload') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
<!-- Stock Spawn Settings -->
|
||||||
class="btn btn--image"
|
<StockSpawnSettings />
|
||||||
:data-disabled="stockIsEmpty"
|
|
||||||
:disabled="stockIsEmpty"
|
|
||||||
@click="downloadStock"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-download.svg" alt="download icon" />
|
|
||||||
{{ $t('stocklist.action-download') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
<!-- Stock Warnings -->
|
||||||
class="btn btn--image"
|
<StockWarnings />
|
||||||
:data-disabled="stockIsEmpty"
|
|
||||||
:disabled="stockIsEmpty"
|
|
||||||
@click="copyToClipboard"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-copy.svg" alt="copy icon" />
|
|
||||||
{{ $t('stocklist.action-copy') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
<!-- Stock List -->
|
||||||
class="btn btn--image"
|
<StockList />
|
||||||
:data-disabled="stockIsEmpty"
|
|
||||||
:disabled="stockIsEmpty"
|
|
||||||
@click="resetStock"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-reset.svg" alt="reset icon" />
|
|
||||||
{{ $t('stocklist.action-reset') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="btn btn--image"
|
|
||||||
:data-disabled="stockIsEmpty"
|
|
||||||
:disabled="stockIsEmpty"
|
|
||||||
@click="shuffleCars"
|
|
||||||
>
|
|
||||||
<img src="/images/icon-shuffle.svg" alt="shuffle icon" />
|
|
||||||
{{ $t('stocklist.action-shuffle') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="stock_controls" :data-disabled="store.chosenStockListIndex == -1">
|
|
||||||
<button
|
|
||||||
class="btn btn--image"
|
|
||||||
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
|
||||||
@click="moveUpStock(store.chosenStockListIndex)"
|
|
||||||
>
|
|
||||||
<img :src="getIconURL('higher')" alt="move up vehicle" />
|
|
||||||
{{ $t('stocklist.action-move-up') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="btn btn--image"
|
|
||||||
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
|
||||||
@click="moveDownStock(store.chosenStockListIndex)"
|
|
||||||
>
|
|
||||||
<img :src="getIconURL('lower')" alt="move down vehicle" />
|
|
||||||
{{ $t('stocklist.action-move-down') }}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
class="btn btn--image"
|
|
||||||
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
|
||||||
@click="removeStock(store.chosenStockListIndex)"
|
|
||||||
>
|
|
||||||
<img :src="getIconURL('remove')" alt="remove vehicle" />
|
|
||||||
{{ $t('stocklist.action-remove') }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="stock_specs">
|
|
||||||
<b class="real-stock-info" v-if="chosenRealComposition">
|
|
||||||
<span class="text--accent">
|
|
||||||
<img :src="getIconURL(chosenRealComposition.type)" :alt="chosenRealComposition.type" />
|
|
||||||
{{ chosenRealComposition.number }} {{ chosenRealComposition.name }}
|
|
||||||
</span>
|
|
||||||
|
|
|
||||||
</b>
|
|
||||||
|
|
||||||
<span>
|
|
||||||
{{ $t('stocklist.mass') }}
|
|
||||||
<span class="text--accent">{{ (store.totalWeight / 1000).toFixed(1) }}t</span>
|
|
||||||
({{ $t('stocklist.mass-accepted') }}:
|
|
||||||
<span class="text--accent">{{
|
|
||||||
store.acceptableWeight ? `${~~(store.acceptableWeight / 1000)}t` : '-'
|
|
||||||
}}</span
|
|
||||||
>) - {{ $t('stocklist.length') }}:
|
|
||||||
<span class="text--accent">{{ store.totalLength }}m</span>
|
|
||||||
- {{ $t('stocklist.vmax') }}
|
|
||||||
<span tabindex="0" :data-tooltip="$t('stocklist.disclaimer')">(?)</span>:
|
|
||||||
<span class="text--accent">{{ store.maxStockSpeed }} km/h</span>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div></div>
|
|
||||||
|
|
||||||
<div class="stock_spawn-settings">
|
|
||||||
<Checkbox :disabled="!store.stockSupportsColdStart" v-model="store.isColdStart">
|
|
||||||
{{ $t('stocklist.coldstart-info') }}
|
|
||||||
</Checkbox>
|
|
||||||
|
|
||||||
<Checkbox :disabled="!store.stockSupportsDoubleManning" v-model="store.isDoubleManned">
|
|
||||||
{{ $t('stocklist.doublemanning-info') }}
|
|
||||||
</Checkbox>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="stock_warnings" v-if="hasAnyWarnings">
|
|
||||||
<div class="warning" v-if="locoNotSuitable">
|
|
||||||
(!) {{ $t('stocklist.warning-not-suitable') }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="warning" v-if="lengthExceeded && store.isTrainPassenger">
|
|
||||||
(!) {{ $t('stocklist.warning-passenger-too-long') }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="warning" v-if="lengthExceeded && !store.isTrainPassenger">
|
|
||||||
(!) {{ $t('stocklist.warning-freight-too-long') }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="warning" v-if="teamOnlyVehicles.length > 0">
|
|
||||||
(!)
|
|
||||||
{{
|
|
||||||
$t('stocklist.warning-team-only-vehicle', [
|
|
||||||
teamOnlyVehicles.map((v) => v.vehicleRef.type).join(', '),
|
|
||||||
])
|
|
||||||
}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="warning" v-if="weightExceeded">
|
|
||||||
(!)
|
|
||||||
<i18n-t keypath="stocklist.warning-too-heavy">
|
|
||||||
<template #href>
|
|
||||||
<a
|
|
||||||
target="_blank"
|
|
||||||
href="https://docs.google.com/spreadsheets/d/1KVa5vn2d8XGkXQFwbavVudwKqUQxbLOucHWs2VYqAUE"
|
|
||||||
>
|
|
||||||
{{ $t('stocklist.acceptable-mass-docs') }}
|
|
||||||
</a>
|
|
||||||
</template>
|
|
||||||
</i18n-t>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="warning" v-if="locoCountExceeded">
|
|
||||||
{{ $t('stocklist.warning-too-many-locos') }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<StockThumbnails :onListItemClick="onListItemClick" />
|
|
||||||
|
|
||||||
<!-- Stock list -->
|
|
||||||
<div class="list-wrapper">
|
|
||||||
<div v-if="stockIsEmpty" class="list-empty">
|
|
||||||
<div class="stock-info">{{ $t('stocklist.list-empty') }}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul v-else>
|
|
||||||
<transition-group name="stock-list-anim">
|
|
||||||
<li
|
|
||||||
v-for="(stock, i) in store.stockList"
|
|
||||||
:key="stock.id"
|
|
||||||
:class="{ loco: isTractionUnit(stock.vehicleRef) }"
|
|
||||||
tabindex="0"
|
|
||||||
@click="onListItemClick(i)"
|
|
||||||
@keydown.enter="onListItemClick(i)"
|
|
||||||
@keydown.w="moveUpStock(i)"
|
|
||||||
@keydown.s="moveDownStock(i)"
|
|
||||||
@keydown.backspace="removeStock(i)"
|
|
||||||
ref="itemRefs"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="stock-info"
|
|
||||||
@dragstart="onDragStart(i)"
|
|
||||||
@drop="onDrop($event, i)"
|
|
||||||
@dragover="allowDrop"
|
|
||||||
draggable="true"
|
|
||||||
>
|
|
||||||
<span class="stock-info-no" :data-selected="i == store.chosenStockListIndex">
|
|
||||||
<span v-if="i == store.chosenStockListIndex">• </span>
|
|
||||||
{{ i + 1 }}.
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span
|
|
||||||
class="stock-info-type"
|
|
||||||
:data-sponsor-only="
|
|
||||||
stock.vehicleRef.sponsorOnlyTimestamp &&
|
|
||||||
stock.vehicleRef.sponsorOnlyTimestamp > Date.now()
|
|
||||||
"
|
|
||||||
:data-team-only="stock.vehicleRef.teamOnly"
|
|
||||||
>
|
|
||||||
{{
|
|
||||||
isTractionUnit(stock.vehicleRef)
|
|
||||||
? stock.vehicleRef.type
|
|
||||||
: getCarSpecFromType(stock.vehicleRef.type)
|
|
||||||
}}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="stock-info-cargo" v-if="stock.cargo">
|
|
||||||
{{ stock.cargo.id }}
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<span class="stock-info-length">{{ stock.vehicleRef.length }}m</span>
|
|
||||||
|
|
||||||
<span class="stock-info-mass">
|
|
||||||
{{ ((stock.vehicleRef.weight + (stock.cargo?.weight ?? 0)) / 1000).toFixed(1) }}t
|
|
||||||
</span>
|
|
||||||
<span class="stock-info-speed">{{ stock.vehicleRef.maxSpeed }}km/h</span>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</transition-group>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
import { useStore } from '../../store';
|
import StockActions from './stock-list/StockActions.vue';
|
||||||
|
import StockSpecs from './stock-list/StockSpecs.vue';
|
||||||
import imageMixin from '../../mixins/imageMixin';
|
import StockSpawnSettings from './stock-list/StockSpawnSettings.vue';
|
||||||
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
|
import StockWarnings from './stock-list/StockWarnings.vue';
|
||||||
import StockThumbnails from '../utils/StockThumbnails.vue';
|
import StockList from './stock-list/StockList.vue';
|
||||||
import stockMixin from '../../mixins/stockMixin';
|
|
||||||
import Checkbox from '../common/Checkbox.vue';
|
|
||||||
import { isTractionUnit } from '../../utils/vehicleUtils';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'stock-list',
|
name: 'stock-list',
|
||||||
components: { StockThumbnails, Checkbox },
|
|
||||||
|
|
||||||
mixins: [imageMixin, stockMixin, stockPreviewMixin],
|
components: {
|
||||||
|
StockActions,
|
||||||
setup() {
|
StockSpecs,
|
||||||
const store = useStore();
|
StockSpawnSettings,
|
||||||
|
StockWarnings,
|
||||||
return {
|
StockList,
|
||||||
store,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
data: () => ({
|
|
||||||
imageOffsetY: 0,
|
|
||||||
draggedVehicleID: -1,
|
|
||||||
|
|
||||||
stockActions: [{}],
|
|
||||||
}),
|
|
||||||
|
|
||||||
computed: {
|
|
||||||
chosenRealComposition() {
|
|
||||||
const currentStockString = this.store.stockList.map((s) => s.vehicleRef.type).join(';');
|
|
||||||
|
|
||||||
return this.store.realCompositionList.find((rc) => rc.stockString == currentStockString);
|
|
||||||
},
|
|
||||||
|
|
||||||
stockString() {
|
|
||||||
if (this.store.stockList.length == 0) return '';
|
|
||||||
|
|
||||||
const includeColdStart = this.store.isColdStart && this.store.stockSupportsColdStart;
|
|
||||||
const includeDoubleManned =
|
|
||||||
this.store.isDoubleManned && this.store.stockSupportsDoubleManning;
|
|
||||||
|
|
||||||
return this.store.stockList
|
|
||||||
.map((stock, i) => {
|
|
||||||
let stockTypeStr =
|
|
||||||
isTractionUnit(stock.vehicleRef) || !stock.cargo
|
|
||||||
? stock.vehicleRef.type
|
|
||||||
: `${stock.vehicleRef.type}:${stock.cargo.id}`;
|
|
||||||
|
|
||||||
if (i == 0 && (includeColdStart || includeDoubleManned))
|
|
||||||
return `${stockTypeStr},${includeColdStart ? 'c' : ''}${includeDoubleManned ? 'd' : ''}`;
|
|
||||||
|
|
||||||
return stockTypeStr;
|
|
||||||
})
|
|
||||||
.join(';');
|
|
||||||
},
|
|
||||||
|
|
||||||
stockIsEmpty() {
|
|
||||||
return this.store.stockList.length == 0;
|
|
||||||
},
|
|
||||||
|
|
||||||
chosenStockVehicle() {
|
|
||||||
return this.store.chosenStockListIndex == -1
|
|
||||||
? undefined
|
|
||||||
: this.store.stockList[this.store.chosenStockListIndex];
|
|
||||||
},
|
|
||||||
|
|
||||||
lengthExceeded() {
|
|
||||||
return (
|
|
||||||
(this.store.totalLength > 350 && this.store.isTrainPassenger) ||
|
|
||||||
(this.store.totalLength > 650 && !this.store.isTrainPassenger)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
weightExceeded() {
|
|
||||||
return this.store.acceptableWeight && this.store.totalWeight > this.store.acceptableWeight;
|
|
||||||
},
|
|
||||||
|
|
||||||
locoNotSuitable() {
|
|
||||||
return (
|
|
||||||
!this.store.isTrainPassenger &&
|
|
||||||
this.store.stockList.length > 1 &&
|
|
||||||
!this.store.stockList.every((stock) => isTractionUnit(stock.vehicleRef)) &&
|
|
||||||
this.store.stockList.some(
|
|
||||||
(stock) => isTractionUnit(stock.vehicleRef) && stock.vehicleRef.type.startsWith('EP')
|
|
||||||
)
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
locoCountExceeded() {
|
|
||||||
return (
|
|
||||||
this.store.stockList.reduce((acc, stock) => {
|
|
||||||
if (isTractionUnit(stock.vehicleRef)) acc += 1;
|
|
||||||
return acc;
|
|
||||||
}, 0) > 2
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
teamOnlyVehicles() {
|
|
||||||
return this.store.stockList.filter((stock) => stock.vehicleRef.teamOnly);
|
|
||||||
},
|
|
||||||
|
|
||||||
hasAnyWarnings() {
|
|
||||||
return (
|
|
||||||
this.locoCountExceeded ||
|
|
||||||
this.weightExceeded ||
|
|
||||||
this.lengthExceeded ||
|
|
||||||
this.locoNotSuitable ||
|
|
||||||
this.teamOnlyVehicles
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
isTractionUnit,
|
|
||||||
|
|
||||||
copyToClipboard() {
|
|
||||||
navigator.clipboard.writeText(this.stockString);
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
alert(this.$t('stocklist.alert-copied'));
|
|
||||||
}, 20);
|
|
||||||
},
|
|
||||||
|
|
||||||
clickFileInput() {
|
|
||||||
(this.$refs['conFile'] as HTMLInputElement).click();
|
|
||||||
},
|
|
||||||
|
|
||||||
onListItemClick(stockID: number) {
|
|
||||||
const stock = this.store.stockList[stockID];
|
|
||||||
|
|
||||||
this.store.chosenStockListIndex =
|
|
||||||
this.store.chosenStockListIndex == stockID &&
|
|
||||||
this.store.chosenVehicle?.type == stock.vehicleRef.type
|
|
||||||
? -1
|
|
||||||
: stockID;
|
|
||||||
|
|
||||||
if (this.store.chosenStockListIndex == -1) {
|
|
||||||
this.store.chosenVehicle = null;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.store.swapVehicles) this.store.swapVehicles = false;
|
|
||||||
|
|
||||||
this.previewStock(stock);
|
|
||||||
},
|
|
||||||
|
|
||||||
getCarSpecFromType(typeStr: string) {
|
|
||||||
const specArray = typeStr.split('_');
|
|
||||||
|
|
||||||
if (specArray.length == 0) return null;
|
|
||||||
|
|
||||||
/* 111a_Grafitti_1 */
|
|
||||||
if (specArray.length == 3) return `${specArray[0]} ${specArray[1]}-${specArray[2]}`;
|
|
||||||
|
|
||||||
/* 111a_PKP_Bnouz_01 */
|
|
||||||
return `${specArray[0]} ${specArray[2]}-${specArray[3]} (${specArray[1]})`;
|
|
||||||
},
|
|
||||||
|
|
||||||
resetStock() {
|
|
||||||
this.store.stockList.length = 0;
|
|
||||||
this.store.chosenStockListIndex = -1;
|
|
||||||
},
|
|
||||||
|
|
||||||
removeStock(index: number) {
|
|
||||||
if (index == -1) return;
|
|
||||||
|
|
||||||
this.store.stockList = this.store.stockList.filter((stock, i) => i != index);
|
|
||||||
|
|
||||||
if (this.store.stockList.length < index + 1) this.store.chosenStockListIndex = -1;
|
|
||||||
},
|
|
||||||
|
|
||||||
moveUpStock(index: number) {
|
|
||||||
if (index < 1) return;
|
|
||||||
|
|
||||||
const tempStock = this.store.stockList[index];
|
|
||||||
|
|
||||||
this.store.stockList[index] = this.store.stockList[index - 1];
|
|
||||||
this.store.stockList[index - 1] = tempStock;
|
|
||||||
|
|
||||||
this.store.chosenStockListIndex = index - 1;
|
|
||||||
},
|
|
||||||
|
|
||||||
moveDownStock(index: number) {
|
|
||||||
if (index == -1) return;
|
|
||||||
if (index > this.store.stockList.length - 2) return;
|
|
||||||
|
|
||||||
const tempStock = this.store.stockList[index];
|
|
||||||
|
|
||||||
this.store.stockList[index] = this.store.stockList[index + 1];
|
|
||||||
this.store.stockList[index + 1] = tempStock;
|
|
||||||
|
|
||||||
this.store.chosenStockListIndex = index + 1;
|
|
||||||
},
|
|
||||||
|
|
||||||
shuffleCars() {
|
|
||||||
const availableIndexes = this.store.stockList.reduce((acc, stock, i) => {
|
|
||||||
if (!isTractionUnit(stock.vehicleRef)) acc.push(i);
|
|
||||||
|
|
||||||
return acc;
|
|
||||||
}, [] as number[]);
|
|
||||||
|
|
||||||
for (let i = 0; i < this.store.stockList.length; i++) {
|
|
||||||
if (!availableIndexes.includes(i)) continue;
|
|
||||||
|
|
||||||
availableIndexes.splice(i, -1);
|
|
||||||
|
|
||||||
const randAvailableIndex =
|
|
||||||
availableIndexes[Math.floor(Math.random() * availableIndexes.length)];
|
|
||||||
const tempSwap = this.store.stockList[randAvailableIndex];
|
|
||||||
|
|
||||||
this.store.stockList[randAvailableIndex] = this.store.stockList[i];
|
|
||||||
this.store.stockList[i] = tempSwap;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
downloadStock() {
|
|
||||||
if (this.store.stockList.length == 0) return alert(this.$t('stocklist.alert-empty'));
|
|
||||||
|
|
||||||
const defaultName = `${this.chosenRealComposition ? this.chosenRealComposition.stockId + ' ' : ''}${this.store.stockList[0].vehicleRef.type} ${(this.store.totalWeight / 1000).toFixed(1)}t; ${
|
|
||||||
this.store.totalLength
|
|
||||||
}m; vmax ${this.store.maxStockSpeed}`;
|
|
||||||
|
|
||||||
const fileName = prompt(this.$t('stocklist.prompt-file'), defaultName);
|
|
||||||
|
|
||||||
if (!fileName) return;
|
|
||||||
|
|
||||||
const blob = new Blob([this.stockString]);
|
|
||||||
const file = fileName + '.con';
|
|
||||||
|
|
||||||
var e = document.createEvent('MouseEvents'),
|
|
||||||
a = document.createElement('a');
|
|
||||||
a.download = file;
|
|
||||||
a.href = window.URL.createObjectURL(blob);
|
|
||||||
a.dataset.downloadurl = ['', a.download, a.href].join(':');
|
|
||||||
e.initEvent('click', true, false);
|
|
||||||
a.dispatchEvent(e);
|
|
||||||
},
|
|
||||||
|
|
||||||
uploadStock() {
|
|
||||||
const inputEl = this.$refs['conFile'] as HTMLInputElement;
|
|
||||||
const files = inputEl.files;
|
|
||||||
|
|
||||||
if (files?.length != 1) return;
|
|
||||||
if (!/\.con$/.test(files[0].name)) return;
|
|
||||||
|
|
||||||
const reader = new FileReader();
|
|
||||||
reader.readAsText(files[0]);
|
|
||||||
|
|
||||||
reader.onload = (res) => {
|
|
||||||
const stockString = res.target?.result;
|
|
||||||
|
|
||||||
if (!stockString || typeof stockString !== 'string') return;
|
|
||||||
|
|
||||||
this.loadStockFromString(stockString);
|
|
||||||
};
|
|
||||||
|
|
||||||
reader.onerror = (err) => console.error(err);
|
|
||||||
|
|
||||||
inputEl.value = '';
|
|
||||||
},
|
|
||||||
|
|
||||||
onDragStart(vehicleIndex: number) {
|
|
||||||
this.draggedVehicleID = vehicleIndex;
|
|
||||||
},
|
|
||||||
|
|
||||||
onDrop(e: DragEvent, vehicleIndex: number) {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
let targetEl = (this.$refs['itemRefs'] as Element[])[vehicleIndex];
|
|
||||||
|
|
||||||
if (!targetEl) return;
|
|
||||||
|
|
||||||
const tempVehicle = this.store.stockList[vehicleIndex];
|
|
||||||
|
|
||||||
this.store.stockList[vehicleIndex] = this.store.stockList[this.draggedVehicleID];
|
|
||||||
this.store.stockList[this.draggedVehicleID] = tempVehicle;
|
|
||||||
|
|
||||||
this.store.chosenStockListIndex = vehicleIndex;
|
|
||||||
},
|
|
||||||
|
|
||||||
allowDrop(e: DragEvent) {
|
|
||||||
e.preventDefault();
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/global';
|
@use '../../styles/tab';
|
||||||
@import '../../styles/tab.scss';
|
|
||||||
|
.stock-list-tab {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto auto auto auto 1fr;
|
||||||
|
gap: 0.5em;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.tab_content {
|
.tab_content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.warning {
|
|
||||||
padding: 0.25em;
|
|
||||||
margin: 0.25em 0;
|
|
||||||
background: $accentColor;
|
|
||||||
color: black;
|
|
||||||
|
|
||||||
font-weight: bold;
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: black;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock_controls {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
|
|
||||||
gap: 0.5em;
|
|
||||||
|
|
||||||
padding: 0.5em;
|
|
||||||
|
|
||||||
background-color: #353a57;
|
|
||||||
|
|
||||||
&[data-disabled='true'] {
|
|
||||||
opacity: 0.8;
|
|
||||||
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock_actions {
|
|
||||||
display: grid;
|
|
||||||
gap: 0.5em;
|
|
||||||
|
|
||||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
||||||
|
|
||||||
button {
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
input {
|
|
||||||
opacity: 0;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock_spawn-settings {
|
|
||||||
display: flex;
|
|
||||||
gap: 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.real-stock-info {
|
|
||||||
img {
|
|
||||||
height: 1.3ch;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-wrapper {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-empty {
|
|
||||||
background-color: $secondaryColor;
|
|
||||||
border-radius: 0.5em;
|
|
||||||
padding: 0.75em;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
overflow-y: scroll;
|
|
||||||
height: 500px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul > li {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
min-width: 500px;
|
|
||||||
|
|
||||||
margin: 0.25em 0;
|
|
||||||
|
|
||||||
outline: none;
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&:focus-visible {
|
|
||||||
outline: 1px solid white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
li > .stock-info {
|
|
||||||
display: flex;
|
|
||||||
gap: 0.25em;
|
|
||||||
|
|
||||||
color: white;
|
|
||||||
font-weight: 700;
|
|
||||||
|
|
||||||
transition: color 100ms;
|
|
||||||
|
|
||||||
& > span {
|
|
||||||
padding: 0.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-info-no,
|
|
||||||
.stock-info-type {
|
|
||||||
background-color: $secondaryColor;
|
|
||||||
|
|
||||||
&[data-team-only='true'] {
|
|
||||||
color: $teamColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
&[data-sponsor-only='true'] {
|
|
||||||
color: $sponsorColor;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-info-no {
|
|
||||||
min-width: 3.5em;
|
|
||||||
text-align: right;
|
|
||||||
|
|
||||||
&[data-selected='true'] {
|
|
||||||
color: $accentColor;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-info-cargo {
|
|
||||||
background-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-info-length,
|
|
||||||
.stock-info-mass,
|
|
||||||
.stock-info-speed {
|
|
||||||
background-color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
.stock-list-anim {
|
|
||||||
&-move, /* apply transition to moving elements */
|
|
||||||
&-enter-active,
|
|
||||||
&-leave-active {
|
|
||||||
transition: all 250ms ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-enter-from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(-25px);
|
|
||||||
}
|
|
||||||
|
|
||||||
&-leave-to {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&-leave-active {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointMd) {
|
|
||||||
ul {
|
|
||||||
min-height: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -0,0 +1,232 @@
|
|||||||
|
<template>
|
||||||
|
<section class="storage-tab">
|
||||||
|
<div class="tab_header">
|
||||||
|
<h2>{{ $t('storage.title') }}</h2>
|
||||||
|
<h3>{{ $t('storage.subtitle') }}</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="tab_content">
|
||||||
|
<transition-group name="storage-list-anim" tag="ul" class="storage-list">
|
||||||
|
<li v-for="storageEntry in storageStockDataList" :key="storageEntry.id">
|
||||||
|
<div class="storage-item-top">
|
||||||
|
<h3>
|
||||||
|
{{ storageEntry.id }}
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<div class="storage-item-top-actions">
|
||||||
|
<button class="btn btn--icon" @click="chooseStorageStock(storageEntry.id)">
|
||||||
|
<LogIn />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button class="btn btn--icon" @click="toggleStorageEntryExpand(storageEntry.id)">
|
||||||
|
<ChevronDown v-if="!expandedEntries.includes(storageEntry.id)" />
|
||||||
|
<ChevronUp v-else />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button class="btn btn--icon" @click="removeStockIndexFromStorage(storageEntry.id)">
|
||||||
|
<Trash2 />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="storage-item-expandable" v-if="expandedEntries.includes(storageEntry.id)">
|
||||||
|
<i>
|
||||||
|
{{ $t('storage.created-at') }}
|
||||||
|
{{ new Date(storageEntry.createdAt).toLocaleString($i18n.locale) }}</i
|
||||||
|
>
|
||||||
|
<i v-if="storageEntry.updatedAt">
|
||||||
|
• {{ $t('storage.updated-at') }} {{ new Date(storageEntry.updatedAt).toLocaleString($i18n.locale) }}</i
|
||||||
|
>
|
||||||
|
|
||||||
|
<div style="margin-top: 0.5em">
|
||||||
|
<i>{{ $t('storage.stock-title') }} </i>
|
||||||
|
{{ shortenStockString(storageEntry.stockString) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li v-if="Object.keys(storageStockDataList).length == 0" class="storage-no-entries">
|
||||||
|
{{ $t('storage.no-entires') }}
|
||||||
|
</li>
|
||||||
|
</transition-group>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
|
||||||
|
import { useStore } from '../../store';
|
||||||
|
import stockMixin from '../../mixins/stockMixin';
|
||||||
|
import { ChevronDown, ChevronUp, LogIn, Trash2 } from 'lucide-vue-next';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
components: {
|
||||||
|
ChevronDown,
|
||||||
|
ChevronUp,
|
||||||
|
LogIn,
|
||||||
|
Trash2,
|
||||||
|
},
|
||||||
|
|
||||||
|
mixins: [stockMixin],
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
expandedEntries: [] as string[],
|
||||||
|
}),
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
storageStockDataList() {
|
||||||
|
return Object.values(this.store.storageStockData)
|
||||||
|
.sort((a, b) => (b.updatedAt ?? b.createdAt) - (a.updatedAt ?? a.createdAt))
|
||||||
|
.map((data) => ({
|
||||||
|
...data,
|
||||||
|
isExpanded: false,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
shortenStockString(stockString: string) {
|
||||||
|
return Array.from(
|
||||||
|
stockString.split(';').reduce(
|
||||||
|
(acc, s) => {
|
||||||
|
const stockName = s.split(/:|,/)[0];
|
||||||
|
acc.set(stockName, (acc.get(stockName) ?? 0) + 1);
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
},
|
||||||
|
new Map() as Map<string, number>
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.map(([stockName, count]) => `${count}x ${stockName.replace(/_/g, ' ')}`)
|
||||||
|
.join(', ');
|
||||||
|
},
|
||||||
|
removeStockIndexFromStorage(stockName: string) {
|
||||||
|
let removeConfirm = confirm(this.$t('storage.remove-confirm'));
|
||||||
|
|
||||||
|
if (!removeConfirm) return;
|
||||||
|
|
||||||
|
delete this.store.storageStockData[stockName];
|
||||||
|
this.store.chosenStorageStockName = '';
|
||||||
|
this.store.chosenStorageStockString = '';
|
||||||
|
|
||||||
|
try {
|
||||||
|
localStorage.setItem('savedStockData', JSON.stringify(this.store.storageStockData));
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Wystąpił błąd podczas usuwania składu z localStorage!', error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
chooseStorageStock(stockName: string) {
|
||||||
|
try {
|
||||||
|
this.loadStockFromString(this.store.storageStockData[stockName].stockString);
|
||||||
|
this.store.chosenStorageStockName = stockName;
|
||||||
|
this.store.chosenStorageStockString = this.store.storageStockData[stockName].stockString;
|
||||||
|
|
||||||
|
this.$router.push('/');
|
||||||
|
} catch (error) {
|
||||||
|
console.log(error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
toggleStorageEntryExpand(stockName: string) {
|
||||||
|
const stockIndex = this.expandedEntries.indexOf(stockName);
|
||||||
|
|
||||||
|
if (stockIndex == -1) this.expandedEntries.push(stockName);
|
||||||
|
else this.expandedEntries.splice(stockIndex, 1);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@use '@/styles/tab';
|
||||||
|
|
||||||
|
.storage-tab {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab_actions {
|
||||||
|
grid-template-columns: repeat(2, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab_content {
|
||||||
|
overflow: auto;
|
||||||
|
margin-top: 1em;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.storage-list {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.storage-list > li {
|
||||||
|
padding: 0.5em;
|
||||||
|
background-color: var(--secondaryColor);
|
||||||
|
|
||||||
|
&[data-current='true'] {
|
||||||
|
background-color: #3b3b3b;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-item-top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-item-top > h3 {
|
||||||
|
min-width: 350px;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-item-top-actions {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5em;
|
||||||
|
|
||||||
|
& > button {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-item-expandable {
|
||||||
|
margin-top: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-no-entries {
|
||||||
|
padding: 1em;
|
||||||
|
font-size: 1.15em;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.storage-list-anim {
|
||||||
|
&-move,
|
||||||
|
&-enter-active,
|
||||||
|
&-leave-active {
|
||||||
|
transition: all 100ms ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-enter-from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(-25px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-leave-active {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,85 +1,86 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="wiki-list tab">
|
<section class="wiki-list-tab">
|
||||||
<div class="tab_header">
|
<div class="actions">
|
||||||
<h2>{{ $t('wiki.title') }}</h2>
|
<div class="action action-input">
|
||||||
</div>
|
<label for="search-vehicle">
|
||||||
|
{{ $t('wiki.labels.search-vehicle') }}
|
||||||
<div class="tab_content">
|
<button class="reset-btn" @click="resetSearchInput">
|
||||||
<div class="actions">
|
<img src="/images/icon-exit.svg" alt="reset vehicle input icon" />
|
||||||
<label>
|
</button>
|
||||||
<span>{{ $t('wiki.labels.search-vehicle') }}</span>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
:placeholder="$t('wiki.labels.search-vehicle-placeholder')"
|
|
||||||
v-model="searchedVehicleTypeName"
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<label>
|
|
||||||
<span>{{ $t('wiki.labels.vehicles') }}</span>
|
|
||||||
<select name="filter-type" id="filter-type" v-model="filterType">
|
|
||||||
<option v-for="filter in filters" :key="filter" :value="filter">
|
|
||||||
{{ $t(`wiki.filters.${filter}`) }}
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<label>
|
|
||||||
<span>{{ $t('wiki.labels.sort-by') }}</span>
|
|
||||||
<select name="sorter-type" id="sorter-type" v-model="sorterType">
|
|
||||||
<option v-for="sorter in sorters" :key="sorter" :value="sorter">
|
|
||||||
{{ $t(`wiki.sort-by.${sorter}`) }}
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
|
|
||||||
<label>
|
|
||||||
<span>{{ $t('wiki.labels.sort-direction') }}</span>
|
|
||||||
|
|
||||||
<select name="sorter-direction" id="sorter-direction" v-model="sorterDirection">
|
|
||||||
<option value="asc">{{ $t('wiki.sort-direction.asc') }}</option>
|
|
||||||
<option value="desc">{{ $t('wiki.sort-direction.desc') }}</option>
|
|
||||||
</select>
|
|
||||||
</label>
|
</label>
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="search-vehicle"
|
||||||
|
name="search-vehicle"
|
||||||
|
:placeholder="$t('wiki.labels.search-vehicle-placeholder')"
|
||||||
|
v-model="searchedVehicleTypeName"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="vehicles" ref="vehicles">
|
<div class="action action-select">
|
||||||
<li
|
<label for="filter-type">{{ $t('wiki.labels.vehicles') }}</label>
|
||||||
v-for="vehicle in computedVehicles"
|
<select name="filter-type" id="filter-type" v-model="filterType">
|
||||||
:key="vehicle.type"
|
<option v-for="filter in filters" :key="filter" :value="filter">
|
||||||
:data-preview="vehicle.type === store.chosenVehicle?.type"
|
{{ $t(`wiki.filters.${filter}`) }}
|
||||||
@click="previewVehicle(vehicle)"
|
</option>
|
||||||
@dblclick="addVehicle(vehicle)"
|
</select>
|
||||||
@keydown.enter="onVehicleSelect(vehicle)"
|
</div>
|
||||||
tabindex="0"
|
|
||||||
>
|
|
||||||
<img loading="lazy" width="120" :src="getThumbnailURL(vehicle.type, 'small')" />
|
|
||||||
|
|
||||||
<span>
|
<div class="action action-select">
|
||||||
<span
|
<label for="sorter-type">{{ $t('wiki.labels.sort-by') }}</label>
|
||||||
class="vehicle-name"
|
<select name="sorter-type" id="sorter-type" v-model="sorterType">
|
||||||
:class="{
|
<option v-for="sorter in sorters" :key="sorter" :value="sorter">
|
||||||
'sponsor-only':
|
{{ $t(`wiki.sort-by.${sorter}`) }}
|
||||||
vehicle.sponsorOnlyTimestamp && vehicle.sponsorOnlyTimestamp > Date.now(),
|
</option>
|
||||||
'team-only': vehicle.teamOnly,
|
</select>
|
||||||
}"
|
</div>
|
||||||
>
|
|
||||||
<b>{{ vehicle.type.replace(/_/g, ' ') }}</b>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<div class="vehicle-group">
|
<div class="action action-select">
|
||||||
{{ $t(`wiki.${vehicle.group}`) }} |
|
<label for="sorter-direction">{{ $t('wiki.labels.sort-direction') }}</label>
|
||||||
{{ isTractionUnit(vehicle) ? vehicle.cabinType : vehicle.constructionType }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="vehicle-props">
|
<select name="sorter-direction" id="sorter-direction" v-model="sorterDirection">
|
||||||
{{ vehicle.length }}m | {{ (vehicle.weight / 1000).toFixed(1) }}t |
|
<option value="asc">{{ $t('wiki.sort-direction.asc') }}</option>
|
||||||
{{ vehicle.maxSpeed }}km/h
|
<option value="desc">{{ $t('wiki.sort-direction.desc') }}</option>
|
||||||
</div>
|
</select>
|
||||||
</span>
|
</div>
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="no-vehicles-warning" v-if="computedVehicles.length == 0">
|
||||||
|
{{ $t('wiki.no-vehicles') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul class="vehicles" ref="vehicles">
|
||||||
|
<li
|
||||||
|
v-for="vehicle in computedVehicles"
|
||||||
|
:key="vehicle.type"
|
||||||
|
:data-preview="vehicle.type === store.chosenVehicle?.type"
|
||||||
|
@click="previewVehicle(vehicle)"
|
||||||
|
@dblclick="addVehicle(vehicle)"
|
||||||
|
@keydown.enter="onVehicleSelect(vehicle)"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<img loading="lazy" width="120" :src="getThumbnailURL(vehicle.type, 'small')" @error="onThumbnailImageError" />
|
||||||
|
|
||||||
|
<span>
|
||||||
|
<span
|
||||||
|
class="vehicle-name"
|
||||||
|
:class="{
|
||||||
|
'sponsor-only': vehicle.sponsorOnlyTimestamp && vehicle.sponsorOnlyTimestamp > Date.now(),
|
||||||
|
'team-only': vehicle.teamOnly,
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<b>{{ vehicle.type.replace(/_/g, ' ') }}</b>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<div class="vehicle-group">
|
||||||
|
{{ $t(`wiki.${vehicle.group}`) }} |
|
||||||
|
{{ isTractionUnit(vehicle) ? vehicle.cabinType : vehicle.constructionType }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="vehicle-props">{{ vehicle.length }}m | {{ (vehicle.weight / 1000).toFixed(1) }}t | {{ vehicle.maxSpeed }}km/h</div>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -87,19 +88,28 @@
|
|||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import { useStore } from '../../store';
|
import { useStore } from '../../store';
|
||||||
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
|
import stockPreviewMixin from '../../mixins/stockPreviewMixin';
|
||||||
import { IVehicle } from '../../types';
|
import { IVehicle } from '../../types/common.types';
|
||||||
import { isTractionUnit } from '../../utils/vehicleUtils';
|
import { isTractionUnit } from '../../utils/vehicleUtils';
|
||||||
import stockMixin from '../../mixins/stockMixin';
|
import stockMixin from '../../mixins/stockMixin';
|
||||||
import imageMixin from '../../mixins/imageMixin';
|
import imageMixin from '../../mixins/imageMixin';
|
||||||
|
|
||||||
const sorters = ['type', 'group', 'length', 'weight', 'maxSpeed'] as const;
|
const sorters = ['type', 'group', 'length', 'weight', 'maxSpeed'] as const;
|
||||||
const filters = ['vehicles-all', 'vehicles-traction', 'vehicles-wagon'] as const;
|
|
||||||
|
enum VehicleFilter {
|
||||||
|
AllVehicles = 'vehicles-all',
|
||||||
|
AllTractions = 'vehicles-tractions-all',
|
||||||
|
ElectricTraction = 'vehicles-tractions-electric',
|
||||||
|
DieselTraction = 'vehicles-tractions-diesel',
|
||||||
|
EmuTraction = 'vehicles-tractions-emu',
|
||||||
|
DmuTraction = 'vehicles-tractions-dmu',
|
||||||
|
AllWagons = 'vehicles-wagons-all',
|
||||||
|
PassengerWagons = 'vehicles-wagons-passenger',
|
||||||
|
FreightWagons = 'vehicles-wagons-freight',
|
||||||
|
}
|
||||||
|
|
||||||
type SorterType = (typeof sorters)[number];
|
type SorterType = (typeof sorters)[number];
|
||||||
type SorterDirection = 'asc' | 'desc';
|
type SorterDirection = 'asc' | 'desc';
|
||||||
|
|
||||||
type FilterType = (typeof filters)[number];
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
mixins: [stockPreviewMixin, stockMixin, imageMixin],
|
mixins: [stockPreviewMixin, stockMixin, imageMixin],
|
||||||
|
|
||||||
@@ -109,14 +119,14 @@ export default defineComponent({
|
|||||||
observer: null as IntersectionObserver | null,
|
observer: null as IntersectionObserver | null,
|
||||||
|
|
||||||
sorters: sorters,
|
sorters: sorters,
|
||||||
filters: filters,
|
filters: Object.values(VehicleFilter),
|
||||||
|
|
||||||
searchedVehicleTypeName: '',
|
searchedVehicleTypeName: '',
|
||||||
|
|
||||||
sorterType: 'type' as SorterType,
|
sorterType: 'type' as SorterType,
|
||||||
sorterDirection: 'asc' as SorterDirection,
|
sorterDirection: 'asc' as SorterDirection,
|
||||||
|
|
||||||
filterType: 'vehicles-all' as FilterType,
|
filterType: VehicleFilter.AllVehicles,
|
||||||
|
|
||||||
lastScrollTop: 0,
|
lastScrollTop: 0,
|
||||||
};
|
};
|
||||||
@@ -143,28 +153,52 @@ export default defineComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
isTractionUnit,
|
isTractionUnit,
|
||||||
|
|
||||||
|
onThumbnailImageError(e: Event) {
|
||||||
|
const el = e.target as HTMLImageElement;
|
||||||
|
|
||||||
|
if (el.src == '/images/no-vehicle-image.png') return;
|
||||||
|
el.src = '/images/no-vehicle-image.png';
|
||||||
|
},
|
||||||
|
|
||||||
onVehicleSelect(vehicle: IVehicle) {
|
onVehicleSelect(vehicle: IVehicle) {
|
||||||
if (this.store.chosenVehicle?.type === vehicle.type) this.addVehicle(vehicle);
|
if (this.store.chosenVehicle?.type === vehicle.type) this.addVehicle(vehicle);
|
||||||
this.previewVehicle(vehicle);
|
this.previewVehicle(vehicle);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
resetSearchInput() {
|
||||||
|
this.searchedVehicleTypeName = '';
|
||||||
|
},
|
||||||
|
|
||||||
filterVehicles(v: IVehicle) {
|
filterVehicles(v: IVehicle) {
|
||||||
if (this.searchedVehicleTypeName)
|
if (this.searchedVehicleTypeName != '' && !v.type.toLocaleLowerCase().includes(this.searchedVehicleTypeName.toLocaleLowerCase())) return false;
|
||||||
return v.type
|
|
||||||
.toLocaleLowerCase()
|
|
||||||
.includes(this.searchedVehicleTypeName.toLocaleLowerCase());
|
|
||||||
|
|
||||||
switch (this.filterType) {
|
switch (this.filterType) {
|
||||||
case 'vehicles-all':
|
case VehicleFilter.AllTractions:
|
||||||
return true;
|
|
||||||
case 'vehicles-traction':
|
|
||||||
return isTractionUnit(v);
|
return isTractionUnit(v);
|
||||||
case 'vehicles-wagon':
|
|
||||||
|
case VehicleFilter.ElectricTraction:
|
||||||
|
return isTractionUnit(v) && v.group == 'loco-electric';
|
||||||
|
|
||||||
|
case VehicleFilter.DieselTraction:
|
||||||
|
return isTractionUnit(v) && v.group == 'loco-diesel';
|
||||||
|
|
||||||
|
case VehicleFilter.EmuTraction:
|
||||||
|
return isTractionUnit(v) && v.group == 'unit-electric';
|
||||||
|
|
||||||
|
case VehicleFilter.DmuTraction:
|
||||||
|
return isTractionUnit(v) && v.group == 'unit-diesel';
|
||||||
|
|
||||||
|
case VehicleFilter.AllWagons:
|
||||||
return !isTractionUnit(v);
|
return !isTractionUnit(v);
|
||||||
|
|
||||||
default:
|
case VehicleFilter.PassengerWagons:
|
||||||
return false;
|
return !isTractionUnit(v) && v.group == 'wagon-passenger';
|
||||||
|
|
||||||
|
case VehicleFilter.FreightWagons:
|
||||||
|
return !isTractionUnit(v) && v.group == 'wagon-freight';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
},
|
},
|
||||||
|
|
||||||
sortVehicles(v1: IVehicle, v2: IVehicle) {
|
sortVehicles(v1: IVehicle, v2: IVehicle) {
|
||||||
@@ -180,21 +214,6 @@ export default defineComponent({
|
|||||||
case 'maxSpeed':
|
case 'maxSpeed':
|
||||||
return Math.sign(v1[this.sorterType] - v2[this.sorterType]) * direction;
|
return Math.sign(v1[this.sorterType] - v2[this.sorterType]) * direction;
|
||||||
|
|
||||||
// case 'cargoCount':
|
|
||||||
// return (
|
|
||||||
// Math.sign(
|
|
||||||
// (!isTractionUnit(v1) ? v1.cargoTypes.length || -1 : -1) -
|
|
||||||
// (!isTractionUnit(row2.vehicle) ? row2.vehicle.cargoTypes.length || -1 : -1)
|
|
||||||
// ) * direction
|
|
||||||
// );
|
|
||||||
|
|
||||||
// case 'coldStart':
|
|
||||||
// return (
|
|
||||||
// ((isTractionUnit(v1) && v1.coldStart ? 1 : -1) -
|
|
||||||
// (isTractionUnit(row2.vehicle) && row2.vehicle.coldStart ? 1 : -1)) *
|
|
||||||
// direction
|
|
||||||
// );
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return v1.type.localeCompare(v2.type) * direction;
|
return v1.type.localeCompare(v2.type) * direction;
|
||||||
}
|
}
|
||||||
@@ -210,7 +229,15 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@import '../../styles/tab.scss';
|
@use '@/styles/tab';
|
||||||
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
|
.wiki-list-tab {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto auto 1fr;
|
||||||
|
gap: 0.5em;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
display: grid;
|
display: grid;
|
||||||
@@ -220,26 +247,36 @@ export default defineComponent({
|
|||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.actions > label {
|
.action {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.25em;
|
gap: 0.5em;
|
||||||
|
|
||||||
span {
|
label {
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.action.action-input label {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reset-btn {
|
||||||
|
display: flex;
|
||||||
|
background-color: #161c2e;
|
||||||
|
border-radius: 0.25em;
|
||||||
|
}
|
||||||
|
|
||||||
.vehicles {
|
.vehicles {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
||||||
max-height: 730px;
|
margin-top: 1em;
|
||||||
|
|
||||||
margin-top: 0.75em;
|
|
||||||
padding: 0.25em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.vehicles > li {
|
.vehicles > li {
|
||||||
@@ -249,7 +286,6 @@ export default defineComponent({
|
|||||||
background-color: #161c2e;
|
background-color: #161c2e;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
|
|
||||||
min-height: 75px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&[data-preview='true'] {
|
&[data-preview='true'] {
|
||||||
@@ -271,7 +307,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
.sponsor-only {
|
.sponsor-only {
|
||||||
color: $sponsorColor;
|
color: var(--accentColor);
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: '*';
|
content: '*';
|
||||||
@@ -279,7 +315,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
.team-only {
|
.team-only {
|
||||||
color: $teamColor;
|
color: var(--teamColor);
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: '*';
|
content: '*';
|
||||||
@@ -290,7 +326,19 @@ export default defineComponent({
|
|||||||
color: #ccc;
|
color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $breakpointSm) {
|
.no-vehicles-warning {
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
padding: 1em;
|
||||||
|
background-color: #161c2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.midScreen {
|
||||||
|
.vehicles {
|
||||||
|
height: 100vh;
|
||||||
|
min-height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
.actions-panel {
|
.actions-panel {
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -0,0 +1,366 @@
|
|||||||
|
<template>
|
||||||
|
<div class="stock_actions">
|
||||||
|
<div class="actions-top">
|
||||||
|
<button class="btn btn--image" @click="clickFileInput" :data-button-tooltip="$t('stocklist.action-upload-file')">
|
||||||
|
<input type="file" @change="uploadStockFromFile" ref="conFile" accept=".con,.txt" />
|
||||||
|
<FolderUp :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button class="btn btn--image" @click="uploadStockFromClipboard" :data-button-tooltip="$t('stocklist.action-upload-clipboard')">
|
||||||
|
<ClipboardPaste :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="downloadStock"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-download')"
|
||||||
|
>
|
||||||
|
<FolderDown :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="copyToClipboard"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-copy')"
|
||||||
|
>
|
||||||
|
<ClipboardCopy :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="saveStockDataToStorage"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-bookmark')"
|
||||||
|
>
|
||||||
|
<Bookmark :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="resetStock"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-reset')"
|
||||||
|
>
|
||||||
|
<ListRestart :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="shuffleCars"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-shuffle')"
|
||||||
|
>
|
||||||
|
<Shuffle :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:data-disabled="stockIsEmpty"
|
||||||
|
:disabled="stockIsEmpty"
|
||||||
|
@click="turnAroundCars"
|
||||||
|
:data-button-tooltip="$t('stocklist.action-switch')"
|
||||||
|
>
|
||||||
|
<Repeat :stroke-width="2.5" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="actions-bottom" :data-disabled="store.chosenStockListIndex == -1">
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
||||||
|
@click="stockListUtils.moveUpStock(store.chosenStockListIndex)"
|
||||||
|
>
|
||||||
|
<ChevronUp :stroke-width="2.5" />
|
||||||
|
{{ $t('stocklist.action-move-up') }}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
||||||
|
@click="stockListUtils.moveDownStock(store.chosenStockListIndex)"
|
||||||
|
>
|
||||||
|
<ChevronDown :stroke-width="2.5" />
|
||||||
|
{{ $t('stocklist.action-move-down') }}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<button
|
||||||
|
class="btn btn--image"
|
||||||
|
:tabindex="store.chosenStockListIndex == -1 ? -1 : 0"
|
||||||
|
@click="stockListUtils.removeStock(store.chosenStockListIndex)"
|
||||||
|
>
|
||||||
|
<Trash2 :stroke-width="2.5" />
|
||||||
|
{{ $t('stocklist.action-remove') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
|
||||||
|
import { isTractionUnit } from '../../../utils/vehicleUtils';
|
||||||
|
import stockMixin from '../../../mixins/stockMixin';
|
||||||
|
import { useStockListUtils } from '../../../utils/stockListUtils';
|
||||||
|
|
||||||
|
import { getCurrentStockFileName } from '../../../composables/file';
|
||||||
|
|
||||||
|
import {
|
||||||
|
Bookmark,
|
||||||
|
ChevronDown,
|
||||||
|
ChevronUp,
|
||||||
|
ClipboardCopy,
|
||||||
|
ClipboardPaste,
|
||||||
|
Download,
|
||||||
|
FolderDown,
|
||||||
|
FolderUp,
|
||||||
|
ListRestart,
|
||||||
|
Repeat,
|
||||||
|
Shuffle,
|
||||||
|
Trash2,
|
||||||
|
} from 'lucide-vue-next';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
mixins: [stockMixin],
|
||||||
|
|
||||||
|
components: {
|
||||||
|
Bookmark,
|
||||||
|
ChevronDown,
|
||||||
|
ChevronUp,
|
||||||
|
ClipboardCopy,
|
||||||
|
ClipboardPaste,
|
||||||
|
Download,
|
||||||
|
FolderUp,
|
||||||
|
ListRestart,
|
||||||
|
Repeat,
|
||||||
|
Shuffle,
|
||||||
|
FolderDown,
|
||||||
|
Trash2,
|
||||||
|
},
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
}),
|
||||||
|
|
||||||
|
setup() {
|
||||||
|
const stockListUtils = useStockListUtils();
|
||||||
|
|
||||||
|
return {
|
||||||
|
stockListUtils,
|
||||||
|
getCurrentStockFileName,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
stockIsEmpty() {
|
||||||
|
return this.store.stockList.length == 0;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
copyToClipboard() {
|
||||||
|
navigator.clipboard.writeText(this.store.stockString);
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
alert(this.$t('stocklist.alert-copied'));
|
||||||
|
}, 20);
|
||||||
|
},
|
||||||
|
|
||||||
|
clickFileInput() {
|
||||||
|
(this.$refs['conFile'] as HTMLInputElement).click();
|
||||||
|
},
|
||||||
|
|
||||||
|
resetStock() {
|
||||||
|
this.store.stockList.length = 0;
|
||||||
|
this.store.chosenStockListIndex = -1;
|
||||||
|
},
|
||||||
|
|
||||||
|
shuffleCars() {
|
||||||
|
const availableIndexes = this.store.stockList.reduce((acc, stock, i) => {
|
||||||
|
if (!isTractionUnit(stock.vehicleRef)) acc.push(i);
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, [] as number[]);
|
||||||
|
|
||||||
|
for (let i = 0; i < this.store.stockList.length; i++) {
|
||||||
|
if (!availableIndexes.includes(i)) continue;
|
||||||
|
|
||||||
|
availableIndexes.splice(i, -1);
|
||||||
|
|
||||||
|
const randAvailableIndex = availableIndexes[Math.floor(Math.random() * availableIndexes.length)];
|
||||||
|
const tempSwap = this.store.stockList[randAvailableIndex];
|
||||||
|
|
||||||
|
this.store.stockList[randAvailableIndex] = this.store.stockList[i];
|
||||||
|
this.store.stockList[i] = tempSwap;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
turnAroundCars() {
|
||||||
|
if (this.store.stockList.length <= 1) return;
|
||||||
|
|
||||||
|
const isFirstTractionUnit = isTractionUnit(this.store.stockList[0].vehicleRef);
|
||||||
|
|
||||||
|
const sliceToSwap = isFirstTractionUnit ? this.store.stockList.slice(1) : this.store.stockList.slice();
|
||||||
|
|
||||||
|
sliceToSwap.reverse();
|
||||||
|
|
||||||
|
if (isFirstTractionUnit) sliceToSwap.unshift(this.store.stockList[0]);
|
||||||
|
|
||||||
|
this.store.stockList = sliceToSwap;
|
||||||
|
},
|
||||||
|
|
||||||
|
downloadStock() {
|
||||||
|
if (this.store.stockList.length == 0) return alert(this.$t('stocklist.alert-empty'));
|
||||||
|
|
||||||
|
const defaultName = this.getCurrentStockFileName();
|
||||||
|
const fileName = prompt(this.$t('stocklist.prompt-file'), defaultName);
|
||||||
|
|
||||||
|
if (!fileName) return;
|
||||||
|
|
||||||
|
const blob = new Blob([this.store.stockString]);
|
||||||
|
const file = fileName + '.con';
|
||||||
|
|
||||||
|
var e = document.createEvent('MouseEvents'),
|
||||||
|
a = document.createElement('a');
|
||||||
|
a.download = file;
|
||||||
|
a.href = window.URL.createObjectURL(blob);
|
||||||
|
a.dataset.downloadurl = ['', a.download, a.href].join(':');
|
||||||
|
e.initEvent('click', true, false);
|
||||||
|
a.dispatchEvent(e);
|
||||||
|
},
|
||||||
|
|
||||||
|
uploadStockFromFile() {
|
||||||
|
const inputEl = this.$refs['conFile'] as HTMLInputElement;
|
||||||
|
const files = inputEl.files;
|
||||||
|
|
||||||
|
if (files?.length != 1) return;
|
||||||
|
if (!/\.con$/.test(files[0].name)) return;
|
||||||
|
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.readAsText(files[0]);
|
||||||
|
|
||||||
|
reader.onload = (res) => {
|
||||||
|
const stockString = res.target?.result;
|
||||||
|
|
||||||
|
if (!stockString || typeof stockString !== 'string') return;
|
||||||
|
|
||||||
|
this.loadStockFromString(stockString);
|
||||||
|
};
|
||||||
|
|
||||||
|
reader.onerror = (err) => console.error(err);
|
||||||
|
|
||||||
|
inputEl.value = '';
|
||||||
|
},
|
||||||
|
|
||||||
|
saveStockDataToStorage() {
|
||||||
|
if (this.store.stockList.length == 0) return;
|
||||||
|
|
||||||
|
const defaultName = this.getCurrentStockFileName();
|
||||||
|
const entryName = prompt(this.$t('stocklist.prompt-bookmark'), defaultName);
|
||||||
|
|
||||||
|
if (!entryName) return;
|
||||||
|
|
||||||
|
if (entryName in this.store.storageStockData) {
|
||||||
|
const overwriteDataConfirm = confirm(this.$t('stocklist.prompt-bookmark-overwrite'));
|
||||||
|
|
||||||
|
if (!overwriteDataConfirm) return;
|
||||||
|
|
||||||
|
this.store.storageStockData[entryName]['updatedAt'] = Date.now();
|
||||||
|
this.store.storageStockData[entryName]['stockString'] = this.store.stockString;
|
||||||
|
} else {
|
||||||
|
this.store.storageStockData[entryName] = {
|
||||||
|
id: entryName,
|
||||||
|
createdAt: Date.now(),
|
||||||
|
stockString: this.store.stockString,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
localStorage.setItem('savedStockData', JSON.stringify(this.store.storageStockData));
|
||||||
|
this.store.chosenStorageStockName = entryName;
|
||||||
|
this.store.chosenStorageStockString = this.store.stockString;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Wystąpił błąd podczas zapisywania składu do localStorage!', error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async uploadStockFromClipboard() {
|
||||||
|
try {
|
||||||
|
const content = await navigator.clipboard.readText();
|
||||||
|
this.loadStockFromString(content);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
|
||||||
|
switch (error) {
|
||||||
|
case 'stock-loading-error':
|
||||||
|
alert(this.$t('stocklist.stock-loading-error'));
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
alert(this.$t('stocklist.stock-clipboard-error'));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.stock_actions {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions-bottom {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
gap: 0.5em;
|
||||||
|
|
||||||
|
padding: 0.5em;
|
||||||
|
|
||||||
|
background-color: #353a57;
|
||||||
|
|
||||||
|
&[data-disabled='true'] {
|
||||||
|
opacity: 0.8;
|
||||||
|
|
||||||
|
user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions-top {
|
||||||
|
display: grid;
|
||||||
|
gap: 0.5em;
|
||||||
|
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
&[data-button-tooltip] {
|
||||||
|
font-size: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
opacity: 0;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,250 @@
|
|||||||
|
<template>
|
||||||
|
<div class="list-wrapper">
|
||||||
|
<StockThumbnails :onListItemClick="onListItemClick" />
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<transition-group name="stock-list-anim">
|
||||||
|
<li v-if="stockIsEmpty" class="list-empty">
|
||||||
|
{{ $t('stocklist.list-empty') }}
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li
|
||||||
|
v-for="(stock, i) in store.stockList"
|
||||||
|
:key="stock.id"
|
||||||
|
class="stock-item"
|
||||||
|
:class="{ loco: isTractionUnit(stock.vehicleRef) }"
|
||||||
|
tabindex="0"
|
||||||
|
@click="onListItemClick(i)"
|
||||||
|
@keydown.enter="onListItemClick(i)"
|
||||||
|
@keydown.w="stockListUtils.moveUpStock(i)"
|
||||||
|
@keydown.s="stockListUtils.moveDownStock(i)"
|
||||||
|
@keydown.backspace="stockListUtils.removeStock(i)"
|
||||||
|
ref="itemRefs"
|
||||||
|
>
|
||||||
|
<div class="stock-info" @dragstart="onDragStart(i)" @drop="onDrop($event, i)" @dragover="allowDrop" draggable="true">
|
||||||
|
<span class="stock-info-no" :data-selected="i == store.chosenStockListIndex">
|
||||||
|
<span v-if="i == store.chosenStockListIndex">• </span>
|
||||||
|
{{ i + 1 }}.
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span
|
||||||
|
class="stock-info-type"
|
||||||
|
:data-sponsor-only="stock.vehicleRef.sponsorOnlyTimestamp && stock.vehicleRef.sponsorOnlyTimestamp > Date.now()"
|
||||||
|
:data-team-only="stock.vehicleRef.teamOnly"
|
||||||
|
>
|
||||||
|
{{ isTractionUnit(stock.vehicleRef) ? stock.vehicleRef.type : getCarSpecFromType(stock.vehicleRef.type) }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="stock-info-cargo" v-if="stock.cargo">
|
||||||
|
{{ stock.cargo.id }}
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="stock-info-length">{{ stock.vehicleRef.length }}m</span>
|
||||||
|
|
||||||
|
<span class="stock-info-mass"> {{ ((stock.vehicleRef.weight + (stock.cargo?.weight ?? 0)) / 1000).toFixed(1) }}t </span>
|
||||||
|
<span class="stock-info-speed">{{ stock.vehicleRef.maxSpeed }}km/h</span>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</transition-group>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
import { isTractionUnit } from '../../../utils/vehicleUtils';
|
||||||
|
import { useStockListUtils } from '../../../utils/stockListUtils';
|
||||||
|
import stockPreviewMixin from '../../../mixins/stockPreviewMixin';
|
||||||
|
import StockThumbnails from './StockThumbnails.vue';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
mixins: [stockPreviewMixin],
|
||||||
|
components: { StockThumbnails },
|
||||||
|
|
||||||
|
setup() {
|
||||||
|
const stockListUtils = useStockListUtils();
|
||||||
|
|
||||||
|
return { stockListUtils };
|
||||||
|
},
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
draggedVehicleID: -1,
|
||||||
|
}),
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
stockIsEmpty() {
|
||||||
|
return this.store.stockList.length == 0;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
isTractionUnit,
|
||||||
|
|
||||||
|
onDragStart(vehicleIndex: number) {
|
||||||
|
this.draggedVehicleID = vehicleIndex;
|
||||||
|
},
|
||||||
|
|
||||||
|
onDrop(e: DragEvent, vehicleIndex: number) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
let targetEl = (this.$refs['itemRefs'] as Element[])[vehicleIndex];
|
||||||
|
|
||||||
|
if (!targetEl) return;
|
||||||
|
|
||||||
|
const tempVehicle = this.store.stockList[vehicleIndex];
|
||||||
|
|
||||||
|
this.store.stockList[vehicleIndex] = this.store.stockList[this.draggedVehicleID];
|
||||||
|
this.store.stockList[this.draggedVehicleID] = tempVehicle;
|
||||||
|
|
||||||
|
this.store.chosenStockListIndex = vehicleIndex;
|
||||||
|
},
|
||||||
|
|
||||||
|
allowDrop(e: DragEvent) {
|
||||||
|
e.preventDefault();
|
||||||
|
},
|
||||||
|
|
||||||
|
onListItemClick(stockID: number) {
|
||||||
|
const stock = this.store.stockList[stockID];
|
||||||
|
|
||||||
|
this.store.chosenStockListIndex =
|
||||||
|
this.store.chosenStockListIndex == stockID && this.store.chosenVehicle?.type == stock.vehicleRef.type ? -1 : stockID;
|
||||||
|
|
||||||
|
if (this.store.chosenStockListIndex == -1) {
|
||||||
|
this.store.chosenVehicle = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.store.swapVehicles) this.store.swapVehicles = false;
|
||||||
|
|
||||||
|
this.previewStock(stock);
|
||||||
|
},
|
||||||
|
|
||||||
|
getCarSpecFromType(typeStr: string) {
|
||||||
|
const specArray = typeStr.split('_');
|
||||||
|
|
||||||
|
if (specArray.length == 0) return null;
|
||||||
|
|
||||||
|
/* 111a_Grafitti_1 */
|
||||||
|
if (specArray.length == 3) return `${specArray[0]} ${specArray[1]}-${specArray[2]}`;
|
||||||
|
|
||||||
|
/* 111a_PKP_Bnouz_01 */
|
||||||
|
return `${specArray[0]} ${specArray[2]}-${specArray[3]} (${specArray[1]})`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@use '@/styles/responsive';
|
||||||
|
|
||||||
|
.list-wrapper {
|
||||||
|
display: grid;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-empty {
|
||||||
|
background-color: var(--secondaryColor);
|
||||||
|
border-radius: 0.5em;
|
||||||
|
padding: 0.75em;
|
||||||
|
font-weight: bold;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul > li {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
margin: 0.25em 0;
|
||||||
|
|
||||||
|
outline: none;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:focus-visible {
|
||||||
|
outline: 1px solid white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li > .stock-info {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.25em;
|
||||||
|
|
||||||
|
color: white;
|
||||||
|
font-weight: 700;
|
||||||
|
|
||||||
|
transition: color 100ms;
|
||||||
|
|
||||||
|
& > span {
|
||||||
|
padding: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-info-no,
|
||||||
|
.stock-info-type {
|
||||||
|
background-color: var(--secondaryColor);
|
||||||
|
|
||||||
|
&[data-team-only='true'] {
|
||||||
|
color: var(--teamColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-sponsor-only='true'] {
|
||||||
|
color: var(--accentColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-info-no {
|
||||||
|
min-width: 3.5em;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
&[data-selected='true'] {
|
||||||
|
color: var(--accentColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-info-cargo {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-info-length,
|
||||||
|
.stock-info-mass,
|
||||||
|
.stock-info-speed {
|
||||||
|
background-color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-list-anim {
|
||||||
|
&-move, /* apply transition to moving elements */
|
||||||
|
&-enter-active,
|
||||||
|
&-leave-active {
|
||||||
|
transition: all 250ms ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-enter-from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(-25px);
|
||||||
|
}
|
||||||
|
|
||||||
|
&-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&-leave-active {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.midScreen {
|
||||||
|
ul {
|
||||||
|
height: 100vh;
|
||||||
|
min-height: 400px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<template>
|
||||||
|
<div class="stock_spawn-settings">
|
||||||
|
<Checkbox :disabled="!store.stockSupportsColdStart" v-model="store.isColdStart">
|
||||||
|
{{ $t('stocklist.coldstart-info') }}
|
||||||
|
</Checkbox>
|
||||||
|
|
||||||
|
<Checkbox :disabled="!store.stockSupportsDoubleManning" v-model="store.isDoubleManned">
|
||||||
|
{{ $t('stocklist.doublemanning-info') }}
|
||||||
|
</Checkbox>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
import Checkbox from '../../common/Checkbox.vue';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
components: { Checkbox },
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.stock_spawn-settings {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
<template>
|
||||||
|
<div class="stock-specs">
|
||||||
|
<div v-if="store.chosenStorageStockName || chosenRealComposition">
|
||||||
|
<b v-if="store.chosenStorageStockName">
|
||||||
|
<span class="text--accent" :title="store.chosenStorageStockName.length > 41 ? store.chosenStorageStockName : ''">
|
||||||
|
<BookmarkCheck :size="19" />
|
||||||
|
{{ store.chosenStorageStockName.slice(0, 40) }}
|
||||||
|
{{ store.chosenStorageStockName.length > 41 ? '...' : '' }}
|
||||||
|
</span>
|
||||||
|
</b>
|
||||||
|
|
||||||
|
<span v-if="store.chosenStorageStockName && chosenRealComposition"> | </span>
|
||||||
|
|
||||||
|
<b class="real-stock-info" v-if="chosenRealComposition">
|
||||||
|
<span class="text--accent">
|
||||||
|
<img class="real-stock-icon" :src="getIconURL(chosenRealComposition.type)" :alt="chosenRealComposition.type" />
|
||||||
|
{{ chosenRealComposition.number }} {{ chosenRealComposition.name }}
|
||||||
|
</span>
|
||||||
|
</b>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
{{ $t('stocklist.mass') }}
|
||||||
|
<span class="text--accent">{{ (store.totalWeight / 1000).toFixed(1) }}t</span>
|
||||||
|
({{ $t('stocklist.mass-accepted') }}:
|
||||||
|
<span class="text--accent">{{ store.acceptableWeight ? `${~~(store.acceptableWeight / 1000)}t` : '-' }}</span
|
||||||
|
>) - {{ $t('stocklist.length') }}:
|
||||||
|
<span class="text--accent">{{ store.totalLength }}m</span>
|
||||||
|
- {{ $t('stocklist.vmax') }} <span tabindex="0" :data-tooltip="$t('stocklist.disclaimer')">(?)</span>:
|
||||||
|
<span class="text--accent">{{ isFinite(store.maxStockSpeed) ? store.maxStockSpeed : '--' }} km/h</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
import imageMixin from '../../../mixins/imageMixin';
|
||||||
|
import { BookmarkCheck } from 'lucide-vue-next';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
components: { BookmarkCheck },
|
||||||
|
|
||||||
|
mixins: [imageMixin],
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
}),
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
chosenRealComposition() {
|
||||||
|
const currentStockString = this.store.stockList.map((s) => s.vehicleRef.type).join(';');
|
||||||
|
|
||||||
|
return this.store.realCompositionList.find((rc) => rc.stockString == currentStockString);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.real-stock-icon {
|
||||||
|
height: 1.3ch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-specs svg {
|
||||||
|
vertical-align: text-top;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,228 @@
|
|||||||
|
<template>
|
||||||
|
<div class="stock-thumbnails" ref="thumbnailsRef">
|
||||||
|
<ul>
|
||||||
|
<li
|
||||||
|
class="thumbnail-item"
|
||||||
|
v-for="(stock, stockIndex) in store.stockList"
|
||||||
|
:key="stockIndex"
|
||||||
|
:data-selected="store.chosenStockListIndex == stockIndex"
|
||||||
|
:data-sponsor-only="
|
||||||
|
stock.vehicleRef.sponsorOnlyTimestamp &&
|
||||||
|
stock.vehicleRef.sponsorOnlyTimestamp > Date.now()
|
||||||
|
"
|
||||||
|
:data-team-only="stock.vehicleRef.teamOnly"
|
||||||
|
draggable="true"
|
||||||
|
@dragstart="onDragStart(stockIndex)"
|
||||||
|
@drop="onDrop($event, stockIndex)"
|
||||||
|
@dragover="allowDrop"
|
||||||
|
@click="onListItemClick(stockIndex)"
|
||||||
|
>
|
||||||
|
<div class="stock-text">
|
||||||
|
<p>
|
||||||
|
{{ stock.vehicleRef.type.replace(/_/g, ' ') }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span>
|
||||||
|
<img
|
||||||
|
v-for="thumbnail in getVehicleThumbnails(stock.vehicleRef.type)"
|
||||||
|
draggable="false"
|
||||||
|
style="min-width: 200px"
|
||||||
|
:src="`https://stacjownik.spythere.eu/static/thumbnails/${thumbnail.src}.png`"
|
||||||
|
:alt="stock.vehicleRef.type"
|
||||||
|
:title="stock.vehicleRef.type"
|
||||||
|
@load="($event) => (($event.target as HTMLImageElement).style.minWidth = 'auto')"
|
||||||
|
@error="
|
||||||
|
($event) =>
|
||||||
|
(($event.target as HTMLImageElement).src = `/images/${thumbnail.fallbackSrc}.png`)
|
||||||
|
"
|
||||||
|
height="70"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { Ref, computed, nextTick, ref, watch } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
|
||||||
|
const store = useStore();
|
||||||
|
const emit = defineEmits(['listItemClick']);
|
||||||
|
|
||||||
|
const thumbnailsRef = ref() as Ref<HTMLElement>;
|
||||||
|
const draggedIndex = ref(-1);
|
||||||
|
|
||||||
|
const onListItemClick = (index: number) => {
|
||||||
|
emit('listItemClick', index);
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
computed(() => store.chosenStockListIndex),
|
||||||
|
(index) => {
|
||||||
|
if (index < 0) return;
|
||||||
|
|
||||||
|
nextTick(() => {
|
||||||
|
(thumbnailsRef.value as HTMLElement)
|
||||||
|
.querySelector(`li:nth-child(${index + 1})`)
|
||||||
|
?.scrollIntoView({
|
||||||
|
block: 'nearest',
|
||||||
|
inline: 'start',
|
||||||
|
behavior: 'smooth',
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// Dragging images
|
||||||
|
const onDragStart = (vehicleIndex: number) => {
|
||||||
|
draggedIndex.value = vehicleIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
const onDrop = (e: DragEvent, vehicleIndex: number) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
let targetEl = thumbnailsRef.value.querySelector(`li:nth-child(${vehicleIndex + 1})`);
|
||||||
|
|
||||||
|
if (!targetEl && draggedIndex.value != -1) return;
|
||||||
|
|
||||||
|
const tempVehicle = store.stockList[vehicleIndex];
|
||||||
|
store.stockList[vehicleIndex] = store.stockList[draggedIndex.value];
|
||||||
|
store.stockList[draggedIndex.value] = tempVehicle;
|
||||||
|
|
||||||
|
store.chosenStockListIndex = vehicleIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
const allowDrop = (e: DragEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
};
|
||||||
|
|
||||||
|
const getVehicleThumbnails = (vehicleString: string) => {
|
||||||
|
const [vehicleName, vehicleCargo] = vehicleString.split(':');
|
||||||
|
|
||||||
|
const thumbnails: { src: string; fallbackSrc: string }[] = [];
|
||||||
|
|
||||||
|
// Generowanie członów EN57
|
||||||
|
if (vehicleName.startsWith('EN57')) {
|
||||||
|
thumbnails.push(
|
||||||
|
{ src: vehicleName + 'ra', fallbackSrc: 'unknown_ezt-ra' },
|
||||||
|
{ src: vehicleName + 's', fallbackSrc: 'unknown_ezt-s' },
|
||||||
|
{ src: vehicleName + 'rb', fallbackSrc: 'unknown_ezt-rb' }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generowanie członów EN71
|
||||||
|
else if (vehicleName.startsWith('EN71')) {
|
||||||
|
thumbnails.push(
|
||||||
|
{ src: vehicleName + 'ra', fallbackSrc: 'unknown_ezt-ra' },
|
||||||
|
{ src: vehicleName + 'sa', fallbackSrc: 'unknown_ezt-sa' },
|
||||||
|
{ src: vehicleName + 'sb', fallbackSrc: 'unknown_ezt-sb' },
|
||||||
|
{ src: vehicleName + 'rb', fallbackSrc: 'unknown_ezt-rb' }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generowanie pojazdów i członów 2EN57
|
||||||
|
else if (vehicleString.startsWith('2EN57')) {
|
||||||
|
const [firstVehicleNumber, secondVehicleNumber] = vehicleString
|
||||||
|
.replace('2EN57-', '')
|
||||||
|
.split('+');
|
||||||
|
|
||||||
|
thumbnails.push(
|
||||||
|
{ src: `EN57-${firstVehicleNumber}ra`, fallbackSrc: 'unknown_ezt-ra' },
|
||||||
|
{ src: `EN57-${firstVehicleNumber}s`, fallbackSrc: 'unknown_ezt-s' },
|
||||||
|
{ src: `EN57-${firstVehicleNumber}rb`, fallbackSrc: 'unknown_ezt-rb' },
|
||||||
|
{ src: `EN57-${secondVehicleNumber}ra`, fallbackSrc: 'unknown_ezt-ra' },
|
||||||
|
{ src: `EN57-${secondVehicleNumber}s`, fallbackSrc: 'unknown_ezt-s' },
|
||||||
|
{ src: `EN57-${secondVehicleNumber}rb`, fallbackSrc: 'unknown_ezt-rb' }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generowanie członów Gor77
|
||||||
|
else if (vehicleString.startsWith('Gor77')) {
|
||||||
|
thumbnails.push(
|
||||||
|
{ src: vehicleName + '-A', fallbackSrc: 'unknown_Gor77-A' },
|
||||||
|
{ src: vehicleName + '-B', fallbackSrc: 'unknown_Gor77-B' },
|
||||||
|
{ src: vehicleName + '-C', fallbackSrc: 'unknown_Gor77-C' },
|
||||||
|
{ src: vehicleName + '-D', fallbackSrc: 'unknown_Gor77-D' }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generowanie członów ET41
|
||||||
|
else if (vehicleString.startsWith('ET41')) {
|
||||||
|
thumbnails.push(
|
||||||
|
{ src: vehicleName + '-A', fallbackSrc: 'unknown_ET41-A' },
|
||||||
|
{ src: vehicleName + '-B', fallbackSrc: 'unknown_ET41-B' }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generowanie pozostałych pojazdów
|
||||||
|
else {
|
||||||
|
let fallbackVehicleImage = 'unknown_cargo';
|
||||||
|
|
||||||
|
if (/^(EP|EU)/.test(vehicleName)) fallbackVehicleImage = 'unknown_train';
|
||||||
|
else if (/^(SM42)/.test(vehicleName)) fallbackVehicleImage = 'unknown_SM42';
|
||||||
|
else if (/(\d{3}a|(Bau|Gor)\d{2}|304C)_/.test(vehicleName))
|
||||||
|
fallbackVehicleImage = 'unknown_passenger';
|
||||||
|
|
||||||
|
thumbnails.push({ src: vehicleName, fallbackSrc: fallbackVehicleImage });
|
||||||
|
}
|
||||||
|
|
||||||
|
return thumbnails;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.stock-thumbnails {
|
||||||
|
overflow: auto;
|
||||||
|
background-color: #353a57;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-end;
|
||||||
|
min-height: 110px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail-item {
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 0.85em;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
|
||||||
|
&[data-selected='true'] {
|
||||||
|
background-color: rebeccapurple;
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-sponsor-only='true'] > b {
|
||||||
|
color: var(--accentColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
&[data-team-only='true'] > b {
|
||||||
|
color: var(--teamColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-height: 70px;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.stock-text {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #ccc;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.thumbnail-item > span {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-end;
|
||||||
|
cursor: crosshair;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
<template>
|
||||||
|
<div class="stock_warnings" v-if="hasAnyWarnings">
|
||||||
|
<div class="warning" v-if="locoNotSuitable"><TriangleAlertIcon :size="20" :stroke-width="2" /> {{ $t('stocklist.warning-not-suitable') }}</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="lengthExceeded && store.isTrainPassenger">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" /> {{ $t('stocklist.warning-passenger-too-long') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="lengthExceeded && !store.isTrainPassenger">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" /> {{ $t('stocklist.warning-freight-too-long') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="teamOnlyVehicles.length > 0">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" />
|
||||||
|
{{ $t('stocklist.warning-team-only-vehicle', [teamOnlyVehicles.map((v) => v.vehicleRef.type).join(', ')]) }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="store.cargoWarnings.size > 0">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" /> <b>{{ $t('cargo-warnings.title') }}</b>
|
||||||
|
{{ [...store.cargoWarnings].map((v) => $t(`cargo-warnings.${v}`)).join('; ') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="!isRearPRSM4">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" /> {{ $t('stocklist.warning-prsm4-not-at-the-rear') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning" v-if="weightExceeded">
|
||||||
|
<TriangleAlertIcon :size="20" :stroke-width="2" />
|
||||||
|
<i18n-t keypath="stocklist.warning-too-heavy">
|
||||||
|
<template #href>
|
||||||
|
<a target="_blank" href="https://docs.google.com/spreadsheets/d/1BvTU-U7huIaEheov22TrhTtROUM4MwVfdbq03GVAEM8">
|
||||||
|
{{ $t('stocklist.acceptable-mass-docs') }}
|
||||||
|
</a>
|
||||||
|
</template>
|
||||||
|
</i18n-t>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import { defineComponent } from 'vue';
|
||||||
|
import { useStore } from '../../../store';
|
||||||
|
import { isTractionUnit } from '../../../utils/vehicleUtils';
|
||||||
|
import { TriangleAlertIcon } from 'lucide-vue-next';
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
|
components: { TriangleAlertIcon },
|
||||||
|
|
||||||
|
data: () => ({
|
||||||
|
store: useStore(),
|
||||||
|
}),
|
||||||
|
|
||||||
|
computed: {
|
||||||
|
teamOnlyVehicles() {
|
||||||
|
return this.store.stockList.filter((stock) => stock.vehicleRef.teamOnly);
|
||||||
|
},
|
||||||
|
|
||||||
|
hasAnyWarnings() {
|
||||||
|
return this.weightExceeded || this.lengthExceeded || this.locoNotSuitable || this.teamOnlyVehicles;
|
||||||
|
},
|
||||||
|
|
||||||
|
lengthExceeded() {
|
||||||
|
return (this.store.totalLength > 350 && this.store.isTrainPassenger) || (this.store.totalLength > 650 && !this.store.isTrainPassenger);
|
||||||
|
},
|
||||||
|
|
||||||
|
weightExceeded() {
|
||||||
|
return this.store.acceptableWeight && this.store.totalWeight > this.store.acceptableWeight;
|
||||||
|
},
|
||||||
|
|
||||||
|
locoNotSuitable() {
|
||||||
|
return (
|
||||||
|
!this.store.isTrainPassenger &&
|
||||||
|
this.store.stockList.length > 1 &&
|
||||||
|
!this.store.stockList.every((stock) => isTractionUnit(stock.vehicleRef)) &&
|
||||||
|
this.store.stockList.some((stock) => isTractionUnit(stock.vehicleRef) && stock.vehicleRef.type.startsWith('EP'))
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
isRearPRSM4() {
|
||||||
|
if (this.store.stockList.length <= 1) return true;
|
||||||
|
|
||||||
|
const index = this.store.stockList.findIndex((stock) => stock.vehicleRef.type.startsWith('PRSM4'));
|
||||||
|
|
||||||
|
return index != -1 ? index == this.store.stockList.length - 1 : true;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.warning {
|
||||||
|
padding: 0.25em;
|
||||||
|
margin: 0.25em 0;
|
||||||
|
background: var(--accentColor);
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
.lucide {
|
||||||
|
vertical-align: text-bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
@keydown.esc="store.vehiclePreviewSrc = ''"
|
@keydown.esc="store.vehiclePreviewSrc = ''"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<img :src="store.vehiclePreviewSrc" alt="preview" />
|
<img :src="store.vehiclePreviewSrc" alt="preview" @error="onImageError" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -23,6 +23,14 @@ export default defineComponent({
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.$el.focus();
|
this.$el.focus();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
onImageError(event: Event) {
|
||||||
|
if(!event.target || !(event.target instanceof HTMLImageElement)) return
|
||||||
|
|
||||||
|
event.target.src = '/images/no-vehicle-image.png';
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,142 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="stock-thumbnails" ref="thumbnailsRef">
|
|
||||||
<div
|
|
||||||
class="thumbnail-item"
|
|
||||||
v-for="(stock, stockIndex) in store.stockList"
|
|
||||||
:key="stockIndex"
|
|
||||||
:data-selected="store.chosenStockListIndex == stockIndex"
|
|
||||||
:data-sponsor-only="
|
|
||||||
stock.vehicleRef.sponsorOnlyTimestamp && stock.vehicleRef.sponsorOnlyTimestamp > Date.now()
|
|
||||||
"
|
|
||||||
:data-team-only="stock.vehicleRef.teamOnly"
|
|
||||||
draggable="true"
|
|
||||||
@dragstart="onDragStart(stockIndex)"
|
|
||||||
@drop="onDrop($event, stockIndex)"
|
|
||||||
@dragover="allowDrop"
|
|
||||||
@click="onListItemClick(stockIndex)"
|
|
||||||
>
|
|
||||||
<b>
|
|
||||||
{{ stock.vehicleRef.type }}
|
|
||||||
</b>
|
|
||||||
|
|
||||||
<img
|
|
||||||
draggable="false"
|
|
||||||
:src="`https://rj.td2.info.pl/dist/img/thumbnails/${stock.vehicleRef.type}.png`"
|
|
||||||
:alt="stock.vehicleRef.type"
|
|
||||||
:title="stock.vehicleRef.type"
|
|
||||||
@error="stockImageError($event, stock)"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script setup lang="ts">
|
|
||||||
import { Ref, computed, nextTick, ref, watch } from 'vue';
|
|
||||||
import { useStore } from '../../store';
|
|
||||||
import { IStock } from '../../types';
|
|
||||||
|
|
||||||
const store = useStore();
|
|
||||||
const emit = defineEmits(['listItemClick']);
|
|
||||||
|
|
||||||
const thumbnailsRef = ref() as Ref<HTMLElement>;
|
|
||||||
const draggedIndex = ref(-1);
|
|
||||||
|
|
||||||
const onListItemClick = (index: number) => {
|
|
||||||
emit('listItemClick', index);
|
|
||||||
};
|
|
||||||
|
|
||||||
const stockImageError = (e: Event, stock: IStock) => {
|
|
||||||
(e.target as HTMLImageElement).src = `images/${stock.vehicleRef.group}-unknown.png`;
|
|
||||||
};
|
|
||||||
|
|
||||||
watch(
|
|
||||||
computed(() => store.chosenStockListIndex),
|
|
||||||
(index) => {
|
|
||||||
if (index < 0) return;
|
|
||||||
|
|
||||||
nextTick(() => {
|
|
||||||
(thumbnailsRef.value as HTMLElement)
|
|
||||||
.querySelector(`div:nth-child(${index + 1})`)
|
|
||||||
?.scrollIntoView({
|
|
||||||
block: 'nearest',
|
|
||||||
inline: 'start',
|
|
||||||
behavior: 'smooth',
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// Dragging images
|
|
||||||
const onDragStart = (vehicleIndex: number) => {
|
|
||||||
draggedIndex.value = vehicleIndex;
|
|
||||||
};
|
|
||||||
|
|
||||||
const onDrop = (e: DragEvent, vehicleIndex: number) => {
|
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
let targetEl = thumbnailsRef.value.querySelector(`div:nth-child(${vehicleIndex + 1})`);
|
|
||||||
|
|
||||||
if (!targetEl && draggedIndex.value != -1) return;
|
|
||||||
|
|
||||||
const tempVehicle = store.stockList[vehicleIndex];
|
|
||||||
store.stockList[vehicleIndex] = store.stockList[draggedIndex.value];
|
|
||||||
store.stockList[draggedIndex.value] = tempVehicle;
|
|
||||||
|
|
||||||
store.chosenStockListIndex = vehicleIndex;
|
|
||||||
};
|
|
||||||
|
|
||||||
const allowDrop = (e: DragEvent) => {
|
|
||||||
e.preventDefault();
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
@import '../../styles/global.scss';
|
|
||||||
|
|
||||||
.stock-thumbnails {
|
|
||||||
display: flex;
|
|
||||||
overflow: auto;
|
|
||||||
background-color: #353a57;
|
|
||||||
min-height: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thumbnail-item {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 0.5em;
|
|
||||||
|
|
||||||
padding-top: 0.5em;
|
|
||||||
|
|
||||||
cursor: pointer;
|
|
||||||
min-height: 100px;
|
|
||||||
font-size: 0.85em;
|
|
||||||
|
|
||||||
user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-webkit-user-select: none;
|
|
||||||
|
|
||||||
&[data-selected='true'] {
|
|
||||||
background-color: rebeccapurple;
|
|
||||||
}
|
|
||||||
|
|
||||||
b {
|
|
||||||
color: #ccc;
|
|
||||||
margin: 0 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
&[data-sponsor-only='true'] > b {
|
|
||||||
color: $sponsorColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
&[data-team-only='true'] > b {
|
|
||||||
color: $teamColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-height: 60px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
import { useStore } from '../store';
|
||||||
|
import { additionalCargoTypes } from '../utils/vehicleUtils';
|
||||||
|
|
||||||
|
export function getCurrentStockFileName() {
|
||||||
|
const store = useStore();
|
||||||
|
|
||||||
|
let fileName = '';
|
||||||
|
|
||||||
|
if (store.chosenStorageStockName.trim() != '') {
|
||||||
|
return store.chosenStorageStockName;
|
||||||
|
}
|
||||||
|
|
||||||
|
const currentStockString = store.stockList.map((s) => s.vehicleRef.type).join(';');
|
||||||
|
|
||||||
|
const currentRealComp = store.realCompositionList.find((rc) => rc.stockString == currentStockString);
|
||||||
|
|
||||||
|
// Append real composition to the name if chosen
|
||||||
|
if (currentRealComp != undefined) {
|
||||||
|
fileName += `${currentRealComp.stockId} `;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Append default props
|
||||||
|
fileName += `${store.stockList[0].vehicleRef.type} ${(store.totalWeight / 1000).toFixed(1)}t; ${store.totalLength}m; vmax ${store.maxStockSpeed}`;
|
||||||
|
|
||||||
|
return fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
// UNUSED - PARSES ADDITIONAL CARGO FOR INTERMODALS
|
||||||
|
export function getStockStringOutput() {
|
||||||
|
const store = useStore();
|
||||||
|
|
||||||
|
const stockEntries = store.stockString.split(';');
|
||||||
|
|
||||||
|
const parsedEntries = store.stockList.map((stockVehicle, i) => {
|
||||||
|
if (stockVehicle.cargo && /412Z|627Z/.test(stockVehicle.vehicleRef.constructionType)) {
|
||||||
|
const additionalCargo = additionalCargoTypes.find(
|
||||||
|
(c) => c.groupType == stockVehicle.vehicleRef.constructionType && c.id == stockVehicle.cargo!.id
|
||||||
|
);
|
||||||
|
|
||||||
|
if (additionalCargo) {
|
||||||
|
let cargoString = additionalCargo.cargoStringVariations[Math.floor(Math.random() * additionalCargo.cargoStringVariations.length)];
|
||||||
|
|
||||||
|
return stockEntries[i].replace(stockVehicle.cargo.id, cargoString);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return stockEntries[i];
|
||||||
|
});
|
||||||
|
|
||||||
|
return parsedEntries.join(';');
|
||||||
|
}
|
||||||
@@ -7,5 +7,12 @@
|
|||||||
"EP08": [650000, 650000],
|
"EP08": [650000, 650000],
|
||||||
"EP09": [800000, 800000],
|
"EP09": [800000, 800000],
|
||||||
"ET41": [700000, 4000000],
|
"ET41": [700000, 4000000],
|
||||||
"SM42": [2400000, 2400000]
|
"SM42": [2400000, 2400000],
|
||||||
|
"ET22": [650000, 3100000],
|
||||||
|
"201E": [650000, 3100000],
|
||||||
|
"ST44": [3000000, 3000000],
|
||||||
|
"M62": [3000000, 3000000],
|
||||||
|
"CTLR4C": [3000000, 3000000],
|
||||||
|
"SU45": [1500000, 1500000],
|
||||||
|
"SP45": [1500000, 1500000]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,19 +43,22 @@
|
|||||||
"PW": ["6", "000", "899"],
|
"PW": ["6", "000", "899"],
|
||||||
"PX": ["6", "000", "899"],
|
"PX": ["6", "000", "899"],
|
||||||
|
|
||||||
"TC": ["0", "000", "899"],
|
"TM": ["4", "000", "899"],
|
||||||
|
"TN": ["3", "000", "899"],
|
||||||
|
"TK": ["3", "000", "899"],
|
||||||
|
"TD": ["2", "000", "899"],
|
||||||
"TG": ["1", "000", "899"],
|
"TG": ["1", "000", "899"],
|
||||||
"TR": ["1", "000", "899"],
|
"TR": ["1", "000", "899"],
|
||||||
"TD": ["2", "000", "899"],
|
"TC": ["0", "000", "899"],
|
||||||
"TK": ["3", "000", "899"],
|
|
||||||
"TN": ["3", "000", "899"],
|
|
||||||
"TM": ["4", "000", "899"],
|
|
||||||
"TS": ["5", "000", "899"],
|
"TS": ["5", "000", "899"],
|
||||||
|
"TH": ["5", "000", "899"],
|
||||||
|
|
||||||
"LT": ["5", "000", "899"],
|
"LT": ["5", "000", "899"],
|
||||||
"LP": ["6", "000", "899"],
|
"LP": ["6", "000", "899"],
|
||||||
"LS": ["9", "000", "899"],
|
"LS": ["9", "000", "899"],
|
||||||
|
"LZ": ["9", "000", "899"],
|
||||||
|
|
||||||
"ZN": ["9", "000", "899"]
|
"ZN": ["9", "000", "899"],
|
||||||
|
"ZU": ["9", "000", "899"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,82 +0,0 @@
|
|||||||
{
|
|
||||||
"EU07": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 125
|
|
||||||
},
|
|
||||||
"cargo": {
|
|
||||||
"2000000": 70
|
|
||||||
},
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"4E": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 125
|
|
||||||
},
|
|
||||||
"cargo": {
|
|
||||||
"2000000": 70
|
|
||||||
},
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"EU07E": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 125
|
|
||||||
},
|
|
||||||
"cargo": {
|
|
||||||
"2000000": 70
|
|
||||||
},
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"EP07": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 125
|
|
||||||
},
|
|
||||||
"cargo": null,
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"EP08": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 140
|
|
||||||
},
|
|
||||||
"cargo": null,
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"EP09": {
|
|
||||||
"passenger": {
|
|
||||||
"650000": 160
|
|
||||||
},
|
|
||||||
"cargo": null,
|
|
||||||
"none": 160
|
|
||||||
},
|
|
||||||
"ET41": {
|
|
||||||
"passenger": {
|
|
||||||
"700000": 125
|
|
||||||
},
|
|
||||||
"cargo": {
|
|
||||||
"4000000": 70
|
|
||||||
},
|
|
||||||
"none": 110
|
|
||||||
},
|
|
||||||
"SM42": {
|
|
||||||
"passenger": {
|
|
||||||
"95000": 90,
|
|
||||||
"200000": 80,
|
|
||||||
"300000": 70,
|
|
||||||
"450000": 60,
|
|
||||||
"750000": 50,
|
|
||||||
"1130000": 40,
|
|
||||||
"1720000": 30,
|
|
||||||
"2400000": 20
|
|
||||||
},
|
|
||||||
"cargo": {
|
|
||||||
"95000": 90,
|
|
||||||
"200000": 80,
|
|
||||||
"300000": 70,
|
|
||||||
"450000": 60,
|
|
||||||
"750000": 50,
|
|
||||||
"1130000": 40,
|
|
||||||
"1720000": 30,
|
|
||||||
"2400000": 20
|
|
||||||
},
|
|
||||||
"none": 90
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
{
|
||||||
|
"cargo": {
|
||||||
|
"containers": ["412Z:sc_20", "412Z:sc_40", "627Z:sc_20", "627Z:sc_40"],
|
||||||
|
"food": ["412Z:tc_20_loaded", "627Z:tc_20_loaded"],
|
||||||
|
"food-empty": ["412Z:tc_20_empty", "627Z:tc_20_empty"],
|
||||||
|
"intermodal": [
|
||||||
|
"627Z:sc_20",
|
||||||
|
"627Z:sc_40",
|
||||||
|
"627Z:tc_20_empty",
|
||||||
|
"627Z:tc_20_loaded",
|
||||||
|
"627Z:wt_20_empty",
|
||||||
|
"627Z:wt_20_biomass",
|
||||||
|
"412Z:sc_20",
|
||||||
|
"412Z:sc_40",
|
||||||
|
"412Z:tc_20_empty",
|
||||||
|
"412Z:tc_20_loaded",
|
||||||
|
"412Z:wt_20_empty",
|
||||||
|
"412Z:wt_20_biomass"
|
||||||
|
],
|
||||||
|
"biomass": ["412Z:wt_20_biomass", "627Z:wt_20_biomass"],
|
||||||
|
"biomass-empty": [
|
||||||
|
"412Z:wt_20_empty",
|
||||||
|
"627Z:wt_20_empty"
|
||||||
|
],
|
||||||
|
"cold-storage": ["202Lc:all"],
|
||||||
|
"loose-cargo": ["426S:all", "208Kf:all", "401Ka_PKP_Gags:all", "401Ka_PKPC_Gags:all"],
|
||||||
|
"coal": ["412W:coal_01", "413S:coal_413S", "429W:coal_01", "401Zb:coal_02"],
|
||||||
|
"ore": ["412W:ore_01", "401Zl:ore_35", "429W:ore_01"],
|
||||||
|
"sand": [
|
||||||
|
"412W:sand_01",
|
||||||
|
"412W:sand_02",
|
||||||
|
"413S:sand_413S",
|
||||||
|
"401Zl:sand_30",
|
||||||
|
"429W:sand_01",
|
||||||
|
"429W:sand_02",
|
||||||
|
"401Zb:sand_03",
|
||||||
|
"409Va:sand_409Va",
|
||||||
|
"418Va:sand_418V",
|
||||||
|
"418Vb:sand_418V"
|
||||||
|
],
|
||||||
|
"chalk": ["413S:chalk_413S"],
|
||||||
|
"stone": ["412W:stone_01", "412W:stone_50", "401Zl:stone_25", "429W:stone_01", "401Zb:stone_02", "418Va:stone_418V", "418Vb:stone_418V"],
|
||||||
|
"scrap": ["412W:scrap_01", "412W:scrap_02", "429W:scrap_01", "429W:scrap_02"],
|
||||||
|
"fuel": ["29R_CTLL:all", "29R_PKP:all", "445Rb:all"],
|
||||||
|
"molasses": ["29R_PLPOL:all"],
|
||||||
|
"gravel": ["441V"],
|
||||||
|
"wheels": ["424Z:wheels_01"],
|
||||||
|
"wood": ["424Z:woods_01", "424Z:woods_02"],
|
||||||
|
"rails": ["424Z:rails_01"],
|
||||||
|
"cables": ["424Z:cables_01", "24Z:cables_Ks", "401Ze:cables_02"],
|
||||||
|
"aggregate": ["59WS:all"],
|
||||||
|
"technical": ["209c", "304Ca", "102a_PKPE", "401Ka_PKP_XGa:all"],
|
||||||
|
"mail": ["211K:all"],
|
||||||
|
"concrete": ["408S:cement_4", "206S_CEMET:cement_3", "206S_SPEED:cement_3", "220S_CEMET:cement_3"],
|
||||||
|
"lime": ["408S:lime_4", "206S_CEMET:lime_3", "206S_SPEED:lime_3", "220S_CEMET:lime_3"],
|
||||||
|
"soda": ["408S:soda_4", "206S_CEMET:soda_3", "206S_SPEED:soda_3", "220S_CEMET:soda_3"],
|
||||||
|
"wheat": ["206Sh_PKP_Ugpps:wheat_3", "206Sh_PKPC_Ugpps:wheat_3"],
|
||||||
|
"corn": ["206Sh_PKP_Ugpps:corn_3", "206Sh_PKPC_Ugpps:corn_3"],
|
||||||
|
"fodder": ["206Sh_PKP_Ugpps:forage_3", "206Sh_PKPC_Ugpps:forage_3"],
|
||||||
|
"military": ["426Z:tank_01", "426Z:truck_01", "426Z:vehicles_01"],
|
||||||
|
"vehicles_nysa": ["424Z:vehicles_nysa", "426Z:vehicles_02"],
|
||||||
|
"carbide": ["421S:carbide_01"],
|
||||||
|
"sensitive": ["425S:all", "421S:carbide_01"],
|
||||||
|
"steel": ["401Ze:steel_01", "401Ze:steel_02"],
|
||||||
|
"gas": ["WB117:all"]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,272 @@
|
|||||||
|
{
|
||||||
|
"EIC 45_71006_71007 Sprewa": "EP08-006v2;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 15100_15101 Słowiniec": "EP08-006v2;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 15103 Podlasiak": "EP07-1039;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 15106_15107 Brda": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_01",
|
||||||
|
"IC 15155_15154 Lazur": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 16150_16151 Śnieżka": "EP08-006v2;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 17100_17101 Zamenhof": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 17102_17103 Zielonogórzanin": "EP08-006v2;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 17104_17105 Warta": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 18100_18101 Gałczyński": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 18102_18103 Podlasiak": "EP08-006v2;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 18104_18105 Rybak": "EP07-1043;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 18106_18107 Mewa": "EP08-006v2;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 18112_18113 Noteć": "EP08-006v2;111a_PKPIC_B9nopuvz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 18153_18152 Parsęta": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 19100_19101 Łodzianin": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_01",
|
||||||
|
"IC 20100_20101 Hetman": "EP08-006v2;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 21100_21101 Chełmianin": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 22100_22101 Hetman": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 23100_23101 Jagiełło": "EP07-544;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 24100_24101 Sztygar": "EP07-1009;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 24105 Morcinek": "EP07-1025;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_01",
|
||||||
|
"IC 25100_25101 Kochanowski": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 26100_26101 Hetman": "EP08-006v2;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 26102_26103 Bolko": "EP07-1054;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 26104_26105 Morcinek": "EP07-1039;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 27100_27101 Lubuszanin": "EP08-006v2;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 31104_31105 Witos": "EP07-356;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 31106_31107 San": "EP07-1056;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 31110_31111 Marszałek Piłsudski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 32100_32101 Jagiełło": "EP07-1054;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 35102_35103 Kochanowski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 35150_35151 Halny": "EP07-391;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 35202_35203 Przebojowy pociąg RMF FM": "EP08-006v2;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 36104_36105 Kossak": "EP07-1043;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 38100_38101 Górski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 38102_38103 Osterwa": "EP07-1025;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 38104_38105 Mehoffer": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 38172_38173 Przemyślanin": "EP08-006v2;110a_PKPIC_Bcdu_01;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 38192_38193 Podhalanin": "EP07-1043;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02",
|
||||||
|
"IC 42100_42101 Sztygar": "EP07-544;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 42104 Morcinek": "EP07-1002;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 48150_48151 Gwarek": "EP07-384;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 50104_50105 Niegocin": "EP07-391;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 51100_51101 Słowiniec": "EP08-006v2;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 51102 Podlasiak": "EP07-335;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 51106_51107 Brda": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 51155_51154 Lazur": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 52100_52101 Kochanowski": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01\n",
|
||||||
|
"IC 53102_53103 Kochanowski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 53150_53151 Halny": "EP07-1043;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 55104_55105 Niegocin": "EP07-1031;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 56102_56103 Mamry": "EP07-1043;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 56104_56105 Jeziorak": "EP07-1038;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 57100_57101 Ukiel": "EP07-1048;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 57102_57103 Drwęca": "EP07-1043;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02\n",
|
||||||
|
"IC 57104_57105 Bachus": "EP07-174;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 57106_57107 Lednica": "EP07-1025;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 57108_57109 Stoczniowiec": "EP07-335;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 58100_58101 Albatros": "EP07-1039;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 58102_58103 Żuławy": "EP07-1038;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 58104_58105 Bryza": "EP07-1009;111a_PKPIC_B9nopuvz_02;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01\n",
|
||||||
|
"IC 58106_58107 Gryf": "EP07-1009;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 58108_58109 Stańczyk": "EP07-444;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 60101 Mehoffer": "EP07-1025;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 60151 Śnieżka": "SM42-506;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 61150_61151 Śnieżka": "EP08-006v2;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 62100_62101 Hetman": "EP08-006;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 62102_62103 Bolko": "EP07-391;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 62104_62105 Morcinek": "EP07-1043;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 63104_63105 Kossak": "EU07-015;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 65102_65103 Mamry": "EP07-1031;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 65104_65105 Jeziorak": "EP07-1043;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 66100 Mehoffer": "EP07-1025;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 66150 Śnieżka": "SM42-506;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 68100_68101 Bosman": "EP07-1002;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 68102_68103 Szkuner": "EP07-1056;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 68104_68105 Swarożyc": "EP07-1025;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 71100_71101 Zamenhof": "EP08-006v2;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 71102_71103 Zielonogórzanin": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 71104_71105 Warta": "EP08-006v2;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 72100_72101 Lubuszanin": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 75100_75101 Ukiel": "EP07-1043;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 75102_75103 Drwęca": "EP07-1025;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"IC 75104_75105 Bachus": "EP07-335;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 75106_75107 Lednica": "EP07-1031;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 75108_75109 Stoczniowiec": "EP07-1025;111a_PKPIC_B9nopuvz_02;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 78101 Gałczyński": "SM42-506;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 78103 Lubuszanin": "SM42-506;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 78103 Mewa": "SM42-506;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 80150 Rowokół": "EP07-1038;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 81100_81101 Gałczyński": "EP08-006v2;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 81102_81103 Podlasiak": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 81104_81105 Rybak": "EP07-480;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 81106_81107 Mewa": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 81112_81113 Noteć": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 81152_81153 Parsęta": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 83100_83101 Górski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 83102_83103 Osterwa": "EP07-444;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 83104_83105 Mehoffer": "EP08-006v2;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 83192_83193 Podhalanin": "EP07-1056;110a_PKPIC_Bcdu_01;110a_PKPIC_Bcdu_02;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 84150_84151 Gwarek": "EP07-1043;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 85100_85101 Albatros": "EP07-1038;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 85102_85103 Żuławy": "EP07-335;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;154a_PKPIC_B10mnouz_01",
|
||||||
|
"IC 85104_85105 Bryza": "EP07-480;159a_PKPIC_B9mnopuz_01;154a_PKPIC_B10mnouz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 85106_85107 Gryf": "EP07-444;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 85108_85109 Stańczyk": "EU07-077;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 86100_86101 Bosman": "EP07-544;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 86102_86103 Szkuner": "EP07-174;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;113a_PKPIC_WRbd_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 86104_86105 Swarożyc": "EP07-1056;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 87100 Gałczyński": "SM42-506;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 87102 Lubuszanin": "SM42-506;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01",
|
||||||
|
"IC 87172_87173 Przemyślanin": "EP07-1054;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"IC 88151 Rowokół": "EP07-444;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;113a_PKPIC_WRbd_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"IC 91100_91101 Lodzianin": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"TLK 10100_10101 Żubr": "EP07-1009;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 10110_10111 Żubr": "EP07-355;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 12110_12111 Nida": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 301_43004_43005 Galicja (PKPIC) R 301 Galicja (ČD) ": "EP07-480;112a_PKPIC_A9ou_01;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01",
|
||||||
|
"TLK 310_24000_24001 Roztocze (PKPIC) R 310 Roztocze (ČD)": "EP07-480;Bau84_CD_B249_01;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01",
|
||||||
|
"TLK 31100_31101 Malinowski": "EP07-1025;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 31102_31103 Hańcza": "EP07-480;612a_PKPIC_BD4osuv_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;612a_PKPIC_BD4osuv_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 31106_31107 San": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 31110_31111 Wit Stwosz": "EP08-006;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;158a_PKPIC_A9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 31150_31151 Karłowicz": "EP07-391;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 311_42000_42001 Roztocze (PKPIC) R 311 Roztocze (ČD) ": "EP07-480;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;Bau84_CD_B249_01",
|
||||||
|
"TLK 33100_33101 Malinowski": "EU07-324;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 33104_33105 Łukasiewicz": "EP07-544;112a_PKPIC_A9ou_01;Bau84_CD_B249_01;Bau84_CD_B249_01;Bau84_CD_B249_01",
|
||||||
|
"TLK 35100_35101 Małopolska": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 35106_35107 Artus": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01\n",
|
||||||
|
"TLK 35106_35107 ArtusV2": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01\n",
|
||||||
|
"TLK 35170_35171 Karpaty": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 35190_35191 Korsarz": "SM42-506;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 36102_36103 Sudety": "SM42-506;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 36170_36171 Pogórze": "EP07-1025;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;110a_PKPIC_Bcdu_02\n",
|
||||||
|
"TLK 37100_37101 Pułaski": "EU07-334;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01",
|
||||||
|
"TLK 37102_37103 Wybicki": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 37170_37171 Pogórze": "EP07-544;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 38106_38107 Zefir": "EU07-334;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 38154_38155 Lubomirski": "EP08-006;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01",
|
||||||
|
"TLK 38170_38171 Ustronie": "EP07-444;110a_PKPIC_Bcdu_01;110a_PKPIC_Bcdu_02;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 38190_38191 Bursztyn": "EP07-1031;110a_PKPIC_Bcdu_02;112a_PKPIC_A9ou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 400_84070_84071 Wolin (PKPIC) R 400 Wolin (ČD)": "EU07-334;110a_PKPIC_Bcdu_02;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;612a_PKPIC_BD4osuv_01;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01",
|
||||||
|
"TLK 40160_40161 Pirat": "EP07-544;612a_PKPIC_BD4osuv_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 401_48070_48071 Wolin (PKPIC) R 401 Wolin (ČD) ": "EP07-544;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;612a_PKPIC_BD4osuv_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 402_54070_54071 Wydmy (PKPIC) R 402 Wydmy (ČD)": "EP07-1009;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;612a_PKPIC_BD4osuv_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 403_45070_45071 Wydmy (PKPIC) R 403 Wydmy (ČD) ": "EP07-1009;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;612a_PKPIC_BD4osuv_01;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01",
|
||||||
|
"TLK 405_48072_48073 Pirat (PKPIC) R 405 Pirat (ČD) ": "EP07-391;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;612a_PKPIC_BD4osuv_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;Bau84_CD_B10nou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 41100_41101 Chemik": "EP07-355;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01\n",
|
||||||
|
"TLK 41102_41103 Wysocki": "EP07-444;111a_PKPIC_B9nopuvz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_01",
|
||||||
|
"TLK 41104_41105 Kmicic": "EP07-1056;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 44160_44161 Pirat": "EU07-334;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;612a_PKPIC_BD4osuv_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 45100_45101 Doker ": "EP07-1056;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 45150_45151 Halny ": "EP07-1054;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 45170_45171 Rozewie ": "EP07-391;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 45190_45191 Rozewie ": "EP07-544;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 47100_47101 Spodek ": "EP07-1038;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 50150_50151 Gardno": "SM42-506;110a_PKPIC_Bcdu_02;Bau84_CD_B249_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01",
|
||||||
|
"TLK 50160_50161 Korsarz": "EP07-1038;110a_PKPIC_Bcdu_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 50170_50171 Mierzeja": "SM42-506;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 51104_51105 Biebrza": "EP07-1025;111a_PKPIC_Bnouz_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_Bnouz_01",
|
||||||
|
"TLK 51112_51113 Kociewie": "EP07-1002;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01",
|
||||||
|
"TLK 51150_51151 Delfin": "EP07-335;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01\n",
|
||||||
|
"TLK 51152_51153 Wybrzeże": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 53100_53101 Małopolska": "EU07-545;EU07-015;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;Bau84_PKPIC_B10nou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 53104_53105 Lubomirski": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 53106_53107 Artus V2": "EP07-335;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 53170_53171 Karpaty": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 53190_53191 Korsarz": "EP07-1054;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 54100_54101 Doker": "EP07-1038;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 54150_54151 Halny": "EP07-174;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 54170_54171 Rozewie": "EP07-1025;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 55154 Wydmy": "EU07-545;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 55160_55161 Korsarz": "EU07-545;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 55162_55163 Rozewie": "SM42-506;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;612a_PKPIC_BD4osuv_01",
|
||||||
|
"TLK 55170_55171 Mierzeja": "SM42-506;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 56100_56101 Kormoran": "EP07-355;EP07-1038;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 58104_58105 Bryza": "EP07-1038;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 58110_58111 Bory Tucholskie": "SM42-506;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01",
|
||||||
|
"TLK 64160_64161 Wolin": "EU07-015;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;612a_PKPIC_BD4osuv_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 65100_65101 Kormoran": "EP07-444;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 66166_66167 Rozewie": "EP07-391;612a_PKPIC_BD4osuv_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B249_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 71106_71107 Konopnicka": "EP08-006v2;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B9nopuvz_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 73100_73101 Pułaski": "EP07-1054;Bau84_CD_B249_01;Bau84_CD_B249_01;Bau84_CD_B249_01",
|
||||||
|
"TLK 73102_73103 Wybicki V2": "EP07-1056;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 73102_73103 Wybicki": "EP07-1025;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;Bau84_PKPIC_B10nou_01",
|
||||||
|
"TLK 73170_73171 Pogórze": "EP07-444;110a_PKPIC_Bcdu_02;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02",
|
||||||
|
"TLK 74100_74101 Spodek": "EP07-544;Bau84_CD_B249_01;Bau84_CD_B249_01;Bau84_CD_B249_01",
|
||||||
|
"TLK 76106_76107 Konopnicka": "SM42-506;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 81114_81115 Pobrzeże": "EP08-006;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B9nopuvz_02;Bau84_PKPIC_B10nou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 81150_81151 Słupia": "EU07-015;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 81170_81171 Uznam": "EP07-480;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 82100_82101 Staszic": "EP08-006v2;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 82102_82103 Wyczółkowski": "EP07-391;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 82104_82105 Zamoyski": "EP07-480;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 82170_82171 Mierzeja": "EP07-1009;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 83100_83101 Górski": "EP08-006v2;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;158a_PKPIC_A9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01;159a_PKPIC_B9mnopuz_01",
|
||||||
|
"TLK 83106_83107 Zefir": "EP07-1054;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 83154_83155 Lubomirski": "EP08-006;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;159a_PKPIC_B9mnopuz_01;111a_PKPIC_B10ou_01;Bau84_PKPIC_B10nou_01;Bau84_PKPIC_B10nou_01",
|
||||||
|
"TLK 83170_83171 Ustronie V2": "EP07-391;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;159a_PKPIC_B9mnopuz_01;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 83190_83191 Bursztyn": "EP07-1031;110a_PKPIC_Bcdu_02;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;Bau84_CD_B10nou_01;112a_PKPIC_A9ou_01;110a_PKPIC_Bcdu_02",
|
||||||
|
"TLK 85104_85105 Bryza": "EP07-1038;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 86116_86117 Jamno": "EP07-1025;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01",
|
||||||
|
"TLK 88160_88161 Ustronie": "EU07-015;110a_PKPIC_Bcdu_02;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 91130_91131 Zosia": "EP07-544;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"TLK 91132_91133 Korczak": "EP07-1002;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B9nopuvz_02;159a_PKPIC_B9mnopuz_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;112a_PKPIC_A9ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01;111a_PKPIC_B10ou_01",
|
||||||
|
"iR 11121 Żubr": "EN57-1953",
|
||||||
|
"iR 11130 Żubr": "EN57-1953",
|
||||||
|
"iR 12121 Bystrzyca": "EN71-028",
|
||||||
|
"iR 12125 Cisy": "EN71-028",
|
||||||
|
"iR 13126 Jan Matejko": "EP07-370;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02",
|
||||||
|
"iR 31130 Semafor": "EN57-1953",
|
||||||
|
"iR 36120 Galicja V2": "EN57-1914",
|
||||||
|
"iR 36120 Galicja": "EN71-010",
|
||||||
|
"iR 36122 Łużyce": "EN57-1747",
|
||||||
|
"iR 40110 Torunianin": "EN71-028",
|
||||||
|
"iR 43127_6 Giewont": "EN57-1542",
|
||||||
|
"iR 43421 Orlik": "EN57-1542",
|
||||||
|
"iR 46121 Spodek": "EN57-1542",
|
||||||
|
"iR 46123 Ostrów Tumski": "EN57-1542",
|
||||||
|
"iR 46125 Oleńka": "EN57-1542",
|
||||||
|
"iR 46140 Szyndzielnia": "EN57-1542",
|
||||||
|
"iR 46142 Szyndzielnia": "EN57-1542",
|
||||||
|
"iR 48102 Pirania": "EP07-338;111a_PRREG_B10_01;112a_PKP_A9nou_01;111a_PRREG_B10_01;112a_PKP_A9nou_01",
|
||||||
|
"iR 51110 Flisak": "EP07-338;111a_PKPIC_B9ouv_01;111a_PKP_Bdnu_02;111a_PKP_Bdnu_02;111a_PRREG_B10_01",
|
||||||
|
"iR 51204 Szczeliniec": "EP07-135;111a_PRREG_B10_01;111a_PRREG_B10_01",
|
||||||
|
"iR 56110 Sokoliki": "EP07-424;111a_PRREG_B10_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_A9ou_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_A9ou_01",
|
||||||
|
"iR 57110 Mamry": "EN57-1542",
|
||||||
|
"iR 57112 Drwęca": "EN57-1542",
|
||||||
|
"iR 57112 Niegocin": "SM42-329;Gor89_PKP_B16mnopux_04;Gor89_PKP_B16mnopux_04;Gor89_PKP_B16mnopux_04",
|
||||||
|
"iR 57120 Lednica": "EN57-1542",
|
||||||
|
"iR 61122 Prosna": "EN57-1542",
|
||||||
|
"iR 61126 Piast": "EP07-338;111a_PKPIC_B9ouv_01;120a_PRREG_B51p_02;120a_PRREG_B51p_02;111a_PRREG_B10_01",
|
||||||
|
"iR 61128 Rudawy": "EP07-242;111a_PRREG_A9ou_01;111a_PRREG_A9ou_01;111a_PKPIC_B9ouv_01;111a_PRREG_B10_01;111a_PRREG_B10_01;111a_PKP_Bnouz_01",
|
||||||
|
"iR 62120 Łysica": "EN57-1747",
|
||||||
|
"iR 63120 Łużyce": "EN57-1542",
|
||||||
|
"iR 64102 Szyndzielnia": "EN57-1542",
|
||||||
|
"iR 64122 Oleńka": "EN57-1542",
|
||||||
|
"iR 64124 Lompa": "EN57-1953",
|
||||||
|
"iR 64126 Spodek": "EN57-1542",
|
||||||
|
"iR 65114 Mamry": "EP07-1008;111a_PRREG_B10_01;112a_PKP_A9nou_01;111a_PKPIC_B9ouv_01;111a_PRREG_B10_01;111a_PRREG_B10_01",
|
||||||
|
"iR 70111 Rusałka": "EN57-1542",
|
||||||
|
"iR 71110 Wielkopolska": "EN57-1747",
|
||||||
|
"iR 71120 Ner": "EU07-475;111a_PKPIC_B9ouv_01;111a_PRREG_B10_01;111a_PRREG_B10_01;Gor89_PKP_B16mnopux_05",
|
||||||
|
"iR 72112 Koziołek": "EN57-1542",
|
||||||
|
"iR 75110 Drwęca": "EN57-1542",
|
||||||
|
"iR 75112 Niegocin": "EU07-222;Gor89_PKP_B16mnopux_05;Gor89_PKP_B16mnopux_05;Gor89_PKP_B16mnopux_05",
|
||||||
|
"iR 75116 Lednica": "EN57-1542",
|
||||||
|
"iR 77111 Rusałka": "EN57-1542",
|
||||||
|
"iR 78111 Delfin": "EN57-1542",
|
||||||
|
"iR 78113 Merkury": "EU07-368;Gor89_PKP_B16mnopux_05;Gor89_PKP_B16mnopux_05;Gor89_PKP_B16mnopux_05",
|
||||||
|
"iR 78115 Wały Chrobrego": "EN57-1542",
|
||||||
|
"iR 78117 Wilda": "EU07-475;Gor89_PKP_B16mnopux_05;Gor89_PKP_B16mnopux_05",
|
||||||
|
"iR 78510 Wolin": "EN57-1747",
|
||||||
|
"iR 81122 Portowiec": "EU07-222;111a_PKPIC_B9ouv_01;111a_Grafitti_1;111a_PRREG_B10_01;111a_PRREG_B10_01;111a_PRREG_A9ouy_01;111a_PKP_Brdu_01;111a_PKP_Brdu_01",
|
||||||
|
"iR 81522 Bosman": "EU07-222;111a_PKPIC_B9ouv_01;111a_PKPIC_B9ouv_01;111a_PRREG_B10_01;111a_PKP_Bdnu_02",
|
||||||
|
"iR 84522 Pirania": "EU07-222;120a_PRREG_B51p_02;111a_PRREG_B10_01;111a_PRREG_A9ou_01;111a_PKPIC_B9ouv_01",
|
||||||
|
"iR 87110 Merkury": "EU07-368;111a_PKPIC_B9ouv_01;111a_PRREG_B10_01;111a_PKPIC_B9ouv_01;111a_PKPIC_B9ouv_01",
|
||||||
|
"iR 87112 Wały Chrobrego": "EN57-1542",
|
||||||
|
"iR 87114 Delfin": "EN57-1542",
|
||||||
|
"iR 87116 Wilda": "SM42-302;Gor89_PKP_B16mnopux_01;Gor89_PKP_B16mnopux_01",
|
||||||
|
"iR 87512 Wolin": "2EN57-1542+1747",
|
||||||
|
"RE 14120 Chemik": "EN57-1747",
|
||||||
|
"RE 18122 Mewa": "EU07-222;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_02;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;112a_PKP_Adu_01;112a_PKP_Adu_01;112a_PKP_Adu_01",
|
||||||
|
"RE 26122 Bolko": "EU07-222;111a_PRREG_A9ou_02;112a_PKP_A9nou_01;111a_PRREG_A9ou_01;111a_PRREG_B10_01",
|
||||||
|
"RE 27120 Warta": "EU06-18;111a_PRREG_A9ou_02;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_02",
|
||||||
|
"RE 41120 Chemik": "EU07-222;111a_PKPIC_B9ouv_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_02",
|
||||||
|
"RE 62122 Bolko": "EP07-1055;Gor89_PKP_B16mnopux_04;111a_PRREG_A9ou_02;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01",
|
||||||
|
"RE 72110 Warta": "EU07-222;111a_PRREG_A9ou_02;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_02",
|
||||||
|
"RE 81120 Mewa": "EU07-222;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_02;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01;111a_PRREG_Bbnopuvz_01"
|
||||||
|
}
|
||||||
@@ -1,10 +1,23 @@
|
|||||||
import axios from 'axios';
|
export class HttpClient {
|
||||||
|
constructor(private readonly baseURL: string) {}
|
||||||
|
|
||||||
const http = axios.create({
|
async get<T>(url: string, params?: Record<string, any>): Promise<T> {
|
||||||
baseURL:
|
const absoluteURL = new URL(this.baseURL + '/' + url);
|
||||||
import.meta.env.VITE_API_DEV === '1' && import.meta.env.DEV
|
|
||||||
? 'http://localhost:3001'
|
|
||||||
: 'https://stacjownik.spythere.eu',
|
|
||||||
});
|
|
||||||
|
|
||||||
export default http;
|
if (params) {
|
||||||
|
Object.keys(params).forEach((key) => {
|
||||||
|
if (params[key] === undefined) return;
|
||||||
|
|
||||||
|
absoluteURL.searchParams.append(key, params[key]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await fetch(absoluteURL);
|
||||||
|
|
||||||
|
if (!data.ok) {
|
||||||
|
throw new Error(`Cannot fetch: ${absoluteURL}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return data.json();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -6,13 +6,16 @@
|
|||||||
"disclaimer": "This site has only an informational intent. The author does not carry any responsibility for creating trains against {tos}!",
|
"disclaimer": "This site has only an informational intent. The author does not carry any responsibility for creating trains against {tos}!",
|
||||||
"tos": "Train Driver 2 simulator rules",
|
"tos": "Train Driver 2 simulator rules",
|
||||||
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit#heading=h.1ldcvhomwjp9",
|
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit#heading=h.1ldcvhomwjp9",
|
||||||
"version-check": "Site is complete for version {version} of Train Driver 2 simulator"
|
"version-check": "Site is complete for version {version} of Train Driver 2 simulator",
|
||||||
|
"vehicles-count": "Site contains currently {all} vehicles - including {units} traction units and {cars} car wagons!"
|
||||||
},
|
},
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"title": "CHOOSE A VEHICLE",
|
"title": "CHOOSE A VEHICLE",
|
||||||
"input-vehicle": "Choose a traction unit",
|
"input-vehicle": "Choose a traction unit",
|
||||||
"input-carwagon": "Choose a carriage",
|
"input-carwagon": "Choose a carriage",
|
||||||
"cargo-title": "Cargo (only selected freight cars)",
|
"vehicles-title": "Traction units",
|
||||||
|
"carwagons-title": "Car wagons",
|
||||||
|
"cargo-title": "Available cargo",
|
||||||
"no-cargo-available": "no cargo available",
|
"no-cargo-available": "no cargo available",
|
||||||
"cargo-empty": "empty",
|
"cargo-empty": "empty",
|
||||||
"loco-electric": "ELECTR.",
|
"loco-electric": "ELECTR.",
|
||||||
@@ -41,10 +44,11 @@
|
|||||||
"construction": "Construction type:"
|
"construction": "Construction type:"
|
||||||
},
|
},
|
||||||
"topbar": {
|
"topbar": {
|
||||||
"stock-list": "STOCK",
|
"stock": "STOCK",
|
||||||
"wiki-list": "VEHICLES",
|
"wiki": "VEHICLES",
|
||||||
"number-generator": "NUMBER GEN.",
|
"numgen": "NUMBER GEN.",
|
||||||
"stock-generator": "STOCK GEN."
|
"stockgen": "STOCK GEN.",
|
||||||
|
"storage": "SAVED STOCKS"
|
||||||
},
|
},
|
||||||
"stocklist": {
|
"stocklist": {
|
||||||
"title": "STOCK EDITOR",
|
"title": "STOCK EDITOR",
|
||||||
@@ -52,16 +56,21 @@
|
|||||||
"alert-copied": "The rolling stock has been copied to your clipboard!",
|
"alert-copied": "The rolling stock has been copied to your clipboard!",
|
||||||
"alert-empty": "Lista pojazdów jest pusta!",
|
"alert-empty": "Lista pojazdów jest pusta!",
|
||||||
"prompt-file": "Name a file and download it to the Presets folder (Documents/TTSK/TrainDriver2):",
|
"prompt-file": "Name a file and download it to the Presets folder (Documents/TTSK/TrainDriver2):",
|
||||||
|
"prompt-bookmark": "Enter the name of this composition:",
|
||||||
|
"prompt-bookmark-overwrite": "A composition with this name is already bookmarked! Do you want to overwrite it?",
|
||||||
"vehicle-no": "VEHICLE NO.",
|
"vehicle-no": "VEHICLE NO.",
|
||||||
"no-vehicle-chosen": "NO VEHICLE CHOSEN",
|
"no-vehicle-chosen": "NO VEHICLE CHOSEN",
|
||||||
"action-move-up": "MOVE UP",
|
"action-move-up": "MOVE UP",
|
||||||
"action-move-down": "MOVE DOWN",
|
"action-move-down": "MOVE DOWN",
|
||||||
"action-remove": "REMOVE",
|
"action-remove": "REMOVE",
|
||||||
"action-upload": "LOAD",
|
"action-upload-file": "LOAD FILE",
|
||||||
"action-download": "DOWNLOAD",
|
"action-upload-clipboard": "LOAD CLIPBOARD",
|
||||||
"action-copy": "COPY",
|
"action-download": "DOWNLOAD TO FILE",
|
||||||
|
"action-copy": "COPY TO CLIPBOARD",
|
||||||
"action-reset": "RESET",
|
"action-reset": "RESET",
|
||||||
"action-shuffle": "SHUFFLE",
|
"action-shuffle": "SHUFFLE",
|
||||||
|
"action-switch": "TURN AROUND",
|
||||||
|
"action-bookmark": "BOOKMARK",
|
||||||
"mass": "Mass",
|
"mass": "Mass",
|
||||||
"mass-accepted": "accepted",
|
"mass-accepted": "accepted",
|
||||||
"length": "Length",
|
"length": "Length",
|
||||||
@@ -69,14 +78,16 @@
|
|||||||
"coldstart-info": "Locomotive cold start",
|
"coldstart-info": "Locomotive cold start",
|
||||||
"doublemanning-info": "Double manning",
|
"doublemanning-info": "Double manning",
|
||||||
"list-empty": "Stock list is empty!",
|
"list-empty": "Stock list is empty!",
|
||||||
|
|
||||||
"warning-not-suitable": "EP series locomotives are designed for passenger traffic only!",
|
"warning-not-suitable": "EP series locomotives are designed for passenger traffic only!",
|
||||||
"warning-passenger-too-long": "Maximum length of a passenger train may not be greater than 350m!",
|
"warning-passenger-too-long": "Maximum length of a passenger train may not be greater than 350m!",
|
||||||
"warning-freight-too-long": "Maximum length of a freight train may not be greater than 650m!",
|
"warning-freight-too-long": "Maximum length of a freight train may not be greater than 650m!",
|
||||||
"warning-too-many-locos": "This train has too many traction units!",
|
"warning-too-many-locos": "This train has too many traction units!",
|
||||||
"warning-too-heavy": "This train is too heavy! Check {href}",
|
"warning-too-heavy": "This train is too heavy! Check {href}",
|
||||||
"warning-team-only-vehicle": "There's at least one vehicle available only for TD2 team members in your stock composition! ({0})",
|
"warning-team-only-vehicle": "There's at least one vehicle available only for TD2 team members in your stock composition! ({0})",
|
||||||
"acceptable-mass-docs": "acceptable rolling stock masses (PL)"
|
"warning-prsm4-not-at-the-rear": "PRSM4 welding car must be at the end of a train!",
|
||||||
|
"acceptable-mass-docs": "acceptable rolling stock masses (PL)",
|
||||||
|
"stock-loading-error": "An error occurred: cannot parse data from the file - make sure it's in a proper format!",
|
||||||
|
"stock-clipboard-error": "An error occurred: cannot read data from the clipboard - make sure the site has been granted right permissions for this action!"
|
||||||
},
|
},
|
||||||
"stockgen": {
|
"stockgen": {
|
||||||
"title": "FREIGHT TRAIN GENERATOR",
|
"title": "FREIGHT TRAIN GENERATOR",
|
||||||
@@ -91,7 +102,7 @@
|
|||||||
"chosen-empty-warning": "Choose at least one cargo type to see available cars!",
|
"chosen-empty-warning": "Choose at least one cargo type to see available cars!",
|
||||||
"chosen-warning": "Cars containing chosen cargo are shown below. Hover over a type to see a preview of the car. Click it to include/exclude it from a drawing (only highlighted types will be included).",
|
"chosen-warning": "Cars containing chosen cargo are shown below. Hover over a type to see a preview of the car. Click it to include/exclude it from a drawing (only highlighted types will be included).",
|
||||||
"action-generate": "GENERATE",
|
"action-generate": "GENERATE",
|
||||||
"action-generate-empty": "GENERATE EMPTY",
|
"action-generate-empty": "GENERATE CARS ALONE",
|
||||||
"action-reset": "RESET CARGO"
|
"action-reset": "RESET CARGO"
|
||||||
},
|
},
|
||||||
"numgen": {
|
"numgen": {
|
||||||
@@ -108,7 +119,6 @@
|
|||||||
"action-random-region": "DRAW REGIONS",
|
"action-random-region": "DRAW REGIONS",
|
||||||
"action-random-number": "DRAW LAST DIGITS",
|
"action-random-number": "DRAW LAST DIGITS",
|
||||||
"action-random-category": "DRAW A CATEGORY",
|
"action-random-category": "DRAW A CATEGORY",
|
||||||
|
|
||||||
"rules": {
|
"rules": {
|
||||||
"first-digit": "First digit:",
|
"first-digit": "First digit:",
|
||||||
"second-digit": "Second digit:",
|
"second-digit": "Second digit:",
|
||||||
@@ -123,45 +133,40 @@
|
|||||||
"for-region-end": "for the terminating construction region",
|
"for-region-end": "for the terminating construction region",
|
||||||
"from-range": "from range of"
|
"from-range": "from range of"
|
||||||
},
|
},
|
||||||
|
|
||||||
"categories": {
|
"categories": {
|
||||||
"EI": "EI - domestic express",
|
"EI": "EI - domestic express",
|
||||||
"EC": "EC - international express",
|
"EC": "EC - international express",
|
||||||
"EN": "EN - domestic night express",
|
"EN": "EN - international night express",
|
||||||
|
|
||||||
"MP": "MP - intervoivodeship bullet",
|
"MP": "MP - intervoivodeship bullet",
|
||||||
"RP": "RP - voivodeship bullet",
|
|
||||||
"MO": "MO - intervoivodeship regio",
|
"MO": "MO - intervoivodeship regio",
|
||||||
"RO": "RO - voivodeship regio",
|
|
||||||
|
|
||||||
"MM": "MM - international bullet",
|
"MM": "MM - international bullet",
|
||||||
"MH": "MH - intervoivodeship bullet (night / hotel)",
|
"MH": "MH - intervoivodeship night bullet",
|
||||||
|
"RP": "RP - voivodeship bullet",
|
||||||
"RM": "RM - international voivodeship regio",
|
"RM": "RM - international voivodeship regio",
|
||||||
|
"RO": "RO - voivodeship regio",
|
||||||
"RA": "RA - voivodeship regio (urban)",
|
"RA": "RA - voivodeship regio (urban)",
|
||||||
|
|
||||||
"PW": "PW - empty passenger",
|
"PW": "PW - empty passenger",
|
||||||
"PX": "PX - empty passenger test drive",
|
"PX": "PX - empty passenger test drive",
|
||||||
|
|
||||||
"TC": "TC - international freight (intermodal)",
|
"TC": "TC - international freight (intermodal)",
|
||||||
"TG": "TG - international freight (cargo)",
|
"TG": "TG - international freight (organized cargo)",
|
||||||
"TR": "TR - international freight (no cargo)",
|
"TR": "TR - international freight (unorganized cargo)",
|
||||||
"TD": "TD - domestic freight (intermodal)",
|
"TD": "TD - domestic freight (intermodal)",
|
||||||
"TM": "TM - domestic freight (cargo)",
|
"TM": "TM - domestic freight (organized cargo)",
|
||||||
"TN": "TN - domestic freight (no cargo)",
|
"TN": "TN - domestic freight (unorganized cargo)",
|
||||||
"TK": "TK - freight (stations & sidings)",
|
"TK": "TK - freight (for stations & sidings)",
|
||||||
"TS": "TS - empty freight test drive",
|
"TS": "TS - empty freight test drive",
|
||||||
|
"TH": "TH - locomotive rolling stock (over 3 vehicles)",
|
||||||
"LT": "LT - locomotive only",
|
"LT": "LT - freight locomotive only",
|
||||||
"LT-new": "LT - freight locomotive only",
|
|
||||||
|
|
||||||
"LP": "LP - passenger locomotive only",
|
"LP": "LP - passenger locomotive only",
|
||||||
"LS": "LS - shunting locomotive",
|
"LS": "LS - shunting locomotive only",
|
||||||
|
"LZ": "LS - shunting locomotive only",
|
||||||
"ZN": "ZN - inspection / diagnostic"
|
"ZN": "ZN - inspection / diagnostic type",
|
||||||
|
"ZU": "ZU - other maintenance type"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"wiki": {
|
"wiki": {
|
||||||
"title": "LIST OF AVAILABLE VEHICLES",
|
"title": "LIST OF AVAILABLE VEHICLES",
|
||||||
|
"no-vehicles": "No vehicles to show with the selected filters!",
|
||||||
"labels": {
|
"labels": {
|
||||||
"vehicles": "Vehicles",
|
"vehicles": "Vehicles",
|
||||||
"sort-by": "Sort by",
|
"sort-by": "Sort by",
|
||||||
@@ -171,8 +176,14 @@
|
|||||||
},
|
},
|
||||||
"filters": {
|
"filters": {
|
||||||
"vehicles-all": "all",
|
"vehicles-all": "all",
|
||||||
"vehicles-traction": "traction units",
|
"vehicles-tractions-all": "traction units - all",
|
||||||
"vehicles-wagon": "wagons"
|
"vehicles-tractions-electric": "electric locomotives",
|
||||||
|
"vehicles-tractions-diesel": "diesel locomotives",
|
||||||
|
"vehicles-tractions-emu": "electric units",
|
||||||
|
"vehicles-tractions-dmu": "diesel units",
|
||||||
|
"vehicles-wagons-all": "wagons - all",
|
||||||
|
"vehicles-wagons-passenger": "wagons - passenger",
|
||||||
|
"vehicles-wagons-freight": "wagons - freight"
|
||||||
},
|
},
|
||||||
"sort-by": {
|
"sort-by": {
|
||||||
"type": "name",
|
"type": "name",
|
||||||
@@ -199,5 +210,146 @@
|
|||||||
"search-name": "Search by name",
|
"search-name": "Search by name",
|
||||||
"search-stock": "Search by vehicles",
|
"search-stock": "Search by vehicles",
|
||||||
"action-reset": "RESET"
|
"action-reset": "RESET"
|
||||||
|
},
|
||||||
|
"storage": {
|
||||||
|
"title": "BOOKMARKED COMPOSITIONS",
|
||||||
|
"subtitle": "Manage your rolling stock compositions saved locally in the browser memory",
|
||||||
|
"remove-confirm": "Are you sure you want to delete this entry?",
|
||||||
|
"no-entires": "No bookmarked compositions - save a new one in the Stock tab",
|
||||||
|
"created-at": "Created at:",
|
||||||
|
"updated-at": "Updated at:",
|
||||||
|
"stock-title": "Rolling stock:"
|
||||||
|
},
|
||||||
|
"cargo": {
|
||||||
|
"containers": "containers",
|
||||||
|
"food": "food tanks",
|
||||||
|
"food-empty": "food tanks (empty)",
|
||||||
|
"biomass": "biomass",
|
||||||
|
"biomass-empty": "biomass (empty)",
|
||||||
|
"cold-storage": "cold storage",
|
||||||
|
"loose-cargo": "loose cargo",
|
||||||
|
"coal": "coal",
|
||||||
|
"ore": "ore",
|
||||||
|
"sand": "sand",
|
||||||
|
"chalk": "chalk",
|
||||||
|
"stone": "stone",
|
||||||
|
"scrap": "scrap",
|
||||||
|
"fuel": "fuel",
|
||||||
|
"molasses": "molasses",
|
||||||
|
"gravel": "gravel",
|
||||||
|
"wheels": "wheels",
|
||||||
|
"wood": "wood",
|
||||||
|
"rails": "rails",
|
||||||
|
"cables": "cables",
|
||||||
|
"aggregate": "aggregate",
|
||||||
|
"technical": "technical",
|
||||||
|
"mail": "mail",
|
||||||
|
"concrete": "concrete",
|
||||||
|
"lime": "lime",
|
||||||
|
"soda": "soda",
|
||||||
|
"wheat": "wheat",
|
||||||
|
"corn": "corn",
|
||||||
|
"fodder": "fodder",
|
||||||
|
"carbide": "carbide",
|
||||||
|
"vehicles_nysa": "vehicles (nysa)",
|
||||||
|
"military": "vehicles (military)",
|
||||||
|
"sensitive": "sensitive",
|
||||||
|
"steel": "steel",
|
||||||
|
"gas": "gas",
|
||||||
|
"intermodal": "intermodalne"
|
||||||
|
},
|
||||||
|
"usage": {
|
||||||
|
"Gor89": "passenger carriage",
|
||||||
|
"Gor77": "passenger carriage",
|
||||||
|
"Bau84": "passenger carriage",
|
||||||
|
"Bau84_CD": "passenger carriage",
|
||||||
|
"612a": "passenger carriage",
|
||||||
|
"504a": "passenger carriage",
|
||||||
|
"304c": "passenger carriage",
|
||||||
|
"159a": "passenger carriage",
|
||||||
|
"158a": "passenger carriage",
|
||||||
|
"154a": "passenger carriage",
|
||||||
|
"120a_PRREG": "passenger carriage",
|
||||||
|
"113a": "passenger carriage",
|
||||||
|
"113a_1": "passenger carriage",
|
||||||
|
"112a": "passenger carriage",
|
||||||
|
"112a_1": "passenger carriage",
|
||||||
|
"111a_PKP": "passenger carriage",
|
||||||
|
"111a_PKPIC": "passenger carriage",
|
||||||
|
"111a_PRREG": "passenger carriage",
|
||||||
|
"111a_Grafitti": "passenger carriage",
|
||||||
|
"110a": "passenger carriage",
|
||||||
|
"110a_PKP": "passenger carriage",
|
||||||
|
"110a_PKPIC": "passenger carriage",
|
||||||
|
"101a": "passenger carriage",
|
||||||
|
"102a": "passenger carriage",
|
||||||
|
"102A": "technical car",
|
||||||
|
"24Z": "copper wiring reels",
|
||||||
|
"202Lc": "refrigerator car",
|
||||||
|
"206S_CEMET": "cement, lime, soda",
|
||||||
|
"206S_SPEED": "cement, lime, soda",
|
||||||
|
"206Sh_PKP": "wheat, corn, fodder",
|
||||||
|
"206Sh_PKPC": "wheat, corn, fodder",
|
||||||
|
"220S_CEMET": "cement, lime, soda",
|
||||||
|
"211K": "express parcel car",
|
||||||
|
"220S": "cement, lime, soda",
|
||||||
|
"59WS": "loose cargo, limestone, mine waste",
|
||||||
|
"208Kf": "loose cargo, LCL",
|
||||||
|
"209c": "technical car",
|
||||||
|
"29R": "liquid paraffin products",
|
||||||
|
"29R_PLPOL": "molasses",
|
||||||
|
"304Ca": "special vehicle",
|
||||||
|
"401Ka": "loose cargo, LCL",
|
||||||
|
"401Ka_XGa": "utility car",
|
||||||
|
"401Zb_PKESA": "coal, stone, sand",
|
||||||
|
"401Zb_PKPC": "coal, stone, sand",
|
||||||
|
"401Ze_KLP": "concrete panels, cable reels, steel",
|
||||||
|
"401Ze_PNUIK": "concrete panels, cable reels, steel",
|
||||||
|
"401Ze_PKESA": "concrete panels, cable reels, steel",
|
||||||
|
"401Zl": "heavy loose cargo",
|
||||||
|
"408S": "cement, lime, fly ash, slag",
|
||||||
|
"409Va": "loose cargo (sand)",
|
||||||
|
"412W": "loose cargo, coal",
|
||||||
|
"412Z": "containers",
|
||||||
|
"413S": "coal, chalk, sand",
|
||||||
|
"421S": "carbide, weather-sensitive loads",
|
||||||
|
"424Z": "vehicles, logs, rough timber",
|
||||||
|
"425S": "weather-sensitive loads",
|
||||||
|
"426Z": "solid cargo, vehicles",
|
||||||
|
"426S": "loose cargo",
|
||||||
|
"429W": "weatherproof cargo (coal, ore)",
|
||||||
|
"411V": "loose cargo (track ballast)",
|
||||||
|
"441V": "hard coal, gravel",
|
||||||
|
"627Z": "containers",
|
||||||
|
"WB117": "gas, gas mixtures",
|
||||||
|
"445Rb": "liquid paraffin products",
|
||||||
|
"418Va_AWT": "loose cargo (sand, stone)",
|
||||||
|
"418Va_BENET": "loose cargo (sand, stone)",
|
||||||
|
"418Va_TSS": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_DB": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_DOLWR": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_PKPC": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_WIEBE": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_ZOS": "loose cargo (sand, stone)",
|
||||||
|
"418Vb_ZUE": "loose cargo (sand, stone)",
|
||||||
|
"PRSM4": "rail welding car",
|
||||||
|
"Luban_XH_short": "short residential car",
|
||||||
|
"Luban_XH_long": "long residential car",
|
||||||
|
"Luban_XH_workshop": "workshop car",
|
||||||
|
"EDK80": "railway crane car"
|
||||||
|
},
|
||||||
|
"cargo-warnings": {
|
||||||
|
"title": "Rolling stock containing extra cargo warnings:",
|
||||||
|
"warning_wt_20_pn": "PN: exceeded gauge (Innofreight - C45)",
|
||||||
|
"warning_un1965_twr": "TWR: LPG (UN 1965)",
|
||||||
|
"warning_un1965_tn": "TN: LPG - empty tank (UN 1965)",
|
||||||
|
"warning_un1202_tn": "TN: diesel fuel (UN 1202)",
|
||||||
|
"warning_military_pn": "PN: military transport",
|
||||||
|
"warning_edk80_pn": "PN: railway crane EDK80"
|
||||||
|
},
|
||||||
|
"migrate-info": {
|
||||||
|
"line-1": "Pojazdownik is being moved to a new domain - {0}! You can still use the current website, but it will no longer be updated and will be shut down in the nearest future!",
|
||||||
|
"link": "https://pojazdownik-td2.spythere.eu/",
|
||||||
|
"accept-btn": "ROGER THAT!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,13 +6,16 @@
|
|||||||
"disclaimer": "Ta strona ma charakter informacyjny. Autor nie ponosi odpowiedzialności za tworzenie pociągów niezgodnych z {tos}!",
|
"disclaimer": "Ta strona ma charakter informacyjny. Autor nie ponosi odpowiedzialności za tworzenie pociągów niezgodnych z {tos}!",
|
||||||
"tos": "regulaminem symulatora Train Driver 2",
|
"tos": "regulaminem symulatora Train Driver 2",
|
||||||
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit",
|
"tos-href": "https://docs.google.com/document/d/1UAAPUtN0d_RoS4RgOzEzllJZJhA0VcizzCzKW4QylbY/edit",
|
||||||
"version-check": "Strona jest kompletna dla wersji {version} symulatora TD2"
|
"version-check": "Strona jest kompletna dla wersji {version} symulatora TD2",
|
||||||
|
"vehicles-count": "Strona zawiera obecnie {all} pojazdów - w tym {units} jednostek trakcyjnych i {cars} wagonów!"
|
||||||
},
|
},
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"title": "WYBIERZ POJAZD",
|
"title": "WYBIERZ POJAZD",
|
||||||
"input-vehicle": "Wybierz pojazd trakcyjny",
|
"input-vehicle": "Wybierz pojazd trakcyjny",
|
||||||
"input-carwagon": "Wybierz wagon",
|
"input-carwagon": "Wybierz wagon",
|
||||||
"cargo-title": "Ładunek (tylko wybrane towarowe)",
|
"vehicles-title": "Pojazdy trakcyjne",
|
||||||
|
"carwagons-title": "Wagony",
|
||||||
|
"cargo-title": "Dostępne ładunki",
|
||||||
"no-cargo-available": "brak dostępnych ładunków",
|
"no-cargo-available": "brak dostępnych ładunków",
|
||||||
"cargo-empty": "próżny",
|
"cargo-empty": "próżny",
|
||||||
"loco-electric": "ELEKTR.",
|
"loco-electric": "ELEKTR.",
|
||||||
@@ -41,10 +44,11 @@
|
|||||||
"construction": "Typ konstrukcji:"
|
"construction": "Typ konstrukcji:"
|
||||||
},
|
},
|
||||||
"topbar": {
|
"topbar": {
|
||||||
"stock-list": "SKŁAD",
|
"stock": "SKŁAD",
|
||||||
"wiki-list": "POJAZDY",
|
"wiki": "POJAZDY",
|
||||||
"number-generator": "GNR NUMERU",
|
"numgen": "GNR NUMERU",
|
||||||
"stock-generator": "GNR SKŁADU"
|
"stockgen": "GNR SKŁADU",
|
||||||
|
"storage": "ZAPISANE SKŁADY"
|
||||||
},
|
},
|
||||||
"stocklist": {
|
"stocklist": {
|
||||||
"title": "EDYTOR SKŁADU",
|
"title": "EDYTOR SKŁADU",
|
||||||
@@ -52,16 +56,21 @@
|
|||||||
"alert-copied": "Skład został skopiowany do twojego schowka!",
|
"alert-copied": "Skład został skopiowany do twojego schowka!",
|
||||||
"alert-empty": "Lista pojazdów jest pusta!",
|
"alert-empty": "Lista pojazdów jest pusta!",
|
||||||
"prompt-file": "Nazwij plik, a następnie pobierz do folderu Presets (Dokumenty/TTSK/TrainDriver2):",
|
"prompt-file": "Nazwij plik, a następnie pobierz do folderu Presets (Dokumenty/TTSK/TrainDriver2):",
|
||||||
|
"prompt-bookmark": "Nazwij skład do zapisania:",
|
||||||
|
"prompt-bookmark-overwrite": "Skład o tej nazwie jest już zapisany. Czy chcesz go podmienić?",
|
||||||
"vehicle-no": "POJAZD NR",
|
"vehicle-no": "POJAZD NR",
|
||||||
"no-vehicle-chosen": "NIE WYBRANO POJAZDU",
|
"no-vehicle-chosen": "NIE WYBRANO POJAZDU",
|
||||||
"action-move-up": "PRZENIEŚ WYŻEJ",
|
"action-move-up": "PRZENIEŚ WYŻEJ",
|
||||||
"action-move-down": "PRZENIEŚ NIŻEJ",
|
"action-move-down": "PRZENIEŚ NIŻEJ",
|
||||||
"action-remove": "USUŃ",
|
"action-remove": "USUŃ",
|
||||||
"action-upload": "WCZYTAJ",
|
"action-upload-file": "WCZYTAJ Z PLIKU",
|
||||||
"action-download": "POBIERZ",
|
"action-upload-clipboard": "WCZYTAJ ZE SCHOWKA",
|
||||||
"action-copy": "SKOPIUJ",
|
"action-download": "POBIERZ DO PLIKU",
|
||||||
|
"action-copy": "SKOPIUJ DO SCHOWKA",
|
||||||
"action-reset": "ZRESETUJ",
|
"action-reset": "ZRESETUJ",
|
||||||
"action-shuffle": "PRZETASUJ",
|
"action-shuffle": "PRZETASUJ",
|
||||||
|
"action-switch": "ODWRÓĆ",
|
||||||
|
"action-bookmark": "ZAPISZ",
|
||||||
"mass": "Masa",
|
"mass": "Masa",
|
||||||
"mass-accepted": "dopuszczalna",
|
"mass-accepted": "dopuszczalna",
|
||||||
"length": "Długość",
|
"length": "Długość",
|
||||||
@@ -69,14 +78,16 @@
|
|||||||
"coldstart-info": "Zimny start",
|
"coldstart-info": "Zimny start",
|
||||||
"doublemanning-info": "Podwójna obsada",
|
"doublemanning-info": "Podwójna obsada",
|
||||||
"list-empty": "Lista pojazdów jest pusta!",
|
"list-empty": "Lista pojazdów jest pusta!",
|
||||||
|
|
||||||
"warning-not-suitable": "Lokomotywy serii EP są przeznaczone jedynie do ruchu pasażerskiego!",
|
"warning-not-suitable": "Lokomotywy serii EP są przeznaczone jedynie do ruchu pasażerskiego!",
|
||||||
"warning-passenger-too-long": "Maksymalna długość składów pasażerskich nie może przekraczać 350m!",
|
"warning-passenger-too-long": "Maksymalna długość składów pasażerskich nie może przekraczać 350m!",
|
||||||
"warning-freight-too-long": "Maksymalna długość składów innych niż pasażerskie nie może przekraczać 650m!",
|
"warning-freight-too-long": "Maksymalna długość składów innych niż pasażerskie nie może przekraczać 650m!",
|
||||||
"warning-too-many-locos": "Ten skład posiada za dużo pojazdów trakcyjnych!",
|
"warning-too-many-locos": "Ten skład posiada za dużo pojazdów trakcyjnych!",
|
||||||
"warning-too-heavy": "Ten skład jest za ciężki! Sprawdź {href}",
|
"warning-too-heavy": "Ten skład jest za ciężki! Sprawdź {href}",
|
||||||
"warning-team-only-vehicle": "W zestawieniu znajduje się co najmniej jeden pojazd dostępny tylko dla członków zespołu TD2! ({0})",
|
"warning-team-only-vehicle": "W zestawieniu znajduje się co najmniej jeden pojazd dostępny tylko dla członków zespołu TD2! ({0})",
|
||||||
"acceptable-mass-docs": "dopuszczalne masy składów"
|
"warning-prsm4-not-at-the-rear": "Zgrzewarka PRSM4 może znajdować się jedynie na końcu składu w przypadku jazdy pociągowej!",
|
||||||
|
"acceptable-mass-docs": "dopuszczalne masy składów",
|
||||||
|
"stock-loading-error": "Wystąpił błąd: nie można przetworzyć danych ze schowka! Upewnij się, że są one w poprawnym formacie!",
|
||||||
|
"stock-clipboard-error": "Wystąpił błąd: nie można odczytać danych ze schowka! Upewnij się, że nadałeś uprawnienia stronie do tej akcji!"
|
||||||
},
|
},
|
||||||
"stockgen": {
|
"stockgen": {
|
||||||
"title": "GENERATOR SKŁADU TOWAROWEGO",
|
"title": "GENERATOR SKŁADU TOWAROWEGO",
|
||||||
@@ -91,7 +102,7 @@
|
|||||||
"chosen-empty-warning": "Wybierz co najmniej jeden ładunek, aby zobaczyć wagony, które go posiadają!",
|
"chosen-empty-warning": "Wybierz co najmniej jeden ładunek, aby zobaczyć wagony, które go posiadają!",
|
||||||
"chosen-warning": "Wagony posiadające wybrane ładunki. Najedź na nazwę, aby zobaczyć podgląd wagonu. Kliknij, aby wyłączyć z losowania (tylko podświetlone nazwy będą uwzględnione).",
|
"chosen-warning": "Wagony posiadające wybrane ładunki. Najedź na nazwę, aby zobaczyć podgląd wagonu. Kliknij, aby wyłączyć z losowania (tylko podświetlone nazwy będą uwzględnione).",
|
||||||
"action-generate": "WYGENERUJ",
|
"action-generate": "WYGENERUJ",
|
||||||
"action-generate-empty": "WYGENERUJ PRÓŻNE WAGONY",
|
"action-generate-empty": "WYGENERUJ SAME WAGONY",
|
||||||
"action-reset": "ZRESETUJ ŁADUNKI"
|
"action-reset": "ZRESETUJ ŁADUNKI"
|
||||||
},
|
},
|
||||||
"numgen": {
|
"numgen": {
|
||||||
@@ -108,7 +119,6 @@
|
|||||||
"action-random-region": "LOSUJ OBSZARY",
|
"action-random-region": "LOSUJ OBSZARY",
|
||||||
"action-random-number": "LOSUJ KOŃCÓWKĘ",
|
"action-random-number": "LOSUJ KOŃCÓWKĘ",
|
||||||
"action-random-category": "LOSUJ KATEGORIĘ",
|
"action-random-category": "LOSUJ KATEGORIĘ",
|
||||||
|
|
||||||
"rules": {
|
"rules": {
|
||||||
"first-digit": "Pierwsza cyfra:",
|
"first-digit": "Pierwsza cyfra:",
|
||||||
"second-digit": "Druga cyfra:",
|
"second-digit": "Druga cyfra:",
|
||||||
@@ -123,25 +133,20 @@
|
|||||||
"for-region-end": "dla końcowego obszaru konstrukcyjnego",
|
"for-region-end": "dla końcowego obszaru konstrukcyjnego",
|
||||||
"from-range": "z przedziału"
|
"from-range": "z przedziału"
|
||||||
},
|
},
|
||||||
|
|
||||||
"categories": {
|
"categories": {
|
||||||
"EI": "EI - ekspres krajowy",
|
"EI": "EI - ekspres krajowy",
|
||||||
"EC": "EC - ekspres międzynarodowy",
|
"EC": "EC - ekspres międzynarodowy",
|
||||||
"EN": "EN - ekspres krajowy nocny",
|
"EN": "EN - ekspres międzynarodowy nocny",
|
||||||
|
|
||||||
"MP": "MP - międzywoj. pośpieszny",
|
"MP": "MP - międzywoj. pośpieszny",
|
||||||
"RP": "RP - wojewódzki pośpieszny",
|
"RP": "RP - wojewódzki pośpieszny",
|
||||||
"MO": "MO - międzywoj. osobowy",
|
"MO": "MO - międzywoj. osobowy",
|
||||||
"RO": "RO - wojewódzki osobowy",
|
"RO": "RO - wojewódzki osobowy",
|
||||||
|
|
||||||
"MM": "MM - międzynar. pośpieszny",
|
"MM": "MM - międzynar. pośpieszny",
|
||||||
"MH": "MH - międzywoj. pośpieszny hotelowy",
|
"MH": "MH - międzywoj. pośpieszny hotelowy",
|
||||||
"RM": "RM - woj. osobowy międzynarodowy",
|
"RM": "RM - woj. osobowy międzynarodowy",
|
||||||
"RA": "RA - woj. osobowy algomeracyjny",
|
"RA": "RA - woj. osobowy aglomeracyjny",
|
||||||
|
|
||||||
"PW": "PW - pasażerski próżny - służbowy",
|
"PW": "PW - pasażerski próżny - służbowy",
|
||||||
"PX": "PX - pasażerski próżny próbny",
|
"PX": "PX - pasażerski próżny próbny",
|
||||||
|
|
||||||
"TC": "TC - towarowy międzynarodowy intermodalny",
|
"TC": "TC - towarowy międzynarodowy intermodalny",
|
||||||
"TG": "TG - towarowy międzynarodowy masowy",
|
"TG": "TG - towarowy międzynarodowy masowy",
|
||||||
"TR": "TR - towarowy międzynarodowy niemasowy",
|
"TR": "TR - towarowy międzynarodowy niemasowy",
|
||||||
@@ -150,18 +155,18 @@
|
|||||||
"TN": "TN - towarowy krajowy niemasowy",
|
"TN": "TN - towarowy krajowy niemasowy",
|
||||||
"TK": "TK - towarowy (stacje i bocznice)",
|
"TK": "TK - towarowy (stacje i bocznice)",
|
||||||
"TS": "TS - towarowy próżny próbny",
|
"TS": "TS - towarowy próżny próbny",
|
||||||
|
"TH": "TH - skład lokomotyw (powyżej 3 pojazdów)",
|
||||||
"LT": "LT - lokomotywa luzem",
|
"LT": "LT - lokomotywa towarowa luzem",
|
||||||
"LT-new": "LT - lokomotywa towarowa luzem",
|
|
||||||
|
|
||||||
"LP": "LP - lokomotywa pasażerska luzem",
|
"LP": "LP - lokomotywa pasażerska luzem",
|
||||||
"LS": "LS - lokomotywa manewrowa",
|
"LS": "LS - lokomotywa manewrowa luzem",
|
||||||
|
"LZ": "LZ - lokomotywa dla poc. utrzymaniowo-naprawczych",
|
||||||
"ZN": "ZN - inspekcyjny / diagnostyczny"
|
"ZN": "ZN - inspekcyjny / diagnostyczny",
|
||||||
|
"ZU": "ZU - inny utrzymaniowy"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"wiki": {
|
"wiki": {
|
||||||
"title": "LISTA DOSTĘPNYCH POJAZDÓW",
|
"title": "LISTA DOSTĘPNYCH POJAZDÓW",
|
||||||
|
"no-vehicles": "Brak pojazdów do pokazania przy obecnych filtrach!",
|
||||||
"labels": {
|
"labels": {
|
||||||
"vehicles": "Pojazdy",
|
"vehicles": "Pojazdy",
|
||||||
"sort-by": "Sortuj wg",
|
"sort-by": "Sortuj wg",
|
||||||
@@ -171,8 +176,14 @@
|
|||||||
},
|
},
|
||||||
"filters": {
|
"filters": {
|
||||||
"vehicles-all": "wszystkie",
|
"vehicles-all": "wszystkie",
|
||||||
"vehicles-traction": "trakcyjne",
|
"vehicles-tractions-all": "trakcyjne - wszystkie",
|
||||||
"vehicles-wagon": "wagony"
|
"vehicles-tractions-electric": "elektrowozy",
|
||||||
|
"vehicles-tractions-diesel": "spalinowozy",
|
||||||
|
"vehicles-tractions-emu": "EZT",
|
||||||
|
"vehicles-tractions-dmu": "SZT",
|
||||||
|
"vehicles-wagons-all": "wagony - wszystkie",
|
||||||
|
"vehicles-wagons-passenger": "wagony pasażerskie",
|
||||||
|
"vehicles-wagons-freight": "wagony towarowe"
|
||||||
},
|
},
|
||||||
"sort-by": {
|
"sort-by": {
|
||||||
"type": "nazwa",
|
"type": "nazwa",
|
||||||
@@ -199,5 +210,145 @@
|
|||||||
"search-name": "Szukaj po nazwie",
|
"search-name": "Szukaj po nazwie",
|
||||||
"search-stock": "Szukaj po pojazdach",
|
"search-stock": "Szukaj po pojazdach",
|
||||||
"action-reset": "RESETUJ"
|
"action-reset": "RESETUJ"
|
||||||
|
},
|
||||||
|
"storage": {
|
||||||
|
"title": "ZAPISANE SKŁADY",
|
||||||
|
"subtitle": "Zarządzaj składami zapisanymi lokalnie w pamięci przeglądarki",
|
||||||
|
"remove-confirm": "Czy na pewno chcesz usunąć ten wpis?",
|
||||||
|
"no-entires": "Brak zapisanych składów - dodaj nowy przez zakładkę ze Składem",
|
||||||
|
"created-at": "Stworzony:",
|
||||||
|
"updated-at": "Zaktualizowany:",
|
||||||
|
"stock-title": "Skład:"
|
||||||
|
},
|
||||||
|
"cargo": {
|
||||||
|
"containers": "kontenery",
|
||||||
|
"food": "żywność",
|
||||||
|
"food-empty": "żywność (puste)",
|
||||||
|
"biomass": "biomasa",
|
||||||
|
"biomass-empty": "biomasa (puste)",
|
||||||
|
"cold-storage": "chłodnia",
|
||||||
|
"loose-cargo": "drobnica",
|
||||||
|
"coal": "węgiel",
|
||||||
|
"ore": "ruda",
|
||||||
|
"sand": "piasek",
|
||||||
|
"chalk": "kreda",
|
||||||
|
"stone": "kamień",
|
||||||
|
"scrap": "złom",
|
||||||
|
"fuel": "paliwo",
|
||||||
|
"molasses": "melasa",
|
||||||
|
"gravel": "żwir",
|
||||||
|
"wheels": "koła",
|
||||||
|
"wood": "drewno",
|
||||||
|
"rails": "szyny",
|
||||||
|
"cables": "kable",
|
||||||
|
"aggregate": "kruszywo",
|
||||||
|
"technical": "techniczne",
|
||||||
|
"mail": "poczta",
|
||||||
|
"concrete": "cement",
|
||||||
|
"lime": "wapno",
|
||||||
|
"soda": "soda",
|
||||||
|
"wheat": "pszenica",
|
||||||
|
"corn": "kukurydza",
|
||||||
|
"fodder": "pasza",
|
||||||
|
"carbide": "karbid",
|
||||||
|
"vehicles_nysa": "pojazdy (nysa)",
|
||||||
|
"military": "pojazdy (wojsko)",
|
||||||
|
"sensitive": "wrażliwe",
|
||||||
|
"steel": "stal",
|
||||||
|
"gas": "gaz",
|
||||||
|
"intermodal": "intermodalne"
|
||||||
|
},
|
||||||
|
"usage": {
|
||||||
|
"Gor89": "wagon pasażerski",
|
||||||
|
"Gor77": "wagon pasażerski",
|
||||||
|
"Bau84": "wagon pasażerski",
|
||||||
|
"Bau84_CD": "wagon pasażerski",
|
||||||
|
"612a": "wagon pasażerski",
|
||||||
|
"504a": "wagon pasażerski",
|
||||||
|
"304c": "wagon pasażerski",
|
||||||
|
"159a": "wagon pasażerski",
|
||||||
|
"158a": "wagon pasażerski",
|
||||||
|
"154a": "wagon pasażerski",
|
||||||
|
"120a_PRREG": "wagon pasażerski",
|
||||||
|
"113a": "wagon pasażerski",
|
||||||
|
"113a_1": "wagon pasażerski",
|
||||||
|
"112a": "wagon pasażerski",
|
||||||
|
"112a_1": "wagon pasażerski",
|
||||||
|
"111a_PKP": "wagon pasażerski",
|
||||||
|
"111a_PKPIC": "wagon pasażerski",
|
||||||
|
"111a_PRREG": "wagon pasażerski",
|
||||||
|
"111a_Grafitti": "wagon pasażerski",
|
||||||
|
"110a": "wagon pasażerski",
|
||||||
|
"110a_PKP": "wagon pasażerski",
|
||||||
|
"110a_PKPIC": "wagon pasażerski",
|
||||||
|
"101a": "wagon pasażerski",
|
||||||
|
"102a": "wagon pasażerski",
|
||||||
|
"102A": "wagon techniczny (sieciowy)",
|
||||||
|
"24Z": "bębny z drutami miedzianymi",
|
||||||
|
"202Lc": "wagon chłodnia",
|
||||||
|
"206S_CEMET": "cement, wapno, soda",
|
||||||
|
"206S_SPEED": "cement, wapno, soda",
|
||||||
|
"206Sh_PKP": "pszenica, kukurydza, pasza",
|
||||||
|
"206Sh_PKPC": "pszenica, kukurydza, pasza",
|
||||||
|
"220S_CEMET": "cement, wapno, soda",
|
||||||
|
"211K": "wagon do przesyłek ekspresowych",
|
||||||
|
"59WS": "kruszywo, kamień wapienny, odpady kopalniane",
|
||||||
|
"208Kf": "drobnica, ładunki sypkie, ładunki sztukowe",
|
||||||
|
"209c": "wagon techniczny",
|
||||||
|
"29R": "produkty naftowe",
|
||||||
|
"29R_PLPOL": "melasa",
|
||||||
|
"304Ca": "pojazd specjalny",
|
||||||
|
"401Ka": "drobnica, ładunki sypkie, ładunki sztukowe",
|
||||||
|
"401Ka_XGa": "wagon gospodarczy",
|
||||||
|
"401Zb_PKESA": "węgiel, kamień, piasek",
|
||||||
|
"401Zb_PKPC": "węgiel, kamień, piasek",
|
||||||
|
"401Ze_KLP": "płyty betonowe, bębny kablowe, stal",
|
||||||
|
"401Ze_PNUIK": "płyty betonowe, bębny kablowe, stal",
|
||||||
|
"401Ze_PKESA": "płyty betonowe, bębny kablowe, stal",
|
||||||
|
"401Zl": "ładunki sypkie o dużej masie usypowej",
|
||||||
|
"408S": "cement, wapno, popioły lotne, żużel",
|
||||||
|
"409Va": "drobnica, ładunki sypkie (piasek)",
|
||||||
|
"412W": "drobnica, kruszywo, węgiel",
|
||||||
|
"412Z": "kontenery",
|
||||||
|
"413S": "węgiel, kreda, piasek",
|
||||||
|
"421S": "karbid, ładunki wrażliwe na czynniki atm.",
|
||||||
|
"424Z": "ładunki skupione, pojazdy, dłużyca",
|
||||||
|
"425S": "ładunki wrażliwe na czynniki atm.",
|
||||||
|
"426S": "drobnica",
|
||||||
|
"426Z": "ładunki skupione, pojazdy",
|
||||||
|
"429W": "towary masowe odporne na warunki atmosferyczne (węgiel, ruda)",
|
||||||
|
"411V": "drobnica, ładunki sypkie (podsypka do torów)",
|
||||||
|
"441V": "węgiel kamienny, żwir",
|
||||||
|
"627Z": "kontenery",
|
||||||
|
"WB117": "gaz, mieszaniny gazów",
|
||||||
|
"445Rb": "produkty naftowe",
|
||||||
|
"418Va_AWT": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Va_BENET": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Va_TSS": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_DB": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_DOLWR": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_PKPC": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_WIEBE": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_ZOS": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"418Vb_ZUE": "drobnica, ładunki sypkie (piasek, kamień)",
|
||||||
|
"PRSM4": "zgrzewarka torowa",
|
||||||
|
"Luban_XH_short": "krótki wagon mieszkalny",
|
||||||
|
"Luban_XH_long": "długi wagon mieszkalny",
|
||||||
|
"Luban_XH_workshop": "wagon warsztatowy",
|
||||||
|
"EDK80": "żuraw kolejowy"
|
||||||
|
},
|
||||||
|
"cargo-warnings": {
|
||||||
|
"title": "Skład z dodatkowymi uwagami przewozowymi:",
|
||||||
|
"warning_wt_20_pn": "PN: przekroczona skrajnia (Innofreight - C45)",
|
||||||
|
"warning_un1965_twr": "TWR: gazy węglowodorowe skroplone (UN 1965)",
|
||||||
|
"warning_un1965_tn": "TN: gazy węglowodorowe skroplone - puste cysterny (UN 1965)",
|
||||||
|
"warning_un1202_tn": "TN: olej napędowy (UN 1202)",
|
||||||
|
"warning_military_pn": "PN: transport wojskowy",
|
||||||
|
"warning_edk80_pn": "PN: żuraw kolejowy EDK80"
|
||||||
|
},
|
||||||
|
"migrate-info": {
|
||||||
|
"line-1": "Pojazdownik zostaje przeniesiony na nową domenę - {0}! Możesz korzystać z obecnej strony, jednak nie będzie ona otrzymywać już aktualizacji i w przyszłości zostanie wyłączona!",
|
||||||
|
"link": "https://pojazdownik-td2.spythere.eu/",
|
||||||
|
"accept-btn": "PRZYJĄŁEM!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { createPinia } from 'pinia';
|
|||||||
|
|
||||||
import App from './App.vue';
|
import App from './App.vue';
|
||||||
import i18n from './i18n-setup';
|
import i18n from './i18n-setup';
|
||||||
|
import router from './router';
|
||||||
const pinia = createPinia();
|
const pinia = createPinia();
|
||||||
|
|
||||||
createApp(App).use(pinia).use(i18n).mount('#app');
|
createApp(App).use(pinia).use(i18n).use(router).mount('#app');
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
getThumbnailURL(vehicleType: string, size: 'small' | 'large') {
|
getThumbnailURL(vehicleType: string, size: 'small' | 'large') {
|
||||||
return `https://static.spythere.eu/images/${vehicleType}--${size == 'small' ? 300 : 800}px.jpg`;
|
return `https://stacjownik.spythere.eu/static/images/${vehicleType}--${size == 'small' ? 300 : 800}px.jpg`;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import { useStore } from '../store';
|
import { useStore } from '../store';
|
||||||
import { ICarWagon, ILocomotive, IStock, ICargo, IVehicle } from '../types';
|
import { ICarWagon, ILocomotive, IStock, ICargo, IVehicle } from '../types/common.types';
|
||||||
import { isTractionUnit } from '../utils/vehicleUtils';
|
import { isTractionUnit } from '../utils/vehicleUtils';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
@@ -28,11 +28,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
const stock = this.getStockObject(vehicle, cargo);
|
const stock = this.getStockObject(vehicle, cargo);
|
||||||
|
|
||||||
if (
|
if (isTractionUnit(stock.vehicleRef) && this.store.stockList.length > 0 && !isTractionUnit(this.store.stockList[0].vehicleRef))
|
||||||
isTractionUnit(stock.vehicleRef) &&
|
|
||||||
this.store.stockList.length > 0 &&
|
|
||||||
!isTractionUnit(this.store.stockList[0].vehicleRef)
|
|
||||||
)
|
|
||||||
this.store.stockList.unshift(stock);
|
this.store.stockList.unshift(stock);
|
||||||
else this.store.stockList.push(stock);
|
else this.store.stockList.push(stock);
|
||||||
},
|
},
|
||||||
@@ -40,8 +36,7 @@ export default defineComponent({
|
|||||||
addLocomotive(loco: ILocomotive) {
|
addLocomotive(loco: ILocomotive) {
|
||||||
const stockObj = this.getStockObject(loco);
|
const stockObj = this.getStockObject(loco);
|
||||||
|
|
||||||
if (this.store.stockList.length > 0 && !isTractionUnit(this.store.stockList[0].vehicleRef))
|
if (this.store.stockList.length > 0 && !isTractionUnit(this.store.stockList[0].vehicleRef)) this.store.stockList.unshift(stockObj);
|
||||||
this.store.stockList.unshift(stockObj);
|
|
||||||
else this.store.stockList.push(stockObj);
|
else this.store.stockList.push(stockObj);
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -53,6 +48,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
loadStockFromString(stockString: string) {
|
loadStockFromString(stockString: string) {
|
||||||
const stockArray = stockString.trim().split(';');
|
const stockArray = stockString.trim().split(';');
|
||||||
|
let failureCount = 0;
|
||||||
|
|
||||||
this.store.stockList.length = 0;
|
this.store.stockList.length = 0;
|
||||||
this.store.chosenVehicle = null;
|
this.store.chosenVehicle = null;
|
||||||
@@ -69,8 +65,6 @@ export default defineComponent({
|
|||||||
|
|
||||||
const isTractionUnit = /^([a-zA-Z\d]{0,}-\d{0,})/.test(type);
|
const isTractionUnit = /^([a-zA-Z\d]{0,}-\d{0,})/.test(type);
|
||||||
|
|
||||||
console.log(type, isTractionUnit);
|
|
||||||
|
|
||||||
if (isTractionUnit) {
|
if (isTractionUnit) {
|
||||||
const [locoType, spawnProps] = type.split(',');
|
const [locoType, spawnProps] = type.split(',');
|
||||||
vehicle = this.store.locoDataList.find((loco) => loco.type == locoType) || null;
|
vehicle = this.store.locoDataList.find((loco) => loco.type == locoType) || null;
|
||||||
@@ -84,13 +78,35 @@ export default defineComponent({
|
|||||||
const [carType, cargo] = type.split(':');
|
const [carType, cargo] = type.split(':');
|
||||||
vehicle = this.store.carDataList.find((car) => car.type == carType) || null;
|
vehicle = this.store.carDataList.find((car) => car.type == carType) || null;
|
||||||
|
|
||||||
if (cargo) vehicleCargo = vehicle?.cargoTypes.find((c) => c.id == cargo) || null;
|
if (cargo) {
|
||||||
|
vehicleCargo = vehicle?.cargoTypes.find((c) => c.id == cargo) || null;
|
||||||
|
|
||||||
|
// UNUSED - ADDITIONAL INTERMODAL CARGO TEST
|
||||||
|
// if (/412Z|627Z/.test(vehicle.constructionType)) {
|
||||||
|
// const additionalCargo = additionalCargoTypes.find(
|
||||||
|
// (c) => c.groupType == vehicle!.constructionType && c.cargoStringVariations.includes(cargo.join(':'))
|
||||||
|
// );
|
||||||
|
|
||||||
|
// if (additionalCargo) {
|
||||||
|
// cargo[0] = additionalCargo.id;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!vehicle) console.warn('Brak pojazdu / rodzaj pojazdu źle wczytany:', type);
|
if (!vehicle && type) {
|
||||||
|
failureCount++;
|
||||||
|
console.warn(`Wystąpił błąd - nie wczytano pojazdu o nazwie: ${type}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.addVehicle(vehicle, vehicleCargo);
|
this.addVehicle(vehicle, vehicleCargo);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (failureCount != 0 && failureCount == stockArray.length) {
|
||||||
|
console.warn('Wystąpił błąd - niepoprawny format');
|
||||||
|
throw 'stock-loading-error';
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { defineComponent } from 'vue';
|
import { defineComponent } from 'vue';
|
||||||
import { useStore } from '../store';
|
import { useStore } from '../store';
|
||||||
import { ICarWagon, ILocomotive, IStock, IVehicle, LocoGroupType, WagonGroupType } from '../types';
|
import { ICarWagon, ILocomotive, IStock, IVehicle, LocoGroupType, WagonGroupType } from '../types/common.types';
|
||||||
import { isTractionUnit } from '../utils/vehicleUtils';
|
import { isTractionUnit } from '../utils/vehicleUtils';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
|||||||
@@ -0,0 +1,61 @@
|
|||||||
|
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
|
||||||
|
import AppContainerView from './views/AppContainerView.vue';
|
||||||
|
import WikiListTab from './components/tabs/WikiListTab.vue';
|
||||||
|
import StockListTab from './components/tabs/StockListTab.vue';
|
||||||
|
import NumberGeneratorTab from './components/tabs/NumberGeneratorTab.vue';
|
||||||
|
import StockGeneratorTab from './components/tabs/StockGeneratorTab.vue';
|
||||||
|
import StorageTab from './components/tabs/StorageTab.vue';
|
||||||
|
|
||||||
|
const routes: RouteRecordRaw[] = [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
component: AppContainerView,
|
||||||
|
meta: {
|
||||||
|
viewMode: StockListTab,
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'stock',
|
||||||
|
redirect: '/',
|
||||||
|
meta: {
|
||||||
|
viewMode: StockListTab,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'wiki',
|
||||||
|
component: AppContainerView,
|
||||||
|
meta: {
|
||||||
|
viewMode: WikiListTab,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'numgen',
|
||||||
|
component: AppContainerView,
|
||||||
|
meta: {
|
||||||
|
viewMode: NumberGeneratorTab,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'stockgen',
|
||||||
|
component: AppContainerView,
|
||||||
|
meta: {
|
||||||
|
viewMode: StockGeneratorTab,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'storage',
|
||||||
|
component: AppContainerView,
|
||||||
|
meta: {
|
||||||
|
viewMode: StorageTab,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const router = createRouter({
|
||||||
|
history: createWebHistory(),
|
||||||
|
routes,
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import {
|
import {
|
||||||
IVehiclesData,
|
IVehiclesAPIResponse,
|
||||||
ICarWagon,
|
ICarWagon,
|
||||||
ILocomotive,
|
ILocomotive,
|
||||||
ICargo,
|
ICargo,
|
||||||
@@ -8,24 +8,31 @@ import {
|
|||||||
IRealComposition,
|
IRealComposition,
|
||||||
LocoGroupType,
|
LocoGroupType,
|
||||||
WagonGroupType,
|
WagonGroupType,
|
||||||
} from './types';
|
IVehicleData,
|
||||||
|
StorageStockEntry,
|
||||||
|
} from './types/common.types';
|
||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import {
|
import {
|
||||||
acceptableWeight,
|
acceptableWeight,
|
||||||
carDataList,
|
carDataList,
|
||||||
|
getCargoWarnings,
|
||||||
isTractionUnit,
|
isTractionUnit,
|
||||||
isTrainPassenger,
|
isTrainPassenger,
|
||||||
locoDataList,
|
locoDataList,
|
||||||
maxStockSpeed,
|
maxStockSpeed,
|
||||||
|
stockSupportsColdStart,
|
||||||
|
stockSupportsDoubleManning,
|
||||||
totalLength,
|
totalLength,
|
||||||
totalWeight,
|
totalWeight,
|
||||||
} from './utils/vehicleUtils';
|
} from './utils/vehicleUtils';
|
||||||
|
|
||||||
import i18n from './i18n-setup';
|
import realCompositionsJSON from './data/realCompositions.json';
|
||||||
import http from './http';
|
import { HttpClient } from './http';
|
||||||
|
import { API } from './types/api.types';
|
||||||
|
|
||||||
export const useStore = defineStore({
|
const baseURL = import.meta.env.VITE_API_DEV === '1' && import.meta.env.DEV ? 'http://localhost:3001' : 'https://stacjownik.spythere.eu';
|
||||||
id: 'store',
|
|
||||||
|
export const useStore = defineStore('store', {
|
||||||
state: () => ({
|
state: () => ({
|
||||||
chosenCar: null as ICarWagon | null,
|
chosenCar: null as ICarWagon | null,
|
||||||
chosenLoco: null as ILocomotive | null,
|
chosenLoco: null as ILocomotive | null,
|
||||||
@@ -47,88 +54,88 @@ export const useStore = defineStore({
|
|||||||
|
|
||||||
vehiclePreviewSrc: '',
|
vehiclePreviewSrc: '',
|
||||||
|
|
||||||
stockSectionMode: 'stock-list',
|
isMigrationInfoOpen: false,
|
||||||
|
|
||||||
isRandomizerCardOpen: false,
|
isRandomizerCardOpen: false,
|
||||||
isRealStockListCardOpen: false,
|
isRealStockListCardOpen: false,
|
||||||
|
|
||||||
vehiclesData: undefined as IVehiclesData | undefined,
|
vehiclesData: undefined as IVehicleData[] | undefined,
|
||||||
|
|
||||||
lastFocusedElement: null as HTMLElement | null,
|
lastFocusedElement: null as HTMLElement | null,
|
||||||
|
|
||||||
|
storageStockData: {} as Record<string, StorageStockEntry>,
|
||||||
|
chosenStorageStockName: '',
|
||||||
|
chosenStorageStockString: '',
|
||||||
|
|
||||||
|
compatibleSimulatorVersion: '2025.1.1',
|
||||||
|
|
||||||
|
httpClient: new HttpClient(baseURL),
|
||||||
}),
|
}),
|
||||||
|
|
||||||
getters: {
|
getters: {
|
||||||
locoDataList: (state) => locoDataList(state.vehiclesData),
|
locoDataList: (state) => locoDataList(state.vehiclesData),
|
||||||
carDataList: (state) => carDataList(state.vehiclesData),
|
carDataList: (state) => carDataList(state.vehiclesData),
|
||||||
vehicleDataList: (state) => [
|
vehicleDataList: (state) => [...locoDataList(state.vehiclesData), ...carDataList(state.vehiclesData)],
|
||||||
...locoDataList(state.vehiclesData),
|
|
||||||
...carDataList(state.vehiclesData),
|
|
||||||
],
|
|
||||||
totalWeight: (state) => totalWeight(state.stockList),
|
totalWeight: (state) => totalWeight(state.stockList),
|
||||||
totalLength: (state) => totalLength(state.stockList),
|
totalLength: (state) => totalLength(state.stockList),
|
||||||
maxStockSpeed: (state) => maxStockSpeed(state.stockList),
|
maxStockSpeed: (state) => maxStockSpeed(state.stockList),
|
||||||
isTrainPassenger: (state) => isTrainPassenger(state.stockList),
|
isTrainPassenger: (state) => isTrainPassenger(state.stockList),
|
||||||
acceptableWeight: (state) => acceptableWeight(state.stockList),
|
acceptableWeight: (state) => acceptableWeight(state.stockList),
|
||||||
|
cargoWarnings: (state) => getCargoWarnings(state.stockList),
|
||||||
|
|
||||||
|
stockSupportsColdStart: (state) => stockSupportsColdStart(state.stockList),
|
||||||
|
stockSupportsDoubleManning: (state) => stockSupportsDoubleManning(state.stockList),
|
||||||
|
|
||||||
|
stockString: (state) => {
|
||||||
|
if (state.stockList.length == 0) return '';
|
||||||
|
|
||||||
|
const coldStartActive = state.isColdStart && stockSupportsColdStart(state.stockList);
|
||||||
|
const doubleManningActive = state.isDoubleManned && stockSupportsDoubleManning(state.stockList);
|
||||||
|
|
||||||
|
return state.stockList
|
||||||
|
.map((stock, i) => {
|
||||||
|
let stockTypeStr = isTractionUnit(stock.vehicleRef) || !stock.cargo ? stock.vehicleRef.type : `${stock.vehicleRef.type}:${stock.cargo.id}`;
|
||||||
|
|
||||||
|
if (i == 0 && (coldStartActive || doubleManningActive))
|
||||||
|
return `${stockTypeStr},${coldStartActive ? 'c' : ''}${doubleManningActive ? 'd' : ''}`;
|
||||||
|
|
||||||
|
return stockTypeStr;
|
||||||
|
})
|
||||||
|
.join(';');
|
||||||
|
},
|
||||||
|
|
||||||
realCompositionList: (state) => {
|
realCompositionList: (state) => {
|
||||||
if (!state.vehiclesData) return [];
|
if (!state.vehiclesData) return [];
|
||||||
|
|
||||||
return Object.keys(state.vehiclesData.realCompositions).reduce<IRealComposition[]>(
|
return Object.keys(realCompositionsJSON).reduce<IRealComposition[]>((acc, key) => {
|
||||||
(acc, key) => {
|
const [type, number, ...name] = key.split(' ');
|
||||||
const [type, number, ...name] = key.split(' ');
|
|
||||||
|
|
||||||
const obj = {
|
const obj = {
|
||||||
number: number.replace(/_/g, '/'),
|
number: number.replace(/_/g, '/'),
|
||||||
name: name.join(' '),
|
name: name.join(' '),
|
||||||
stockString: state.vehiclesData!.realCompositions[key],
|
stockString: realCompositionsJSON[key as keyof typeof realCompositionsJSON],
|
||||||
type,
|
type,
|
||||||
};
|
};
|
||||||
|
|
||||||
acc.push({
|
acc.push({
|
||||||
stockId: `${obj.type} ${obj.number} ${obj.name}`,
|
stockId: `${obj.type} ${obj.number} ${obj.name}`,
|
||||||
...obj,
|
...obj,
|
||||||
});
|
});
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
},
|
}, []);
|
||||||
[]
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
stockSupportsColdStart: (state) => {
|
|
||||||
if (state.stockList.length == 0) return false;
|
|
||||||
|
|
||||||
if (!isTractionUnit(state.stockList[0].vehicleRef)) return false;
|
|
||||||
else if (state.stockList.length > 1) return false;
|
|
||||||
|
|
||||||
const headingLoco = state.stockList[0];
|
|
||||||
|
|
||||||
return (
|
|
||||||
state.vehiclesData?.vehicleProps.find(
|
|
||||||
(stock) => stock.type == headingLoco.vehicleRef.constructionType
|
|
||||||
)?.coldStart ?? false
|
|
||||||
);
|
|
||||||
},
|
|
||||||
|
|
||||||
stockSupportsDoubleManning: (state) => {
|
|
||||||
if (state.stockList.length == 0) return false;
|
|
||||||
if (!isTractionUnit(state.stockList[0].vehicleRef)) return false;
|
|
||||||
|
|
||||||
const headingLoco = state.stockList[0];
|
|
||||||
|
|
||||||
return (
|
|
||||||
state.vehiclesData?.vehicleProps.find(
|
|
||||||
(stock) => stock.type == headingLoco.vehicleRef.constructionType
|
|
||||||
)?.doubleManned ?? false
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
async fetchVehiclesAPI() {
|
async fetchVehiclesAPI() {
|
||||||
try {
|
try {
|
||||||
const vehiclesData = (await http.get<IVehiclesData>('/vehicles')).data;
|
const response = await this.httpClient.get<API.VehiclesData.Response>('api/getVehiclesData');
|
||||||
this.vehiclesData = vehiclesData;
|
this.vehiclesData = response.vehicles.map((v) => ({
|
||||||
|
...v,
|
||||||
|
group: response.vehicleGroups.find((g) => g.id == v.vehicleGroupsId)!,
|
||||||
|
}));
|
||||||
|
|
||||||
|
console.log(response);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
@@ -136,30 +143,6 @@ export const useStore = defineStore({
|
|||||||
|
|
||||||
async setupAPIData() {
|
async setupAPIData() {
|
||||||
await this.fetchVehiclesAPI();
|
await this.fetchVehiclesAPI();
|
||||||
this.mergeBackendTranslations();
|
|
||||||
},
|
|
||||||
|
|
||||||
async mergeBackendTranslations() {
|
|
||||||
if (!this.vehiclesData) return;
|
|
||||||
|
|
||||||
i18n.global.mergeLocaleMessage('pl', this.vehiclesData.vehicleLocales.pl);
|
|
||||||
i18n.global.mergeLocaleMessage('en', this.vehiclesData.vehicleLocales.en);
|
|
||||||
},
|
|
||||||
|
|
||||||
handleRouting() {
|
|
||||||
switch (window.location.pathname) {
|
|
||||||
case '/numgnr':
|
|
||||||
this.stockSectionMode = 'number-generator';
|
|
||||||
break;
|
|
||||||
case '/stockgnr':
|
|
||||||
this.stockSectionMode = 'stock-generator';
|
|
||||||
break;
|
|
||||||
case '/vehicles':
|
|
||||||
this.stockSectionMode = 'wiki-list';
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'Lato';
|
||||||
|
src:
|
||||||
|
url('/fonts/Lato-Bold.woff2') format('woff2'),
|
||||||
|
url('/fonts/Lato-Bold.woff') format('woff');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Lato';
|
||||||
|
src:
|
||||||
|
url('/fonts/Lato-Regular.woff2') format('woff2'),
|
||||||
|
url('/fonts/Lato-Regular.woff') format('woff');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
@@ -1,42 +1,15 @@
|
|||||||
$breakpointMd: 960px;
|
@use 'fonts';
|
||||||
$breakpointSm: 550px;
|
@use 'responsive';
|
||||||
|
|
||||||
$bgColor: #2b3552;
|
:root {
|
||||||
$textColor: #fff;
|
--bgColor: #2b3552;
|
||||||
$secondaryColor: #1b1b1b;
|
--bgColorDarker: #1f263b;
|
||||||
$accentColor: #e4c428;
|
--textColor: #fff;
|
||||||
|
--secondaryColor: #1b1b1b;
|
||||||
|
--accentColor: #e4c428;
|
||||||
|
|
||||||
$sponsorColor: gold;
|
--sponsorColor: gold;
|
||||||
$teamColor: #ff4848;
|
--teamColor: #ff4848;
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Lato';
|
|
||||||
src:
|
|
||||||
url('/fonts/Lato-Light.woff2') format('woff2'),
|
|
||||||
url('/fonts/Lato-Light.woff') format('woff');
|
|
||||||
font-weight: 300;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: swap;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Lato';
|
|
||||||
src:
|
|
||||||
url('/fonts/Lato-Bold.woff2') format('woff2'),
|
|
||||||
url('/fonts/Lato-Bold.woff') format('woff');
|
|
||||||
font-weight: bold;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: swap;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Lato';
|
|
||||||
src:
|
|
||||||
url('/fonts/Lato-Regular.woff2') format('woff2'),
|
|
||||||
url('/fonts/Lato-Regular.woff') format('woff');
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: swap;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
@@ -65,7 +38,7 @@ html {
|
|||||||
|
|
||||||
font-family: Lato, sans-serif;
|
font-family: Lato, sans-serif;
|
||||||
|
|
||||||
background-color: $bgColor;
|
background-color: var(--bgColorDarker);
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,15 +53,6 @@ a {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
transition: color 250ms;
|
transition: color 250ms;
|
||||||
|
|
||||||
&:visited {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:focus {
|
|
||||||
color: $accentColor;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
select,
|
select,
|
||||||
@@ -113,32 +77,68 @@ button {
|
|||||||
color: white;
|
color: white;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
[data-tooltip]:hover::after,
|
&:focus-visible {
|
||||||
[data-tooltip]:focus::after {
|
outline: 1px solid var(--accentColor);
|
||||||
position: absolute;
|
}
|
||||||
transform: translateX(10px);
|
|
||||||
|
|
||||||
content: attr(data-tooltip);
|
|
||||||
color: white;
|
|
||||||
background: black;
|
|
||||||
padding: 0.5em;
|
|
||||||
max-width: 300px;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-tooltip] {
|
[data-tooltip] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:hover::after,
|
||||||
|
&:focus-visible::after {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
content: attr(data-tooltip);
|
||||||
|
color: white;
|
||||||
|
background: black;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
margin: 0 0.75em;
|
||||||
|
padding: 0.5em;
|
||||||
|
|
||||||
|
max-width: 300px;
|
||||||
|
|
||||||
|
z-index: 100;
|
||||||
|
|
||||||
|
@include responsive.smallScreen {
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, 3ex);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn {
|
[data-button-tooltip] {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
&:hover::after,
|
||||||
|
&:focus-visible::after {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
|
|
||||||
|
top: 100%;
|
||||||
|
transform: translateY(5px);
|
||||||
|
border-radius: inherit;
|
||||||
|
|
||||||
|
content: attr(data-button-tooltip);
|
||||||
|
color: white;
|
||||||
|
background: #111;
|
||||||
|
padding: 0.5em;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn,
|
||||||
|
.link-btn {
|
||||||
padding: 0.4em 0.75em;
|
padding: 0.4em 0.75em;
|
||||||
|
|
||||||
outline: none;
|
outline: none;
|
||||||
background-color: $secondaryColor;
|
background-color: var(--secondaryColor);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
||||||
@@ -147,25 +147,25 @@ button {
|
|||||||
background-color 150ms;
|
background-color 150ms;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.btn--outline {
|
&.btn--outline {
|
||||||
background: none;
|
background: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
outline: 1px solid $accentColor;
|
outline: 1px solid var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus-visible {
|
&:focus-visible {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
outline: 1px solid white;
|
outline: 1px solid white;
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-chosen='true'] {
|
&[data-chosen='true'] {
|
||||||
background-color: $accentColor;
|
background-color: var(--accentColor);
|
||||||
color: black;
|
color: black;
|
||||||
|
|
||||||
box-shadow: 0 0 5px 1px $accentColor;
|
box-shadow: 0 0 5px 1px var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&[data-disabled='true'] {
|
&[data-disabled='true'] {
|
||||||
@@ -184,9 +184,10 @@ button {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
|
|
||||||
img {
|
img,
|
||||||
width: 1.3em;
|
svg {
|
||||||
vertical-align: middle;
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -194,18 +195,31 @@ button {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
transition: all 250ms;
|
transition: all 250ms;
|
||||||
background: none;
|
background: none;
|
||||||
padding: 0;
|
padding: 0.25em;
|
||||||
|
border-radius: 0;
|
||||||
|
|
||||||
&:focus-visible {
|
&:focus-visible {
|
||||||
outline: 1px solid white;
|
outline: 1px solid white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--icon {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
padding: 0.25em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-btn.router-link-exact-active {
|
||||||
|
color: var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
select,
|
select,
|
||||||
input[type='text'],
|
input[type='text'],
|
||||||
input[type='number'] {
|
input[type='number'] {
|
||||||
background: $bgColor;
|
background: var(--bgColor);
|
||||||
border: 2px solid #aaa;
|
border: 2px solid #aaa;
|
||||||
outline: none;
|
outline: none;
|
||||||
|
|
||||||
@@ -216,7 +230,7 @@ input[type='number'] {
|
|||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
|
|
||||||
&:focus-visible {
|
&:focus-visible {
|
||||||
border-color: $accentColor;
|
border-color: var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&::placeholder {
|
&::placeholder {
|
||||||
@@ -227,7 +241,7 @@ input[type='number'] {
|
|||||||
option {
|
option {
|
||||||
color: white;
|
color: white;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: $bgColor;
|
background-color: var(--bgColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
@@ -238,7 +252,7 @@ ul {
|
|||||||
|
|
||||||
.text {
|
.text {
|
||||||
&--accent {
|
&--accent {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
&--grayed {
|
&--grayed {
|
||||||
@@ -295,18 +309,18 @@ hr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
span:focus {
|
span:focus {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
outline: none;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
label > input:checked + span {
|
label > input:checked + span {
|
||||||
color: $accentColor;
|
color: var(--accentColor);
|
||||||
border-color: $accentColor;
|
border-color: var(--accentColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Vue Transition anims
|
// Vue Transition anims
|
||||||
.slide-top {
|
.slide-top-anim {
|
||||||
&-enter-from,
|
&-enter-from,
|
||||||
&-leave-to {
|
&-leave-to {
|
||||||
transform: translateY(-100%);
|
transform: translateY(-100%);
|
||||||
@@ -318,7 +332,19 @@ hr {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-appear {
|
.slide-bottom-anim {
|
||||||
|
&-enter-from,
|
||||||
|
&-leave-to {
|
||||||
|
transform: translateY(100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
&-enter-active,
|
||||||
|
&-leave-active {
|
||||||
|
transition: transform 100ms ease-in-out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-appear-anim {
|
||||||
&-enter-from,
|
&-enter-from,
|
||||||
&-leave-to {
|
&-leave-to {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
$breakpointMd: 960px;
|
||||||
|
$breakpointSm: 550px;
|
||||||
|
|
||||||
|
@mixin smallScreen() {
|
||||||
|
@media only screen and (max-width: $breakpointSm) {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin midScreen() {
|
||||||
|
@media only screen and (max-width: $breakpointMd) {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin midScreenLandscape() {
|
||||||
|
@media only screen and (orientation: landscape) and (max-width: $breakpointMd) {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,13 +1,10 @@
|
|||||||
@import './global.scss';
|
|
||||||
|
|
||||||
.tab {
|
.tab {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-top: 1px;
|
|
||||||
|
|
||||||
&_header {
|
&_header {
|
||||||
padding: 0.5em 1em;
|
padding: 0.5em 1em;
|
||||||
|
|
||||||
background-color: $secondaryColor;
|
background-color: var(--secondaryColor);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
@@ -28,7 +25,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&_content {
|
&_content {
|
||||||
margin-top: 1em;
|
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
import { IVehicleRestrictions } from './common.types';
|
||||||
|
|
||||||
|
// API namespace
|
||||||
|
export namespace API {
|
||||||
|
export namespace VehiclesData {
|
||||||
|
export interface VehicleObject {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
type: string;
|
||||||
|
cabinName: string | null;
|
||||||
|
restrictions: IVehicleRestrictions | null;
|
||||||
|
|
||||||
|
vehicleGroupsId: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface VehicleGroupObject {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
speed: number;
|
||||||
|
speedLoaded?: number;
|
||||||
|
speedLoco?: number;
|
||||||
|
length: number;
|
||||||
|
weight: number;
|
||||||
|
cargoTypes: VehicleCargo[] | null;
|
||||||
|
|
||||||
|
locoProps: {
|
||||||
|
coldStart: boolean;
|
||||||
|
doubleManned: boolean;
|
||||||
|
} | null;
|
||||||
|
|
||||||
|
massSpeeds: VehicleGroupMassSpeeds | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface VehicleGroupMassSpeeds {
|
||||||
|
passenger: Record<string, number> | null;
|
||||||
|
cargo: Record<string, number> | null;
|
||||||
|
none: number | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface VehicleCargo {
|
||||||
|
id: string;
|
||||||
|
weight: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Data {
|
||||||
|
vehicles: VehicleObject[];
|
||||||
|
vehicleGroups: VehicleGroupObject[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Response = Data;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
export type IVehicle = ILocomotive | ICarWagon;
|
export type IVehicle = ILocomotive | ICarWagon;
|
||||||
export type StockSectionMode = 'STOCK_LIST' | 'STOCK_GENERATOR';
|
|
||||||
|
|
||||||
export type LocoGroupType = 'loco-electric' | 'loco-diesel' | 'unit-electric' | 'unit-diesel';
|
export type LocoGroupType = 'loco-electric' | 'loco-diesel' | 'unit-electric' | 'unit-diesel';
|
||||||
export type WagonGroupType = 'wagon-passenger' | 'wagon-freight';
|
export type WagonGroupType = 'wagon-passenger' | 'wagon-freight';
|
||||||
@@ -21,32 +20,7 @@ export interface ICargo {
|
|||||||
weight: number;
|
weight: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IVehiclesData {
|
export type IVehiclesAPIResponse = IVehicleData[];
|
||||||
simulatorVersion: string;
|
|
||||||
|
|
||||||
generator: {
|
|
||||||
cargo: {
|
|
||||||
[key: string]: string[];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
vehicleList: any[][];
|
|
||||||
|
|
||||||
vehicleProps: IVehicleProps[];
|
|
||||||
|
|
||||||
vehicleLocales: {
|
|
||||||
pl: {
|
|
||||||
cargo: Record<string, string>;
|
|
||||||
usage: Record<string, string>;
|
|
||||||
};
|
|
||||||
en: {
|
|
||||||
cargo: Record<string, string>;
|
|
||||||
usage: Record<string, string>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
realCompositions: Record<string, string>;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ILocomotive {
|
export interface ILocomotive {
|
||||||
type: string;
|
type: string;
|
||||||
@@ -54,12 +28,14 @@ export interface ILocomotive {
|
|||||||
constructionType: string;
|
constructionType: string;
|
||||||
cabinType: string;
|
cabinType: string;
|
||||||
maxSpeed: number;
|
maxSpeed: number;
|
||||||
|
maxSpeedLoco: number;
|
||||||
weight: number;
|
weight: number;
|
||||||
length: number;
|
length: number;
|
||||||
coldStart: boolean;
|
coldStart: boolean;
|
||||||
doubleManned: boolean;
|
doubleManned: boolean;
|
||||||
sponsorOnlyTimestamp: number;
|
sponsorOnlyTimestamp: number;
|
||||||
teamOnly: boolean;
|
teamOnly: boolean;
|
||||||
|
massSpeeds: VehicleGroupMassSpeeds | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ICarWagon {
|
export interface ICarWagon {
|
||||||
@@ -68,11 +44,13 @@ export interface ICarWagon {
|
|||||||
constructionType: string;
|
constructionType: string;
|
||||||
loadable: boolean;
|
loadable: boolean;
|
||||||
maxSpeed: number;
|
maxSpeed: number;
|
||||||
|
maxSpeedLoaded: number;
|
||||||
weight: number;
|
weight: number;
|
||||||
length: number;
|
length: number;
|
||||||
cargoTypes: ICargo[];
|
cargoTypes: ICargo[];
|
||||||
sponsorOnlyTimestamp: number;
|
sponsorOnlyTimestamp: number;
|
||||||
teamOnly: boolean;
|
teamOnly: boolean;
|
||||||
|
massSpeeds: VehicleGroupMassSpeeds | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IStock {
|
export interface IStock {
|
||||||
@@ -88,3 +66,54 @@ export interface IRealComposition {
|
|||||||
number: string;
|
number: string;
|
||||||
name: string;
|
name: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IVehicleData {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
type: string;
|
||||||
|
cabinName: string | null;
|
||||||
|
restrictions: IVehicleRestrictions | null;
|
||||||
|
vehicleGroupsId: number;
|
||||||
|
group: IVehicleGroup;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IVehicleRestrictions {
|
||||||
|
sponsorOnly: number | null;
|
||||||
|
teamOnly: boolean | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IVehicleGroup {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
speed: number;
|
||||||
|
speedLoaded?: number;
|
||||||
|
speedLoco?: number;
|
||||||
|
length: number;
|
||||||
|
weight: number;
|
||||||
|
cargoTypes: IVehicleCargoType[] | null;
|
||||||
|
locoProps: IVehicleLocoProps | null;
|
||||||
|
massSpeeds: VehicleGroupMassSpeeds | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IVehicleCargoType {
|
||||||
|
id: string;
|
||||||
|
weight: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IVehicleLocoProps {
|
||||||
|
coldStart: boolean;
|
||||||
|
doubleManned: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface VehicleGroupMassSpeeds {
|
||||||
|
passenger: Record<string, number> | null;
|
||||||
|
cargo: Record<string, number> | null;
|
||||||
|
none: number | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface StorageStockEntry {
|
||||||
|
id: string;
|
||||||
|
createdAt: number;
|
||||||
|
updatedAt?: number;
|
||||||
|
stockString: string;
|
||||||
|
}
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import { useStore } from '../store';
|
||||||
|
|
||||||
|
export const useStockListUtils = () => {
|
||||||
|
const store = useStore();
|
||||||
|
|
||||||
|
function removeStock(index: number) {
|
||||||
|
if (index == -1) return;
|
||||||
|
|
||||||
|
store.stockList = store.stockList.filter((stock, i) => i != index);
|
||||||
|
|
||||||
|
if (store.stockList.length < index + 1) store.chosenStockListIndex = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function moveUpStock(index: number) {
|
||||||
|
if (index < 1) return;
|
||||||
|
|
||||||
|
const tempStock = store.stockList[index];
|
||||||
|
|
||||||
|
store.stockList[index] = store.stockList[index - 1];
|
||||||
|
store.stockList[index - 1] = tempStock;
|
||||||
|
|
||||||
|
store.chosenStockListIndex = index - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
function moveDownStock(index: number) {
|
||||||
|
if (index == -1) return;
|
||||||
|
if (index > store.stockList.length - 2) return;
|
||||||
|
|
||||||
|
const tempStock = store.stockList[index];
|
||||||
|
|
||||||
|
store.stockList[index] = store.stockList[index + 1];
|
||||||
|
store.stockList[index + 1] = tempStock;
|
||||||
|
|
||||||
|
store.chosenStockListIndex = index + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return { removeStock, moveDownStock, moveUpStock };
|
||||||
|
};
|
||||||
@@ -1,29 +1,47 @@
|
|||||||
import speedLimits from '../constants/speedLimits.json';
|
|
||||||
import massLimits from '../constants/massLimits.json';
|
import massLimits from '../constants/massLimits.json';
|
||||||
|
import { IStock } from '../types/common.types';
|
||||||
|
|
||||||
export type SpeedLimitLocoType = keyof typeof speedLimits;
|
|
||||||
export type MassLimitLocoType = keyof typeof massLimits;
|
export type MassLimitLocoType = keyof typeof massLimits;
|
||||||
|
|
||||||
export function calculateSpeedLimit(
|
export function calculateSpeedLimit(stockList: IStock[], isPassenger: boolean, stockMass: number) {
|
||||||
locoType: SpeedLimitLocoType,
|
// Check the whole consist speed limit
|
||||||
stockTotalWeight: number,
|
const stockMaxSpeed = stockList.reduce((acc, vehicle, i) => {
|
||||||
stockCount: number,
|
let vehicleSpeed = vehicle.vehicleRef.maxSpeed;
|
||||||
isTrainPassenger: boolean
|
|
||||||
) {
|
|
||||||
if (speedLimits[locoType] === undefined) return 0;
|
|
||||||
|
|
||||||
if (stockCount == 1) return speedLimits[locoType]['none'];
|
if (
|
||||||
|
vehicle.vehicleRef.group == 'wagon-freight' &&
|
||||||
|
vehicle.cargo !== undefined &&
|
||||||
|
vehicle.vehicleRef.maxSpeedLoaded
|
||||||
|
) {
|
||||||
|
vehicleSpeed = vehicle.vehicleRef.maxSpeedLoaded;
|
||||||
|
}
|
||||||
|
|
||||||
const stockType = isTrainPassenger ? 'passenger' : 'cargo';
|
return Math.min(vehicleSpeed, acc);
|
||||||
const speedTable = speedLimits[locoType][stockType];
|
}, Infinity);
|
||||||
|
|
||||||
if (!speedTable) return undefined;
|
// Check the head vehicle speed limit
|
||||||
|
const headVehicle = stockList[0];
|
||||||
|
|
||||||
let speedLimit = 0;
|
// Omit speed check for head vehicle if there's no data for it
|
||||||
for (const mass in speedTable)
|
if (!headVehicle || !headVehicle.vehicleRef.massSpeeds) return stockMaxSpeed;
|
||||||
if (stockTotalWeight > Number(mass)) speedLimit = (speedTable as any)[mass];
|
|
||||||
|
|
||||||
return speedLimit;
|
const massSpeeds =
|
||||||
|
headVehicle.vehicleRef.massSpeeds[
|
||||||
|
stockList.length == 1 ? 'none' : isPassenger ? 'passenger' : 'cargo'
|
||||||
|
];
|
||||||
|
|
||||||
|
// Omit speed check if there's no data on mass speeds
|
||||||
|
if (!massSpeeds) return stockMaxSpeed;
|
||||||
|
|
||||||
|
// Number type for locomotives alone
|
||||||
|
if (typeof massSpeeds === 'number') return massSpeeds;
|
||||||
|
|
||||||
|
// Record type for passenger or cargo, find the closest range
|
||||||
|
const massKey = Object.keys(massSpeeds).findLast((massKey) => stockMass >= Number(massKey));
|
||||||
|
|
||||||
|
const massMaxSpeed = massKey ? massSpeeds[massKey] : Infinity;
|
||||||
|
|
||||||
|
return Math.min(massMaxSpeed, stockMaxSpeed);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function calculateMassLimit(locoType: MassLimitLocoType, isTrainPassenger: boolean) {
|
export function calculateMassLimit(locoType: MassLimitLocoType, isTrainPassenger: boolean) {
|
||||||
|
|||||||
@@ -1,87 +1,129 @@
|
|||||||
import {
|
import { ICarWagon, ILocomotive, IStock, IVehicleData, LocoGroupType, WagonGroupType } from '../types/common.types';
|
||||||
ICarWagon,
|
import { MassLimitLocoType, calculateMassLimit, calculateSpeedLimit } from './vehicleLimitsUtils';
|
||||||
ILocomotive,
|
|
||||||
IStock,
|
// UNUSED - ADDITIONAL CARGO TYPES FOR INTERMODALS
|
||||||
IVehiclesData,
|
export const additionalCargoTypes = [
|
||||||
LocoGroupType,
|
{
|
||||||
WagonGroupType,
|
groupType: '627Z',
|
||||||
} from '../types';
|
id: '627Z_mix1_sctc_loaded',
|
||||||
import {
|
weight: 96500,
|
||||||
MassLimitLocoType,
|
cargoStringVariations: [
|
||||||
SpeedLimitLocoType,
|
'sc_20:tc_20_loaded:tc_20_loaded:tc_20_loaded',
|
||||||
calculateMassLimit,
|
'tc_20_loaded:sc_20:tc_20_loaded:tc_20_loaded',
|
||||||
calculateSpeedLimit,
|
'tc_20_loaded:tc_20_loaded:sc_20:tc_20_loaded',
|
||||||
} from './vehicleLimitsUtils';
|
'tc_20_loaded:tc_20_loaded:tc_20_loaded:sc_20',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupType: '627Z',
|
||||||
|
id: '627Z_mix2_sctc_loaded',
|
||||||
|
weight: 87000,
|
||||||
|
cargoStringVariations: [
|
||||||
|
'sc_20:tc_20_loaded:tc_20_loaded:sc_20',
|
||||||
|
'sc_20:tc_20_loaded:sc_20:tc_20_loaded',
|
||||||
|
'sc_20:sc_20:tc_20_loaded:tc_20_loaded',
|
||||||
|
'tc_20_loaded:tc_20_loaded:sc_20:sc_20',
|
||||||
|
'tc_20_loaded:sc_20:tc_20_loaded:sc_20',
|
||||||
|
'tc_20_loaded:sc_20:sc_20:tc_20_loaded',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupType: '627Z',
|
||||||
|
id: '627Z_mix3_sctc_loaded',
|
||||||
|
weight: 77500,
|
||||||
|
cargoStringVariations: [
|
||||||
|
'sc_20:sc_20:sc_20:tc_20_loaded',
|
||||||
|
'sc_20:sc_20:tc_20_loaded:sc_20',
|
||||||
|
'sc_20:tc_20_loaded:sc_20:sc_20',
|
||||||
|
'tc_20_loaded:sc_20:sc_20:sc_20',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupType: '412Z',
|
||||||
|
id: '412Z_mix1_sctc_loaded',
|
||||||
|
weight: 43500,
|
||||||
|
cargoStringVariations: ['sc_20:tc_20_loaded:tc_20_loaded'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
groupType: '412Z',
|
||||||
|
id: '412Z_mix1_sctc_empty',
|
||||||
|
weight: 37735,
|
||||||
|
cargoStringVariations: ['sc_20:tc_20_empty:sc_20'],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
export function isTractionUnit(vehicle: ILocomotive | ICarWagon): vehicle is ILocomotive {
|
export function isTractionUnit(vehicle: ILocomotive | ICarWagon): vehicle is ILocomotive {
|
||||||
return (vehicle as ILocomotive).cabinType !== undefined;
|
return (vehicle as ILocomotive).cabinType !== undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function locoDataList(vehiclesData: IVehiclesData | undefined) {
|
export function locoDataList(vehiclesData: IVehicleData[] | undefined) {
|
||||||
if (!vehiclesData) return [];
|
if (!vehiclesData) return [];
|
||||||
|
|
||||||
return vehiclesData.vehicleList.reduce<ILocomotive[]>((acc, vehicleInfoArray) => {
|
return vehiclesData.reduce<ILocomotive[]>((acc, data) => {
|
||||||
// check if data array has 5 elements (locos & units only)
|
if (!data.cabinName) return acc;
|
||||||
if (vehicleInfoArray.length != 5) return acc;
|
|
||||||
|
|
||||||
const [type, constructionType, cabinType, group, restrictions] = vehicleInfoArray;
|
|
||||||
const locoProps = vehiclesData.vehicleProps.find((prop) => constructionType == prop.type);
|
|
||||||
|
|
||||||
if (!locoProps) {
|
|
||||||
console.warn('Brak atrybutów dla pojazdu:', type);
|
|
||||||
return acc;
|
|
||||||
}
|
|
||||||
|
|
||||||
acc.push({
|
acc.push({
|
||||||
group: group as LocoGroupType,
|
group: data.type as LocoGroupType,
|
||||||
|
type: data.name,
|
||||||
|
|
||||||
type,
|
constructionType: data.group.name,
|
||||||
constructionType,
|
cabinType: data.cabinName,
|
||||||
cabinType,
|
|
||||||
|
|
||||||
sponsorOnlyTimestamp: restrictions?.sponsorOnly ?? 0,
|
sponsorOnlyTimestamp: data.restrictions?.sponsorOnly ?? 0,
|
||||||
teamOnly: restrictions?.teamOnly ?? false,
|
teamOnly: data.restrictions?.teamOnly ?? false,
|
||||||
|
|
||||||
maxSpeed: locoProps.speed,
|
maxSpeed: data.group.speed,
|
||||||
length: locoProps.length,
|
maxSpeedLoco: data.group.speedLoco ?? data.group.speed,
|
||||||
weight: locoProps.weight,
|
length: data.group.length,
|
||||||
|
weight: data.group.weight,
|
||||||
|
|
||||||
coldStart: locoProps.coldStart ?? false,
|
coldStart: data.group.locoProps?.coldStart ?? false,
|
||||||
doubleManned: locoProps.doubleManned ?? false,
|
doubleManned: data.group.locoProps?.doubleManned ?? false,
|
||||||
|
|
||||||
|
massSpeeds: data.group.massSpeeds,
|
||||||
});
|
});
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
}, []);
|
}, []);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function carDataList(vehiclesData: IVehiclesData | undefined) {
|
export function carDataList(vehiclesData: IVehicleData[] | undefined) {
|
||||||
if (!vehiclesData) return [];
|
if (!vehiclesData) return [];
|
||||||
|
|
||||||
return vehiclesData.vehicleList.reduce<ICarWagon[]>((acc, vehicleInfoArray) => {
|
return vehiclesData.reduce<ICarWagon[]>((acc, data) => {
|
||||||
// check if data array has 4 elements (wagons only)
|
if (data.cabinName !== null) return acc;
|
||||||
if (vehicleInfoArray.length != 4) return acc;
|
|
||||||
|
|
||||||
const [type, constructionType, group, restrictions] = vehicleInfoArray;
|
const cargoTypes = data.group.cargoTypes || [];
|
||||||
const wagonProps = vehiclesData.vehicleProps.find((prop) => constructionType == prop.type);
|
|
||||||
|
|
||||||
if (!wagonProps) {
|
// UNUSED - ADDITIONAL CARGO TYPES FOR INTERMODALS
|
||||||
console.warn('Brak atrybutów dla pojazdu:', type);
|
// if (/412Z|627Z/.test(data.group.name)) {
|
||||||
return acc;
|
// cargoTypes.push(
|
||||||
}
|
// ...additionalCargoTypes
|
||||||
|
// .filter((c) => c.groupType == data.group.name)
|
||||||
|
// .map((c) => ({
|
||||||
|
// id: c.id,
|
||||||
|
// weight: c.weight,
|
||||||
|
// }))
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
acc.push({
|
acc.push({
|
||||||
group: group as WagonGroupType,
|
group: data.type as WagonGroupType,
|
||||||
type,
|
type: data.name,
|
||||||
constructionType,
|
constructionType: data.group.name,
|
||||||
loadable: wagonProps.cargoTypes ? wagonProps.cargoTypes.length > 0 : false,
|
loadable: data.group.cargoTypes !== null && data.group.cargoTypes.length > 0,
|
||||||
cargoTypes: wagonProps?.cargoTypes ?? [],
|
cargoTypes,
|
||||||
|
|
||||||
sponsorOnlyTimestamp: restrictions?.sponsorOnly ?? 0,
|
sponsorOnlyTimestamp: data.restrictions?.sponsorOnly ?? 0,
|
||||||
teamOnly: restrictions?.teamOnly ?? false,
|
teamOnly: data.restrictions?.teamOnly ?? false,
|
||||||
|
|
||||||
maxSpeed: wagonProps.speed,
|
maxSpeed: data.group.speed,
|
||||||
weight: wagonProps?.weight || 0,
|
maxSpeedLoaded: data.group.speedLoaded ?? data.group.speed,
|
||||||
length: wagonProps?.length || 0,
|
|
||||||
|
length: data.group.length,
|
||||||
|
weight: data.group.weight,
|
||||||
|
|
||||||
|
massSpeeds: data.group.massSpeeds,
|
||||||
});
|
});
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
@@ -89,10 +131,7 @@ export function carDataList(vehiclesData: IVehiclesData | undefined) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function totalWeight(stockList: IStock[]) {
|
export function totalWeight(stockList: IStock[]) {
|
||||||
return stockList.reduce(
|
return stockList.reduce((acc, stock) => acc + (stock.vehicleRef.weight + (stock.cargo?.weight ?? 0)), 0);
|
||||||
(acc, stock) => acc + (stock.vehicleRef.weight + (stock.cargo?.weight ?? 0)),
|
|
||||||
0
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function totalLength(stockList: IStock[]) {
|
export function totalLength(stockList: IStock[]) {
|
||||||
@@ -100,27 +139,7 @@ export function totalLength(stockList: IStock[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function maxStockSpeed(stockList: IStock[]) {
|
export function maxStockSpeed(stockList: IStock[]) {
|
||||||
const stockSpeedLimit = stockList.reduce(
|
return calculateSpeedLimit(stockList, isTrainPassenger(stockList), totalWeight(stockList));
|
||||||
(acc, stock) => (stock.vehicleRef.maxSpeed < acc || acc == 0 ? stock.vehicleRef.maxSpeed : acc),
|
|
||||||
0
|
|
||||||
);
|
|
||||||
const headingLoco =
|
|
||||||
stockList[0] && isTractionUnit(stockList[0].vehicleRef) ? stockList[0] : undefined;
|
|
||||||
|
|
||||||
if (!headingLoco) return stockSpeedLimit;
|
|
||||||
|
|
||||||
const locoType = headingLoco.vehicleRef.type.split('-')[0];
|
|
||||||
|
|
||||||
if (/^(EN|2EN|SN)/.test(locoType)) return stockSpeedLimit;
|
|
||||||
|
|
||||||
const speedLimitByMass = calculateSpeedLimit(
|
|
||||||
locoType as SpeedLimitLocoType,
|
|
||||||
totalWeight(stockList),
|
|
||||||
stockList.length,
|
|
||||||
isTrainPassenger(stockList)
|
|
||||||
);
|
|
||||||
|
|
||||||
return speedLimitByMass ? Math.min(stockSpeedLimit, speedLimitByMass) : stockSpeedLimit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function acceptableWeight(stockList: IStock[]) {
|
export function acceptableWeight(stockList: IStock[]) {
|
||||||
@@ -128,10 +147,7 @@ export function acceptableWeight(stockList: IStock[]) {
|
|||||||
|
|
||||||
const activeLocomotiveType = stockList[0].vehicleRef.type.split('-')[0];
|
const activeLocomotiveType = stockList[0].vehicleRef.type.split('-')[0];
|
||||||
|
|
||||||
const locoMassLimit = calculateMassLimit(
|
const locoMassLimit = calculateMassLimit(activeLocomotiveType as MassLimitLocoType, isTrainPassenger(stockList));
|
||||||
activeLocomotiveType as MassLimitLocoType,
|
|
||||||
isTrainPassenger(stockList)
|
|
||||||
);
|
|
||||||
|
|
||||||
return locoMassLimit;
|
return locoMassLimit;
|
||||||
}
|
}
|
||||||
@@ -140,7 +156,29 @@ export function isTrainPassenger(stockList: IStock[]) {
|
|||||||
if (stockList.length == 0) return false;
|
if (stockList.length == 0) return false;
|
||||||
if (stockList.every((stock) => isTractionUnit(stock.vehicleRef))) return false;
|
if (stockList.every((stock) => isTractionUnit(stock.vehicleRef))) return false;
|
||||||
|
|
||||||
return stockList
|
return stockList.filter((stock) => !isTractionUnit(stock.vehicleRef)).every((stock) => stock.vehicleRef.group === 'wagon-passenger');
|
||||||
.filter((stock) => !isTractionUnit(stock.vehicleRef))
|
}
|
||||||
.every((stock) => stock.vehicleRef.group === 'wagon-passenger');
|
|
||||||
|
export function stockSupportsColdStart(stockList: IStock[]) {
|
||||||
|
return stockList.length == 1 && isTractionUnit(stockList[0].vehicleRef) && stockList[0].vehicleRef.coldStart;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function stockSupportsDoubleManning(stockList: IStock[]) {
|
||||||
|
return stockList.length != 0 && isTractionUnit(stockList[0].vehicleRef) && stockList[0].vehicleRef.doubleManned;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getCargoWarnings(stockList: IStock[]) {
|
||||||
|
let warnings: Set<string> = new Set();
|
||||||
|
|
||||||
|
stockList.forEach((stockVehicle) => {
|
||||||
|
if (stockVehicle.vehicleRef.group != 'wagon-freight') return;
|
||||||
|
|
||||||
|
if (stockVehicle.cargo && stockVehicle.cargo.id.startsWith('wt_20')) warnings.add('warning_wt_20_pn');
|
||||||
|
else if (stockVehicle.vehicleRef.type.startsWith('WB117')) warnings.add(stockVehicle.cargo ? 'warning_un1965_twr' : 'warning_un1965_tn');
|
||||||
|
else if (stockVehicle.vehicleRef.type.startsWith('445Rb')) warnings.add('warning_un1202_tn');
|
||||||
|
else if (stockVehicle.vehicleRef.type.startsWith('EDK80')) warnings.add('warning_edk80_pn');
|
||||||
|
else if (stockVehicle.cargo && /^(tank|vehicles_01|truck)/.test(stockVehicle.cargo.id)) warnings.add('warning_military_pn');
|
||||||
|
});
|
||||||
|
|
||||||
|
return warnings;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,13 +25,22 @@ export default defineComponent({
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.app-container {
|
@use '../styles/responsive';
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
min-height: 100vh;
|
.app-container {
|
||||||
padding: 0.5em;
|
display: grid;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
grid-template-rows: minmax(900px, 1fr) auto;
|
||||||
|
gap: 0.5em;
|
||||||
|
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include responsive.midScreen {
|
||||||
|
.app-container {
|
||||||
|
height: auto;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -2,49 +2,38 @@ import { defineConfig } from 'vite';
|
|||||||
import vue from '@vitejs/plugin-vue';
|
import vue from '@vitejs/plugin-vue';
|
||||||
|
|
||||||
import { VitePWA } from 'vite-plugin-pwa';
|
import { VitePWA } from 'vite-plugin-pwa';
|
||||||
|
import path from 'path';
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
server: {
|
server: { port: 2138 },
|
||||||
port: 2138,
|
preview: { port: 4138 },
|
||||||
|
css: {
|
||||||
|
preprocessorOptions: {
|
||||||
|
scss: { silenceDeprecations: ['legacy-js-api'] },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@': path.resolve(__dirname, 'src'),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
vue(),
|
vue(),
|
||||||
VitePWA({
|
VitePWA({
|
||||||
registerType: 'autoUpdate',
|
registerType: 'autoUpdate',
|
||||||
|
|
||||||
includeAssets: ['/images/*.{png,svg,jpg}', '/fonts/*.{woff,woff2,ttf}'],
|
devOptions: { suppressWarnings: true, enabled: true },
|
||||||
|
|
||||||
devOptions: {
|
|
||||||
suppressWarnings: true,
|
|
||||||
enabled: true,
|
|
||||||
},
|
|
||||||
|
|
||||||
workbox: {
|
workbox: {
|
||||||
globPatterns: ['**/*.{js,css,html,jpg,png,svg,img,woff,woff2}'],
|
cleanupOutdatedCaches: true,
|
||||||
|
globPatterns: ['**/*.{js,css,html,ico,woff,woff2,ttf}', '**/*.{png,jpg,jpeg,svg,webp,gif}'],
|
||||||
|
|
||||||
runtimeCaching: [
|
runtimeCaching: [
|
||||||
{
|
{
|
||||||
urlPattern: new RegExp('^https://rj.td2.info.pl/dist/img/thumbnails/*', 'i'),
|
urlPattern: /^https:\/\/.*\.spythere\.eu\/.*/i,
|
||||||
handler: 'CacheFirst',
|
|
||||||
options: {
|
|
||||||
cacheName: 'swdr-images-cache',
|
|
||||||
expiration: {
|
|
||||||
maxEntries: 50,
|
|
||||||
maxAgeSeconds: 60 * 60 * 24, // <== 1 day
|
|
||||||
},
|
|
||||||
cacheableResponse: {
|
|
||||||
statuses: [200],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
urlPattern: new RegExp('^https://stacjownik.spythere.eu/vehicles', 'i'),
|
|
||||||
handler: 'NetworkFirst',
|
handler: 'NetworkFirst',
|
||||||
options: {
|
options: { cacheName: 'spythere-cache' },
|
||||||
cacheName: 'vehicles-cache',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||