This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/nuxt.config.js

241 lines
8.9 KiB
JavaScript
Raw Normal View History

2020-11-10 14:41:56 -08:00
import { loadSuml } from './server/loader';
2020-10-13 12:49:08 -07:00
import fs from 'fs';
2020-11-24 15:54:02 -08:00
import {buildDict, buildLocaleList} from "./src/helpers";
2020-11-10 14:41:56 -08:00
const config = loadSuml('config');
const translations = loadSuml('translations');
const locale = config.locale;
2020-12-21 11:59:18 -08:00
const locales = buildLocaleList(locale);
const title = translations.title;
const description = translations.description;
2020-11-11 13:07:19 -08:00
const banner = process.env.BASE_URL + '/api/banner/zaimki.png';
2020-07-24 12:15:33 -07:00
const colour = '#C71585';
2020-07-22 13:19:23 -07:00
2020-08-04 07:15:41 -07:00
const bodyParser = require('body-parser');
const buildFlags = () => {
const flags = [];
for (let flag of fs.readdirSync(__dirname + '/static/flags/')) {
let flagDisplay = flag
.replace(new RegExp('\.png$'), '')
.replace(new RegExp('_', 'g'), '')
.trim();
if (flag.startsWith('.')) {
continue;
}
if (flag.startsWith('-')) {
const tell = '-' + config.locale + '-';
if (flag.startsWith(tell)) {
flagDisplay = flagDisplay.substring(tell.length);
} else {
continue;
}
}
flags.push([
flag.replace(new RegExp('\.png$'), ''),
flagDisplay,
]);
}
flags.sort((a, b) => a[1].localeCompare(b[1]));
return buildDict(function *() {
for (let [key, display] of flags) {
yield [key, display];
}
});
};
2021-03-02 02:24:23 -08:00
const postCssPlugins = [
require('autoprefixer'),
];
if (config.dir === 'rtl') {
postCssPlugins.push(require('rtlcss'));
}
2020-07-22 13:19:23 -07:00
export default {
target: 'server',
head: {
2021-01-22 14:54:24 -08:00
htmlAttrs: {
dir: config.dir || 'ltr',
},
2020-07-22 13:19:23 -07:00
title: title,
meta: [
{ charset: 'utf-8' },
{ hid: 'description', name: 'description', content: description },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: title },
2020-07-24 12:15:33 -07:00
{ hid: 'theme-color', name: 'theme-color', content: colour },
2020-07-22 13:19:23 -07:00
{ hid: 'og:type', property: 'og:type', content: 'article' },
{ hid: 'og:title', property: 'og:title', content: title },
{ hid: 'og:description', property: 'og:description', content: description },
{ hid: 'og:site_name', property: 'og:site_name', content: title },
2020-11-29 09:36:57 -08:00
{ hid: 'og:image', property: 'og:image', content: banner },
2020-07-22 13:19:23 -07:00
{ hid: 'twitter:card', property: 'twitter:card', content: 'summary_large_image' },
{ hid: 'twitter:title', property: 'twitter:title', content: title },
{ hid: 'twitter:description', property: 'twitter:description', content: description },
{ hid: 'twitter:site', property: 'twitter:site', content: process.env.BASE_URL },
{ hid: 'twitter:image', property: 'twitter:image', content: banner },
],
link: [
{ rel: 'icon', type: 'image/svg', href: '/favicon.svg' }
],
2021-04-13 08:06:40 -07:00
script: process.env.NODE_ENV === 'production' ? [
2021-04-13 04:14:10 -07:00
{src: 'https://arc.io/widget.min.js#yHdNYRkC', async: true},
2021-04-13 08:06:40 -07:00
] : [],
2020-07-22 13:19:23 -07:00
},
css: [],
plugins: [
{ src: '~/plugins/vue-matomo.js', ssr: false },
2020-09-28 09:29:13 -07:00
{ src: '~/plugins/globals.js' },
{ src: '~/plugins/auth.js' },
2020-07-22 13:19:23 -07:00
],
components: true,
buildModules: [],
modules: [
'@nuxtjs/pwa',
2020-08-04 07:15:41 -07:00
'@nuxtjs/axios',
['@nuxtjs/redirect-module', {
rules: config.redirects,
}],
'cookie-universal-nuxt',
2020-07-22 13:19:23 -07:00
],
2020-07-24 12:15:33 -07:00
pwa: {
manifest: {
name: title,
short_name: title,
description: description,
background_color: '#ffffff',
theme_color: colour,
lang: locale,
2020-07-24 12:15:33 -07:00
}
},
build: {
2021-03-01 14:14:42 -08:00
postcss: {
2021-03-02 02:24:23 -08:00
plugins: postCssPlugins,
2021-03-01 14:14:42 -08:00
},
extend (config, ctx) {
config.module.rules.push({
test: /\.csv|\.tsv$/,
loader: 'csv-loader',
options: {
dynamicTyping: true,
header: true,
skipEmptyLines: true,
delimiter: '\t',
}
2020-09-28 05:12:20 -07:00
});
config.module.rules.push({
test: /\.suml$/,
2020-11-13 13:57:23 -08:00
loader: 'suml-loader',
2020-09-28 05:12:20 -07:00
});
2020-11-13 13:57:23 -08:00
config.module.rules.push({
test: /\.md$/,
use: ['html-loader', 'markdown-loader']
})
},
},
2020-07-22 13:19:23 -07:00
env: {
2020-10-13 12:49:08 -07:00
BASE_URL: process.env.BASE_URL,
2020-10-31 13:33:59 -07:00
TITLE: title,
2020-10-13 12:49:08 -07:00
PUBLIC_KEY: fs.readFileSync(__dirname + '/keys/public.pem').toString(),
CONFIG: config,
2020-10-24 12:50:08 -07:00
LOCALE: config.locale,
LOCALES: locales,
FLAGS: buildFlags(),
2021-01-06 06:21:20 -08:00
BUCKET: `https://${process.env.AWS_S3_BUCKET}.s3-${process.env.AWS_REGION}.amazonaws.com`,
2020-07-22 13:19:23 -07:00
},
2020-10-31 13:33:59 -07:00
serverMiddleware: ['~/server/index.js'],
2020-08-04 07:15:41 -07:00
axios: {
2021-04-03 13:16:05 -07:00
baseURL: process.env.BASE_URL + '/api',
2020-09-28 05:12:20 -07:00
},
router: {
extendRoutes(routes, resolve) {
if (config.sources.enabled) {
routes.push({ path: '/' + config.sources.route, component: resolve(__dirname, 'routes/sources.vue') });
}
if (config.nouns.enabled) {
routes.push({ path: '/' + config.nouns.route, component: resolve(__dirname, 'routes/nouns.vue') });
for (let subroute of config.nouns.subroutes || []) {
routes.push({ path: `/${config.nouns.route}/${subroute}`, component: resolve(__dirname, `data/nouns/${subroute}.vue`) });
}
if (config.nouns.inclusive.enabled) {
routes.push({path: `/${config.nouns.route}/${config.nouns.inclusive.route}`, component: resolve(__dirname, 'routes/inclusive.vue')});
}
if (config.nouns.terms.enabled) {
routes.push({path: `/${config.nouns.route}/${config.nouns.terms.route}`, component: resolve(__dirname, 'routes/queerTerms.vue')});
}
}
2020-09-29 08:59:23 -07:00
if (config.names.enabled) {
routes.push({ path: '/' + config.names.route, component: resolve(__dirname, 'routes/names.vue') });
}
2020-10-10 09:31:31 -07:00
if (config.faq.enabled) {
routes.push({ path: '/' + config.faq.route, component: resolve(__dirname, 'routes/faq.vue') });
}
if (config.links.enabled) {
routes.push({ path: '/' + config.links.route, component: resolve(__dirname, 'routes/links.vue') });
2021-05-03 07:15:48 -07:00
if (Object.keys(config.links.blog).length) {
routes.push({ path: '/' + config.links.blogRoute, component: resolve(__dirname, 'routes/blog.vue'), name: 'blog' });
routes.push({ path: '/' + config.links.blogRoute + '/:slug', component: resolve(__dirname, 'routes/blogEntry.vue'), name: 'blogEntry' });
}
}
2020-09-29 10:11:46 -07:00
if (config.people.enabled) {
routes.push({ path: '/' + config.people.route, component: resolve(__dirname, 'routes/people.vue') });
}
if (config.english.enabled) {
routes.push({ path: '/' + config.english.route, component: resolve(__dirname, 'routes/english.vue') });
}
if (config.contact.enabled) {
routes.push({ path: '/' + config.contact.route, component: resolve(__dirname, 'routes/contact.vue') });
}
2021-01-12 11:06:59 -08:00
if (config.contact.team.enabled) {
routes.push({ path: '/' + config.contact.team.route, component: resolve(__dirname, 'routes/team.vue') });
}
2020-12-18 02:34:58 -08:00
if (config.census.enabled) {
routes.push({ path: '/' + config.census.route, component: resolve(__dirname, 'routes/census.vue') });
}
2020-10-13 12:49:08 -07:00
if (config.user.enabled) {
routes.push({path: '/' + config.user.route, component: resolve(__dirname, 'routes/user.vue')});
2020-10-27 00:52:11 -07:00
routes.push({path: '/' + config.user.termsRoute, component: resolve(__dirname, 'routes/terms.vue')});
2020-10-13 12:49:08 -07:00
}
2020-10-29 15:41:40 -07:00
routes.push({ path: '/admin', component: resolve(__dirname, 'routes/admin.vue') });
2020-10-28 08:22:29 -07:00
if (config.profile.enabled) {
routes.push({path: '/@*', component: resolve(__dirname, 'routes/profile.vue')});
if (config.profile.editorEnabled) {
routes.push({path: '/editor', component: resolve(__dirname, 'routes/profileEditor.vue')});
2020-10-28 08:22:29 -07:00
}
}
if (config.pronouns.enabled) {
2020-11-15 07:10:03 -08:00
routes.push({ path: '/' + config.pronouns.any, component: resolve(__dirname, 'routes/any.vue') });
2020-11-29 02:03:01 -08:00
if (config.pronouns.avoiding) {
routes.push({ path: '/' + config.pronouns.avoiding, component: resolve(__dirname, 'routes/avoiding.vue') });
}
2020-10-28 08:22:29 -07:00
}
2020-11-10 14:41:56 -08:00
routes.push({ path: '/api', component: resolve(__dirname, 'routes/api.vue') });
routes.push({ name: 'all', path: '*', component: resolve(__dirname, 'routes/pronoun.vue') });
},
},
2020-07-22 13:19:23 -07:00
}