Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AMP-2880 #507

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ module.exports = {
},
"plugins": [
"vue",
"react"
// "react"
],
"rules": {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"no-unused-vars": "off",
"vue/no-unused-components": "off",
"no-mixed-spaces-and-tabs": "off",
'vue/multi-word-component-names': 'off',
"vue/no-mutating-props": 'off'
}
};
36,370 changes: 20,142 additions & 16,228 deletions package-lock.json

Large diffs are not rendered by default.

61 changes: 28 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,29 @@
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"postinstall": "cd node_modules/@bbc/react-transcript-editor && npm i && npm run build:component",
"start": "vue-cli-service serve --open",
"stop": "pkill --signal SIGINT amppd-ui"
},
"dependencies": {
"@bbc/react-transcript-editor": "https://github.com/AudiovisualMetadataPlatform/react-transcript-editor.git",
"@vue/cli": "^4.5.15",
"@vue/cli": "^5.0.8",
"@vuejs-community/vue-filter-date-format": "^1.6.3",
"axios": "^0.27.2",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.22.0",
"chart.js": "^3.9.1",
"core-js": "^3.22.5",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-react": "^7.29.4",
"mediaelement": "^5.0.5",
"moment": "^2.29.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sass-loader": "^8.0.2",
"underscore": "^1.13.3",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"bootstrap-vue": "^2.23.1",
"chart.js": "^4.4.2",
"core-js": "^3.37.0",
"eslint-config-standard": "^17.1.0",
"eslint-webpack-plugin": "^4.1.0",
"mediaelement": "^7.0.3",
"moment": "^2.30.1",
"sass-loader": "^14.2.1",
"underscore": "^1.13.6",
"vue": "^2.6.14",
"vue-axios": "^2.1.5",
"vue-axios": "^3.5.2",
"vue-bootstrap-typeahead": "^0.2.6",
"vue-click-outside": "^1.1.0",
"vue-mediaelement": "^1.0.0",
"vue-router": "^3.5.3",
"vue-router": "^3.6.5",
"vuejs-datatable": "^2.0.0-alpha.7",
"vuejs-datepicker": "^1.6.2",
"vuera": "^0.2.7",
Expand All @@ -43,21 +38,21 @@
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.17",
"@vue/cli-plugin-eslint": "^4.5.17",
"@vue/cli-plugin-router": "^4.5.17",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-plugin-vuex": "^4.5.17",
"@vue/cli-service": "^4.5.17",
"@vue/eslint-config-prettier": "^5.1.0",
"@vue/test-utils": "^1.3.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.5",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^5.0.0",
"node-sass": "^4.14.1",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.6.14"
"eslint": "^8.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"node-sass": "^9.0.0",
"prettier": "^3.2.5",
"vue-template-compiler": "^2.7.16"
},
"eslintConfig": {
"root": true,
Expand Down
5 changes: 4 additions & 1 deletion public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,9 @@ a:hover {
fill: #F4871E; }

.filter-btns .dropdown {
margin: 0.25rem 0.5rem; }
margin: 0.25rem 0.5rem;
height: fit-content;
}

#myTable {
font-size: .8em; }
Expand Down Expand Up @@ -714,6 +716,7 @@ svg.icon-user {
border: 4px solid #F4871E;
transition: all 0.5s ease;
height:64px;
width: auto;
}
#help a:link {
color: #153c4d;
Expand Down
5 changes: 4 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="container col-12 dataTables_wrapper">
<div class="container-fluid dataTables_wrapper">
<div class="row">
<Sidebar />

Expand Down Expand Up @@ -59,3 +59,6 @@ export default {
},
};
</script>
<style lang="css">
@import './styles/style.css';
</style>
Binary file added src/assets/home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/components/account/ApproveUser.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="col-12">
<!-- <Header/> -->
<!-- <AmpHeader/> -->
<main>
<div class="container">
<h1 class="text-center">Welcome to the Audiovisual Metadata Platform</h1>
Expand Down Expand Up @@ -46,12 +46,12 @@
</template>

