reformat code, ping dependencies so that dependabot has less work to do

Signed-off-by: MiniDigger <admin@minidigger.me>
This commit is contained in:
MiniDigger 2020-09-30 22:53:24 +02:00
parent 65510907ab
commit fa51eda0d7
51 changed files with 797 additions and 1058 deletions

View File

@ -1,15 +1,15 @@
module.exports = {
root: true,
env: {
node: true
node: true,
},
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/prettier'],
parserOptions: {
parser: 'babel-eslint'
parser: 'babel-eslint',
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-unused-vars': 'warn'
}
'no-unused-vars': 'warn',
},
};

View File

@ -1,5 +1,5 @@
module.exports = {
plugins: {
autoprefixer: true
}
autoprefixer: true,
},
};

View File

@ -1,3 +1,3 @@
module.exports = {
presets: ['@vue/cli-plugin-babel/preset']
presets: ['@vue/cli-plugin-babel/preset'],
};

View File

@ -14,43 +14,43 @@
"@fortawesome/free-brands-svg-icons": "5.15.0",
"@fortawesome/free-regular-svg-icons": "5.15.0",
"@fortawesome/free-solid-svg-icons": "5.15.0",
"axios": "^0.20.0",
"bootstrap": "^4.5.2",
"chart.js": "^2.9.3",
"clipboard": "^2.0.6",
"core-js": "^3.6.5",
"diff-match-patch": "^1.0.5",
"filesize": "^6.1.0",
"highlight.js": "^10.2.0",
"axios": "0.20.0",
"bootstrap": "4.5.2",
"chart.js": "2.9.3",
"clipboard": "2.0.6",
"core-js": "3.6.5",
"diff-match-patch": "1.0.5",
"filesize": "6.1.0",
"highlight.js": "10.2.0",
"jquery": "3.5.1",
"lodash": "4.17.20",
"lodash-es": "^4.17.15",
"moment": "^2.29.0",
"popper.js": "^1.16.1",
"lodash-es": "4.17.15",
"moment": "2.29.0",
"popper.js": "1.16.1",
"query-string": "6.13.4",
"swagger-ui": "^3.34.0",
"vue": "^3.0.0",
"webpack-jquery-ui": "^2.0.1"
"swagger-ui": "3.34.0",
"vue": "3.0.0",
"webpack-jquery-ui": "2.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"prettier": "^2.1.2",
"sass": "^1.26.5",
"sass-loader": "^10.0.2",
"stats-webpack-plugin": "^0.7.0",
"vue-cli-plugin-webpack-bundle-analyzer": "~2.0.0",
"vue-template-compiler": "^2.6.11",
"webpack-cli": "^3.3.12"
"@vue/cli-plugin-babel": "4.5.6",
"@vue/cli-plugin-eslint": "4.5.6",
"@vue/cli-service": "4.5.6",
"@vue/compiler-sfc": "3.0.0",
"@vue/eslint-config-prettier": "6.0.0",
"babel-eslint": "10.1.0",
"eslint": "7.10.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-vue": "7.0.0",
"lint-staged": "10.4.0",
"mini-css-extract-plugin": "0.11.2",
"prettier": "2.1.2",
"sass": "1.26.11",
"sass-loader": "10.0.2",
"stats-webpack-plugin": "0.7.0",
"vue-cli-plugin-webpack-bundle-analyzer": "2.0.0",
"vue-template-compiler": "2.6.12",
"webpack-cli": "3.3.12"
},
"gitHooks": {
"pre-commit": "lint-staged"

View File

@ -31,9 +31,9 @@
</div>
<div class="col-md-3">
<select class="form-control select-sort" v-model="sort" @change="resetPage">
<option v-for="(option, index) in availableOptions.sort" :key="index" :value="option.id">{{
option.name
}}</option>
<option v-for="(option, index) in availableOptions.sort" :key="index" :value="option.id">
{{ option.name }}
</option>
</select>
<div>
@ -110,57 +110,57 @@ function defaultData() {
availableOptions: {
category: Category.values,
platform: Platform.values,
sort: SortOptions
}
sort: SortOptions,
},
};
}
export default {
components: {
ProjectList
ProjectList,
},
data: defaultData,
computed: {
isDefault: function() {
isDefault: function () {
return Object.keys(clearFromDefaults(this.baseBinding, defaultData())).length === 0;
},
baseBinding: function() {
baseBinding: function () {
return {
q: this.q,
sort: this.sort,
relevance: this.relevance,
categories: this.categories,
tags: this.tags
tags: this.tags,
};
},
listBinding: function() {
listBinding: function () {
return clearFromDefaults(
Object.assign({}, this.baseBinding, {
offset: (this.page - 1) * this.limit,
limit: this.limit
limit: this.limit,
}),
defaultData()
);
},
urlBinding: function() {
urlBinding: function () {
return clearFromDefaults(Object.assign({}, this.baseBinding, { page: this.page }), defaultData());
},
queryPlaceholder: function() {
queryPlaceholder: function () {
return (
`Search in ${this.projectCount === null ? 'all' : this.projectCount} projects` +
`${!this.isDefault ? ' matching your filters' : ''}` +
', proudly made by the community...'
);
}
},
},
methods: {
reset: function() {
reset: function () {
Object.entries(defaultData()).forEach(([key, value]) => (this.$data[key] = value));
},
resetPage: function() {
resetPage: function () {
this.page = 1;
},
changeCategory: function(category) {
changeCategory: function (category) {
if (this.categories.includes(category.id)) {
this.categories.splice(this.categories.indexOf(category.id), 1);
} else if (this.categories.length + 1 === Category.values.length) {
@ -176,12 +176,12 @@ export default {
Object.entries(
queryString.parse(location.search, {
arrayFormat: 'bracket',
parseBooleans: true
parseBooleans: true,
})
)
.filter(([key]) => Object.prototype.hasOwnProperty.call(defaultData(), key))
.forEach(([key, value]) => (this.$data[key] = value));
}
},
},
created() {
this.updateData();
@ -192,7 +192,7 @@ export default {
() => [this.q, this.sort, this.relevance, this.categories, this.tags, this.page].join(),
() => {
const query = queryString.stringify(this.urlBinding, {
arrayFormat: 'bracket'
arrayFormat: 'bracket',
});
this.debouncedUpdateProps(query);
}
@ -205,10 +205,10 @@ export default {
);
},
watch: {
page: function() {
page: function () {
window.scrollTo(0, 0);
}
}
},
},
};
</script>

View File

@ -5,7 +5,7 @@
<span>Loading platforms for you...</span>
</div>
<div v-show="!loading && selectedPlatform == null">
<span v-for="platform in platforms" @click="select(platform)" style="cursor: pointer;" :key="platform.name">
<span v-for="platform in platforms" @click="select(platform)" style="cursor: pointer" :key="platform.name">
<Tag :name="platform.name" :color="platform.tag" />
</span>
</div>
@ -17,7 +17,7 @@
<Tag :name="selectedPlatform.name" :color="selectedPlatform.tag" />
<div>
<template v-for="(v, index) in selectedPlatform.possibleVersions" :key="index">
<label :for="'version-' + v" style="margin-left: 10px;">
<label :for="'version-' + v" style="margin-left: 10px">
{{ v }}
</label>
<input form="form-publish" :id="'version-' + v" type="checkbox" name="versions" :value="v" />
@ -33,22 +33,22 @@ import Tag from './components/Tag';
export default {
name: 'platform-choice',
components: {
Tag
Tag,
},
data() {
return {
platforms: [],
loading: true,
selectedPlatform: null
selectedPlatform: null,
};
},
methods: {
select: function(platform) {
select: function (platform) {
this.selectedPlatform = platform;
},
unselect: function() {
unselect: function () {
this.selectedPlatform = null;
}
},
},
created() {
const self = this;
@ -56,14 +56,14 @@ export default {
url: '/api/v1/platforms',
dataType: 'json',
complete: function() {
complete: function () {
self.loading = false;
},
success: function(platforms) {
success: function (platforms) {
self.platforms = platforms;
}
},
});
}
},
};
</script>

View File

@ -13,7 +13,7 @@
<td>{{ platform }}</td>
<td>
<div class="platform-version" v-for="(v, index) in versions" :key="index">
<span @click="removeVersion(versions, v)" style="cursor:pointer;">
<span @click="removeVersion(versions, v)" style="cursor: pointer">
<i class="fas fa-times" style="color: #bb0400"></i>
</span>
{{ v }}
@ -60,20 +60,20 @@ export default {
props: {
platforms: {
type: Object,
default: () => {}
}
default: () => {},
},
},
data() {
return {
loading: false,
changesMade: false,
data: [],
inputs: {}
inputs: {},
};
},
methods: {
addVersion(platform) {
const versions = this.data.find(o => o.platform === platform).versions;
const versions = this.data.find((o) => o.platform === platform).versions;
if (versions.indexOf(this.inputs[platform]) < 0) {
versions.push(this.inputs[platform]);
this.changesMade = true;
@ -81,14 +81,14 @@ export default {
this.inputs[platform] = '';
},
removeVersion(versions, version) {
remove(versions, v => v === version);
remove(versions, (v) => v === version);
this.changesMade = true;
},
save() {
const additions = {};
const removals = {};
for (const platform in this.platforms) {
const versions = this.data.find(o => o.platform === platform.toLowerCase()).versions;
const versions = this.data.find((o) => o.platform === platform.toLowerCase()).versions;
additions[platform] = difference(versions, this.platforms[platform]);
removals[platform] = difference(this.platforms[platform], versions);
}
@ -107,7 +107,7 @@ export default {
axios
.post('/admin/versions/', {
additions,
removals
removals,
})
.then(() => {
this.changesMade = false;
@ -115,17 +115,17 @@ export default {
.finally(() => {
this.loading = false;
});
}
},
},
created() {
for (const platform in this.platforms) {
this.inputs[platform] = '';
this.data.push({
platform: platform.toLowerCase(),
versions: [...this.platforms[platform]]
versions: [...this.platforms[platform]],
});
}
}
},
};
</script>
<style lang="scss" scoped>

View File

@ -14,14 +14,14 @@ import ProjectList from './components/ProjectList';
export default {
components: {
ProjectList
ProjectList,
},
data() {
return {
page: 1,
limit: 5,
user: window.USERNAME
user: window.USERNAME,
};
}
},
};
</script>

View File

@ -33,7 +33,7 @@
<div class="row">
<div
class="col-6 col-sm-3"
:set="(channel = version.tags.find(filterTag => filterTag.name === 'Channel'))"
:set="(channel = version.tags.find((filterTag) => filterTag.name === 'Channel'))"
>
<div class="row">
<div class="col-12">
@ -51,7 +51,7 @@
</div>
<div class="col-6 col-sm-3">
<Tag
v-for="tag in version.tags.filter(filterTag => filterTag.name !== 'Channel')"
v-for="tag in version.tags.filter((filterTag) => filterTag.name !== 'Channel')"
v-bind:key="tag.name + ':' + tag.data"
v-bind="tag"
></Tag>
@ -67,9 +67,7 @@
<span v-if="version.file_info.size_bytes">
{{ formatSize(version.file_info.size_bytes) }}
</span>
<span v-else>
(external)
</span>
<span v-else> (external) </span>
</div>
</div>
</div>
@ -112,7 +110,7 @@ import { apiV2Request } from '@/js/apiRequests';
export default {
components: {
Tag,
Pagination
Pagination,
},
data() {
return {
@ -123,13 +121,13 @@ export default {
versions: [],
totalVersions: 0,
canUpload: false,
loading: true
loading: true,
};
},
created() {
this.update();
apiV2Request('permissions', 'GET', { author: window.PROJECT_OWNER, slug: window.PROJECT_SLUG }).then(
response => {
(response) => {
this.canUpload = response.permissions.includes('create_version');
}
);
@ -145,8 +143,8 @@ export default {
update() {
apiV2Request('projects/' + this.projectOwner + '/' + this.projectSlug + '/versions', 'GET', {
limit: this.limit,
offset: this.offset
}).then(response => {
offset: this.offset,
}).then((response) => {
this.versions = response.result;
this.totalVersions = response.pagination.count;
this.loading = false;
@ -165,7 +163,7 @@ export default {
const parser = new DOMParser();
const dom = parser.parseFromString('<!doctype html><body>' + htmlEncoded, 'text/html');
return dom.body.textContent;
}
},
},
computed: {
routes() {
@ -179,8 +177,8 @@ export default {
},
total() {
return Math.ceil(this.totalVersions / this.limit);
}
}
},
},
};
</script>

View File

@ -5,7 +5,7 @@ $.ajaxSettings.traditional = true;
export class API {
static request(url, method = 'GET', data = {}) {
return this.getSession().then(session => {
return this.getSession().then((session) => {
return new Promise((resolve, reject) => {
const isFormData = data instanceof FormData;
const isBodyRequest = method === 'POST' || method === 'PUT' || method === 'PATCH';
@ -17,12 +17,12 @@ export class API {
contentType: isFormData ? false : 'application/json',
data: isBodyRequest && !isFormData ? JSON.stringify(data) : data,
processData: !(isFormData || isBodyRequest),
headers: { Authorization: 'HangarApi session="' + session + '"' }
headers: { Authorization: 'HangarApi session="' + session + '"' },
})
.done(data => {
.done((data) => {
resolve(data);
})
.fail(xhr => {
.fail((xhr) => {
if (
xhr.responseJSON &&
(xhr.responseJSON.error === 'Api session expired' ||
@ -31,10 +31,10 @@ export class API {
// This should never happen but just in case we catch it and invalidate the session to definitely get a new one
API.invalidateSession();
API.request(url, method, data)
.then(data => {
.then((data) => {
resolve(data);
})
.catch(error => {
.catch((error) => {
reject(error);
});
} else {
@ -61,9 +61,9 @@ export class API {
url: '/api/v2/authenticate/user',
method: 'POST',
dataType: 'json',
contentType: 'application/json'
contentType: 'application/json',
})
.done(data => {
.done((data) => {
if (data.type !== 'user') {
reject('Expected user session from user authentication');
} else {
@ -71,7 +71,7 @@ export class API {
resolve(data.session);
}
})
.fail(xhr => {
.fail((xhr) => {
reject(xhr.statusText);
});
} else {
@ -87,9 +87,9 @@ export class API {
url: '/api/v2/authenticate',
method: 'POST',
dataType: 'json',
contentType: 'application/json'
contentType: 'application/json',
})
.done(data => {
.done((data) => {
if (data.type !== 'public') {
reject('Expected public session from public authentication');
} else {
@ -97,7 +97,7 @@ export class API {
resolve(data.session);
}
})
.fail(xhr => {
.fail((xhr) => {
reject(xhr.statusText);
});
} else {

View File

@ -9,14 +9,14 @@ export default {
props: {
src: {
type: String,
required: true
required: true,
},
href: String,
extraClasses: String,
name: String
name: String,
},
computed: {
linkUrl: function() {
linkUrl: function () {
if (this.href != null) {
return this.href;
} else if (this.name != null) {
@ -24,7 +24,7 @@ export default {
} else {
return '#';
}
}
}
},
},
};
</script>

View File

@ -42,38 +42,38 @@ export default {
props: {
current: {
type: Number,
required: true
required: true,
},
total: {
type: Number,
required: true
}
required: true,
},
},
computed: {
hasPrevious: function() {
hasPrevious: function () {
return this.current - 1 >= 1;
},
hasNext: function() {
hasNext: function () {
return this.current + 1 <= this.total;
}
},
},
methods: {
previous: function() {
previous: function () {
if (this.hasPrevious) {
this.$emit('prev');
}
},
next: function() {
next: function () {
if (this.hasNext) {
this.$emit('next');
}
},
jump: function(page) {
jump: function (page) {
if (page > 0 <= this.total) {
this.$emit('jump-to', page);
}
}
}
},
},
};
</script>

View File

@ -128,47 +128,47 @@ export default {
components: {
Tag,
Pagination,
Icon
Icon,
},
emits: ['jump-to-page', 'next-page', 'prev-page', 'update:projectCount'],
props: {
q: String,
categories: {
type: Array
type: Array,
},
tags: Array,
owner: String,
sort: String,
relevance: {
type: Boolean,
default: true
default: true,
},
limit: {
type: Number,
default: 25
default: 25,
},
offset: {
type: Number,
default: 0
}
default: 0,
},
},
data() {
return {
projects: [],
totalProjects: 0,
loading: true
loading: true,
};
},
computed: {
current: function() {
current: function () {
return Math.ceil(this.offset / this.limit) + 1;
},
total: function() {
total: function () {
return Math.ceil(this.totalProjects / this.limit);
},
routes: function() {
routes: function () {
return window.jsRoutes.controllers.project;
}
},
},
created() {
this.update();
@ -183,7 +183,7 @@ export default {
this.sort,
this.relevance,
this.limit,
this.offset
this.offset,
].join(),
() => {
this.debouncedUpdateProps();
@ -192,7 +192,7 @@ export default {
},
methods: {
update() {
API.request('projects', 'GET', clearFromEmpty(this.$props)).then(response => {
API.request('projects', 'GET', clearFromEmpty(this.$props)).then((response) => {
this.projects = response.result;
this.totalProjects = response.pagination.count;
this.loading = false;
@ -208,17 +208,17 @@ export default {
tagsFromPromoted(promotedVersions) {
let tagsArray = [];
promotedVersions
.map(version => version.tags)
.forEach(tags => (tagsArray = tags.filter(tag => Platform.isPlatformTag(tag)).concat(tagsArray)));
.map((version) => version.tags)
.forEach((tags) => (tagsArray = tags.filter((tag) => Platform.isPlatformTag(tag)).concat(tagsArray)));
const reducedTags = [];
Platform.values.forEach(platform => {
Platform.values.forEach((platform) => {
let versions = [];
tagsArray
.filter(tag => tag.name === platform.id)
.filter((tag) => tag.name === platform.id)
.reverse()
.forEach(tag => {
.forEach((tag) => {
versions.push(tag.display_data || tag.data);
});
@ -226,7 +226,7 @@ export default {
reducedTags.push({
name: platform.id,
versions: versions,
color: platform.color
color: platform.color,
});
}
});
@ -235,8 +235,8 @@ export default {
},
formatStats(number) {
return numberWithCommas(number);
}
}
},
},
};
</script>

View File

@ -16,9 +16,9 @@ export default {
presets: [SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset],
plugins: [SwaggerUIBundle.plugins.DownloadUrl],
layout: 'BaseLayout',
requestInterceptor: req => {
requestInterceptor: (req) => {
if (!req.loadSpec) {
const promise = getApiSession().then(session => {
const promise = getApiSession().then((session) => {
req.headers.authorization = 'HangarApi session=' + session;
return req;
});
@ -29,10 +29,10 @@ export default {
} else {
return req;
}
}
},
});
};
}
},
};
</script>
<style lang="scss">

View File

@ -4,7 +4,7 @@
v-bind:style="{
color: color.foreground,
background: color.background,
'border-color': color.background
'border-color': color.background,
}"
class="tag"
>
@ -19,7 +19,7 @@ export default {
props: {
name: String,
data: String,
color: Object
}
color: Object,
},
};
</script>

View File

@ -69,7 +69,7 @@ import {
faUserTag,
faUserTie,
faWindowClose,
faWrench
faWrench,
} from '@fortawesome/free-solid-svg-icons';
import {
@ -82,7 +82,7 @@ import {
faPlusSquare,
faSadTear,
faStar as farStar,
faThumbsUp as farThumbsUp
faThumbsUp as farThumbsUp,
} from '@fortawesome/free-regular-svg-icons';
config.autoAddCss = false;

View File

@ -5,5 +5,5 @@ import PlatformVersionTable from '@/PlatformVersionTable';
axios.defaults.headers.post[window.csrfInfo.headerName] = window.csrfInfo.token;
createApp(PlatformVersionTable, {
platforms: window.PLATFORMS
platforms: window.PLATFORMS,
}).mount('#platform-version-table');

View File

@ -10,12 +10,12 @@ export class Category {
{ id: 'protection', name: 'Protection', icon: 'lock' },
{ id: 'role_playing', name: 'Role Playing', icon: 'magic' },
{ id: 'world_management', name: 'World Management', icon: 'globe' },
{ id: 'misc', name: 'Miscellaneous', icon: 'asterisk' }
{ id: 'misc', name: 'Miscellaneous', icon: 'asterisk' },
];
}
static fromId(id) {
return this.values.filter(category => category.id === id)[0];
return this.values.filter((category) => category.id === id)[0];
}
}
@ -26,25 +26,25 @@ export class Platform {
id: 'Paper',
name: 'Paper Plugins',
parent: true,
color: { background: '#F7Cf0D', foreground: '#333333' }
color: { background: '#F7Cf0D', foreground: '#333333' },
},
{
id: 'Waterfall',
name: 'Waterfall Plugins',
parent: true,
color: { background: '#F7Cf0D', foreground: '#333333' }
color: { background: '#F7Cf0D', foreground: '#333333' },
},
{
id: 'Velocity',
name: 'Velocity Plugins',
parent: true,
color: { background: '#039be5', foreground: '#333333' }
}
color: { background: '#039be5', foreground: '#333333' },
},
];
}
static get keys() {
return this.values.map(platform => platform.id);
return this.values.map((platform) => platform.id);
}
static isPlatformTag(tag) {
@ -60,7 +60,7 @@ export const SortOptions = [
{ id: 'updated', name: 'Recently updated' },
{ id: 'only_relevance', name: 'Only relevance' },
{ id: 'recent_views', name: 'Recent Views' },
{ id: 'recent_downloads', name: 'Recent Downloads' }
{ id: 'recent_downloads', name: 'Recent Downloads' },
];
export class Visibility {
@ -70,11 +70,11 @@ export class Visibility {
{ name: 'new', class: 'project-new' },
{ name: 'needsChanges', class: 'striped project-needsChanges' },
{ name: 'needsApproval', class: 'striped project-needsChanges' },
{ name: 'softDelete', class: 'striped project-hidden' }
{ name: 'softDelete', class: 'striped project-hidden' },
];
}
static fromName(name) {
return this.values.filter(visibility => visibility.name === name)[0];
return this.values.filter((visibility) => visibility.name === name)[0];
}
}

View File

@ -5,7 +5,7 @@ import diff_match_patch from 'diff-match-patch';
//=====> DOCUMENT READY
$('body')
.on('click', '.data-diff', function() {
.on('click', '.data-diff', function () {
var idToDiff = $(this).attr('data-diff');
var diff = new diff_match_patch();
@ -18,7 +18,7 @@ $('body')
$('#modal-view-body').html(diff.diff_prettyHtml(textDiff).replace(/&para;/g, ''));
$('#modal-view').modal('show');
})
.on('click', '.data-view-old', function() {
.on('click', '.data-view-old', function () {
var idToShow = $(this).attr('data-view');
$('#modal-view-body').html(
@ -28,7 +28,7 @@ $('body')
);
$('#modal-view').modal('show');
})
.on('click', '.data-view-new', function() {
.on('click', '.data-view-new', function () {
var idToShow = $(this).attr('data-view');
$('#modal-view-body').html(

View File

@ -3,27 +3,19 @@ import { clearUnread, toggleSpinner } from '@/utils';
//=====> DOCUMENT READY
$(function() {
$('.btn-resolve').click(function() {
$(function () {
$('.btn-resolve').click(function () {
var listItem = $(this).closest('li');
var flagId = listItem.data('flag-id');
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.removeClass('fa-check')
);
toggleSpinner($(this).find('[data-fa-i2svg]').removeClass('fa-check'));
$.ajax({
url: '/admin/flags/' + flagId + '/resolve/true',
complete: function() {
toggleSpinner(
$('.btn-resolve')
.find('[data-fa-i2svg]')
.addClass('fa-check')
);
complete: function () {
toggleSpinner($('.btn-resolve').find('[data-fa-i2svg]').addClass('fa-check'));
},
success: function() {
$.when(listItem.fadeOut('slow')).done(function() {
success: function () {
$.when(listItem.fadeOut('slow')).done(function () {
listItem.remove();
if (!$('.list-flags-admin').find('li').length) {
resolveAll.fadeOut(); // eslint-disable-line no-undef
@ -31,7 +23,7 @@ $(function() {
clearUnread($('a[href="/admin/flags"]'));
}
});
}
},
});
});
});

View File

@ -12,8 +12,8 @@ var DELETE_KEY = window.DELETE_KEY;
//=====> HELPER FUNCTIONS
function deleteKey(name, row) {
return function() {
apiV2Request('keys?name=' + name, 'DELETE').then(function() {
return function () {
apiV2Request('keys?name=' + name, 'DELETE').then(function () {
row.remove();
});
};
@ -27,25 +27,21 @@ function showError(error) {
//=====> DOCUMENT READY
$(function() {
$('.api-key-row').each(function() {
$(function () {
$('.api-key-row').each(function () {
var row = $(this);
var name = row.find('.api-key-name').text();
row.find('.api-key-row-delete-button').click(deleteKey(name, row));
});
$('#button-create-new-key').click(function() {
$('#button-create-new-key').click(function () {
var checked = [];
$('#api-create-key-form')
.find('input[type=checkbox]')
.filter("input[id^='perm.']")
.filter(':checked')
.each(function() {
checked.push(
$(this)
.attr('id')
.substr('perm.'.length)
);
.each(function () {
checked.push($(this).attr('id').substr('perm.'.length));
});
var name = $('#keyName').val();
@ -70,10 +66,10 @@ $(function() {
var data = {
permissions: checked,
name: name
name: name,
};
apiV2Request('keys', 'POST', data).then(function(newKey) {
apiV2Request('keys', 'POST', data).then(function (newKey) {
$('#keyAlert').hide();
var namedPerms = '';
@ -86,11 +82,7 @@ $(function() {
var row = $('<tr>');
var token = newKey.key;
row.append(
$('<th>')
.addClass('api-key-name')
.text(name)
);
row.append($('<th>').addClass('api-key-name').text(name));
row.append($('<th>').text(token));
row.append($('<th>'));
row.append($('<th>').text(namedPerms));

View File

@ -3,8 +3,8 @@ import $ from 'jquery';
//=====> HELPER FUNCTIONS
export function apiV2Request(url, method = 'GET', data = {}) {
return getApiSession().then(function(session) {
return new Promise(function(resolve, reject) {
return getApiSession().then(function (session) {
return new Promise(function (resolve, reject) {
const isFormData = data instanceof FormData;
const isBodyRequest = method === 'POST' || method === 'PUT' || method === 'PATCH';
@ -15,12 +15,12 @@ export function apiV2Request(url, method = 'GET', data = {}) {
contentType: isFormData ? false : 'application/json',
data: isBodyRequest && !isFormData ? JSON.stringify(data) : data,
processData: !(isFormData || isBodyRequest),
headers: { Authorization: 'HangarApi session="' + session + '"' }
headers: { Authorization: 'HangarApi session="' + session + '"' },
})
.done(function(data) {
.done(function (data) {
resolve(data);
})
.fail(function(xhr) {
.fail(function (xhr) {
if (
xhr.responseJSON &&
(xhr.responseJSON.error === 'Api session expired' ||
@ -29,10 +29,10 @@ export function apiV2Request(url, method = 'GET', data = {}) {
// This should never happen but just in case we catch it and invalidate the session to definitely get a new one
invalidateApiSession();
apiV2Request(url, method, data)
.then(function(data) {
.then(function (data) {
resolve(data);
})
.catch(function(error) {
.catch(function (error) {
reject(error);
});
} else {
@ -44,7 +44,7 @@ export function apiV2Request(url, method = 'GET', data = {}) {
}
export function getApiSession() {
return new Promise(function(resolve, reject) {
return new Promise(function (resolve, reject) {
let session;
const date = new Date();
date.setTime(date.getTime() + 60000);
@ -56,9 +56,9 @@ export function getApiSession() {
url: '/api/v2/authenticate/user',
method: 'POST',
dataType: 'json',
contentType: 'application/json'
contentType: 'application/json',
})
.done(function(data) {
.done(function (data) {
if (data.type !== 'user') {
reject('Expected user session from user authentication');
} else {
@ -66,7 +66,7 @@ export function getApiSession() {
resolve(data.session);
}
})
.fail(function(xhr) {
.fail(function (xhr) {
reject(xhr.statusText);
});
} else {
@ -79,9 +79,9 @@ export function getApiSession() {
url: '/api/v2/authenticate',
method: 'POST',
dataType: 'json',
contentType: 'application/json'
contentType: 'application/json',
})
.done(function(data) {
.done(function (data) {
if (data.type !== 'public') {
reject('Expected public session from public authentication');
} else {
@ -89,7 +89,7 @@ export function getApiSession() {
resolve(data.session);
}
})
.fail(function(xhr) {
.fail(function (xhr) {
reject(xhr.statusText);
});
} else {

View File

@ -28,16 +28,13 @@ function getModal() {
export function initChannelDelete(toggle, channelName, versionCount) {
$(toggle).off('click');
$(toggle).click(function() {
$(toggle).click(function () {
var url = '/' + PROJECT_OWNER + '/' + PROJECT_SLUG + '/channels/' + channelName + '/delete';
var modal = $('#modal-delete');
modal
.find('.modal-footer')
.find('form')
.attr('action', url);
modal.find('.modal-footer').find('form').attr('action', url);
modal.find('.version-count').text(versionCount);
});
$('.btn[data-channel-delete]').click(function(e) {
$('.btn[data-channel-delete]').click(function (e) {
e.preventDefault();
var id = $(this).data('channel-id');
$('#form-delete-' + id)[0].submit();
@ -45,12 +42,10 @@ export function initChannelDelete(toggle, channelName, versionCount) {
}
window.initChannelDelete = initChannelDelete;
var onCustomSubmit = function(toggle, channelName, channelHex, title, submit, nonReviewed) {
var onCustomSubmit = function (toggle, channelName, channelHex, title, submit, nonReviewed) {
// Called when a channel is being edited before project creation
var publishForm = $('#form-publish');
$('#channel-name')
.text(channelName)
.css('background-color', channelHex);
$('#channel-name').text(channelName).css('background-color', channelHex);
publishForm.find('.channel-input').val(channelName);
publishForm.find('.channel-color-input').val(channelHex);
getModal().modal('hide');
@ -59,7 +54,7 @@ var onCustomSubmit = function(toggle, channelName, channelHex, title, submit, no
export function initChannelManager(toggle, channelName, channelHex, title, call, method, submit, nonReviewed) {
$(toggle).off('click'); // Unbind previous click handlers
$(toggle).click(function() {
$(toggle).click(function () {
var modal = getModal();
var preview = modal.find('.preview');
var submitInput = modal.find('input[type="submit"]');
@ -86,13 +81,13 @@ export function initChannelManager(toggle, channelName, channelHex, title, call,
if (call === null && method === null) {
// Redirect form submit to client
submitInput.off('click'); // Unbind existing click handlers
submitInput.click(function(event) {
submitInput.click(function (event) {
event.preventDefault();
submitInput.submit();
});
submitInput.off('submit'); // Unbind existing submit handlers
submitInput.submit(function(event) {
submitInput.submit(function (event) {
event.preventDefault();
var modal = getModal();
onCustomSubmit(
@ -106,10 +101,7 @@ export function initChannelManager(toggle, channelName, channelHex, title, call,
});
} else {
// Set form action
modal
.find('form')
.attr('action', call)
.attr('method', method);
modal.find('form').attr('action', call).attr('method', method);
}
});
}
@ -118,7 +110,7 @@ window.initChannelManager = initChannelManager;
function initModal() {
var modal = getModal();
// Update the preview within the popover when the name is updated
modal.find('.channel-input').on('input', function() {
modal.find('.channel-input').on('input', function () {
var val = $(this).val();
var preview = getModal().find('.preview');
var submit = getModal().find('input[type=submit]');
@ -145,24 +137,22 @@ function initColorPicker() {
container: colorPicker.attr('id'),
placement: 'right',
sanitize: false,
content: function() {
return getModal()
.find('.popover-color-picker')
.html();
}
content: function () {
return getModal().find('.popover-color-picker').html();
},
})
.on('mouseenter', function() {
.on('mouseenter', function () {
var _this = this;
$(this).popover('show');
$(this)
.siblings('.popover')
.on('mouseleave', function() {
.on('mouseleave', function () {
$(_this).popover('hide');
});
})
.on('mouseleave', function() {
.on('mouseleave', function () {
var _this = this;
setTimeout(function() {
setTimeout(function () {
if (!$('.popover:hover').length) {
$(_this).popover('hide');
}
@ -170,7 +160,7 @@ function initColorPicker() {
});
// Update colors when new color is selected
$(document).on('click', '.channel-id', function() {
$(document).on('click', '.channel-id', function () {
var color = $(this).css('color');
var modal = getModal();
modal.find('.channel-color-input').val(rgbToHex(color));
@ -180,7 +170,7 @@ function initColorPicker() {
}
//=====> DOCUMENT READY
$(function() {
$(function () {
initModal();
if (DEFAULT_HEX && CHANNEL_CREATE_ROUTE) {
initChannelManager(

View File

@ -8,8 +8,8 @@ var ICON = 'fa-eye';
//=====> DOCUMENT READY
$(function() {
$('.btn-visibility-change').click(function() {
$(function () {
$('.btn-visibility-change').click(function () {
var project = $(this).data('project');
var visibilityLevel = $(this).data('level');
var needsModal = $(this).data('modal');
@ -17,11 +17,7 @@ $(function() {
toggleSpinner(spinner.toggleClass(ICON));
console.log(needsModal);
if (needsModal) {
$('.modal-title').html(
$(this)
.text()
.trim() + ': comment'
);
$('.modal-title').html($(this).text().trim() + ': comment');
$('#modal-visibility-comment').modal('show');
$('.btn-visibility-comment-submit').data('project', project);
$('.btn-visibility-comment-submit').data('level', visibilityLevel);
@ -31,7 +27,7 @@ $(function() {
}
});
$('.btn-visibility-comment-submit').click(function() {
$('.btn-visibility-comment-submit').click(function () {
var project = $(this).data('project');
var visibilityLevel = $(this).data('level');
var spinner = $(this).find('i');
@ -46,21 +42,21 @@ $(function() {
type: 'post',
url: _url,
data: { comment: comment },
fail: function() {
fail: function () {
toggleSpinner(
$('button[data-project="' + project + '"]')
.find('[data-fa-i2svg]')
.toggleClass(ICON)
);
},
success: function() {
success: function () {
toggleSpinner(
$('button[data-project="' + project + '"]')
.find('[data-fa-i2svg]')
.toggleClass(ICON)
);
location.reload();
}
},
});
}
});

View File

@ -8,7 +8,7 @@ var PROJECT_SLUG = window.PROJECT_SLUG;
//=====> DOCUMENT READY
$(function() {
$(function () {
var form = $('#form-icon');
var btn = form.find('.btn-upload');
var url = sanitize('/' + PROJECT_OWNER + '/' + PROJECT_SLUG + '/icon');
@ -19,18 +19,14 @@ $(function() {
btn.prop('disabled', input[0].files.length === 0);
}
input.on('change', function() {
input.on('change', function () {
updateButton();
});
// Upload button
btn.click(function(e) {
btn.click(function (e) {
e.preventDefault();
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-upload')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-upload'));
$.ajax({
url: url,
type: 'post',
@ -38,42 +34,36 @@ $(function() {
cache: false,
contentType: false,
processData: false,
success: function() {
success: function () {
preview.attr('src', url + '/pending?' + performance.now());
toggleSpinner(
$('#form-icon .btn-upload')
.find('[data-fa-i2svg]')
.toggleClass('fa-upload')
);
toggleSpinner($('#form-icon .btn-upload').find('[data-fa-i2svg]').toggleClass('fa-upload'));
$('#update-icon').val('true');
input.val('');
updateButton();
$('.setting-icon').prepend('<div class="alert alert-info">Don\'t forget to save changes!</div>');
}
},
});
});
// Reset button
var reset = form.find('.btn-reset');
reset.click(function(e) {
reset.click(function (e) {
e.preventDefault();
$(this)
.text('')
.append('<i class="fas fa-spinner fa-spin"></i>');
$(this).text('').append('<i class="fas fa-spinner fa-spin"></i>');
$.ajax({
url: url + '/reset',
type: 'post',
cache: false,
contentType: 'application/json',
complete: function() {
complete: function () {
reset.empty().text('Reset');
},
success: function() {
success: function () {
preview.attr('src', url);
input.val('');
updateButton();
$('.setting-icon .alert').detach();
}
},
});
});
});

View File

@ -11,17 +11,15 @@ var KEY_TYPE_DEPLOYMENT = 0;
//=====> HELPER FUNCTIONS
function bindKeyGen(e) {
e.click(function() {
$(this)
.find('.spinner')
.toggle();
e.click(function () {
$(this).find('.spinner').toggle();
var $this = $(this);
$.ajax({
url: '/api/v1/projects/' + namespace + '/keys/new',
method: 'post',
data: { 'key-type': KEY_TYPE_DEPLOYMENT },
dataType: 'json',
success: function(key) {
success: function (key) {
console.log(key);
$('.input-key').val(key.value);
$this
@ -33,42 +31,37 @@ function bindKeyGen(e) {
bindKeyRevoke($this);
},
complete: function() {
complete: function () {
e.find('.spinner').toggle();
}
},
});
});
}
function bindKeyRevoke(e) {
e.click(function() {
$(this)
.find('.spinner')
.toggle();
e.click(function () {
$(this).find('.spinner').toggle();
var $this = $(this);
$.ajax({
url: '/api/v1/projects/' + namespace + '/keys/revoke',
method: 'post',
data: { id: $(this).data('key-id') },
success: function() {
success: function () {
$('.input-key').val('');
$this
.removeClass('btn-key-revoke btn-danger')
.addClass('btn-key-gen btn-info')
.off('click');
$this.removeClass('btn-key-revoke btn-danger').addClass('btn-key-gen btn-info').off('click');
$this.find('.text').text(keyGenText);
bindKeyGen($this);
},
complete: function() {
complete: function () {
e.find('.spinner').toggle();
}
},
});
});
}
//=====> DOCUMENT READY
$(function() {
$(function () {
bindKeyGen($('.btn-key-gen'));
bindKeyRevoke($('.btn-key-revoke'));
});

View File

@ -9,11 +9,11 @@ import 'bootstrap/js/dist/tooltip';
//=====> SETUP
const clipboardManager = new ClipboardJS('.copy-url');
clipboardManager.on('success', function() {
clipboardManager.on('success', function () {
const element = $('.btn-download')
.tooltip({ title: 'Copied!', placement: 'bottom', trigger: 'manual' })
.tooltip('show');
setTimeout(function() {
setTimeout(function () {
element.tooltip('dispose');
}, 2200);
});
@ -25,7 +25,7 @@ clipboardManager.on('success', function() {
// Initialize highlighting
hljs.initHighlightingOnLoad();
$(function() {
$(function () {
if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0) {
alert("Hangar doesn't support Internet Explorer! Please use a modern browser.");
}
@ -34,27 +34,23 @@ $(function() {
initTooltips();
$('.btn-spinner').click(function() {
$('.btn-spinner').click(function () {
const iconClass = $(this).data('icon');
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggle(iconClass)
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggle(iconClass));
});
$('.link-go-back').click(function() {
$('.link-go-back').click(function () {
window.history.back();
});
});
// Fix page anchors which were broken by the fixed top navigation
$(window).on('load', function() {
$(window).on('load', function () {
return scrollToAnchor(window.location.hash);
});
$("a[href^='#']").click(function() {
$("a[href^='#']").click(function () {
window.location.replace(window.location.toString().split('#')[0] + $(this).attr('href'));
return scrollToAnchor(this.hash);

View File

@ -5,22 +5,14 @@ import { initUserSearch } from '@/js/userSearch';
function updateIndices() {
var memberList = $('.list-members');
memberList.find('.user-new').each(function() {
$(this)
.find('input')
.attr('name', 'users');
$(this)
.find('select')
.attr('name', 'roles');
memberList.find('.user-new').each(function () {
$(this).find('input').attr('name', 'users');
$(this).find('select').attr('name', 'roles');
});
memberList.find('.user-changed').each(function() {
$(this)
.find('input')
.attr('name', 'userUps');
$(this)
.find('select')
.attr('name', 'roleUps');
memberList.find('.user-changed').each(function () {
$(this).find('input').attr('name', 'userUps');
$(this).find('select').attr('name', 'roleUps');
});
}
@ -33,7 +25,7 @@ function initMember(memberRow) {
memberRow
.find('.fa-edit')
.parent()
.click(function(event) {
.click(function (event) {
event.preventDefault();
var currentRole = getItemContainer($(this))
.find('span.minor.float-right')
@ -45,34 +37,21 @@ function initMember(memberRow) {
// Mark user as changed
var container = getItemContainer($(this)).addClass('user-changed');
var input = $('#select-role')
.clone()
.removeAttr('id')
.attr('form', 'save');
var input = $('#select-role').clone().removeAttr('id').attr('form', 'save');
input.find('option').each(function(i, el) {
if (
$(el)
.val()
.endsWith(currentRole)
) {
input.find('option').each(function (i, el) {
if ($(el).val().endsWith(currentRole)) {
$(el).attr('selected', '');
}
});
// Add input
container.find('span').replaceWith(input.show());
var username = container
.find('.username')
.text()
.trim();
var username = container.find('.username').text().trim();
container.append('<input type="hidden" form="save" value="' + username + '" />');
// Remove edit button and update input names
$(this)
.find('.fa-edit')
.parent()
.remove();
$(this).find('.fa-edit').parent().remove();
updateIndices();
});
@ -80,25 +59,20 @@ function initMember(memberRow) {
memberRow
.find('.fa-trash')
.parent()
.click(function(event) {
.click(function (event) {
event.preventDefault();
$('#modal-user-delete')
.find('input[name=username]')
.val(
getItemContainer($(this))
.find('.username')
.text()
.trim()
);
.val(getItemContainer($(this)).find('.username').text().trim());
});
}
//=====> DOCUMENT READY
$(function() {
$(function () {
initMember($('.list-members').find('.list-group-item'));
initUserSearch(function(result) {
initUserSearch(function (result) {
var alert = $('.member-error');
var message = alert.find('span');
if (!result.isSuccess) {
@ -119,23 +93,15 @@ $(function() {
}
// Build result row
var resultRow = $('#row-user')
.clone()
.removeAttr('id')
.addClass('user-new');
var resultRow = $('#row-user').clone().removeAttr('id').addClass('user-new');
resultRow
.find('.username')
.attr('href', '/' + user.username)
.text(user.username);
resultRow
.find('input')
.attr('form', 'save')
.val(user.id);
resultRow.find('input').attr('form', 'save').val(user.id);
resultRow.find('select').attr('form', 'save');
resultRow.find('svg').click(function() {
$(this)
.parent()
.remove();
resultRow.find('svg').click(function () {
$(this).parent().remove();
updateIndices();
});
@ -146,9 +112,7 @@ $(function() {
} else avatarImg.remove();
// Add result to list
$('.user-search')
.parent()
.before(resultRow);
$('.user-search').parent().before(resultRow);
updateIndices();
});

View File

@ -8,21 +8,17 @@ function updateIndices() {
// them as a list.
// hangar remove index from form attrs, spring will auto put them in lists
var rows = $('.table-members').find('tr');
rows.each(function(i) {
rows.each(function (i) {
if (i === 0 || i === rows.length - 1) return; // Skip owner and search rows
$(this)
.find('input')
.attr('name', 'users');
$(this)
.find('select')
.attr('name', 'roles');
$(this).find('input').attr('name', 'users');
$(this).find('select').attr('name', 'roles');
});
}
//=====> DOCUMENT READY
$(function() {
initUserSearch(function(result) {
$(function () {
initUserSearch(function (result) {
var alert = $('.alert-danger');
if (!result.isSuccess) {
$('.error-username').text(result.username);
@ -35,22 +31,14 @@ $(function() {
// Check if user is already defined
if (
$('input[value="' + user.id + '"]').length ||
$('.table-members')
.first('tr')
.find('strong')
.text() === user.username
$('.table-members').first('tr').find('strong').text() === user.username
) {
return;
}
// Build the result row from the template
var newRow = $('#result-row')
.clone()
.removeAttr('id');
newRow
.find('input')
.attr('form', 'form-continue')
.val(user.id);
var newRow = $('#result-row').clone().removeAttr('id');
newRow.find('input').attr('form', 'form-continue').val(user.id);
newRow.find('select').attr('form', 'form-continue');
newRow
.find('.username')
@ -65,17 +53,13 @@ $(function() {
}
// Bind cancel button
newRow.find('.user-cancel').click(function() {
$(this)
.closest('tr')
.remove();
newRow.find('.user-cancel').click(function () {
$(this).closest('tr').remove();
updateIndices();
});
// Insert the new row before the search row
$('.user-search')
.closest('tr')
.before(newRow);
$('.user-search').closest('tr').before(newRow);
updateIndices();
});

View File

@ -9,15 +9,15 @@ function markRead(notification) {
$.ajax({
type: 'post',
url: '/notifications/read/' + notification.data('id'),
complete: function() {
complete: function () {
toggleSpinner(notification.find('.btn-mark-read').addClass('btn-mark-read fa-check'));
},
success: function() {
notification.fadeOut('slow', function() {
success: function () {
notification.fadeOut('slow', function () {
notification.remove();
if ($('.notification').length === 0) $('.no-notifications').fadeIn('slow');
});
}
},
});
}
@ -28,36 +28,34 @@ function replyToInvite(invite, reply, success, error) {
type: 'post',
url: url,
success: success,
error: error
error: error,
});
}
function setupNotificationButtons() {
$('.btn-mark-all-read').click(function() {
$('.btn-mark-all-read').click(function () {
$('.btn-mark-read').click();
});
$('.btn-mark-read').click(function() {
$('.btn-mark-read').click(function () {
markRead($(this).closest('.notification'));
});
$('.notification').click(function(e) {
$('.notification').click(function (e) {
if (e.target !== this) return;
var action = $(this).data('action');
$(this)
.find('.btn-mark-read')
.click();
$(this).find('.btn-mark-read').click();
if (action !== 'none') window.location.href = action;
});
}
function setupFilters() {
$('.select-notifications').on('change', function() {
$('.select-notifications').on('change', function () {
window.location = '/notifications?notificationFilter=' + $(this).val();
});
$('.select-invites').on('change', function() {
$('.select-invites').on('change', function () {
window.location = '/notifications?inviteFilter=' + $(this).val();
});
}
@ -67,16 +65,16 @@ function setupInvites() {
loading.fadeOut('fast', after);
}
$('.btn-invite').click(function() {
$('.btn-invite').click(function () {
var btn = $(this);
var invite = btn.closest('.invite-content');
var choice = invite.find('.invite-choice');
choice.animate(
{
right: '+=200'
right: '+=200',
},
200,
function() {
function () {
choice.hide();
var loading = invite.find('.invite-loading').fadeIn('fast');
@ -86,17 +84,17 @@ function setupInvites() {
replyToInvite(
invite,
accepted ? 'accept' : 'decline',
function() {
fadeOutLoading(loading, function() {
function () {
fadeOutLoading(loading, function () {
result.fadeIn('slow');
invite.find('.invite-dismiss').fadeIn('slow');
});
},
function() {
fadeOutLoading(loading, function() {
function () {
fadeOutLoading(loading, function () {
choice.show().animate(
{
right: '5%'
right: '5%',
},
200
);
@ -107,39 +105,36 @@ function setupInvites() {
);
});
$('.btn-undo').click(function() {
$('.btn-undo').click(function () {
var invite = $(this).closest('.invite-content');
var accepted = invite.find('.invite-accepted');
invite.find('.invite-dismiss').fadeOut('slow');
accepted.fadeOut('slow', function() {
accepted.fadeOut('slow', function () {
var loading = invite.find('.invite-loading').fadeIn('fast');
replyToInvite(
invite,
'unaccept',
function() {
fadeOutLoading(loading, function() {
function () {
fadeOutLoading(loading, function () {
var choice = invite.find('.invite-choice');
choice
.css('right', '+=200')
.show()
.animate(
{
right: '5%'
},
200
);
choice.css('right', '+=200').show().animate(
{
right: '5%',
},
200
);
});
},
function() {
function () {
accepted.fadeIn('slow');
}
);
});
});
$('.dismiss').click(function() {
$('.dismiss').click(function () {
var invite = $(this).closest('.invite-content');
invite.fadeOut('slow', function() {
invite.fadeOut('slow', function () {
invite.remove();
});
});
@ -147,7 +142,7 @@ function setupInvites() {
//=====> DOCUMENT READY
$(function() {
$(function () {
var invites = $('.invite-content');
invites.css('height', invites.width());
setupNotificationButtons();

View File

@ -7,18 +7,15 @@ var MIN_NAME_LENGTH = 3;
//=====> HELPER FUNCTIONS
function resetStatus(status) {
return status
.removeClass('fa-spinner fa-spin')
.removeClass('fa-check-circle')
.removeClass('fa-times-circle');
return status.removeClass('fa-spinner fa-spin').removeClass('fa-check-circle').removeClass('fa-times-circle');
}
//=====> DOCUMENT READY
$(function() {
$(function () {
var events = 0;
$('.input-name').on('input', function() {
$('.input-name').on('input', function () {
var val = $(this).val();
var status = $('.status-org-name');
var continueBtn = $('.continue-btn').prop('disabled', true);
@ -30,16 +27,16 @@ $(function() {
$.ajax({
url: '/' + val,
statusCode: {
404: function() {
404: function () {
if (event === events) {
resetStatus($('.status-org-name')).addClass('fa-check-circle');
continueBtn.prop('disabled', false);
}
},
200: function() {
200: function () {
if (event === events) resetStatus($('.status-org-name')).addClass('fa-times-circle');
}
}
},
},
});
}
});

View File

@ -8,12 +8,12 @@ function replyToInvite(id, behalf, reply, success, error) {
type: 'post',
url: url,
success: success,
error: error
error: error,
});
}
function setupInvites() {
$('.btn-invite').click(function() {
$('.btn-invite').click(function () {
var btn = $(this);
var id = btn.attr('data-invite-id');
var behalf = btn.attr('data-invite-behalf');
@ -24,16 +24,14 @@ function setupInvites() {
id,
behalf,
accepted,
function() {
function () {
if (accepted == 'decline') {
btn.parent()
.parent()
.hide();
btn.parent().parent().hide();
} else {
btn.parent().html('<span>Joined</span>');
}
},
function() {
function () {
btn.html('Failed to update');
}
);
@ -42,6 +40,6 @@ function setupInvites() {
//=====> DOCUMENT READY
$(function() {
$(function () {
setupInvites();
});

View File

@ -7,7 +7,7 @@ var NAMESPACE = window.NAMESPACE;
//=====> HELPER FUNCTIONS
function bindExpand(e) {
e.click(function() {
e.click(function () {
var pageId = $(this).data('page-id');
var listItem = $(this).closest('.list-group-item');
var $this = $(this);
@ -15,7 +15,7 @@ function bindExpand(e) {
method: 'get',
url: '/api/v1/projects/' + NAMESPACE + '/pages?parentId=' + pageId,
dataType: 'json',
success: function(childPages) {
success: function (childPages) {
console.log(childPages);
var div = $('<div class="page-children" data-page-id="' + pageId + '"></div>');
listItem.after(div);
@ -35,13 +35,13 @@ function bindExpand(e) {
.addClass('fa-minus-square');
$this.off('click');
bindCollapse($this);
}
},
});
});
}
function bindCollapse(e) {
e.click(function() {
e.click(function () {
var pageId = $(this).data('page-id');
$('.page-children[data-page-id="' + pageId + '"]').remove();
$(this)
@ -57,7 +57,7 @@ function bindCollapse(e) {
//=====> DOCUMENT READY
$(function() {
$(function () {
bindExpand($('.page-expand'));
bindCollapse($('.page-collapse'));
});

View File

@ -4,25 +4,21 @@ import { go, KEY_ENTER, slugify } from '@/utils';
//=====> DOCUMENT READY
$(function() {
$(function () {
var modal = $('#new-page');
modal.on('shown.bs.modal', function() {
$(this)
.find('input')
.focus();
modal.on('shown.bs.modal', function () {
$(this).find('input').focus();
});
modal.find('input').keydown(function(event) {
modal.find('input').keydown(function (event) {
if (event.keyCode === KEY_ENTER) {
event.preventDefault();
$('#continue-page').click();
}
});
$('#continue-page').click(function() {
var pageName = $('#page-name')
.val()
.trim();
$('#continue-page').click(function () {
var pageName = $('#page-name').val().trim();
var url = '/' + projectOwner + '/' + projectSlug + '/pages/' + slugify(pageName) + '/edit';
var parent = $('.select-parent').find(':selected');
var parentId = null;
@ -48,19 +44,16 @@ $(function() {
data: {
'parent-id': parentId,
content: '# ' + pageName + '\n',
name: pageName
name: pageName,
},
success: function() {
success: function () {
go(url);
},
error: function(err) {
error: function (err) {
console.log(err);
console.log('error');
$('#new-page-label-error')
.show()
.delay(2000)
.fadeOut();
}
$('#new-page-label-error').show().delay(2000).fadeOut();
},
});
});
});

View File

@ -13,11 +13,7 @@ function getAlert() {
}
function clearIcon(e) {
return e
.removeClass('fa-spinner')
.removeClass('fa-spin')
.addClass('fa-pencil-alt')
.addClass('fa-upload');
return e.removeClass('fa-spinner').removeClass('fa-spin').addClass('fa-pencil-alt').addClass('fa-upload');
}
function failure(message) {
@ -32,13 +28,13 @@ function failure(message) {
bs.tooltip({
placement: 'left',
title: message
title: message,
});
// flash
function flash(amount) {
if (amount > 0) {
bs.find('[data-fa-i2svg]').fadeOut('fast', function() {
bs.find('[data-fa-i2svg]').fadeOut('fast', function () {
bs.find('[data-fa-i2svg]').fadeIn('fast', flash(amount - 1));
});
}
@ -51,11 +47,7 @@ function failurePlugin(message) {
failure(message);
var alert = getAlert();
var control = alert.find('.file-upload');
control
.find('button')
.removeClass('btn-success')
.addClass('btn-danger')
.prop('disabled', true);
control.find('button').removeClass('btn-success').addClass('btn-danger').prop('disabled', true);
clearIcon(control.find('[data-fa-i2svg]')).addClass('fa-times');
}
@ -64,28 +56,21 @@ function reset() {
alert.hide();
var control = alert.find('.file-upload');
control
.find('button')
.removeClass('btn-danger')
.addClass('btn-success')
.prop('disabled', false);
control.find('button').removeClass('btn-danger').addClass('btn-success').prop('disabled', false);
clearIcon(control.find('[data-fa-i2svg]')).addClass('fa-pencil-alt');
var bs = alert.find('.alert');
bs.removeClass('alert-danger').addClass('alert-info');
bs.find('[data-fa-i2svg]').attr('data-prefix', 'far');
if (bs.find('[data-fa-i2svg]').data('ui-tooltip')) {
bs.find('[data-fa-i2svg]')
.removeClass('fa-exclamation-circle')
.addClass('fa-file-archive')
.tooltip('dispose');
bs.find('[data-fa-i2svg]').removeClass('fa-exclamation-circle').addClass('fa-file-archive').tooltip('dispose');
}
return alert;
}
//=====> DOCUMENT READY
$(function() {
$(function () {
var platformTags = $('#upload-platform-tags');
if (platformTags.length >= 1 && platformTags.children().length === 0) {
platformTags.html(
@ -93,15 +78,13 @@ $(function() {
);
}
$('#pluginFile').on('change', function() {
$('#pluginFile').on('change', function () {
var alert = reset();
if (this.files.length === 0) {
$('#form-upload')[0].reset();
return;
}
var fileName = $(this)
.val()
.trim();
var fileName = $(this).val().trim();
var fileSize = this.files[0].size;
if (!fileName) {
alert.fadeOut(1000);
@ -135,10 +118,7 @@ $(function() {
icon.addClass('fa-upload');
var newTitle = 'Upload plugin';
button
.tooltip('hide')
.data('original-title', newTitle)
.tooltip();
button.tooltip('hide').data('original-title', newTitle).tooltip();
}
});
});

View File

@ -6,13 +6,13 @@ import { toggleSpinner } from '@/utils';
function tooltip(selector, title) {
$(selector).tooltip({
placement: 'right',
title: title
title: title,
});
}
function success(selector, then) {
// Simulate loading :P
setTimeout(function() {
setTimeout(function () {
toggleSpinner($(selector));
$(selector).addClass('fa-check-circle');
then();
@ -30,16 +30,16 @@ function checkId(name, owner, slug) {
$.ajax({
url: '/api/v1/projects/' + owner + '/' + slug,
statusCode: {
404: function() {
success('.id-status', function() {
404: function () {
success('.id-status', function () {
checkName(name, true, owner, slug);
});
},
200: function() {
200: function () {
failed('.id-status', 'That plugin ID is not available!');
checkName(name, false, owner, slug);
}
}
},
},
});
}
@ -53,23 +53,21 @@ function checkName(name, idSuccess, owner, slug) {
$.ajax({
url: '/' + owner + '/' + slug,
statusCode: {
404: function() {
success('.name-status', function() {
404: function () {
success('.name-status', function () {
updateContinueButton(idSuccess, true);
});
},
200: function() {
200: function () {
failed('.name-status', 'You already have a project of this name!');
updateContinueButton(idSuccess, false);
}
}
},
},
});
}
function updateContinueButton(idSuccess, nameSuccess) {
var btn = $('.continue-btn')
.hide()
.removeClass('btn-default');
var btn = $('.continue-btn').hide().removeClass('btn-default');
var icon = toggleSpinner(btn.find('[data-fa-i2svg]'));
if (idSuccess && nameSuccess) {
btn.addClass('btn-primary').prop('disabled', false);

View File

@ -16,22 +16,20 @@ const ACTIVE_NAV = window.ACTIVE_NAV;
function initFlagList() {
var flagList = $('.list-flags');
if (!flagList.length) return;
flagList.find('li').click(function() {
flagList.find('li').click(function () {
flagList.find(':checked').removeAttr('checked');
$(this)
.find('input')
.prop('checked', true);
$(this).find('input').prop('checked', true);
});
}
function animateEditBtn(e, marginLeft, andThen) {
e.animate({ marginLeft: marginLeft }, 100, function() {
e.animate({ marginLeft: marginLeft }, 100, function () {
if (andThen) andThen();
});
}
function showEditBtn(e, andThen) {
animateEditBtn(e, '-34px', function() {
animateEditBtn(e, '-34px', function () {
e.css('z-index', '1000');
if (andThen) andThen();
});
@ -54,42 +52,32 @@ function initBtnEdit() {
// highlight with textarea
var editText = $('.page-edit').find('textarea');
editText
.focus(function() {
.focus(function () {
btnEdit
.css('border-color', '#66afe9')
.css('border-right', '1px solid white')
.css('box-shadow', 'inset 0 1px 1px rgba(0,0,0,.075), -3px 0 8px rgba(102, 175, 233, 0.6)');
otherBtns.find('.btn').css('border-right-color', '#66afe9');
})
.blur(function() {
$('.btn-page')
.css('border', '1px solid #ccc')
.css('box-shadow', 'none');
.blur(function () {
$('.btn-page').css('border', '1px solid #ccc').css('box-shadow', 'none');
$('button.open').css('border-right', 'white');
});
// handle button clicks
pageBtns.click(function() {
pageBtns.click(function () {
if ($(this).hasClass('open')) return;
// toggle button
$('button.open')
.removeClass('open')
.css('border', '1px solid #ccc');
$(this)
.addClass('open')
.css('border-right-color', 'white');
$('button.open').removeClass('open').css('border', '1px solid #ccc');
$(this).addClass('open').css('border-right-color', 'white');
var editor = $('.page-edit');
if ($(this).hasClass('btn-edit')) {
editing = true;
previewing = false;
$(this)
.css('position', 'absolute')
.css('top', '');
$(otherBtns)
.css('position', 'absolute')
.css('top', '');
$(this).css('position', 'absolute').css('top', '');
$(otherBtns).css('position', 'absolute').css('top', '');
// open editor
var content = $('.page-rendered');
@ -98,9 +86,9 @@ function initBtnEdit() {
editor.show();
// show buttons
showEditBtn($('.btn-preview-container'), function() {
showEditBtn($('.btn-save-container'), function() {
showEditBtn($('.btn-cancel-container'), function() {
showEditBtn($('.btn-preview-container'), function () {
showEditBtn($('.btn-save-container'), function () {
showEditBtn($('.btn-cancel-container'), function () {
showEditBtn($('.btn-delete-container'));
});
});
@ -111,11 +99,7 @@ function initBtnEdit() {
var raw = editor.find('textarea').val();
editor.hide();
preview.show();
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-eye')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-eye'));
$.ajax({
type: 'post',
@ -123,31 +107,23 @@ function initBtnEdit() {
data: JSON.stringify({ raw: raw }),
contentType: 'application/json',
dataType: 'html',
complete: function() {
toggleSpinner(
$('.btn-preview')
.find('[data-fa-i2svg]')
.toggleClass('fa-eye')
);
complete: function () {
toggleSpinner($('.btn-preview').find('[data-fa-i2svg]').toggleClass('fa-eye'));
},
success: function(cooked) {
success: function (cooked) {
preview.html(cooked);
}
},
});
editing = false;
previewing = true;
} else if ($(this).hasClass('btn-save')) {
// add spinner
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-save')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-save'));
}
});
$('.btn-cancel').click(function() {
$('.btn-cancel').click(function () {
editing = false;
previewing = false;
@ -160,8 +136,8 @@ function initBtnEdit() {
$('.btn-edit-container').css('z-index', '-1000');
// hide buttons
var fromSave = function() {
hideEditBtn($('.btn-save-container'), function() {
var fromSave = function () {
hideEditBtn($('.btn-save-container'), function () {
hideEditBtn($('.btn-preview-container'));
});
};
@ -169,7 +145,7 @@ function initBtnEdit() {
var btnDelete = $('.btn-delete-container');
var btnCancel = $('.btn-cancel-container');
if (btnDelete.length) {
hideEditBtn(btnDelete, function() {
hideEditBtn(btnDelete, function () {
hideEditBtn(btnCancel, fromSave);
});
} else {
@ -178,7 +154,7 @@ function initBtnEdit() {
});
// move with scroll
$(window).scroll(function() {
$(window).scroll(function () {
var scrollTop = $(this).scrollTop();
var editHeight = btnEdit.height();
var page = previewing ? $('.page-preview') : $('.page-content');
@ -190,11 +166,9 @@ function initBtnEdit() {
if (scrollTop > bound && pos === 'absolute' && !editing) {
var newTop = pageTop + editHeight + 20;
btnEdit.css('position', 'fixed').css('top', newTop);
otherBtns.each(function() {
otherBtns.each(function () {
newTop += 0.5;
$(this)
.css('position', 'fixed')
.css('top', newTop);
$(this).css('position', 'fixed').css('top', newTop);
});
} else if (scrollTop < bound && pos === 'fixed') {
btnEdit.css('position', 'absolute').css('top', '');
@ -205,12 +179,10 @@ function initBtnEdit() {
//=====> DOCUMENT READY
if (ACTIVE_NAV) {
$('.nav')
.find(ACTIVE_NAV)
.addClass('active');
$('.nav').find(ACTIVE_NAV).addClass('active');
}
$(function() {
$(function () {
initFlagList();
initBtnEdit();
@ -221,15 +193,11 @@ $(function() {
// flag button alert
var flagMsg = $('.flag-msg');
if (flagMsg.length) {
flagMsg
.hide()
.fadeIn(1000)
.delay(2000)
.fadeOut(1000);
flagMsg.hide().fadeIn(1000).delay(2000).fadeOut(1000);
}
// watch button
$('.btn-watch').click(function() {
$('.btn-watch').click(function () {
var status = $(this).find('.watch-status');
var watching = $(this).hasClass('watching');
if (watching) {
@ -240,45 +208,38 @@ $(function() {
$(this).addClass('watching');
}
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-eye')
.toggleClass('fa-eye-slash');
$(this).find('[data-fa-i2svg]').toggleClass('fa-eye').toggleClass('fa-eye-slash');
$.ajax({
type: 'post',
url: decodeHtml('/' + PROJECT_OWNER + '/' + PROJECT_SLUG) + '/watchers/' + !watching
url: decodeHtml('/' + PROJECT_OWNER + '/' + PROJECT_SLUG) + '/watchers/' + !watching,
});
});
// setup star button
var increment = ALREADY_STARRED ? -1 : 1;
$('.btn-star').click(function() {
$('.btn-star').click(function () {
var starred = $(this).find('.starred');
starred.html(' ' + (parseInt(starred.text()) + increment).toString());
$.ajax({
type: 'post',
url: decodeHtml('/' + PROJECT_OWNER + '/' + PROJECT_SLUG) + '/stars/toggle'
url: decodeHtml('/' + PROJECT_OWNER + '/' + PROJECT_SLUG) + '/stars/toggle',
});
if (increment > 0) {
$(this)
.find('[data-fa-i2svg]')
.attr('data-prefix', 'fas');
$(this).find('[data-fa-i2svg]').attr('data-prefix', 'fas');
} else {
$(this)
.find('[data-fa-i2svg]')
.attr('data-prefix', 'far');
$(this).find('[data-fa-i2svg]').attr('data-prefix', 'far');
}
increment *= -1;
});
if (PROJECT_ID) {
apiV2Request('projects/' + PROJECT_ID).then(response => {
apiV2Request('projects/' + PROJECT_ID).then((response) => {
if (response.promoted_versions) {
let html = '';
response.promoted_versions.forEach(version => {
response.promoted_versions.forEach((version) => {
const href = window.jsRoutes.controllers.project.Versions.show(
PROJECT_OWNER,
PROJECT_SLUG,

View File

@ -1,6 +1,6 @@
//=====> DOCUMENT READY
(function() {
(function () {
var d = document.createElement('script');
d.type = 'text/javascript';
d.async = true;

View File

@ -10,14 +10,14 @@ var PROJECT_NAME = window.PROJECT_NAME;
//=====> DOCUMENT READY
$(function() {
$(function () {
var name = $('#name');
name.on('input', function() {
name.on('input', function () {
var val = $(this).val();
$('#btn-rename').prop('disabled', val.length === 0 || val === PROJECT_NAME);
});
name.keydown(function(e) {
name.keydown(function (e) {
if (e.which === KEY_RETURN) {
e.preventDefault();
$('#btn-rename').click();
@ -26,7 +26,7 @@ $(function() {
$('.dropdown-license')
.find('a')
.click(function() {
.click(function () {
var btn = $('.btn-license');
var text = $(this).text();
btn.find('.license').text(text);
@ -41,9 +41,9 @@ $(function() {
});
// Basically, hides the form value if its empty. Makes the controller simpler
$('#save').submit(function() {
$('#save').submit(function () {
$(':input[form=save]')
.filter(function() {
.filter(function () {
return !this.value;
})
.attr('disabled', true);

View File

@ -7,10 +7,10 @@ const MAX_REVIEW_TIME = window.MAX_REVIEW_TIME;
//=====> DOCUMENT READY
$(function() {
$(function () {
var momentNow = moment();
var maxDifference = MAX_REVIEW_TIME;
$('span[data-ago]').each(function() {
$('span[data-ago]').each(function () {
var momentAgo = moment($(this).data('ago'));
$(this).text($(this).data('title') + momentAgo.fromNow());
if (momentNow.diff(momentAgo) >= maxDifference) {
@ -27,33 +27,25 @@ $(function() {
}
});
$('.btn-approve').click(function() {
$('.btn-approve').click(function () {
var listItem = $(this).closest('.list-group-item');
var versionPath = listItem.data('version');
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.removeClass('fa-thumbs-up')
);
toggleSpinner($(this).find('[data-fa-i2svg]').removeClass('fa-thumbs-up'));
$.ajax({
type: 'post',
url: '/' + versionPath + '/approve',
complete: function() {
toggleSpinner(
$('.btn-approve')
.find('[data-fa-i2svg]')
.addClass('fa-thumbs-up')
);
complete: function () {
toggleSpinner($('.btn-approve').find('[data-fa-i2svg]').addClass('fa-thumbs-up'));
},
success: function() {
$.when(listItem.fadeOut('slow')).done(function() {
success: function () {
$.when(listItem.fadeOut('slow')).done(function () {
listItem.remove();
if (!$('.list-versions').find('li').length) {
$('.no-versions').fadeIn();
clearUnread($('a[href="/admin/queue"]'));
}
});
}
},
});
});
});

View File

@ -3,139 +3,112 @@ import { toggleSpinner } from '@/utils';
//=====> DOCUMENT READY
$(function() {
$('.btn-review-start').click(function() {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-terminal')
);
$(function () {
$('.btn-review-start').click(function () {
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-terminal'));
$(this).attr('disabled', 'disabled');
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/init',
complete: function() {
complete: function () {
toggleSpinner($('.btn-review-start [data-fa-i2svg]').addClass('fa-terminal'));
},
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-skip-review').click(function() {
$('.btn-skip-review').click(function () {
var btn = $(this);
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/reviewtoggle',
complete: function() {
complete: function () {
btn.html('Add to queue');
},
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-stop').click(function() {
$('.btn-review-stop').click(function () {
var modal = $('#modal-review-stop');
modal.modal().show();
modal.on('shown.bs.modal', function() {
$(this)
.find('textarea')
.focus();
modal.on('shown.bs.modal', function () {
$(this).find('textarea').focus();
});
});
$('.btn-review-stop-submit').click(function() {
var icon = toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-times-circle-o')
);
$('.btn-review-stop-submit').click(function () {
var icon = toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-times-circle-o'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/stop',
data: { content: $('.textarea-stop').val() },
complete: function() {
complete: function () {
toggleSpinner(icon.addClass('fa-times-circle-o'));
},
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-approve').click(function() {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-thumbs-up')
);
$('.btn-review-approve').click(function () {
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-thumbs-up'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/approve'
url: '/' + window.versionPath + '/reviews/approve',
});
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/approve',
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-approve-partial').click(function() {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-thumbs-up')
);
$('.btn-review-approve-partial').click(function () {
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-thumbs-up'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/approve'
url: '/' + window.versionPath + '/reviews/approve',
});
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/approvePartial',
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-takeover').click(function() {
$('.btn-review-takeover').click(function () {
var modal = $('#modal-review-takeover');
modal.modal().show();
modal.on('shown.bs.modal', function() {
$(this)
.find('textarea')
.focus();
modal.on('shown.bs.modal', function () {
$(this).find('textarea').focus();
});
});
$('.btn-review-takeover-submit').click(function() {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-clipboard')
);
$('.btn-review-takeover-submit').click(function () {
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-clipboard'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/takeover',
data: { content: $('.textarea-takeover').val() },
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-edit-message').click(function() {
var panel = $(this)
.parent()
.parent()
.parent();
$('.btn-edit-message').click(function () {
var panel = $(this).parent().parent().parent();
var text = panel.find('textarea');
text.attr('disabled', null);
$(this).hide();
@ -143,64 +116,49 @@ $(function() {
panel.find('.btn-save-message').show();
});
$('.btn-cancel-message').click(function() {
$('.btn-cancel-message').click(function () {
location.reload();
});
$('.btn-save-message').click(function() {
var panel = $(this)
.parent()
.parent()
.parent();
$('.btn-save-message').click(function () {
var panel = $(this).parent().parent().parent();
var textarea = panel.find('textarea');
textarea.attr('disabled', 'disabled');
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-save')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-save'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/edit/' + panel.data('review'),
data: { content: textarea.val() },
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-addmessage-submit').click(function() {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.removeClass('fa-clipboard')
);
$('.btn-review-addmessage-submit').click(function () {
toggleSpinner($(this).find('[data-fa-i2svg]').removeClass('fa-clipboard'));
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/addmessage',
data: { content: $('.textarea-addmessage').val() },
success: function() {
success: function () {
location.reload();
}
},
});
});
$('.btn-review-reopen').click(function() {
var icon = toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-terminal')
);
$('.btn-review-reopen').click(function () {
var icon = toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-terminal'));
$(this).attr('disabled', 'disabled');
$.ajax({
type: 'post',
url: '/' + window.versionPath + '/reviews/reopen',
complete: function() {
complete: function () {
toggleSpinner(icon.toggleClass('fa-terminal'));
},
success: function() {
success: function () {
location.reload();
}
},
});
});
});

View File

@ -3,26 +3,19 @@ import { toggleSpinner } from '@/utils';
//=====> DOCUMENT READY
$(function() {
$('.btn-note-addmessage-submit').click(function() {
var panel = $(this)
.parent()
.parent()
.parent();
$(function () {
$('.btn-note-addmessage-submit').click(function () {
var panel = $(this).parent().parent().parent();
var textarea = panel.find('textarea');
textarea.attr('disabled', 'disabled');
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-save')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-save'));
$.ajax({
type: 'post',
url: '/' + window.resourcePath + '/notes/addmessage',
data: { content: textarea.val() },
success: function() {
success: function () {
location.reload();
}
},
});
});
});

View File

@ -4,7 +4,7 @@ import Chart from 'chart.js';
//=====> DOCUMENT READY
$(function() {
$(function () {
const TIME_FRAME = window.DAYS;
var domChartReview = document.getElementById('chart-reviews');
new Chart(domChartReview, {
@ -18,22 +18,22 @@ $(function() {
backgroundColor: 'cornflowerblue',
borderColor: 'dodgerblue',
fill: false,
data: window.REVIEW_DATA
data: window.REVIEW_DATA,
},
{
label: 'Uploads',
backgroundColor: 'lightseagreen',
borderColor: 'darkseagreen',
fill: false,
data: window.UPLOAD_DATA
}
]
data: window.UPLOAD_DATA,
},
],
},
options: {
title: {
text: 'Reviews'
}
}
text: 'Reviews',
},
},
});
var domChartDownload = document.getElementById('chart-downloads');
@ -48,22 +48,22 @@ $(function() {
backgroundColor: 'cornflowerblue',
borderColor: 'dodgerblue',
fill: false,
data: window.TOTAL_DOWNLOAD_DATA
data: window.TOTAL_DOWNLOAD_DATA,
},
{
label: 'Unsafe Downloads',
backgroundColor: 'lightseagreen',
borderColor: 'darkseagreen',
fill: false,
data: window.UNSAFE_DOWNLOAD_DATA
}
]
data: window.UNSAFE_DOWNLOAD_DATA,
},
],
},
options: {
title: {
text: 'Downloads'
}
}
text: 'Downloads',
},
},
});
var domChartFlags = document.getElementById('chart-flags');
@ -78,25 +78,25 @@ $(function() {
backgroundColor: 'cornflowerblue',
borderColor: 'dodgerblue',
fill: false,
data: window.OPEN_FLAGS_DATA
data: window.OPEN_FLAGS_DATA,
},
{
label: 'Closed flags',
backgroundColor: 'lightseagreen',
borderColor: 'darkseagreen',
fill: false,
data: window.CLOSED_FLAGS_DATA
}
]
data: window.CLOSED_FLAGS_DATA,
},
],
},
options: {
title: {
text: 'Flags'
}
}
text: 'Flags',
},
},
});
$('#dateGoButton').click(function() {
$('#dateGoButton').click(function () {
var from = $('#fromDate').val();
var to = $('#toDate').val();

View File

@ -9,8 +9,8 @@ function update(thing, action, data) {
data: {
thing: thing,
action: action,
data: JSON.stringify(data)
}
data: JSON.stringify(data),
},
});
}
@ -18,7 +18,7 @@ function loadingButton(button) {
var children = button.children();
children.remove();
button.append('<i class="fa fa-spinner fa-spin"></i>');
return function() {
return function () {
button.children().remove();
button.append(children);
};
@ -26,17 +26,17 @@ function loadingButton(button) {
//=====> DOCUMENT READY
$(function() {
$(function () {
var globalRoleSelect = $('#add-global-role-select');
var globalRoleList = $('#global-roles-list');
$('#add-global-role').click(function() {
$('#add-global-role').click(function () {
var finishLoading = loadingButton($('#add-global-role'));
var selected = $('option:selected', globalRoleSelect);
update('globalRole', 'add', { role: parseInt(selected.val()) })
.done(function() {
.done(function () {
// Add role to list
var newItem = $('<div class="list-group-item"></div>');
newItem.data({ role: selected.val() });
@ -53,7 +53,7 @@ $(function() {
.always(finishLoading);
});
globalRoleList.on('click', '.global-role-delete', function(event) {
globalRoleList.on('click', '.global-role-delete', function (event) {
event.preventDefault();
var item = $(event.target).closest('.list-group-item');
@ -63,7 +63,7 @@ $(function() {
var title = item.text();
update('globalRole', 'remove', { role: role })
.done(function() {
.done(function () {
var option = $('<option></option>');
option.text(title);
option.val(role);
@ -78,19 +78,19 @@ $(function() {
var row = $(element).closest('tr');
var id = parseInt(row.data('role-id'));
var type = row.data('role-type');
return update(type, action, $.extend({ id: id }, data)).always(function() {
return update(type, action, $.extend({ id: id }, data)).always(function () {
element.disabled = false;
});
}
var roleTables = $('.role-table');
roleTables.on('change', '.select-role', function(event) {
roleTables.on('change', '.select-role', function (event) {
rowChange('setRole', { role: parseInt(event.target.value) }, event.target)
.fail(function() {
.fail(function () {
event.target.selectedIndex = event.target.defaultValue;
})
.done(function() {
.done(function () {
event.target.defaultValue = event.target.selectedIndex;
if ($('option:selected', event.target).data('refresh')) {
history.go(0);
@ -98,16 +98,16 @@ $(function() {
});
});
roleTables.find('.select-role').each(function(i, element) {
roleTables.find('.select-role').each(function (i, element) {
element.defaultValue = element.selectedIndex;
});
roleTables.on('change', '.role-accepted', function(event) {
rowChange('setAccepted', { accepted: event.target.checked }, event.target).fail(function() {
roleTables.on('change', '.role-accepted', function (event) {
rowChange('setAccepted', { accepted: event.target.checked }, event.target).fail(function () {
event.target.checked = !event.target.checked;
});
});
roleTables.on('click', '.delete-role', function(event) {
roleTables.on('click', '.delete-role', function (event) {
event.preventDefault();
var row = $(event.target).closest('tr');
rowChange('deleteRole', {}, event.target).done(row.remove);

View File

@ -7,24 +7,17 @@ const CURRENT_PAGE = window.CURRENT_PAGE || 0;
//=====> DOCUMENT READY
$(function() {
$(function () {
$('.table-users')
.find('thead')
.find('td:not(:first-child)')
.click(function() {
var sort = $(this)
.text()
.toLowerCase()
.trim();
.click(function () {
var sort = $(this).text().toLowerCase().trim();
var direction = '';
var thisObj = $(this);
if (thisObj.hasClass('user-sort')) {
// Change direction
direction = $(this)
.find('svg')
.hasClass('fa-chevron-up')
? '-'
: '';
direction = $(this).find('svg').hasClass('fa-chevron-up') ? '-' : '';
}
var start = thisObj.data('list');
var url = '/' + start + '?sort=' + direction + sort;

View File

@ -12,7 +12,7 @@ const CONTENT_PER_PAGE = 5;
var pages = {
starred: 1,
watching: 1
watching: 1,
};
//=====> HELPER FUNCTIONS
@ -29,68 +29,66 @@ function loadActions(increment, action) {
pages[action] += increment;
var offset = (pages[action] - 1) * CONTENT_PER_PAGE;
apiV2Request('users/' + USERNAME + '/' + action + '?offset=' + offset + '&limit=' + CONTENT_PER_PAGE).then(function(
result
) {
//TODO: Use pagination info
var tbody = getStarsPanel(action)
.find('.card-body')
.find('tbody');
apiV2Request('users/' + USERNAME + '/' + action + '?offset=' + offset + '&limit=' + CONTENT_PER_PAGE).then(
function (result) {
//TODO: Use pagination info
var tbody = getStarsPanel(action).find('.card-body').find('tbody');
var content = [];
var content = [];
if (result.pagination.count === 0) {
content.push($('<tr>').append($('<td>').append($("<i class='minor'>").text(NO_ACTION_MESSAGE[action]))));
} else {
for (var project of result.result) {
var link = $('<a>')
.attr('href', '/' + project.namespace.owner + '/' + project.namespace.slug)
.text(project.namespace.owner + '/')
.append($('<strong>').text(project.namespace.slug));
var versionDiv = $("<div class='float-right'>");
if (project.recommended_version) {
versionDiv.append($("<span class='minor'>").text(project.recommended_version.version));
if (result.pagination.count === 0) {
content.push(
$('<tr>').append($('<td>').append($("<i class='minor'>").text(NO_ACTION_MESSAGE[action])))
);
} else {
for (var project of result.result) {
var link = $('<a>')
.attr('href', '/' + project.namespace.owner + '/' + project.namespace.slug)
.text(project.namespace.owner + '/')
.append($('<strong>').text(project.namespace.slug));
var versionDiv = $("<div class='float-right'>");
if (project.recommended_version) {
versionDiv.append($("<span class='minor'>").text(project.recommended_version.version));
}
var versionIcon = $('<i>');
versionIcon.attr('title', CATEGORY_TITLE[project.category]);
versionIcon.addClass('fas fa-fw').addClass(CATEGORY_ICON[project.category]);
versionDiv.append(versionIcon);
content.push($('<tr>').append($('<td>').append(link, versionDiv)));
}
}
var versionIcon = $('<i>');
versionIcon.attr('title', CATEGORY_TITLE[project.category]);
versionIcon.addClass('fas fa-fw').addClass(CATEGORY_ICON[project.category]);
versionDiv.append(versionIcon);
// Done loading, set the table to the result
tbody.empty();
tbody.append(content);
var footer = getStarsFooter(action);
var prev = footer.find('.prev');
content.push($('<tr>').append($('<td>').append(link, versionDiv)));
// Check if there is a last page
if (pages[action] > 1) {
prev.show();
} else {
prev.hide();
}
// Check if there is a next page
var next = footer.find('.next');
if (result.pagination.count > pages[action] * CONTENT_PER_PAGE) {
next.show();
} else {
next.hide();
}
}
// Done loading, set the table to the result
tbody.empty();
tbody.append(content);
var footer = getStarsFooter(action);
var prev = footer.find('.prev');
// Check if there is a last page
if (pages[action] > 1) {
prev.show();
} else {
prev.hide();
}
// Check if there is a next page
var next = footer.find('.next');
if (result.pagination.count > pages[action] * CONTENT_PER_PAGE) {
next.show();
} else {
next.hide();
}
});
);
}
function formAsync(form, route, onSuccess) {
form.submit(function(e) {
form.submit(function (e) {
e.preventDefault();
var formData = new FormData(this);
var spinner = $(this)
.find('.fa-spinner')
.show();
var spinner = $(this).find('.fa-spinner').show();
$.ajax({
url: route,
data: formData,
@ -99,34 +97,30 @@ function formAsync(form, route, onSuccess) {
processData: false,
type: 'post',
dataType: 'json',
complete: function() {
complete: function () {
spinner.hide();
},
success: onSuccess
success: onSuccess,
});
});
}
function setupAvatarForm() {
$('.btn-got-it').click(function() {
$('.btn-got-it').click(function () {
var prompt = $(this).closest('.prompt');
$.ajax({
type: 'post',
url: 'prompts/read/' + prompt.data('prompt-id')
url: 'prompts/read/' + prompt.data('prompt-id'),
});
prompt.fadeOut('fast');
});
$('.organization-avatar').hover(
function() {
function () {
$('.edit-avatar').fadeIn('fast');
},
function(e) {
if (
!$(e.relatedTarget)
.closest('div')
.hasClass('edit-avatar')
) {
function (e) {
if (!$(e.relatedTarget).closest('div').hasClass('edit-avatar')) {
$('.edit-avatar').fadeOut('fast');
}
}
@ -136,11 +130,11 @@ function setupAvatarForm() {
avatarModal.find('.alert').hide();
var avatarForm = avatarModal.find('#form-avatar');
avatarForm.find('input[name="avatar-method"]').change(function() {
avatarForm.find('input[name="avatar-method"]').change(function () {
avatarForm.find('input[name="avatar-file"]').prop('disabled', $(this).val() !== 'by-file');
});
formAsync(avatarForm, 'organizations/' + USERNAME + '/settings/avatar', function(json) {
formAsync(avatarForm, 'organizations/' + USERNAME + '/settings/avatar', function (json) {
if (Object.prototype.hasOwnProperty.call(json, 'errors')) {
var alert = avatarForm.find('.alert-danger');
alert.find('.error').text(json['errors'][0]);
@ -157,14 +151,14 @@ function setupAvatarForm() {
//=====> DOCUMENT READY
$(function() {
$(function () {
for (let action of ['starred', 'watching']) {
var footer = getStarsFooter(action);
loadActions(0, action);
footer.find('.next').click(function() {
footer.find('.next').click(function () {
loadActions(1, action);
});
footer.find('.prev').click(function() {
footer.find('.prev').click(function () {
loadActions(-1, action);
});
}

View File

@ -8,7 +8,7 @@ export function initUserSearch(callback) {
var input = search.find('input');
// Disable button with no input
input.on('input', function() {
input.on('input', function () {
$(this)
.next()
.find('.btn')
@ -16,53 +16,44 @@ export function initUserSearch(callback) {
});
// Catch enter key
input.on('keypress', function(event) {
input.on('keypress', function (event) {
if (event.keyCode === KEY_ENTER) {
event.preventDefault();
$(this)
.next()
.find('.btn')
.click();
$(this).next().find('.btn').click();
}
});
// Search for user
search.find('.btn-search').click(function() {
const input = $(this)
.closest('.user-search')
.find('input');
search.find('.btn-search').click(function () {
const input = $(this).closest('.user-search').find('input');
const username = input.val().trim();
if (username !== '') {
toggleSpinner(
$(this)
.find('[data-fa-i2svg]')
.toggleClass('fa-search')
);
toggleSpinner($(this).find('[data-fa-i2svg]').toggleClass('fa-search'));
$.ajax({
url: '/api/v1/users/' + username,
dataType: 'json',
complete: function() {
complete: function () {
input.val('');
toggleSpinner($('.user-search .btn-search [data-fa-i2svg]').toggleClass('fa-search'));
$('.user-search .btn-search').prop('disabled', true);
},
error: function() {
error: function () {
callback({
isSuccess: false,
username: username,
user: null
user: null,
});
},
success: function(user) {
success: function (user) {
callback({
isSuccess: true,
username: username,
user: user
user: user,
});
}
},
});
}
});

View File

@ -21,28 +21,22 @@ function getSelect() {
}
function setColorInput(val) {
getForm()
.find('.channel-color-input')
.val(val);
getForm().find('.channel-color-input').val(val);
}
//=====> DOCUMENT READY
$(function() {
setTimeout(function() {
$(function () {
setTimeout(function () {
initChannelNew(DEFAULT_COLOR);
}, 200);
getSelect().change(function() {
setColorInput(
$(this)
.find(':selected')
.data('color')
);
getSelect().change(function () {
setColorInput($(this).find(':selected').data('color'));
});
// eslint-disable-next-line no-unused-vars
var onCustomSubmit = function(
var onCustomSubmit = function (
toggle,
channelName,
channelHex,
@ -53,12 +47,8 @@ $(function() {
// Add new name to select
var select = getSelect();
var exists =
select.find('option').find(function() {
return (
$(this)
.val()
.toLowerCase() === channelName.toLowerCase()
);
select.find('option').find(function () {
return $(this).val().toLowerCase() === channelName.toLowerCase();
}).length !== 0;
if (!exists) {

View File

@ -27,16 +27,12 @@ export function parseJsonOrNull(jsonString) {
}
export function sanitize(html) {
return $('<textarea>')
.html(html)
.text();
return $('<textarea>').html(html).text();
}
export function decodeHtml(html) {
// lol
return $('<textarea>')
.html(html)
.val();
return $('<textarea>').html(html).val();
}
export function go(str) {
@ -51,15 +47,12 @@ export function clearUnread(e) {
export function initTooltips() {
$('[data-toggle="tooltip"]').tooltip({
container: 'body',
delay: { show: 500 }
delay: { show: 500 },
});
}
export function slugify(name) {
return name
.trim()
.replace(/ +/g, ' ')
.replace(/ /g, '-');
return name.trim().replace(/ +/g, ' ').replace(/ /g, '-');
}
export function toggleSpinner(e) {
@ -72,14 +65,14 @@ export function numberWithCommas(x) {
return parts.join('.');
}
export const scrollToAnchor = function(anchor) {
export const scrollToAnchor = function (anchor) {
if (anchor) {
let target = $('a' + anchor);
if (target.length) {
$('html,body').animate(
{
scrollTop: target.offset().top - ($('#topbar').height() + 10)
scrollTop: target.offset().top - ($('#topbar').height() + 10),
},
1
);

View File

@ -13,7 +13,7 @@ module.exports = {
webpackBundleAnalyzer: {
openAnalyzer: false,
// analyzerMode: "json"
}
},
},
configureWebpack: {
plugins: [new StatsPlugin('stats.json')],
@ -30,16 +30,16 @@ module.exports = {
minChunks: 2,
priority: -10,
chunks: 'initial',
reuseExistingChunk: true
}
}
reuseExistingChunk: true,
},
},
},
},
},
devServer: {
port: 8081
port: 8081,
},
chainWebpack: config => {
chainWebpack: (config) => {
// clear default
config.entryPoints.delete('app');
@ -66,7 +66,7 @@ module.exports = {
.options({
hmr: process.env.NODE_ENV === 'development',
reloadAll: true,
publicPath: '/css/'
publicPath: '/css/',
})
.end()
.use('css-loader')
@ -81,5 +81,5 @@ module.exports = {
},
outputDir: outputDir,
filenameHashing: false
filenameHashing: false,
};

View File

@ -874,7 +874,23 @@
resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-4.1.1.tgz#671b3cfdbcc40d1449036ce586e882ab6150828e"
integrity sha512-epVksusKVEpwBs2vRg3SWssxn9KXs9CxEYNOcgeSRLRjq070ABj5bLPxkmtQpVeSPCHj8kfAE9J6z2WsLr4wZg==
"@fortawesome/fontawesome-common-types@^0.2.30", "@fortawesome/fontawesome-common-types@^0.2.31":
"@eslint/eslintrc@^0.1.3":
version "0.1.3"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.1.3.tgz#7d1a2b2358552cc04834c0979bd4275362e37085"
integrity sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==
dependencies:
ajv "^6.12.4"
debug "^4.1.1"
espree "^7.3.0"
globals "^12.1.0"
ignore "^4.0.6"
import-fresh "^3.2.1"
js-yaml "^3.13.1"
lodash "^4.17.19"
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
"@fortawesome/fontawesome-common-types@^0.2.31":
version "0.2.31"
resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.31.tgz#f15a39e5ab4e5dfda0717733bcacb9580e666ad9"
integrity sha512-xfnPyH6NN5r/h1/qDYoGB0BlHSID902UkQzxR8QsoKDh55KAPr8ruAoie12WQEEQT8lRE2wtV7LoUllJ1HqCag==
@ -1139,9 +1155,9 @@
integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==
"@types/uglify-js@*":
version "3.9.3"
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.9.3.tgz#d94ed608e295bc5424c9600e6b8565407b6b4b6b"
integrity sha512-KswB5C7Kwduwjj04Ykz+AjvPcfgv/37Za24O2EDzYNbwyzOo8+ydtvzUfZ5UMguiVu29Gx44l1A6VsPPcmYu9w==
version "3.11.0"
resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.0.tgz#2868d405cc45cd9dc3069179052103032c33afbc"
integrity sha512-I0Yd8TUELTbgRHq2K65j8rnDPAzAP+DiaF/syLem7yXwYLsHZhPd+AM2iXsWmf9P2F2NlFCgl5erZPQx9IbM9Q==
dependencies:
source-map "^0.6.1"
@ -1157,9 +1173,9 @@
"@types/webpack" "*"
"@types/webpack-sources@*":
version "1.4.2"
resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.2.tgz#5d3d4dea04008a779a90135ff96fb5c0c9e6292c"
integrity sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw==
version "2.0.0"
resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.0.0.tgz#08216ab9be2be2e1499beaebc4d469cec81e82a7"
integrity sha512-a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==
dependencies:
"@types/node" "*"
"@types/source-list-map" "*"
@ -1287,7 +1303,7 @@
resolved "https://registry.yarnpkg.com/@vue/cli-overlay/-/cli-overlay-4.5.6.tgz#56544f9d3d4f74a3d8d593a497b137450ebfe171"
integrity sha512-8kFIdiErtGRlvKWJV0AcF6SXakQDxeuqqcMhWt3qIJxRH6aD33RTC37Q3KWuMsYryBZpEY3tNWGhS1d4spQu0g==
"@vue/cli-plugin-babel@~4.5.0":
"@vue/cli-plugin-babel@4.5.6":
version "4.5.6"
resolved "https://registry.yarnpkg.com/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.6.tgz#50e98221a775d926b708dab046879cc64920982a"
integrity sha512-jkeXIpvxg2Og+6igsck6qBMFwFN5poqbgDL7JEQP94DPRMAGt+AOoEz6Ultwvykd9lRDD/xLmzZ2MTeXvrpq4A==
@ -1300,7 +1316,7 @@
thread-loader "^2.1.3"
webpack "^4.0.0"
"@vue/cli-plugin-eslint@~4.5.0":
"@vue/cli-plugin-eslint@4.5.6":
version "4.5.6"
resolved "https://registry.yarnpkg.com/@vue/cli-plugin-eslint/-/cli-plugin-eslint-4.5.6.tgz#d6721bc96f797b9d978e13bd0afd39999f92caf1"
integrity sha512-maG3dy64pGVT9mMQq7KvP6kbBK6TeVgcj1aa1QwzT5yrw65E2So8bKMrEMEjy53b88bgR9jZ7gshOks00jrYsg==
@ -1324,7 +1340,7 @@
resolved "https://registry.yarnpkg.com/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.6.tgz#484687d85369b0dca065c4491bf18efff5e31ecf"
integrity sha512-cWxj0jIhhupU+oFl0mc1St3ig9iF5F01XKwAhKEbvvuHR97zHxLd29My/vvcRwojZMy4aY320oJ+0ljoCIbueQ==
"@vue/cli-service@~4.5.0":
"@vue/cli-service@4.5.6":
version "4.5.6"
resolved "https://registry.yarnpkg.com/@vue/cli-service/-/cli-service-4.5.6.tgz#a63fd390ed8cbfb5d36201f54dec9aeb90ca93e3"
integrity sha512-wl0rhjHSpy2Mc2zNU6sfhaUVNNaRzgXNfZMIpTZMO3wJalPMLuvGC3KLMaXcpvuI01zeQBmkEocAdhzay4lQ0w==
@ -1424,7 +1440,7 @@
"@vue/compiler-core" "3.0.0"
"@vue/shared" "3.0.0"
"@vue/compiler-sfc@^3.0.0":
"@vue/compiler-sfc@3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.0.tgz#efa38037984bd64aae315828aa5c1248c6eadca9"
integrity sha512-1Bn4L5jNRm6tlb79YwqYUGGe+Yc9PRoRSJi67NJX6icdhf84+tRMtESbx1zCLL9QixQXu2+7aLkXHxvh4RpqAA==
@ -1470,7 +1486,7 @@
optionalDependencies:
prettier "^1.18.2"
"@vue/eslint-config-prettier@^6.0.0":
"@vue/eslint-config-prettier@6.0.0":
version "6.0.0"
resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-6.0.0.tgz#ad5912b308f4ae468458e02a2b05db0b9d246700"
integrity sha512-wFQmv45c3ige5EA+ngijq40YpVcIkAy0Lihupnsnd1Dao5CBbPyfCzqtejFLZX1EwH/kCJdpz3t6s+5wd3+KxQ==
@ -1986,7 +2002,7 @@ aws4@^1.8.0:
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428"
integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==
axios@^0.20.0:
axios@0.20.0:
version "0.20.0"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.20.0.tgz#057ba30f04884694993a8cd07fa394cff11c50bd"
integrity sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==
@ -2002,7 +2018,7 @@ babel-code-frame@^6.26.0:
esutils "^2.0.2"
js-tokens "^3.0.2"
babel-eslint@^10.1.0:
babel-eslint@10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
@ -2160,7 +2176,7 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
bootstrap@^4.5.2:
bootstrap@4.5.2:
version "4.5.2"
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.2.tgz#a85c4eda59155f0d71186b6e6ad9b875813779ab"
integrity sha512-vlGn0bcySYl/iV+BGA544JkkZP5LB3jsmkeKLFQakCOwCM3AOk7VkldBz4jrzSe+Z0Ezn99NVXa1o45cQY4R6A==
@ -2263,12 +2279,12 @@ browserify-zlib@^0.2.0:
pako "~1.0.5"
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5:
version "4.14.4"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.4.tgz#66a18131439f9e16c3da7f352518dfa12f60b0e3"
integrity sha512-7FOuawafVdEwa5Jv4nzeik/PepAjVte6HmVGHsjt2bC237jeL9QlcTBDF3PnHEvcC6uHwLGYPwZHNZMB7wWAnw==
version "4.14.5"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015"
integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==
dependencies:
caniuse-lite "^1.0.30001135"
electron-to-chromium "^1.3.570"
electron-to-chromium "^1.3.571"
escalade "^3.1.0"
node-releases "^1.1.61"
@ -2459,9 +2475,9 @@ caniuse-api@^3.0.0:
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135:
version "1.0.30001135"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001135.tgz#995b1eb94404a3c9a0d7600c113c9bb27f2cd8aa"
integrity sha512-ziNcheTGTHlu9g34EVoHQdIu5g4foc8EsxMGC7Xkokmvw0dqNtX8BS8RgCgFBaAiSp2IdjvBxNdh0ssib28eVQ==
version "1.0.30001140"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001140.tgz#30dae27599f6ede2603a0962c82e468bca894232"
integrity sha512-xFtvBtfGrpjTOxTpjP5F2LmN04/ZGfYV8EQzUIC/RmKpdrmzJrjqlJ4ho7sGuAMPko2/Jl08h7x9uObCfBFaAA==
case-sensitive-paths-webpack-plugin@^2.3.0:
version "2.3.0"
@ -2484,7 +2500,7 @@ chalk@^1.1.3:
strip-ansi "^3.0.0"
supports-color "^2.0.0"
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@ -2529,7 +2545,7 @@ chardet@^0.7.0:
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
chart.js@^2.9.3:
chart.js@2.9.3:
version "2.9.3"
resolved "https://registry.yarnpkg.com/chart.js/-/chart.js-2.9.3.tgz#ae3884114dafd381bc600f5b35a189138aac1ef7"
integrity sha512-+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw==
@ -2687,7 +2703,7 @@ cli-width@^3.0.0:
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
clipboard@^2.0.0, clipboard@^2.0.6:
clipboard@2.0.6, clipboard@^2.0.0:
version "2.0.6"
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376"
integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg==
@ -2985,6 +3001,11 @@ core-js-pure@^3.0.0:
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813"
integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==
core-js@3.6.5, core-js@^3.6.5:
version "3.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
core-js@^1.0.0:
version "1.2.7"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
@ -2995,11 +3016,6 @@ core-js@^2.4.0, core-js@^2.6.11:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
core-js@^3.6.5:
version "3.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
core-util-is@1.0.2, core-util-is@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
@ -3093,7 +3109,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
cross-spawn@^7.0.0:
cross-spawn@^7.0.0, cross-spawn@^7.0.2:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@ -3396,7 +3412,7 @@ deep-extend@0.6.0, deep-extend@~0.6.0:
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
deep-is@~0.1.3:
deep-is@^0.1.3:
version "0.1.3"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
@ -3508,7 +3524,7 @@ detect-node@^2.0.4:
resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c"
integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==
diff-match-patch@^1.0.5:
diff-match-patch@1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.5.tgz#abb584d5f10cd1196dfc55aa03701592ae3f7b37"
integrity sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==
@ -3669,10 +3685,10 @@ ejs@^2.6.1:
resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
electron-to-chromium@^1.3.570:
version "1.3.571"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.571.tgz#e57977f1569f8326ae2a7905e26f3943536ba28f"
integrity sha512-UYEQ2Gtc50kqmyOmOVtj6Oqi38lm5yRJY3pLuWt6UIot0No1L09uu6Ja6/1XKwmz/p0eJFZTUZi+khd1PV1hHA==
electron-to-chromium@^1.3.571:
version "1.3.576"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.576.tgz#2e70234484e03d7c7e90310d7d79fd3775379c34"
integrity sha512-uSEI0XZ//5ic+0NdOqlxp0liCD44ck20OAGyLMSymIWTEAtHKVJi6JM18acOnRgUgX7Q65QqnI+sNncNvIy8ew==
elliptic@^6.5.3:
version "6.5.3"
@ -3740,7 +3756,7 @@ enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0:
memory-fs "^0.5.0"
tapable "^1.0.0"
enquirer@^2.3.6:
enquirer@^2.3.5, enquirer@^2.3.6:
version "2.3.6"
resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
@ -3796,20 +3812,20 @@ es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5:
string.prototype.trimstart "^1.0.1"
es-abstract@^1.18.0-next.0:
version "1.18.0-next.0"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.0.tgz#b302834927e624d8e5837ed48224291f2c66e6fc"
integrity sha512-elZXTZXKn51hUBdJjSZGYRujuzilgXo8vSPQzjGYXLvSlGiCo8VO8ZGV3kjo9a0WNJJ57hENagwbtlRuHuzkcQ==
version "1.18.0-next.1"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
dependencies:
es-to-primitive "^1.2.1"
function-bind "^1.1.1"
has "^1.0.3"
has-symbols "^1.0.1"
is-callable "^1.2.0"
is-callable "^1.2.2"
is-negative-zero "^2.0.0"
is-regex "^1.1.1"
object-inspect "^1.8.0"
object-keys "^1.1.1"
object.assign "^4.1.0"
object.assign "^4.1.1"
string.prototype.trimend "^1.0.1"
string.prototype.trimstart "^1.0.1"
@ -3874,9 +3890,9 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
eslint-config-prettier@^6.0.0:
version "6.11.0"
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.11.0.tgz#f6d2238c1290d01c859a8b5c1f7d352a0b0da8b1"
integrity sha512-oB8cpLWSAjOVFEJhhyMZh6NOEOtBVziaqdDQ86+qhDHFbZXoRTM7pNSvFRfW/W/L/LrQ38C99J5CGuRBBzBsdA==
version "6.12.0"
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.12.0.tgz#9eb2bccff727db1c52104f0b49e87ea46605a0d2"
integrity sha512-9jWPlFlgNwRUYVoujvWTQ1aMO8o6648r+K7qU7K5Jmkbyqav1fuEZC0COYpGBxyiAJb65Ra9hrmFx19xRGwXWw==
dependencies:
get-stdin "^6.0.0"
@ -3891,14 +3907,14 @@ eslint-loader@^2.2.1:
object-hash "^1.1.4"
rimraf "^2.6.1"
eslint-plugin-prettier@^3.1.3:
eslint-plugin-prettier@3.1.4:
version "3.1.4"
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2"
integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg==
dependencies:
prettier-linter-helpers "^1.0.0"
eslint-plugin-vue@^7.0.0:
eslint-plugin-vue@7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-7.0.0.tgz#abaf59dec3aa50228b37a89ca1239893c96c981f"
integrity sha512-SFcM8ZMdVRUQKrAryl6Q5razrJtloATUOKTZoK/8yvQig1c1L3VRoMLL9AXiV3VNsKXolkk6yeMIiqGf33/Iew==
@ -3916,7 +3932,7 @@ eslint-scope@^4.0.3:
esrecurse "^4.1.0"
estraverse "^4.1.1"
eslint-scope@^5.0.0:
eslint-scope@^5.0.0, eslint-scope@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@ -3924,13 +3940,6 @@ eslint-scope@^5.0.0:
esrecurse "^4.3.0"
estraverse "^4.1.1"
eslint-utils@^1.4.3:
version "1.4.3"
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
dependencies:
eslint-visitor-keys "^1.1.0"
eslint-utils@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
@ -3938,27 +3947,29 @@ eslint-utils@^2.1.0:
dependencies:
eslint-visitor-keys "^1.1.0"
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
eslint@^6.7.2:
version "6.8.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
eslint@7.10.0:
version "7.10.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.10.0.tgz#494edb3e4750fb791133ca379e786a8f648c72b9"
integrity sha512-BDVffmqWl7JJXqCjAK6lWtcQThZB/aP1HXSH1JKwGwv0LQEdvpR7qzNrUT487RM39B5goWuboFad5ovMBmD8yA==
dependencies:
"@babel/code-frame" "^7.0.0"
"@eslint/eslintrc" "^0.1.3"
ajv "^6.10.0"
chalk "^2.1.0"
cross-spawn "^6.0.5"
chalk "^4.0.0"
cross-spawn "^7.0.2"
debug "^4.0.1"
doctrine "^3.0.0"
eslint-scope "^5.0.0"
eslint-utils "^1.4.3"
eslint-visitor-keys "^1.1.0"
espree "^6.1.2"
esquery "^1.0.1"
enquirer "^2.3.5"
eslint-scope "^5.1.1"
eslint-utils "^2.1.0"
eslint-visitor-keys "^1.3.0"
espree "^7.3.0"
esquery "^1.2.0"
esutils "^2.0.2"
file-entry-cache "^5.0.1"
functional-red-black-tree "^1.0.1"
@ -3967,26 +3978,24 @@ eslint@^6.7.2:
ignore "^4.0.6"
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
inquirer "^7.0.0"
is-glob "^4.0.0"
js-yaml "^3.13.1"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.3.0"
lodash "^4.17.14"
levn "^0.4.1"
lodash "^4.17.19"
minimatch "^3.0.4"
mkdirp "^0.5.1"
natural-compare "^1.4.0"
optionator "^0.8.3"
optionator "^0.9.1"
progress "^2.0.0"
regexpp "^2.0.1"
semver "^6.1.2"
strip-ansi "^5.2.0"
strip-json-comments "^3.0.1"
regexpp "^3.1.0"
semver "^7.2.1"
strip-ansi "^6.0.0"
strip-json-comments "^3.1.0"
table "^5.2.3"
text-table "^0.2.0"
v8-compile-cache "^2.0.3"
espree@^6.1.2, espree@^6.2.1:
espree@^6.2.1:
version "6.2.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a"
integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==
@ -3995,12 +4004,21 @@ espree@^6.1.2, espree@^6.2.1:
acorn-jsx "^5.2.0"
eslint-visitor-keys "^1.1.0"
espree@^7.3.0:
version "7.3.0"
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
dependencies:
acorn "^7.4.0"
acorn-jsx "^5.2.0"
eslint-visitor-keys "^1.3.0"
esprima@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esquery@^1.0.1:
esquery@^1.0.1, esquery@^1.2.0:
version "1.3.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
@ -4289,7 +4307,7 @@ fast-json-stable-stringify@^2.0.0:
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
fast-levenshtein@~2.0.6:
fast-levenshtein@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
@ -4373,16 +4391,16 @@ file-uri-to-path@1.0.0:
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
filesize@6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
filesize@^3.6.1:
version "3.6.1"
resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==
filesize@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
fill-range@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
@ -4937,7 +4955,7 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
highlight.js@^10.1.1, highlight.js@^10.2.0, highlight.js@~10.2.0:
highlight.js@10.2.0, highlight.js@^10.1.1, highlight.js@~10.2.0:
version "10.2.0"
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.2.0.tgz#367151bcf813adebc54822f1cb51d2e1e599619f"
integrity sha512-OryzPiqqNCfO/wtFo619W+nPYALM6u7iCQkum4bqRmmlcTikOkmlL06i009QelynBPAlNByTQU6cBB2cOBQtCw==
@ -5282,7 +5300,7 @@ ini@^1.3.4, ini@^1.3.5:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
inquirer@^7.0.0, inquirer@^7.1.0:
inquirer@^7.1.0:
version "7.3.3"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
@ -5407,7 +5425,7 @@ is-buffer@^1.1.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
is-callable@^1.1.4, is-callable@^1.2.0:
is-callable@^1.1.4, is-callable@^1.2.0, is-callable@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
@ -5920,20 +5938,20 @@ levenary@^1.1.1:
dependencies:
leven "^3.1.0"
levn@^0.3.0, levn@~0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
levn@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
dependencies:
prelude-ls "~1.1.2"
type-check "~0.3.2"
prelude-ls "^1.2.1"
type-check "~0.4.0"
lines-and-columns@^1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
lint-staged@^10.4.0:
lint-staged@10.4.0:
version "10.4.0"
resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.4.0.tgz#d18628f737328e0bbbf87d183f4020930e9a984e"
integrity sha512-uaiX4U5yERUSiIEQc329vhCTDDwUcSvKdRLsNomkYLRzijk3v8V9GWm2Nz0RMVB87VcuzLvtgy6OsjoH++QHIg==
@ -6024,7 +6042,7 @@ locate-path@^5.0.0:
dependencies:
p-locate "^4.1.0"
lodash-es@^4.17.15, lodash-es@^4.2.1:
lodash-es@4.17.15, lodash-es@^4.2.1:
version "4.17.15"
resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.15.tgz#21bd96839354412f23d7a10340e5eac6ee455d78"
integrity sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ==
@ -6332,7 +6350,7 @@ mimic-fn@^2.1.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
mini-css-extract-plugin@^0.11.2:
mini-css-extract-plugin@0.11.2:
version "0.11.2"
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.2.tgz#e3af4d5e04fbcaaf11838ab230510073060b37bf"
integrity sha512-h2LknfX4U1kScXxH8xE9LCOqT5B+068EAj36qicMb8l4dqdJoyHcmWmpd+ueyZfgu/POvIn+teoUnTtei2ikug==
@ -6433,7 +6451,7 @@ mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1:
dependencies:
minimist "^1.2.5"
moment@^2.10.2, moment@^2.29.0:
moment@2.29.0, moment@^2.10.2:
version "2.29.0"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.0.tgz#fcbef955844d91deb55438613ddcec56e86a3425"
integrity sha512-z6IJ5HXYiuxvFTI6eiQ9dm77uE0gyy1yXNApVHqTcnIKfY9tIwEjlzsZ6u1LQXvVgKeTnv9Xm7NDvJ7lso3MtA==
@ -6734,7 +6752,7 @@ object-visit@^1.0.0:
dependencies:
isobject "^3.0.0"
object.assign@^4.1.0:
object.assign@^4.1.0, object.assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd"
integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==
@ -6826,17 +6844,17 @@ opn@^5.5.0:
dependencies:
is-wsl "^1.1.0"
optionator@^0.8.3:
version "0.8.3"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
optionator@^0.9.1:
version "0.9.1"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
dependencies:
deep-is "~0.1.3"
fast-levenshtein "~2.0.6"
levn "~0.3.0"
prelude-ls "~1.1.2"
type-check "~0.3.2"
word-wrap "~1.2.3"
deep-is "^0.1.3"
fast-levenshtein "^2.0.6"
levn "^0.4.1"
prelude-ls "^1.2.1"
type-check "^0.4.0"
word-wrap "^1.2.3"
ora@^3.4.0:
version "3.4.0"
@ -7182,7 +7200,7 @@ pnp-webpack-plugin@^1.6.4:
dependencies:
ts-pnp "^1.1.6"
popper.js@^1.16.1:
popper.js@1.16.1:
version "1.16.1"
resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b"
integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==
@ -7258,9 +7276,9 @@ postcss-discard-overridden@^4.0.1:
postcss "^7.0.0"
postcss-load-config@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.1.tgz#0a684bb8beb05e55baf922f7ab44c3edb17cf78e"
integrity sha512-D2ENobdoZsW0+BHy4x1CAkXtbXtYWYRIxL/JbtRBqrRGOPtJ2zoga/bEZWhV/ShWB5saVxJMzbMdSyA/vv4tXw==
version "2.1.2"
resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
dependencies:
cosmiconfig "^5.0.0"
import-cwd "^2.0.0"
@ -7536,9 +7554,9 @@ postcss-selector-parser@^3.0.0:
uniq "^1.0.1"
postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.3.tgz#766d77728728817cc140fa1ac6da5e77f9fada98"
integrity sha512-0ClFaY4X1ra21LRqbW6y3rUbWcxnSVkDFG57R7Nxus9J9myPFlv+jYDMohzpkBx0RrjjiqjtycpchQ+PLGmZ9w==
version "6.0.4"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
dependencies:
cssesc "^3.0.0"
indexes-of "^1.0.1"
@ -7584,18 +7602,18 @@ postcss@^6.0.1, postcss@^6.0.23:
supports-color "^5.4.0"
postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
version "7.0.34"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.34.tgz#f2baf57c36010df7de4009940f21532c16d65c20"
integrity sha512-H/7V2VeNScX9KE83GDrDZNiGT1m2H+UTnlinIzhjlLX9hfMUn1mHNnGeX81a1c8JSBdBvqk7c2ZOG6ZPn5itGw==
version "7.0.35"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
dependencies:
chalk "^2.4.2"
source-map "^0.6.1"
supports-color "^6.1.0"
prelude-ls@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
prepend-http@^1.0.0:
version "1.0.4"
@ -7609,16 +7627,16 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
prettier@2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5"
integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==
prettier@^1.18.2:
version "1.19.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
prettier@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.1.2.tgz#3050700dae2e4c8b67c4c3f666cdb8af405e1ce5"
integrity sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==
pretty-error@^2.0.2:
version "2.1.1"
resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"
@ -8060,10 +8078,10 @@ regexp.prototype.flags@^1.2.0:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
regexpp@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
regexpp@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
regexpu-core@^4.7.0:
version "4.7.1"
@ -8310,7 +8328,7 @@ safe-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
sass-loader@^10.0.2:
sass-loader@10.0.2:
version "10.0.2"
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.2.tgz#c7b73010848b264792dd45372eea0b87cba4401e"
integrity sha512-wV6NDUVB8/iEYMalV/+139+vl2LaRFlZGEd5/xmdcdzQcgmis+npyco6NsDTVOlNA3y2NV9Gcz+vHyFMIT+ffg==
@ -8321,7 +8339,7 @@ sass-loader@^10.0.2:
schema-utils "^2.7.1"
semver "^7.3.2"
sass@^1.26.5:
sass@1.26.11:
version "1.26.11"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.11.tgz#0f22cc4ab2ba27dad1d4ca30837beb350b709847"
integrity sha512-W1l/+vjGjIamsJ6OnTe0K37U2DBO/dgsv2Z4c89XQ8ZOO6l/VwkqwLSqoYzJeJs6CLuGSTRWc91GbQFL3lvrvw==
@ -8391,12 +8409,12 @@ semver@7.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
semver@^6.0.0, semver@^6.1.0, semver@^6.1.2, semver@^6.3.0:
semver@^6.0.0, semver@^6.1.0, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
semver@^7.3.2:
semver@^7.2.1, semver@^7.3.2:
version "7.3.2"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
@ -8797,7 +8815,7 @@ static-extend@^0.1.1:
define-property "^0.2.5"
object-copy "^0.1.0"
stats-webpack-plugin@^0.7.0:
stats-webpack-plugin@0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/stats-webpack-plugin/-/stats-webpack-plugin-0.7.0.tgz#ccffe9b745de8bbb155571e063f8263fc0e2bc06"
integrity sha512-NT0YGhwuQ0EOX+uPhhUcI6/+1Sq/pMzNuSCBVT4GbFl/ac6I/JZefBcjlECNfAb1t3GOx5dEj1Z7x0cAxeeVLQ==
@ -8976,7 +8994,7 @@ strip-indent@^2.0.0:
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=
strip-json-comments@^3.0.1:
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@ -9068,7 +9086,7 @@ swagger-client@=3.11.0:
traverse "~0.6.6"
url "~0.11.0"
swagger-ui@^3.34.0:
swagger-ui@3.34.0:
version "3.34.0"
resolved "https://registry.yarnpkg.com/swagger-ui/-/swagger-ui-3.34.0.tgz#0d1069a84fe96fbecce65023a734d2b58497df59"
integrity sha512-mqPaIEU7J/bFFRxCCPgMIj0KIVrxsZZY7YdyCCU/N/HLdDH2V+RqHrVGclkPYVJA2cJZFGF7eMOKeArKql2ztQ==
@ -9351,12 +9369,12 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
type-check@~0.3.2:
version "0.3.2"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
dependencies:
prelude-ls "~1.1.2"
prelude-ls "^1.2.1"
type-fest@^0.11.0:
version "0.11.0"
@ -9630,7 +9648,7 @@ vm-browserify@^1.0.1:
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
vue-cli-plugin-webpack-bundle-analyzer@~2.0.0:
vue-cli-plugin-webpack-bundle-analyzer@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/vue-cli-plugin-webpack-bundle-analyzer/-/vue-cli-plugin-webpack-bundle-analyzer-2.0.0.tgz#160fbd492a673bae1be3a9f714db12218678fa01"
integrity sha512-zOsxSaJC0+yYqnJNsxvGJOgtso8kL2ejlsx3p614LTNFSzaxc+KJ8AsBb712Yw19eVzhCXZrCpnhRad3kRa+aw==
@ -9682,7 +9700,7 @@ vue-style-loader@^4.1.0, vue-style-loader@^4.1.2:
hash-sum "^1.0.2"
loader-utils "^1.0.2"
vue-template-compiler@^2.6.11:
vue-template-compiler@2.6.12:
version "2.6.12"
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.6.12.tgz#947ed7196744c8a5285ebe1233fe960437fcc57e"
integrity sha512-OzzZ52zS41YUbkCBfdXShQTe69j1gQDZ9HIX8miuC9C3rBCk9wIRjLiZZLrmX9V+Ftq/YEyv1JaVr5Y/hNtByg==
@ -9695,7 +9713,7 @@ vue-template-es2015-compiler@^1.9.0:
resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz#1ee3bc9a16ecbf5118be334bb15f9c46f82f5825"
integrity sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==
vue@^3.0.0:
vue@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.0.tgz#cfb5df5c34efce319b113a1667d12b74dcfd9c90"
integrity sha512-ZMrAARZ32sGIaYKr7Fk2GZEBh/VhulSrGxcGBiAvbN4fhjl3tuJyNFbbbLFqGjndbLoBW66I2ECq8ICdvkKdJw==
@ -9763,7 +9781,7 @@ webpack-chain@^6.4.0:
deepmerge "^1.5.2"
javascript-stringify "^2.0.1"
webpack-cli@^3.3.12:
webpack-cli@3.3.12:
version "3.3.12"
resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a"
integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==
@ -9830,7 +9848,7 @@ webpack-dev-server@^3.11.0:
ws "^6.2.1"
yargs "^13.3.2"
webpack-jquery-ui@^2.0.1:
webpack-jquery-ui@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/webpack-jquery-ui/-/webpack-jquery-ui-2.0.1.tgz#7b061beaed848da3d6f5a0acdfdf9dedbac0baed"
integrity sha512-ykG5qttZmTraCktCOgacVRAmD8TQi6N83smVH8D7/yahi63vH31uP0ZXN2o/qwNICn9GMLsi8jVjR0M3u2MEkw==
@ -9938,7 +9956,7 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
word-wrap@~1.2.3:
word-wrap@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==