<script>
import Header from "@/components/shared/Header.vue";
import AmpHeader from "@/components/shared/AmpHeader.vue";
import { accountService } from "@/service/account-service";
export default {
name: "ApproveUser",
components: {
Header,
AmpHeader,
},
data: function () {
return {
Expand Down Expand Up @@ -138,7 +138,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.form-errors {
color: red;
margin: 0% !important;
Expand Down
8 changes: 4 additions & 4 deletions src/components/account/ForgotPassword.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="col-12">
<!-- <Header/> -->
<!-- <AmpHeader/> -->
<main>
<div class="container">
<h1 class="text-center">
Expand Down Expand Up @@ -59,12 +59,12 @@
</template>

<script>
import Header from "@/components/shared/Header.vue";
import AmpHeader from "@/components/shared/AmpHeader.vue";
import { accountService } from "@/service/account-service";
export default {
name: "ForgotPassword",
components: {
Header,
AmpHeader,
},
data() {
return {
Expand Down Expand Up @@ -135,7 +135,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.form-errors {
color: red;
margin: 0% !important;
Expand Down
8 changes: 4 additions & 4 deletions src/components/account/Login.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="col-12">
<!-- <Header/> -->
<!-- <AmpHeader/> -->
<main>
<div class="container">
<h1 class="text-center">
Expand Down Expand Up @@ -75,7 +75,7 @@
</template>

<script>
import Header from "@/components/shared/Header.vue";
import AmpHeader from "@/components/shared/AmpHeader.vue";
import { accountService } from "@/service/account-service";
import { sync } from "vuex-pathify";
import AccessControlService from "@/service/access-control-service";
Expand All @@ -84,7 +84,7 @@ import SharedService from "@/service/shared-service";
export default {
name: "LoginComponent",
components: {
Header,
AmpHeader,
},
data() {
return {
Expand Down Expand Up @@ -190,7 +190,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.form-errors {
color: red;
margin: 0% !important;
Expand Down
8 changes: 4 additions & 4 deletions src/components/account/Register.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="col-12">
<!-- <Header/> -->
<!-- <AmpHeader/> -->
<main>
<div class="container">
<h1 class="text-center">
Expand Down Expand Up @@ -107,12 +107,12 @@
</template>

<script>
import Header from "@/components/shared/Header.vue";
import AmpHeader from "@/components/shared/AmpHeader.vue";
import { accountService } from "@/service/account-service";
export default {
name: "RegisterComponent",
components: {
Header,
AmpHeader,
},
data: function() {
return {
Expand Down Expand Up @@ -222,7 +222,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.form-errors {
color: red;
margin: 0% !important;
Expand Down
8 changes: 4 additions & 4 deletions src/components/account/ResetPassword.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="col-12">
<!-- <Header/> -->
<!-- <AmpHeader/> -->
<main>
<div class="container">
<h1 class="text-center">
Expand Down Expand Up @@ -78,12 +78,12 @@
</template>

<script>
import Header from "@/components/shared/Header.vue";
import AmpHeader from "@/components/shared/AmpHeader.vue";
import { accountService } from "@/service/account-service";
export default {
name: "ResetPasswordForm",
components: {
Header,
AmpHeader,
},
data() {
return {
Expand Down Expand Up @@ -179,7 +179,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.form-errors {
color: red;
margin: 0% !important;
Expand Down
4 changes: 2 additions & 2 deletions src/components/batch/BatchIngest.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="batch-ingest w-100">
<loader :show="inProgress" />
<div class="container col-12">
<div class="container-fluid">
<div class="row expand-h">
<!-- <Sidebar/> -->
<div class="col-12 bg-light-gray-1">
Expand Down Expand Up @@ -307,7 +307,7 @@ export default {
</script>

<style lang="css">
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
.main-margin-min {
margin: 0.5em !important;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/collections/CollectionDetails.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="collection">
<div class="container col-12">
<div class="container-fluid">
<div class="row expand-h">
<Sidebar />
<div class="col-10 bg-light-gray-1">
Expand Down Expand Up @@ -128,5 +128,5 @@ export default {
};
</script>
<style scoped>
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
</style>
2 changes: 1 addition & 1 deletion src/components/collections/CollectionDetailsItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,5 +188,5 @@ export default {
};
</script>
<style scoped>
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
</style>
4 changes: 2 additions & 2 deletions src/components/collections/Collections.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="collection dataTables_wrapper">
<div class="container col-12">
<div class="container-fluid">
<div class="row expand-h">
<Sidebar />
<div class="col-10 bg-light-gray-1">
Expand Down Expand Up @@ -151,5 +151,5 @@ export default {
</script>

<style scoped>
@import "/amppd-ui/src/styles/style.css";
@import "../../styles/style.css";
</style>
Loading
Loading